From b0d63a6207dddbc7888739613d1d11237f889316 Mon Sep 17 00:00:00 2001 From: FireReaver <29768728+FireReaver@users.noreply.github.com> Date: Fri, 15 Dec 2023 23:29:31 +0100 Subject: [PATCH] Add files via upload --- ATTRIBUTION.md | 21 + Bags.lua | 87 +++ Changelog.txt | 6 + Command.lua | 314 ++++++++++ Database.lua | 129 ++++ Init.lua | 63 ++ ItemDB.lua | 29 + KiwiItemInfo.lua | 278 +++++++++ KiwiItemInfo.toc | 26 + Locale.lua | 55 ++ Locale/deDE/deDE.lua | 143 +++++ Locale/enUS/enUS.lua | 143 +++++ Locale/esES/esES.lua | 143 +++++ Locale/frFR/frFR.lua | 143 +++++ Locale/itIT/itIT.lua | 144 +++++ Locale/koKR/koKR.lua | 143 +++++ Locale/ptBR/ptBR.lua | 143 +++++ Locale/ruRU/ruRU.lua | 143 +++++ Locale/zhCN/zhCN.lua | 143 +++++ Locale/zhTW/zhTW.lua | 143 +++++ README.md | 63 ++ README_deDE.md | 50 ++ README_esES.md | 48 ++ README_frFR.md | 61 ++ README_itIT.md | 61 ++ README_koKR.md | 61 ++ README_ptBR.md | 61 ++ README_ruRU.md | 61 ++ README_zhCN.md | 61 ++ README_zhTW.md | 61 ++ Tooltip.lua | 1402 ++++++++++++++++++++++++++++++++++++++++++ VarsUI.lua | 140 +++++ 32 files changed, 4569 insertions(+) create mode 100644 ATTRIBUTION.md create mode 100644 Bags.lua create mode 100644 Changelog.txt create mode 100644 Command.lua create mode 100644 Database.lua create mode 100644 Init.lua create mode 100644 ItemDB.lua create mode 100644 KiwiItemInfo.lua create mode 100644 KiwiItemInfo.toc create mode 100644 Locale.lua create mode 100644 Locale/deDE/deDE.lua create mode 100644 Locale/enUS/enUS.lua create mode 100644 Locale/esES/esES.lua create mode 100644 Locale/frFR/frFR.lua create mode 100644 Locale/itIT/itIT.lua create mode 100644 Locale/koKR/koKR.lua create mode 100644 Locale/ptBR/ptBR.lua create mode 100644 Locale/ruRU/ruRU.lua create mode 100644 Locale/zhCN/zhCN.lua create mode 100644 Locale/zhTW/zhTW.lua create mode 100644 README.md create mode 100644 README_deDE.md create mode 100644 README_esES.md create mode 100644 README_frFR.md create mode 100644 README_itIT.md create mode 100644 README_koKR.md create mode 100644 README_ptBR.md create mode 100644 README_ruRU.md create mode 100644 README_zhCN.md create mode 100644 README_zhTW.md create mode 100644 Tooltip.lua create mode 100644 VarsUI.lua diff --git a/ATTRIBUTION.md b/ATTRIBUTION.md new file mode 100644 index 0000000..afdf57b --- /dev/null +++ b/ATTRIBUTION.md @@ -0,0 +1,21 @@ + +Special Thanks to these Folks! + +# Translators +### German +Ella <3 (tilkinsc friend) + +### Spanish +[ferdox2](https://github.com/ferdox2) +[Ballo1988](https://github.com/Ballo1988) + +### Simplified Chinese +[hu71e](https://github.com/hu71e) + +### Portugese +[ferreiraRodrigo](https://github.com/ferreiraRodrigo) + +### French +[beinganonymous](https://github.com/beinganonymous) +[Tititesouris](https://github.com/Tititesouris) + diff --git a/Bags.lua b/Bags.lua new file mode 100644 index 0000000..0da94e0 --- /dev/null +++ b/Bags.lua @@ -0,0 +1,87 @@ +--[[ + * KiwiItemInfo + * + * MIT License + * + * Copyright (c) 2017-2019 Cody Tilkins + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * +--]] + + + +-- Booleans if any bag slot is open +KiwiItemInfo.TestBagOpen = function() + + for i=0, NUM_BAG_SLOTS do + if(IsBagOpen(i)) then + return true + end + end + + return false +end + +-- Shows junk items in inventory +KiwiItemInfo.ShowJunk = function() + + if(KiwiItemInfo_Vars.vars["flash_grey_items"] == false) then + return + end + + if(not KiwiItemInfo.TestBagOpen()) then + return + end + + local itemList = {} + + for slot=0, NUM_BAG_SLOTS do + for index=1, GetContainerNumSlots(slot) do + + local item = GetContainerItemID(slot, index) + + if(item) then + + local itemName, itemLink, itemRarity, itemLevel, itemMinLevel, itemType, itemSubType, + itemStackCount, itemEquipLoc, itemIcon, vendorPrice, itemClassID, itemSubClassID, + bindType, expacID, itemSetID, isCraftingReagent = GetItemInfo(item) + + if(vendorPrice > 0 and itemRarity == 0) then + table.insert(itemList, {slot = slot, index = index}) + end + end + + end + end + + for i=1, #itemList do + + local frame = _G["ContainerFrame" .. (itemList[i].slot + 1) .. "Item" .. (GetContainerNumSlots(itemList[i].slot) + 1 - itemList[i].index)] + + if(frame and frame:IsShown()) then + frame.NewItemTexture:SetAtlas("bags-glow-orange") + frame.NewItemTexture:Show() + frame.newitemglowAnim:Play() + end + + end + +end + diff --git a/Changelog.txt b/Changelog.txt new file mode 100644 index 0000000..c00a074 --- /dev/null +++ b/Changelog.txt @@ -0,0 +1,6 @@ +v2.3.7 release: + +- quick fix to remove the conflict with ItemRack for Classic Era 1.15; +(Hovering on the weapons slots while both addons were enabled would throw errors) +- updated the old ATTRIBUTION.md file by switching to the appropriate relation in the acknowledgments; +- updated TOC version; \ No newline at end of file diff --git a/Command.lua b/Command.lua new file mode 100644 index 0000000..634a052 --- /dev/null +++ b/Command.lua @@ -0,0 +1,314 @@ +--[[ + * KiwiItemInfo + * + * MIT License + * + * Copyright (c) 2017-2019 Cody Tilkins + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * +--]] + + + +local printi = KiwiItemInfo.printi +local L = KiwiItemInfo.LocaleStrings() +local LF = KiwiItemInfo.LF + +-- Prints out item info from a specific-formatted string, is a command +KiwiItemInfo.Command = function(msg) + + -- split message into arguments + local args = {string.split(" ", msg)} + if(#args < 1) then -- TODO: + printi(2, L["COMMAND_ERROR_ARG_LEN"]) + return + end + + -- VarsUI + if(args[1] == "") then + KiwiItemInfo.VarsUI.Show() + return + end + + -- help message + if(args[1] == L["KIWIII_HELP"] or args[1] == LF("KIWIII_HELP")) then + printi(0, L["COMMAND_HELP1"]) + printi(0, L["COMMAND_HELP2"]) + for i=3, 19 do + print(L["COMMAND_HELP" .. i]) + end + return + end + + -- reload plugin + if(args[1] == L["KIWIII_RELOAD"] or args[1] == LF("KIWIII_RELOAD")) then + printi(2, L["COMMAND_RELOAD"]) + KiwiItemInfo.Disable() + KiwiItemInfo.Enable() + printi(0, L["COMMAND_RELOAD_DONE"]) + return + end + + -- hard reset of plugin + if(args[1] == L["KIWIII_RESET"] or args[1] == LF("KIWIII_RESET")) then + printi(2, L["COMMAND_RESET"]) + KiwiItemInfo.Disable() + KiwiItemInfo_Vars = nil + KiwiItemInfo.Enable() + printi(0, L["COMMAND_RELOAD_DONE"]) + return + end + + -- displays variables user can change + if(args[1] == L["KIWIII_VARS"] or args[1] == LF("KIWIII_VARS")) then + printi(2, L["COMMAND_VARS_DUMP"]) + for i, v in next, KiwiItemInfo_Vars.vars do + print(" >", "|cFF888888" .. i .. "|r", "=", (v == true) and ("|cFF00FF00" .. tostring(v) .. "|r") or (v == false) and ("|cFFFF0000" .. tostring(v) .. "|r") or v) + end + printi(0, L["COMMAND_VARS_DONE"]) + return + end + + -- sets variables the user can change + if(args[1] == L["KIWIII_SET"] or args[1] == LF("KIWIII_SET")) then + if(args[2]) then + if(args[3]) then + local var = KiwiItemInfo_Vars.vars[args[2]] + if(var ~= nil) then + + local val + if(type(var) == "boolean" and args[3] == "true") then + val = true + elseif(type(var) == "boolean" and args[3] == "false") then + val = false + elseif(type(var) == "number" and tonumber(args[3])) then + val = tonumber(args[3]) + else -- string + val = table.concat(args, " ", 3, #args):trim() + end + + if(type(var) == "boolean") then + if(type(val) == "boolean") then + KiwiItemInfo_Vars.vars[args[2]] = val + else + printi(2, L["COMMAND_SET_ERROR_BOOLEAN"]) + return + end + elseif(type(var) == "number") then + if(type(val) == "number") then + KiwiItemInfo_Vars.vars[args[2]] = val + else + printi(2, L["COMMAND_SET_ERROR_NUMBER"]) + return + end + elseif(type(var) == "string") then + if(type(val) == "string") then + KiwiItemInfo_Vars.vars[args[2]] = val + else + printi(2, L["COMMAND_SET_ERROR_STRING"]) + return + end + end + else + printi(2, L["COMMAND_SET_ERROR_VAR"]) + return + end + else + printi(2, L["COMMAND_SET_ERROR_VALUE"]) + return + end + else + printi(2, L["COMMAND_SET_ERROR_INDEX"]) + return + end + return + end + + -- Toggles CVar alwaysCompareItems + if(args[1] == L["KIWIII_ACI"] or args[1] == LF("KIWIII_ACI")) then + local cvar = GetCVar("alwaysCompareItems") + SetCVar("alwaysCompareItems", cvar == "1" and 0 or 1) + end + + -- Searches for items in db + if(args[1] == L["KIWIII_SEARCH"] or args[1] == LF("KIWIII_SEARCH")) then + + if(KiwiItemInfo_Vars["search_cmd_state"] == false) then + printi(2, L["COMMAND_SEARCH_ERROR_DB"]) + return + end + + -- collect arguments + local enable_ilvl_search = false + local ilvl_operation = nil + local ilvl_search = nil + + local enable_type_search = false + local type_search = nil + + local enable_subtype_search = false + local subtype_search = nil + + local tester = nil + + for i=2, #args do + local arg = args[i] + + if(arg:find("%$", 1)) then + + if(#arg < 3) then + printi(2, L["COMMAND_SEARCH_ARG_LEN"], arg, "!") + return + end + + enable_ilvl_search = true + ilvl_operation = arg:sub(2, 2) + ilvl_search = tonumber(arg:sub(3)) + + elseif(arg:find("#", 1)) then + + enable_type_search = true + type_search = arg:sub(2):gsub("%u", " %1"):trim() + + elseif(arg:find("@", 1)) then + + enable_subtype_search = true + + subtype_search = arg:sub(2) + subtype_search = subtype_search:gsub("1H", L["COMMAND_SEARCH_ONE_HANDED"]) + subtype_search = subtype_search:gsub("2H", L["COMMAND_SEARCH_TWO_HANDED"]) + if(not subtype_search:find(L["COMMAND_SEARCH_1H"], 1) and not subtype_search:find(L["COMMAND_SEARCH_2H"])) then + subtype_search = subtype_search:gsub("%u", " %1"):trim() + end + + else + tester = table.concat(args, " ", i, #args):trim() + + local num_test = tonumber(tester) + tester = num_test and num_test or tester + + break + end + + end + + + -- easy way out, nil if failed, item if success + local direct_try = (function() + + if(not type(tester) == "string") then + return + end + + local dt = KiwiItemInfo.Database[tester] + + if(dt) then + if(enable_type_search and not (dt.Type == type_search)) then + return + end + + if(enable_subtype_search and not (dt.SubType == subtype_search)) then + return + end + + if(enable_ilvl_search and ( + ilvl_operation == "=" and (dt.Level ~= ilvl_search) + or ilvl_operation == ">" and (dt.Level <= ilvl_search) + or ilvl_operation == "<" and (dt.Level >= ilvl_search) + or false)) then + return + end + + return dt + end + + end)() + + if(direct_try) then + printi(0, L["COMMAND_SEARCH_DONE"]) + print(direct_try.Link) + return + end + + + + -- the hard way + local tester_operands + if(type(tester) == "string") then + tester_operands = {string.split(" ", tester)} + end + + local count = 0 + local success + for i, v in next, KiwiItemInfo.Database do + success = true + + if(enable_type_search and not (v.Type == type_search)) then + success = false + end + + if(enable_subtype_search and not (v.SubType == subtype_search)) then + success = false + end + + if(enable_ilvl_search and ( + ilvl_operation == "=" and (v.Level ~= ilvl_search) + or ilvl_operation == ">" and (v.Level <= ilvl_search) + or ilvl_operation == "<" and (v.Level >= ilvl_search) + or false)) then + success = false + end + + if(tester) then + if(type(tester) == "number") then + if(v.Id ~= tester) then + success = false + end + else + local required_operands = #tester_operands + + for _, name in next, tester_operands do + if(i:find(name)) then + required_operands = required_operands - 1 + end + end + + if(required_operands > 0) then + success = false + end + end + end + + if(success) then + count = count + 1 + print(v.Link) + end + end + + if(count > 0) then + printi(0, L["COMMAND_SEARCH_DONE1"], count) + else + printi(2, L["COMMAND_SEARCH_FAIL"]) + end + + return + end + +end diff --git a/Database.lua b/Database.lua new file mode 100644 index 0000000..28007be --- /dev/null +++ b/Database.lua @@ -0,0 +1,129 @@ +--[[ + * KiwiItemInfo + * + * MIT License + * + * Copyright (c) 2017-2019 Cody Tilkins + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * +--]] + + + +-- Returns a table of items found with given input: itemName/itemLink/itemId +KiwiItemInfo.GetItem = function(id) + + local Database = KiwiItemInfo.Database + + if(type(id) == "number") then + + for i, v in next, Database do + if(v.id == id) then + return {{ + itemName = i, + itemSubType = v.SubType, + itemLevel = v.Level, + id = v.id, + itemStackCount = v.StackCount, + itemRarity = v.Rarity, + itemMinLevel = v.MinLevel, + itemSellPrice = v.ellPrice, + itemTexture = v.Texture, + itemType = v.Type, + itemLink = v.Link, + itemEquipLoc = v.EquipLoc + }} + end + end + + return nil + end + + if(type(id) == "string") then + + -- Check by name + if(Database[id]) then + local v = Database[id] + return {{ + itemName = id, + itemSubType = v.SubType, + itemLevel = v.Level, + id = v.id, + itemStackCount = v.StackCount, + itemRarity = v.Rarity, + itemMinLevel = v.MinLevel, + itemSellPrice = v.SellPrice, + itemTexture = v.Texture, + itemType = v.Type, + itemLink = v.Link, + itemEquipLoc = v.EquipLoc + }} + end + + -- Check by link + if(string.find(id, "|c", 1, 2) == 1) then + for i, v in next, Database do + if(v.itemLink == id) then + return {{ + itemName = i, + itemSubType = v.SubType, + itemLevel = v.Level, + id = v.id, + itemStackCount = v.StackCount, + itemRarity = v.Rarity, + itemMinLevel = v.MinLevel, + itemSellPrice = v.SellPrice, + itemTexture = v.Texture, + itemType = v.Type, + itemLink = v.Link, + itemEquipLoc = v.EquipLoc + }} + end + end + + return nil + end + + -- Build a stack of all results that match + local stack = {} + + for i, v in next, Database do + if(string.find(i, id)) then + table.insert(stack, { + itemName = i, + itemSubType = v.SubType, + itemLevel = v.Level, + id = v.id, + itemStackCount = v.StackCount, + itemRarity = v.Rarity, + itemMinLevel = v.MinLevel, + itemSellPrice = v.SellPrice, + itemTexture = v.Texture, + itemType = v.Type, + itemLink = v.Link, + itemEquipLoc = v.EquipLoc + }) + end + end + + return #stack > 0 and stack or nil + end + +end diff --git a/Init.lua b/Init.lua new file mode 100644 index 0000000..48d041d --- /dev/null +++ b/Init.lua @@ -0,0 +1,63 @@ +--[[ + * KiwiItemInfo + * + * MIT License + * + * Copyright (c) 2017-2019 Cody Tilkins + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * +--]] + + + +local version = GetAddOnMetadata("KiwiItemInfo", "Version") + +KiwiItemInfo = {} +KiwiItemInfo._VERSION = version +KiwiItemInfo._DEFAULT_VARS = { + ["VERSION"] = version, + ["first_run"] = true, + ["text_error"] = "|cFFFF0000%s|r", + ["text_print"] = "|cFF0FFF0F%s|r", + ["text_warning"] = "|cFF00CC22%s|r", + ["search_cmd_state"] = true, + ["vars"] = { + ["flash_grey_items"] = true, + ["flash_hotkey"] = "LCTRL", + ["ilvl_only_equips"] = true, + ["item_compare_on"] = true, + ["item_compare_extra"] = true, + ["tooltip_price_on"] = true, + ["tooltip_ilvl_on"] = true, + ["tooltip_ilvl_colors"] = true, + ["tooltip_ilvl_nocolors_rgb"] = "1 1 1", + } +} + +KiwiItemInfo.printi = function(type, ...) + print(string.format( + (type == 0) and KiwiItemInfo_Vars["text_print"] + or (type == 1) and KiwiItemInfo_Vars["text_warning"] + or (type == 2) and KiwiItemInfo_Vars["text_error"], + table.concat({...}, " ") + ) + ) +end + diff --git a/ItemDB.lua b/ItemDB.lua new file mode 100644 index 0000000..a458164 --- /dev/null +++ b/ItemDB.lua @@ -0,0 +1,29 @@ +--[[ + * KiwiItemInfo + * + * MIT License + * + * Copyright (c) 2017-2019 Cody Tilkins + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * +--]] + + +KiwiItemInfo.Database={["Aurora Pants"]={SubType="Cloth",Level=40,id=4044,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4584,Texture=134581,Link="|cff1eff00|Hitem:4044::::::::40:::::::|h[Aurora Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Arcmetal Shoulders"]={SubType="Mail",Level=38,id=16793,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4353,Texture=135047,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16793::::::::40:::::::|h[Arcmetal Shoulders]|h|r",Type="Armor"},["Tablet of Searing Totem VI"]={SubType="Book",Level=60,id=9182,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9182::::::::40:::::::|h[Tablet of Searing Totem VI]|h|r"},["Arcane Elixir"]={SubType="Consumable",Level=47,id=9155,StackCount=5,Rarity=1,MinLevel=37,SellPrice=400,Texture=134810,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9155::::::::40:::::::|h[Arcane Elixir]|h|r"},["Shadow Guard"]={SubType="Junk",Level=60,id=22638,StackCount=1,Rarity=3,MinLevel=55,SellPrice=0,Texture=136121,Link="|cff0070dd|Hitem:22638::::::::40:::::::|h[Shadow Guard]|h|r",EquipLoc="",Type="Miscellaneous"},["Onslaught Girdle"]={SubType="Plate",Level=78,id=19137,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31469,Texture=132518,Link="|cffa335ee|Hitem:19137::::::::40:::::::|h[Onslaught Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["The First Troll Legend"]={SubType="Quest",Level=1,id=2005,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Type="Quest",Link="|cffffffff|Hitem:2005::::::::40:::::::|h[The First Troll Legend]|h|r",EquipLoc=""},["Pattern: Icy Scale Gauntlets"]={SubType="Tailoring",Level=80,id=22697,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:22697::::::::40:::::::|h[Pattern: Icy Scale Gauntlets]|h|r"},["Shard of Afrasa"]={SubType="Miscellaneous",Level=57,id=10659,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4662,Texture=134095,EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:10659::::::::40:::::::|h[Shard of Afrasa]|h|r",Type="Armor"},["Soldier's Girdle"]={SubType="Mail",Level=16,id=6548,StackCount=1,Rarity=2,MinLevel=11,SellPrice=233,Texture=132514,Link="|cff1eff00|Hitem:6548::::::::40:::::::|h[Soldier's Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Fangdrip Runners"]={SubType="Cloth",Level=61,id=13530,StackCount=1,Rarity=2,MinLevel=56,SellPrice=12453,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:13530::::::::40:::::::|h[Fangdrip Runners]|h|r"},["Eye of Flame"]={SubType="Cloth",Level=55,id=3075,StackCount=1,Rarity=4,MinLevel=49,SellPrice=15073,Texture=133146,Type="Armor",Link="|cffa335ee|Hitem:3075::::::::40:::::::|h[Eye of Flame]|h|r",EquipLoc="INVTYPE_HEAD"},["Runic Leather Armor"]={SubType="Leather",Level=62,id=15090,StackCount=1,Rarity=2,MinLevel=57,SellPrice=22002,Texture=132722,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15090::::::::40:::::::|h[Runic Leather Armor]|h|r",Type="Armor"},["Hallow's End Pumpkin Treat"]={SubType="Consumable",Level=1,id=20557,StackCount=100,Rarity=1,MinLevel=0,SellPrice=175,Texture=134015,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20557::::::::40:::::::|h[Hallow's End Pumpkin Treat]|h|r"},["Cliffwatcher Longhorn Report"]={SubType="Quest",Level=1,id=13507,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134328,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13507::::::::40:::::::|h[Cliffwatcher Longhorn Report]|h|r"},["Stormgale Fists"]={SubType="Mail",Level=36,id=10584,StackCount=1,Rarity=3,MinLevel=31,SellPrice=2905,Texture=132945,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:10584::::::::40:::::::|h[Stormgale Fists]|h|r",Type="Armor"},["Deprecated Battle Chain Buckler"]={SubType="Shields",Level=11,id=14691,StackCount=1,Rarity=1,MinLevel=6,SellPrice=116,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:14691::::::::40:::::::|h[Deprecated Battle Chain Buckler]|h|r"},["Deprecated Medium Tiger Pelt"]={SubType="Trade Goods",Level=32,id=1689,StackCount=10,Rarity=1,MinLevel=0,SellPrice=57,Texture=134353,Type="Trade Goods",Link="|cffffffff|Hitem:1689::::::::40:::::::|h[Deprecated Medium Tiger Pelt]|h|r",EquipLoc=""},["Bloodstone Marble"]={SubType="Quest",Level=1,id=3689,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134085,Type="Quest",Link="|cffffffff|Hitem:3689::::::::40:::::::|h[Bloodstone Marble]|h|r",EquipLoc=""},["Lard's Lunch"]={SubType="Quest",Level=1,id=19034,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134016,Link="|cffffffff|Hitem:19034::::::::40:::::::|h[Lard's Lunch]|h|r",EquipLoc="",Type="Quest"},["Seeping Willow"]={SubType="Two-Handed Maces",Level=63,id=12969,StackCount=1,Rarity=3,MinLevel=58,SellPrice=70884,Texture=133054,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12969::::::::40:::::::|h[Seeping Willow]|h|r"},["Ironheel Boots"]={SubType="Mail",Level=45,id=4653,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7178,Texture=132535,Link="|cff1eff00|Hitem:4653::::::::40:::::::|h[Ironheel Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Arathi Basin Runecloth Bandage"]={SubType="Consumable",Level=55,id=20066,StackCount=20,Rarity=1,MinLevel=45,SellPrice=100,Texture=133682,Link="|cffffffff|Hitem:20066::::::::40:::::::|h[Arathi Basin Runecloth Bandage]|h|r",EquipLoc="",Type="Consumable"},["Tainted Heart"]={SubType="Quest",Level=1,id=5217,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5217::::::::40:::::::|h[Tainted Heart]|h|r"},["Spraggle's Canteen"]={SubType="Quest",Level=1,id=11804,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132805,Type="Quest",Link="|cffffffff|Hitem:11804::::::::40:::::::|h[Spraggle's Canteen]|h|r",EquipLoc=""},["Marauder's Gauntlets"]={SubType="Mail",Level=36,id=15570,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2431,Texture=132958,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15570::::::::40:::::::|h[Marauder's Gauntlets]|h|r",Type="Armor"},["Level 50 Test Gear Leather - Rogue 2"]={SubType="Junk",Level=1,id=17845,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17845::::::::40:::::::|h[Level 50 Test Gear Leather - Rogue 2]|h|r",Type="Miscellaneous"},["Jagged Dagger"]={SubType="Daggers",Level=11,id=4947,StackCount=1,Rarity=2,MinLevel=0,SellPrice=325,Texture=135638,Type="Weapon",Link="|cff1eff00|Hitem:4947::::::::40:::::::|h[Jagged Dagger]|h|r",EquipLoc="INVTYPE_WEAPON"},["Knight's Breastplate"]={SubType="Mail",Level=39,id=7454,StackCount=1,Rarity=2,MinLevel=34,SellPrice=5915,Texture=132739,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7454::::::::40:::::::|h[Knight's Breastplate]|h|r",Type="Armor"},["Felcloth Hood"]={SubType="Cloth",Level=58,id=14111,StackCount=1,Rarity=2,MinLevel=53,SellPrice=10775,Texture=133136,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14111::::::::40:::::::|h[Felcloth Hood]|h|r"},["Tablet of Flametongue Weapon III"]={SubType="Book",Level=36,id=9094,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=134459,Link="|cffffffff|Hitem:9094::::::::40:::::::|h[Tablet of Flametongue Weapon III]|h|r",EquipLoc="",Type="Recipe"},["Alabaster Plate Greaves"]={SubType="Plate",Level=53,id=8316,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8078,Texture=132587,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:8316::::::::40:::::::|h[Alabaster Plate Greaves]|h|r"},["Thick Scale Shield"]={SubType="Shields",Level=36,id=15552,StackCount=1,Rarity=2,MinLevel=31,SellPrice=5226,Texture=134953,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15552::::::::40:::::::|h[Thick Scale Shield]|h|r",Type="Armor"},["Rigid Gloves"]={SubType="Leather",Level=22,id=15115,StackCount=1,Rarity=2,MinLevel=17,SellPrice=473,Texture=132958,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15115::::::::40:::::::|h[Rigid Gloves]|h|r",Type="Armor"},["Codex of Shadow Word: Pain II"]={SubType="Book",Level=10,id=1096,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:1096::::::::40:::::::|h[Codex of Shadow Word: Pain II]|h|r",Type="Recipe"},["Green Hills of Stranglethorn"]={SubType="Quest",Level=1,id=2755,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133740,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2755::::::::40:::::::|h[Green Hills of Stranglethorn]|h|r"},["Keeper's Gloves"]={SubType="Leather",Level=51,id=14666,StackCount=1,Rarity=2,MinLevel=46,SellPrice=6367,Texture=132949,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14666::::::::40:::::::|h[Keeper's Gloves]|h|r"},["Embersilk Mitts"]={SubType="Cloth",Level=38,id=14231,StackCount=1,Rarity=2,MinLevel=33,SellPrice=1904,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14231::::::::40:::::::|h[Embersilk Mitts]|h|r"},["Angelista's Charm"]={SubType="Miscellaneous",Level=75,id=21690,StackCount=1,Rarity=4,MinLevel=60,SellPrice=73749,Texture=133307,Link="|cffa335ee|Hitem:21690::::::::40:::::::|h[Angelista's Charm]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Lightforge Gauntlets"]={SubType="Plate",Level=59,id=16724,StackCount=1,Rarity=3,MinLevel=54,SellPrice=9091,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16724::::::::40:::::::|h[Lightforge Gauntlets]|h|r",Type="Armor"},["Knight-Captain's Chain Leggings"]={SubType="Mail",Level=63,id=16426,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16635,Texture=134590,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16426::::::::40:::::::|h[Knight-Captain's Chain Leggings]|h|r",Type="Armor"},["Earthfury Helmet"]={SubType="Mail",Level=66,id=16842,StackCount=1,Rarity=4,MinLevel=60,SellPrice=39111,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16842::::::::40:::::::|h[Earthfury Helmet]|h|r",Type="Armor"},["Naga Scale"]={SubType="Reagent",Level=25,id=7072,StackCount=10,Rarity=1,MinLevel=0,SellPrice=150,Texture=134303,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:7072::::::::40:::::::|h[Naga Scale]|h|r"},["Monster - Dagger, Gold Blade"]={SubType="Daggers",Level=1,id=5280,StackCount=1,Rarity=0,MinLevel=1,SellPrice=6,Texture=135637,Link="|cff9d9d9d|Hitem:5280::::::::40:::::::|h[Monster - Dagger, Gold Blade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Senir's Report"]={SubType="Quest",Level=1,id=2628,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133458,EquipLoc="",Link="|cffffffff|Hitem:2628::::::::40:::::::|h[Senir's Report]|h|r",Type="Quest"},["Tablet of Frostbrand Weapon III"]={SubType="Book",Level=48,id=9139,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9139::::::::40:::::::|h[Tablet of Frostbrand Weapon III]|h|r"},["Wolfshear Leggings"]={SubType="Cloth",Level=61,id=13206,StackCount=1,Rarity=3,MinLevel=56,SellPrice=19880,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:13206::::::::40:::::::|h[Wolfshear Leggings]|h|r"},["Copper Chain Belt"]={SubType="Mail",Level=11,id=2851,StackCount=1,Rarity=1,MinLevel=6,SellPrice=56,Texture=132491,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:2851::::::::40:::::::|h[Copper Chain Belt]|h|r"},["Azora's Will"]={SubType="Miscellaneous",Level=27,id=4999,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1052,Texture=132518,Type="Armor",Link="|cff1eff00|Hitem:4999::::::::40:::::::|h[Azora's Will]|h|r",EquipLoc="INVTYPE_FINGER"},["Test Block Chest"]={SubType="Plate",Level=60,id=13715,StackCount=1,Rarity=1,MinLevel=55,SellPrice=9488,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13715::::::::40:::::::|h[Test Block Chest]|h|r"},["Elunarian Silk Robes"]={SubType="Cloth",Level=64,id=14464,StackCount=1,Rarity=2,MinLevel=59,SellPrice=20822,Texture=132680,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14464::::::::40:::::::|h[Elunarian Silk Robes]|h|r"},["Champion's Chain Headguard"]={SubType="Mail",Level=63,id=16526,StackCount=1,Rarity=3,MinLevel=58,SellPrice=13154,Texture=133071,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16526::::::::40:::::::|h[Champion's Chain Headguard]|h|r",Type="Armor"},["Husk of Naraxis"]={SubType="Mail",Level=27,id=4448,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1991,Texture=134321,Type="Armor",Link="|cff1eff00|Hitem:4448::::::::40:::::::|h[Husk of Naraxis]|h|r",EquipLoc="INVTYPE_CHEST"},["Dwarven Explorer's Monocle (Test)"]={SubType="Cloth",Level=10,id=1163,StackCount=1,Rarity=1,MinLevel=5,SellPrice=44,Texture=134442,EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:1163::::::::40:::::::|h[Dwarven Explorer's Monocle (Test)]|h|r",Type="Armor"},["Wrangling Spaulders"]={SubType="Mail",Level=38,id=15698,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4273,Texture=135045,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15698::::::::40:::::::|h[Wrangling Spaulders]|h|r",Type="Armor"},["Lobster Stew"]={SubType="Consumable",Level=55,id=13933,StackCount=20,Rarity=1,MinLevel=45,SellPrice=14,Texture=132804,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13933::::::::40:::::::|h[Lobster Stew]|h|r"},["Imperial Plate Helm"]={SubType="Plate",Level=59,id=12427,StackCount=1,Rarity=2,MinLevel=54,SellPrice=12106,Texture=133124,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:12427::::::::40:::::::|h[Imperial Plate Helm]|h|r"},["Warlord's Dreadweave Hood"]={SubType="Cloth",Level=74,id=17591,StackCount=1,Rarity=4,MinLevel=60,SellPrice=19121,Texture=133076,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:17591::::::::40:::::::|h[Warlord's Dreadweave Hood]|h|r",Type="Armor"},["Lesser Healing Potion"]={SubType="Consumable",Level=13,id=858,StackCount=5,Rarity=1,MinLevel=3,SellPrice=25,Texture=134830,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:858::::::::40:::::::|h[Lesser Healing Potion]|h|r"},["Pattern: Living Breastplate"]={SubType="Leatherworking",Level=60,id=15771,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7500,Texture=134939,EquipLoc="",Link="|cff0070dd|Hitem:15771::::::::40:::::::|h[Pattern: Living Breastplate]|h|r",Type="Recipe"},["Pattern: Heavy Scorpid Bracers"]={SubType="Leatherworking",Level=51,id=15724,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15724::::::::40:::::::|h[Pattern: Heavy Scorpid Bracers]|h|r",Type="Recipe"},["Knight-Lieutenant's Dreadweave Walkers"]={SubType="Cloth",Level=66,id=23283,StackCount=1,Rarity=3,MinLevel=60,SellPrice=10307,Texture=132539,Link="|cff0070dd|Hitem:23283::::::::40:::::::|h[Knight-Lieutenant's Dreadweave Walkers]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["A Crazy Grab Bag"]={SubType="Junk",Level=55,id=15902,StackCount=1,Rarity=1,MinLevel=0,SellPrice=20000,Texture=132594,EquipLoc="",Link="|cffffffff|Hitem:15902::::::::40:::::::|h[A Crazy Grab Bag]|h|r",Type="Miscellaneous"},["Enigma Shoulderpads"]={SubType="Cloth",Level=78,id=21345,StackCount=1,Rarity=4,MinLevel=60,SellPrice=49895,Texture=135034,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:21345::::::::40:::::::|h[Enigma Shoulderpads]|h|r"},["Mutilated Rat Carcass"]={SubType="Junk",Level=15,id=8427,StackCount=20,Rarity=0,MinLevel=0,SellPrice=0,Texture=134356,Link="|cff9d9d9d|Hitem:8427::::::::40:::::::|h[Mutilated Rat Carcass]|h|r",EquipLoc="",Type="Miscellaneous"},["Formula: Powerful Anti-Venom"]={SubType="First Aid",Level=58,id=19442,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25000,Texture=134939,Link="|cffffffff|Hitem:19442::::::::40:::::::|h[Formula: Powerful Anti-Venom]|h|r",EquipLoc="",Type="Recipe"},["Qiraji Martial Drape"]={SubType="Quest",Level=1,id=20885,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134883,Link="|cff0070dd|Hitem:20885::::::::40:::::::|h[Qiraji Martial Drape]|h|r",EquipLoc="",Type="Quest"},["Sword of Serenity"]={SubType="One-Handed Swords",Level=44,id=6829,StackCount=1,Rarity=3,MinLevel=0,SellPrice=18714,Texture=135328,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:6829::::::::40:::::::|h[Sword of Serenity]|h|r"},["Tablet of Lightning Bolt II"]={SubType="Book",Level=10,id=1037,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=134459,Type="Recipe",Link="|cffffffff|Hitem:1037::::::::40:::::::|h[Tablet of Lightning Bolt II]|h|r",EquipLoc=""},["Left-Handed Blades"]={SubType="Fist Weapons",Level=35,id=15909,StackCount=1,Rarity=1,MinLevel=30,SellPrice=4421,Texture=132941,EquipLoc="INVTYPE_WEAPONOFFHAND",Link="|cffffffff|Hitem:15909::::::::40:::::::|h[Left-Handed Blades]|h|r",Type="Weapon"},["Defiler's Leather Boots"]={SubType="Leather",Level=63,id=20186,StackCount=1,Rarity=3,MinLevel=58,SellPrice=20645,Texture=132562,Link="|cff0070dd|Hitem:20186::::::::40:::::::|h[Defiler's Leather Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Cenarion Leggings"]={SubType="Leather",Level=66,id=16835,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42315,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16835::::::::40:::::::|h[Cenarion Leggings]|h|r",Type="Armor"},["Huntsman's Cap"]={SubType="Leather",Level=40,id=9889,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4240,Texture=132514,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9889::::::::40:::::::|h[Huntsman's Cap]|h|r"},["Hibernal Gloves"]={SubType="Cloth",Level=47,id=8110,StackCount=1,Rarity=2,MinLevel=42,SellPrice=3622,Texture=132957,Link="|cff1eff00|Hitem:8110::::::::40:::::::|h[Hibernal Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Magma Forged Band"]={SubType="Miscellaneous",Level=57,id=22255,StackCount=1,Rarity=3,MinLevel=52,SellPrice=32802,Texture=133346,Link="|cff0070dd|Hitem:22255::::::::40:::::::|h[Magma Forged Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Eidolon Talisman"]={SubType="Miscellaneous",Level=59,id=18340,StackCount=1,Rarity=3,MinLevel=54,SellPrice=28853,Texture=133447,Type="Armor",Link="|cff0070dd|Hitem:18340::::::::40:::::::|h[Eidolon Talisman]|h|r",EquipLoc="INVTYPE_NECK"},["Pattern: Hillman's Belt"]={SubType="Leatherworking",Level=24,id=4294,StackCount=1,Rarity=2,MinLevel=0,SellPrice=400,Texture=134939,Link="|cff1eff00|Hitem:4294::::::::40:::::::|h[Pattern: Hillman's Belt]|h|r",EquipLoc="",Type="Recipe"},["Pattern: Stormshroud Pants"]={SubType="Leatherworking",Level=55,id=15741,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15741::::::::40:::::::|h[Pattern: Stormshroud Pants]|h|r",Type="Recipe"},["Tablet of Kurniya"]={SubType="Quest",Level=1,id=11126,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134417,Type="Quest",Link="|cffffffff|Hitem:11126::::::::40:::::::|h[Tablet of Kurniya]|h|r",EquipLoc=""},["Monster - Throwing Spear"]={SubType="Thrown",Level=1,id=5870,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135128,EquipLoc="INVTYPE_THROWN",Link="|cff9d9d9d|Hitem:5870::::::::40:::::::|h[Monster - Throwing Spear]|h|r",Type="Weapon"},["Eyegouger"]={SubType="Polearms",Level=48,id=9480,StackCount=1,Rarity=3,MinLevel=43,SellPrice=31725,Texture=135128,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9480::::::::40:::::::|h[Eyegouger]|h|r"},["Leggings of Frenzied Magic"]={SubType="Leather",Level=57,id=22271,StackCount=1,Rarity=3,MinLevel=52,SellPrice=22328,Texture=134646,Link="|cff0070dd|Hitem:22271::::::::40:::::::|h[Leggings of Frenzied Magic]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Studded Boots"]={SubType="Leather",Level=37,id=2467,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1886,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:2467::::::::40:::::::|h[Studded Boots]|h|r",Type="Armor"},["Monster - Fire Arrow"]={SubType="Arrow",Level=1,id=19082,StackCount=200,Rarity=1,MinLevel=1,SellPrice=0,Texture=132382,Link="|cffffffff|Hitem:19082::::::::40:::::::|h[Monster - Fire Arrow]|h|r",EquipLoc="INVTYPE_AMMO",Type="Projectile"},["Deprecated Recipe: Kodo Skin Bag"]={SubType="Cooking",Level=10,id=4997,StackCount=1,Rarity=1,MinLevel=0,SellPrice=280,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4997::::::::40:::::::|h[Deprecated Recipe: Kodo Skin Bag]|h|r"},["Treated Ancient Blade"]={SubType="Quest",Level=1,id=18492,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=135329,Type="Quest",Link="|cffa335ee|Hitem:18492::::::::40:::::::|h[Treated Ancient Blade]|h|r",EquipLoc=""},["Scouting Buckler"]={SubType="Shields",Level=22,id=6571,StackCount=1,Rarity=2,MinLevel=17,SellPrice=1166,Texture=134948,Type="Armor",Link="|cff1eff00|Hitem:6571::::::::40:::::::|h[Scouting Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Simple Linen Pants"]={SubType="Cloth",Level=7,id=10045,StackCount=1,Rarity=1,MinLevel=2,SellPrice=23,Texture=134591,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:10045::::::::40:::::::|h[Simple Linen Pants]|h|r",Type="Armor"},["Satyr's Lash"]={SubType="Daggers",Level=50,id=17752,StackCount=1,Rarity=3,MinLevel=45,SellPrice=28785,Texture=135645,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:17752::::::::40:::::::|h[Satyr's Lash]|h|r",Type="Weapon"},["Ceremonial Buckler"]={SubType="Shields",Level=15,id=3653,StackCount=1,Rarity=2,MinLevel=10,SellPrice=438,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:3653::::::::40:::::::|h[Ceremonial Buckler]|h|r"},["Wyrmthalak's Shackles"]={SubType="Cloth",Level=60,id=13958,StackCount=1,Rarity=3,MinLevel=0,SellPrice=9505,Texture=132603,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13958::::::::40:::::::|h[Wyrmthalak's Shackles]|h|r"},["Miniature Platinum Discs"]={SubType="Quest",Level=1,id=6064,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134375,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6064::::::::40:::::::|h[Miniature Platinum Discs]|h|r"},["Trickster's Pauldrons"]={SubType="Leather",Level=39,id=15368,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3674,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15368::::::::40:::::::|h[Trickster's Pauldrons]|h|r",Type="Armor"},["Greater Healthstone"]={SubType="Consumable",Level=46,id=5510,StackCount=1,Rarity=1,MinLevel=36,SellPrice=0,Texture=135230,Link="|cffffffff|Hitem:5510::::::::40:::::::|h[Greater Healthstone]|h|r",EquipLoc="",Type="Consumable"},["Hardwood Cudgel"]={SubType="One-Handed Maces",Level=20,id=5757,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1363,Texture=133486,Link="|cff1eff00|Hitem:5757::::::::40:::::::|h[Hardwood Cudgel]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Virtuous Robe"]={SubType="Cloth",Level=60,id=22083,StackCount=1,Rarity=4,MinLevel=0,SellPrice=27632,Texture=132652,Link="|cffa335ee|Hitem:22083::::::::40:::::::|h[Virtuous Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Miners' Gear"]={SubType="Quest",Level=1,id=2640,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133622,Link="|cffffffff|Hitem:2640::::::::40:::::::|h[Miners' Gear]|h|r",EquipLoc="",Type="Quest"},["Bonecaster's Star"]={SubType="Miscellaneous",Level=60,id=15986,StackCount=1,Rarity=2,MinLevel=55,SellPrice=10813,Texture=135160,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15986::::::::40:::::::|h[Bonecaster's Star]|h|r",Type="Armor"},["Legplates of Wrath"]={SubType="Plate",Level=76,id=16962,StackCount=1,Rarity=4,MinLevel=60,SellPrice=59652,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16962::::::::40:::::::|h[Legplates of Wrath]|h|r",Type="Armor"},["Tome of Cone of Cold V"]={SubType="Book",Level=58,id=8888,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=133739,Link="|cffffffff|Hitem:8888::::::::40:::::::|h[Tome of Cone of Cold V]|h|r",EquipLoc="",Type="Recipe"},["Monster - Dagger, Exotic B01 Red"]={SubType="Daggers",Level=1,id=17283,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135638,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:17283::::::::40:::::::|h[Monster - Dagger, Exotic B01 Red]|h|r",Type="Weapon"},["Firemane Leggings"]={SubType="Mail",Level=39,id=13129,StackCount=1,Rarity=3,MinLevel=34,SellPrice=7621,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:13129::::::::40:::::::|h[Firemane Leggings]|h|r"},["Black Metal Axe"]={SubType="One-Handed Axes",Level=24,id=885,StackCount=1,Rarity=2,MinLevel=19,SellPrice=2300,Texture=132405,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:885::::::::40:::::::|h[Black Metal Axe]|h|r"},["Virtuous Skirt"]={SubType="Cloth",Level=66,id=22085,StackCount=1,Rarity=3,MinLevel=0,SellPrice=26007,Texture=134588,Link="|cff0070dd|Hitem:22085::::::::40:::::::|h[Virtuous Skirt]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Gauntlets of the Righteous Champion"]={SubType="Plate",Level=78,id=21623,StackCount=1,Rarity=4,MinLevel=60,SellPrice=32315,Texture=132960,Link="|cffa335ee|Hitem:21623::::::::40:::::::|h[Gauntlets of the Righteous Champion]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Gryphon Rider's Leggings"]={SubType="Leather",Level=53,id=9652,StackCount=1,Rarity=2,MinLevel=0,SellPrice=13466,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9652::::::::40:::::::|h[Gryphon Rider's Leggings]|h|r"},["Knight-Captain's Silk Legguards"]={SubType="Cloth",Level=68,id=23304,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15203,Texture=134591,Link="|cff0070dd|Hitem:23304::::::::40:::::::|h[Knight-Captain's Silk Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Plagueheart Sandals"]={SubType="Cloth",Level=86,id=22508,StackCount=1,Rarity=4,MinLevel=60,SellPrice=71878,Texture=132579,Link="|cffa335ee|Hitem:22508::::::::40:::::::|h[Plagueheart Sandals]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Drake-scale Vest"]={SubType="Mail",Level=46,id=1677,StackCount=1,Rarity=2,MinLevel=41,SellPrice=10093,Texture=132628,Link="|cff1eff00|Hitem:1677::::::::40:::::::|h[Drake-scale Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Gyromechanic Gear"]={SubType="Quest",Level=1,id=3084,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134063,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3084::::::::40:::::::|h[Gyromechanic Gear]|h|r"},["Deprecated Bottle of Moonshine"]={SubType="Consumable",Level=1,id=1268,StackCount=10,Rarity=1,MinLevel=1,SellPrice=125,Texture=134754,Link="|cffffffff|Hitem:1268::::::::40:::::::|h[Deprecated Bottle of Moonshine]|h|r",EquipLoc="",Type="Consumable"},["Book of Starfire V"]={SubType="Book",Level=50,id=8780,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133743,Link="|cffffffff|Hitem:8780::::::::40:::::::|h[Book of Starfire V]|h|r",EquipLoc="",Type="Recipe"},["Burning Robes"]={SubType="Cloth",Level=37,id=2617,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2198,Texture=132681,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:2617::::::::40:::::::|h[Burning Robes]|h|r"},["zzOLDCodex of Prayer of Fortitude"]={SubType="Book",Level=36,id=17412,StackCount=1,Rarity=1,MinLevel=36,SellPrice=2,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:17412::::::::40:::::::|h[zzOLDCodex of Prayer of Fortitude]|h|r",Type="Recipe"},["Jagged Chain Vest"]={SubType="Mail",Level=5,id=4922,StackCount=1,Rarity=1,MinLevel=0,SellPrice=15,Texture=132624,Type="Armor",Link="|cffffffff|Hitem:4922::::::::40:::::::|h[Jagged Chain Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Ghostwalker Cloak"]={SubType="Cloth",Level=33,id=15147,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1753,Texture=133758,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15147::::::::40:::::::|h[Ghostwalker Cloak]|h|r",Type="Armor"},["General's Satin Cinch"]={SubType="Cloth",Level=65,id=17621,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8751,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:17621::::::::40:::::::|h[General's Satin Cinch]|h|r",Type="Armor"},["Aurora Mantle"]={SubType="Cloth",Level=39,id=4729,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3036,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:4729::::::::40:::::::|h[Aurora Mantle]|h|r",Type="Armor"},["Devout Bracers"]={SubType="Cloth",Level=57,id=16697,StackCount=1,Rarity=3,MinLevel=52,SellPrice=8577,Texture=132520,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16697::::::::40:::::::|h[Devout Bracers]|h|r",Type="Armor"},["Burnished Girdle"]={SubType="Mail",Level=20,id=4697,StackCount=1,Rarity=2,MinLevel=15,SellPrice=435,Texture=132523,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4697::::::::40:::::::|h[Burnished Girdle]|h|r"},["Frontier Britches"]={SubType="Leather",Level=17,id=1436,StackCount=1,Rarity=2,MinLevel=0,SellPrice=458,Texture=134585,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:1436::::::::40:::::::|h[Frontier Britches]|h|r",Type="Armor"},["Toxic Horror Droplet"]={SubType="Quest",Level=1,id=12822,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12822::::::::40:::::::|h[Toxic Horror Droplet]|h|r"},["Grimesilt Outhouse Key"]={SubType="Quest",Level=43,id=11818,StackCount=1,Rarity=1,MinLevel=43,SellPrice=0,Texture=134246,Type="Quest",Link="|cffffffff|Hitem:11818::::::::40:::::::|h[Grimesilt Outhouse Key]|h|r",EquipLoc=""},["Recipe: Sagefish Delight"]={SubType="Cooking",Level=35,id=21219,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=134939,Link="|cffffffff|Hitem:21219::::::::40:::::::|h[Recipe: Sagefish Delight]|h|r",EquipLoc="",Type="Recipe"},["Ginn-su Sword"]={SubType="One-Handed Swords",Level=41,id=9424,StackCount=1,Rarity=3,MinLevel=36,SellPrice=13594,Texture=135352,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9424::::::::40:::::::|h[Ginn-su Sword]|h|r"},["Acolyte's Shoes"]={SubType="Miscellaneous",Level=1,id=59,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132535,Type="Armor",Link="|cffffffff|Hitem:59::::::::40:::::::|h[Acolyte's Shoes]|h|r",EquipLoc="INVTYPE_FEET"},["Kaylari Shoulders"]={SubType="Leather",Level=50,id=10745,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8498,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10745::::::::40:::::::|h[Kaylari Shoulders]|h|r",Type="Armor"},["Ivycloth Cloak"]={SubType="Cloth",Level=25,id=9794,StackCount=1,Rarity=2,MinLevel=20,SellPrice=829,Texture=133767,Link="|cff1eff00|Hitem:9794::::::::40:::::::|h[Ivycloth Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Cluster Launcher"]={SubType="Consumable",Level=1,id=21570,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133861,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:21570::::::::40:::::::|h[Cluster Launcher]|h|r"},["Denwatcher's Shoulders"]={SubType="Mail",Level=60,id=18494,StackCount=1,Rarity=3,MinLevel=55,SellPrice=21444,Texture=135046,Type="Armor",Link="|cff0070dd|Hitem:18494::::::::40:::::::|h[Denwatcher's Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["The Green Tower"]={SubType="Shields",Level=41,id=1204,StackCount=1,Rarity=4,MinLevel=36,SellPrice=12577,Texture=134952,EquipLoc="INVTYPE_SHIELD",Link="|cffa335ee|Hitem:1204::::::::40:::::::|h[The Green Tower]|h|r",Type="Armor"},["Staff of Balzaphon"]={SubType="Staves",Level=60,id=23124,StackCount=1,Rarity=3,MinLevel=55,SellPrice=59304,Texture=135144,Link="|cff0070dd|Hitem:23124::::::::40:::::::|h[Staff of Balzaphon]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Diet McWeaksauce"]={SubType="Consumable",Level=59,id=23578,StackCount=10,Rarity=1,MinLevel=49,SellPrice=0,Texture=134856,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:23578::::::::40:::::::|h[Diet McWeaksauce]|h|r"},["Mantle of Honor"]={SubType="Cloth",Level=35,id=3560,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2102,Texture=135036,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:3560::::::::40:::::::|h[Mantle of Honor]|h|r"},["Siege Bow"]={SubType="Bows",Level=53,id=15294,StackCount=1,Rarity=2,MinLevel=48,SellPrice=20135,Texture=135495,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:15294::::::::40:::::::|h[Siege Bow]|h|r",Type="Weapon"},["Bloody Bear Paw"]={SubType="Junk",Level=1,id=2940,StackCount=5,Rarity=0,MinLevel=0,SellPrice=43,Texture=134297,Link="|cff9d9d9d|Hitem:2940::::::::40:::::::|h[Bloody Bear Paw]|h|r",EquipLoc="",Type="Miscellaneous"},["Primed Musket"]={SubType="Guns",Level=57,id=13825,StackCount=1,Rarity=0,MinLevel=52,SellPrice=10168,Texture=135610,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:13825::::::::40:::::::|h[Primed Musket]|h|r"},["Orendil's Cure"]={SubType="Quest",Level=1,id=5460,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134721,EquipLoc="",Link="|cffffffff|Hitem:5460::::::::40:::::::|h[Orendil's Cure]|h|r",Type="Quest"},["Metal Stave"]={SubType="Staves",Level=37,id=3784,StackCount=1,Rarity=0,MinLevel=32,SellPrice=4208,Texture=135147,Type="Weapon",Link="|cff9d9d9d|Hitem:3784::::::::40:::::::|h[Metal Stave]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Encrypted Scroll"]={SubType="Quest",Level=1,id=9559,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9559::::::::40:::::::|h[Encrypted Scroll]|h|r"},["Dragonstalker's Greaves"]={SubType="Mail",Level=76,id=16941,StackCount=1,Rarity=4,MinLevel=60,SellPrice=67178,Texture=132588,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16941::::::::40:::::::|h[Dragonstalker's Greaves]|h|r",Type="Armor"},["Heartwood Girdle"]={SubType="Leather",Level=25,id=7000,StackCount=1,Rarity=2,MinLevel=0,SellPrice=650,Texture=132493,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:7000::::::::40:::::::|h[Heartwood Girdle]|h|r"},["Band of Dark Dominion"]={SubType="Miscellaneous",Level=70,id=19434,StackCount=1,Rarity=4,MinLevel=60,SellPrice=80863,Texture=133366,Link="|cffa335ee|Hitem:19434::::::::40:::::::|h[Band of Dark Dominion]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Evocator's Blade"]={SubType="Daggers",Level=23,id=2567,StackCount=1,Rarity=3,MinLevel=18,SellPrice=2509,Texture=135651,Type="Weapon",Link="|cff0070dd|Hitem:2567::::::::40:::::::|h[Evocator's Blade]|h|r",EquipLoc="INVTYPE_WEAPON"},["Barrel of Thunder Ale"]={SubType="Quest",Level=1,id=2666,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132621,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2666::::::::40:::::::|h[Barrel of Thunder Ale]|h|r"},["Monster - Shield, Horde B03"]={SubType="Shields",Level=1,id=13319,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:13319::::::::40:::::::|h[Monster - Shield, Horde B03]|h|r"},["Arena Grand Master"]={SubType="Miscellaneous",Level=55,id=19024,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10031,Texture=133599,Link="|cff0070dd|Hitem:19024::::::::40:::::::|h[Arena Grand Master]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Deprecated Encrypted Letterr"]={SubType="Quest",Level=1,id=3504,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134941,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3504::::::::40:::::::|h[Deprecated Encrypted Letterr]|h|r"},["Serpent Slicer"]={SubType="One-Handed Swords",Level=49,id=13035,StackCount=1,Rarity=3,MinLevel=44,SellPrice=25141,Texture=135343,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13035::::::::40:::::::|h[Serpent Slicer]|h|r"},["Guerrilla Armor"]={SubType="Mail",Level=15,id=2273,StackCount=1,Rarity=2,MinLevel=10,SellPrice=436,Texture=132626,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:2273::::::::40:::::::|h[Guerrilla Armor]|h|r"},["Thoughtcast Boots"]={SubType="Cloth",Level=38,id=10578,StackCount=1,Rarity=3,MinLevel=33,SellPrice=3377,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:10578::::::::40:::::::|h[Thoughtcast Boots]|h|r",Type="Armor"},["Pattern: Ghostweave Belt"]={SubType="Tailoring",Level=53,id=14473,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14473::::::::40:::::::|h[Pattern: Ghostweave Belt]|h|r"},["Sentinel's Guard"]={SubType="Plate",Level=45,id=9664,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5002,Texture=133121,Link="|cff1eff00|Hitem:9664::::::::40:::::::|h[Sentinel's Guard]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Medium Shot Pouch"]={SubType="Ammo Pouch",Level=15,id=11363,StackCount=1,Rarity=1,MinLevel=10,SellPrice=250,Texture=133581,Type="Quiver",Link="|cffffffff|Hitem:11363::::::::40:::::::|h[Medium Shot Pouch]|h|r",EquipLoc="INVTYPE_BAG"},["Schematic: Firework Launcher"]={SubType="Engineering",Level=45,id=21738,StackCount=1,Rarity=2,MinLevel=0,SellPrice=875,Texture=134942,Link="|cff1eff00|Hitem:21738::::::::40:::::::|h[Schematic: Firework Launcher]|h|r",EquipLoc="",Type="Recipe"},["Tome of Detect Magic"]={SubType="Book",Level=16,id=8805,StackCount=1,Rarity=1,MinLevel=16,SellPrice=325,Texture=133739,Link="|cffffffff|Hitem:8805::::::::40:::::::|h[Tome of Detect Magic]|h|r",EquipLoc="",Type="Recipe"},["OLDRugged Trapper's Belt"]={SubType="Miscellaneous",Level=1,id=146,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132493,Link="|cffffffff|Hitem:146::::::::40:::::::|h[OLDRugged Trapper's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Wrangler's Mantle"]={SubType="Leather",Level=28,id=15338,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1387,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15338::::::::40:::::::|h[Wrangler's Mantle]|h|r",Type="Armor"},["Scout's Tabard"]={SubType="Miscellaneous",Level=20,id=15197,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134473,EquipLoc="INVTYPE_TABARD",Link="|cffffffff|Hitem:15197::::::::40:::::::|h[Scout's Tabard]|h|r",Type="Armor"},["Black War Ram"]={SubType="Junk",Level=40,id=18244,StackCount=1,Rarity=4,MinLevel=40,SellPrice=0,Texture=132248,Type="Miscellaneous",Link="|cffa335ee|Hitem:18244::::::::40:::::::|h[Black War Ram]|h|r",EquipLoc=""},["Orc Crusher"]={SubType="Two-Handed Maces",Level=27,id=6093,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4418,Texture=133482,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:6093::::::::40:::::::|h[Orc Crusher]|h|r"},["19 Pound Lobster"]={SubType="Junk",Level=55,id=13911,StackCount=1,Rarity=1,MinLevel=0,SellPrice=80,Texture=133900,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13911::::::::40:::::::|h[19 Pound Lobster]|h|r"},["Hand of Dagun"]={SubType="Quest",Level=1,id=4641,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134294,EquipLoc="",Link="|cffffffff|Hitem:4641::::::::40:::::::|h[Hand of Dagun]|h|r",Type="Quest"},["Qiraji Lord's Insignia"]={SubType="Junk",Level=60,id=21229,StackCount=50,Rarity=1,MinLevel=0,SellPrice=0,Texture=135723,Link="|cffffffff|Hitem:21229::::::::40:::::::|h[Qiraji Lord's Insignia]|h|r",EquipLoc="",Type="Miscellaneous"},["Pattern: Runic Leather Gauntlets"]={SubType="Leatherworking",Level=54,id=15731,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15731::::::::40:::::::|h[Pattern: Runic Leather Gauntlets]|h|r",Type="Recipe"},["Lurker Venom"]={SubType="Quest",Level=1,id=2606,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134799,Type="Quest",Link="|cffffffff|Hitem:2606::::::::40:::::::|h[Lurker Venom]|h|r",EquipLoc=""},["Deprecated Chunk of Boar Meat"]={SubType="Trade Goods",Level=1,id=2060,StackCount=10,Rarity=0,MinLevel=0,SellPrice=8,Texture=133969,Link="|cff9d9d9d|Hitem:2060::::::::40:::::::|h[Deprecated Chunk of Boar Meat]|h|r",EquipLoc="",Type="Trade Goods"},["Deprecated Ceremonial Buckler"]={SubType="Shields",Level=17,id=14609,StackCount=1,Rarity=2,MinLevel=12,SellPrice=600,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14609::::::::40:::::::|h[Deprecated Ceremonial Buckler]|h|r"},["Raging Beast's Blood"]={SubType="Quest",Level=1,id=18590,StackCount=30,Rarity=1,MinLevel=0,SellPrice=0,Texture=134813,Type="Quest",Link="|cffffffff|Hitem:18590::::::::40:::::::|h[Raging Beast's Blood]|h|r",EquipLoc=""},["Dreamless Sleep Potion"]={SubType="Consumable",Level=45,id=12190,StackCount=5,Rarity=1,MinLevel=35,SellPrice=250,Texture=134863,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12190::::::::40:::::::|h[Dreamless Sleep Potion]|h|r"},["Gordok's Gloves"]={SubType="Leather",Level=60,id=18368,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12348,Texture=132935,Type="Armor",Link="|cff0070dd|Hitem:18368::::::::40:::::::|h[Gordok's Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["1300 Test Dagger 63 blue"]={SubType="Daggers",Level=63,id=19313,StackCount=1,Rarity=3,MinLevel=58,SellPrice=58901,Texture=135637,Link="|cff0070dd|Hitem:19313::::::::40:::::::|h[1300 Test Dagger 63 blue]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Cragplate Greaves"]={SubType="Plate",Level=55,id=11919,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9572,Texture=132589,Type="Armor",Link="|cff1eff00|Hitem:11919::::::::40:::::::|h[Cragplate Greaves]|h|r",EquipLoc="INVTYPE_FEET"},["Sturdy Cloth Trousers"]={SubType="Cloth",Level=8,id=3834,StackCount=1,Rarity=1,MinLevel=0,SellPrice=32,Texture=134587,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:3834::::::::40:::::::|h[Sturdy Cloth Trousers]|h|r"},["Tough Scorpid Boots"]={SubType="Mail",Level=47,id=8209,StackCount=1,Rarity=2,MinLevel=42,SellPrice=8375,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:8209::::::::40:::::::|h[Tough Scorpid Boots]|h|r"},["[PH] Brilliant Dawn Hat"]={SubType="Cloth",Level=100,id=13786,StackCount=1,Rarity=1,MinLevel=100,SellPrice=54271,Texture=133116,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:13786::::::::40:::::::|h[[PH] Brilliant Dawn Hat]|h|r"},["Truncheon"]={SubType="One-Handed Maces",Level=34,id=2524,StackCount=1,Rarity=1,MinLevel=29,SellPrice=3838,Texture=133486,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2524::::::::40:::::::|h[Truncheon]|h|r",Type="Weapon"},["Meaty Bat Wing"]={SubType="Trade Goods",Level=5,id=12223,StackCount=10,Rarity=1,MinLevel=0,SellPrice=4,Texture=134360,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12223::::::::40:::::::|h[Meaty Bat Wing]|h|r"},["Imperial Red Tunic"]={SubType="Cloth",Level=56,id=8245,StackCount=1,Rarity=2,MinLevel=51,SellPrice=12922,Texture=135007,Link="|cff1eff00|Hitem:8245::::::::40:::::::|h[Imperial Red Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Empty Greater Bloodstone"]={SubType="Consumable",Level=38,id=5229,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135230,EquipLoc="",Link="|cffffffff|Hitem:5229::::::::40:::::::|h[Empty Greater Bloodstone]|h|r",Type="Consumable"},["Copper Shortsword"]={SubType="One-Handed Swords",Level=9,id=2847,StackCount=1,Rarity=1,MinLevel=4,SellPrice=110,Texture=135327,Link="|cffffffff|Hitem:2847::::::::40:::::::|h[Copper Shortsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["High Apothecary Cloak"]={SubType="Cloth",Level=30,id=3749,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1320,Texture=133765,Link="|cff1eff00|Hitem:3749::::::::40:::::::|h[High Apothecary Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Light Plate Pants"]={SubType="Plate",Level=55,id=8085,StackCount=1,Rarity=0,MinLevel=50,SellPrice=5253,Texture=134584,Link="|cff9d9d9d|Hitem:8085::::::::40:::::::|h[Light Plate Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Handguards of Savagery"]={SubType="Mail",Level=63,id=22343,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16476,Texture=132945,Link="|cff0070dd|Hitem:22343::::::::40:::::::|h[Handguards of Savagery]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Dwarven Tree Chopper"]={SubType="Two-Handed Axes",Level=20,id=2907,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1755,Texture=135419,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:2907::::::::40:::::::|h[Dwarven Tree Chopper]|h|r",Type="Weapon"},["Ironhide Gauntlets"]={SubType="Mail",Level=52,id=15644,StackCount=1,Rarity=2,MinLevel=47,SellPrice=8130,Texture=132956,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15644::::::::40:::::::|h[Ironhide Gauntlets]|h|r",Type="Armor"},["Blade of the New Moon"]={SubType="Daggers",Level=62,id=18372,StackCount=1,Rarity=3,MinLevel=57,SellPrice=56716,Texture=135654,Type="Weapon",Link="|cff0070dd|Hitem:18372::::::::40:::::::|h[Blade of the New Moon]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Bloodstone Amulet"]={SubType="Quest",Level=1,id=4495,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133292,Type="Quest",Link="|cffffffff|Hitem:4495::::::::40:::::::|h[Bloodstone Amulet]|h|r",EquipLoc=""},["Embersilk Boots"]={SubType="Cloth",Level=38,id=14236,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2909,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14236::::::::40:::::::|h[Embersilk Boots]|h|r"},["Kodo Horn"]={SubType="Quest",Level=1,id=15852,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,EquipLoc="",Link="|cffffffff|Hitem:15852::::::::40:::::::|h[Kodo Horn]|h|r",Type="Quest"},["Whipweed Heart"]={SubType="Junk",Level=0,id=19911,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134187,Link="|cffffffff|Hitem:19911::::::::40:::::::|h[Whipweed Heart]|h|r",EquipLoc="",Type="Miscellaneous"},["Vilebranch Coin"]={SubType="Quest",Level=1,id=19702,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=133796,Link="|cff1eff00|Hitem:19702::::::::40:::::::|h[Vilebranch Coin]|h|r",EquipLoc="",Type="Quest"},["Dragonstalker's Belt"]={SubType="Mail",Level=76,id=16936,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42637,Texture=132517,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16936::::::::40:::::::|h[Dragonstalker's Belt]|h|r",Type="Armor"},["Black Kingsnake"]={SubType="Junk",Level=30,id=10360,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=136040,EquipLoc="",Link="|cffffffff|Hitem:10360::::::::40:::::::|h[Black Kingsnake]|h|r",Type="Miscellaneous"},["Runed Truesilver Rod"]={SubType="Trade Goods",Level=40,id=11145,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=135148,Type="Trade Goods",Link="|cffffffff|Hitem:11145::::::::40:::::::|h[Runed Truesilver Rod]|h|r",EquipLoc=""},["Deprecated Forest Silk Gloves"]={SubType="Cloth",Level=9,id=2573,StackCount=1,Rarity=0,MinLevel=4,SellPrice=15,Texture=132940,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:2573::::::::40:::::::|h[Deprecated Forest Silk Gloves]|h|r"},["Rune-Inscribed Tablet"]={SubType="Quest",Level=1,id=9562,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134455,Link="|cffffffff|Hitem:9562::::::::40:::::::|h[Rune-Inscribed Tablet]|h|r",EquipLoc="",Type="Quest"},["Hibernal Pants"]={SubType="Cloth",Level=49,id=8112,StackCount=1,Rarity=2,MinLevel=44,SellPrice=8436,Texture=134594,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:8112::::::::40:::::::|h[Hibernal Pants]|h|r"},["Savage Bear Claw"]={SubType="Junk",Level=1,id=11410,StackCount=10,Rarity=0,MinLevel=0,SellPrice=578,Texture=134296,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11410::::::::40:::::::|h[Savage Bear Claw]|h|r",EquipLoc=""},["Gunther's Spellbook"]={SubType="Quest",Level=1,id=3016,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133733,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3016::::::::40:::::::|h[Gunther's Spellbook]|h|r"},["Sentinel Trousers"]={SubType="Leather",Level=39,id=7440,StackCount=1,Rarity=2,MinLevel=34,SellPrice=5042,Texture=134706,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7440::::::::40:::::::|h[Sentinel Trousers]|h|r"},["Malfurion's Signet Ring"]={SubType="Miscellaneous",Level=72,id=20600,StackCount=1,Rarity=4,MinLevel=60,SellPrice=98660,Texture=133379,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:20600::::::::40:::::::|h[Malfurion's Signet Ring]|h|r"},["Aged Gorilla Sinew"]={SubType="Quest",Level=1,id=3862,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134251,EquipLoc="",Link="|cffffffff|Hitem:3862::::::::40:::::::|h[Aged Gorilla Sinew]|h|r",Type="Quest"},["Earthshaker"]={SubType="Two-Handed Maces",Level=66,id=17073,StackCount=1,Rarity=4,MinLevel=60,SellPrice=113631,Texture=133041,EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:17073::::::::40:::::::|h[Earthshaker]|h|r",Type="Weapon"},["Darktide Cape"]={SubType="Cloth",Level=42,id=4114,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5826,Texture=133758,Link="|cff1eff00|Hitem:4114::::::::40:::::::|h[Darktide Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Juju Power"]={SubType="Quest",Level=60,id=12451,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1500,Texture=134313,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12451::::::::40:::::::|h[Juju Power]|h|r"},["Ghostwalker Pads"]={SubType="Leather",Level=36,id=15150,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2951,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15150::::::::40:::::::|h[Ghostwalker Pads]|h|r",Type="Armor"},["Buccaneer's Uniform"]={SubType="Junk",Level=1,id=22746,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133640,Link="|cffffffff|Hitem:22746::::::::40:::::::|h[Buccaneer's Uniform]|h|r",EquipLoc="",Type="Miscellaneous"},["Breezecloud Bracers"]={SubType="Cloth",Level=54,id=11875,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5776,Texture=132612,Type="Armor",Link="|cff1eff00|Hitem:11875::::::::40:::::::|h[Breezecloud Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Large Hoof"]={SubType="Junk",Level=1,id=5871,StackCount=5,Rarity=0,MinLevel=0,SellPrice=318,Texture=132368,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5871::::::::40:::::::|h[Large Hoof]|h|r"},["Schematic: Red Firework"]={SubType="Engineering",Level=30,id=18647,StackCount=1,Rarity=1,MinLevel=0,SellPrice=450,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:18647::::::::40:::::::|h[Schematic: Red Firework]|h|r",EquipLoc=""},["Cryptbone Staff"]={SubType="Staves",Level=26,id=2013,StackCount=1,Rarity=2,MinLevel=21,SellPrice=3644,Texture=135163,Link="|cff1eff00|Hitem:2013::::::::40:::::::|h[Cryptbone Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Thornblade"]={SubType="Daggers",Level=20,id=2908,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1409,Texture=135651,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:2908::::::::40:::::::|h[Thornblade]|h|r",Type="Weapon"},["2000 Test Dagger 63 blue"]={SubType="Daggers",Level=63,id=19314,StackCount=1,Rarity=3,MinLevel=58,SellPrice=59114,Texture=135637,Link="|cff0070dd|Hitem:19314::::::::40:::::::|h[2000 Test Dagger 63 blue]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Untested Basilisk Sample"]={SubType="Quest",Level=0,id=9437,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134305,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9437::::::::40:::::::|h[Untested Basilisk Sample]|h|r"},["Ripped Pants"]={SubType="Cloth",Level=5,id=6713,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10,Texture=134587,Type="Armor",Link="|cffffffff|Hitem:6713::::::::40:::::::|h[Ripped Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Hippogryph Hatchling"]={SubType="Junk",Level=1,id=23713,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=132833,Link="|cffffffff|Hitem:23713::::::::40:::::::|h[Hippogryph Hatchling]|h|r",EquipLoc="",Type="Miscellaneous"},["A Dusty Unsent Letter"]={SubType="Quest",Level=1,id=889,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,EquipLoc="",Link="|cffffffff|Hitem:889::::::::40:::::::|h[A Dusty Unsent Letter]|h|r",Type="Quest"},["Runic Stave"]={SubType="Miscellaneous",Level=18,id=15945,StackCount=1,Rarity=2,MinLevel=13,SellPrice=837,Texture=135153,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15945::::::::40:::::::|h[Runic Stave]|h|r",Type="Armor"},["Tanned Leather Boots"]={SubType="Leather",Level=17,id=843,StackCount=1,Rarity=1,MinLevel=12,SellPrice=215,Texture=132592,Link="|cffffffff|Hitem:843::::::::40:::::::|h[Tanned Leather Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Monster - Axe, 2H Horde Massive Spiked Blue"]={SubType="Two-Handed Axes",Level=1,id=18002,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",Link="|cff9d9d9d|Hitem:18002::::::::40:::::::|h[Monster - Axe, 2H Horde Massive Spiked Blue]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Worgen Skull"]={SubType="Quest",Level=1,id=895,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133731,Type="Quest",Link="|cffffffff|Hitem:895::::::::40:::::::|h[Worgen Skull]|h|r",EquipLoc=""},["Horn of the Frostwolf Howler"]={SubType="Junk",Level=60,id=19029,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=134227,Link="|cffa335ee|Hitem:19029::::::::40:::::::|h[Horn of the Frostwolf Howler]|h|r",EquipLoc="",Type="Miscellaneous"},["Formidable Crest"]={SubType="Shields",Level=52,id=15633,StackCount=1,Rarity=2,MinLevel=47,SellPrice=16210,Texture=134950,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15633::::::::40:::::::|h[Formidable Crest]|h|r",Type="Armor"},["Idol of the Moon"]={SubType="Idols",Level=65,id=23197,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18717,Texture=134914,Link="|cff0070dd|Hitem:23197::::::::40:::::::|h[Idol of the Moon]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Schematic: Bloodvine Lens"]={SubType="Engineering",Level=65,id=20001,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:20001::::::::40:::::::|h[Schematic: Bloodvine Lens]|h|r",EquipLoc="",Type="Recipe"},["Storm Gauntlets"]={SubType="Mail",Level=59,id=12632,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14099,Texture=132964,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:12632::::::::40:::::::|h[Storm Gauntlets]|h|r"},["Tablet of Verga"]={SubType="Quest",Level=1,id=6535,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134458,Type="Quest",Link="|cffffffff|Hitem:6535::::::::40:::::::|h[Tablet of Verga]|h|r",EquipLoc=""},["Defias Docket"]={SubType="Quest",Level=1,id=5947,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133466,Link="|cffffffff|Hitem:5947::::::::40:::::::|h[Defias Docket]|h|r",EquipLoc="",Type="Quest"},["Soothing Turtle Bisque"]={SubType="Consumable",Level=35,id=3729,StackCount=20,Rarity=1,MinLevel=25,SellPrice=300,Texture=133748,Link="|cffffffff|Hitem:3729::::::::40:::::::|h[Soothing Turtle Bisque]|h|r",EquipLoc="",Type="Consumable"},["Voidwalker Summoning Scroll"]={SubType="Quest",Level=1,id=6544,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6544::::::::40:::::::|h[Voidwalker Summoning Scroll]|h|r"},["Essence Gatherer"]={SubType="Wands",Level=70,id=19435,StackCount=1,Rarity=4,MinLevel=60,SellPrice=79598,Texture=135468,Link="|cffa335ee|Hitem:19435::::::::40:::::::|h[Essence Gatherer]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Deprecated Scalemail Cap"]={SubType="Mail",Level=22,id=3885,StackCount=1,Rarity=1,MinLevel=17,SellPrice=503,Texture=133071,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:3885::::::::40:::::::|h[Deprecated Scalemail Cap]|h|r"},["Ceremonial Leather Ankleguards"]={SubType="Leather",Level=15,id=3311,StackCount=1,Rarity=1,MinLevel=10,SellPrice=152,Texture=132607,Link="|cffffffff|Hitem:3311::::::::40:::::::|h[Ceremonial Leather Ankleguards]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Light Leather Bracers"]={SubType="Leather",Level=14,id=7281,StackCount=1,Rarity=1,MinLevel=9,SellPrice=84,Texture=132603,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:7281::::::::40:::::::|h[Light Leather Bracers]|h|r",Type="Armor"},["Thug Boots"]={SubType="Miscellaneous",Level=1,id=6138,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:6138::::::::40:::::::|h[Thug Boots]|h|r"},["NG-5 Explosives (Red)"]={SubType="Quest",Level=1,id=5694,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133713,Link="|cffffffff|Hitem:5694::::::::40:::::::|h[NG-5 Explosives (Red)]|h|r",EquipLoc="",Type="Quest"},["Chicken Egg"]={SubType="Junk",Level=1,id=11110,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2,Texture=132833,Type="Miscellaneous",Link="|cffffffff|Hitem:11110::::::::40:::::::|h[Chicken Egg]|h|r",EquipLoc=""},["Chimaerok Tenderloin"]={SubType="Trade Goods",Level=60,id=21024,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134026,Link="|cffffffff|Hitem:21024::::::::40:::::::|h[Chimaerok Tenderloin]|h|r",EquipLoc="",Type="Trade Goods"},["Book of Regrowth II"]={SubType="Book",Level=18,id=8756,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8756::::::::40:::::::|h[Book of Regrowth II]|h|r"},["Parrot Cage (Green Wing Macaw)"]={SubType="Junk",Level=20,id=8492,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=136036,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:8492::::::::40:::::::|h[Parrot Cage (Green Wing Macaw)]|h|r"},["Rubbing: Rune of Markri"]={SubType="Quest",Level=0,id=10565,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:10565::::::::40:::::::|h[Rubbing: Rune of Markri]|h|r",Type="Quest"},["Plans: Imperial Plate Chest"]={SubType="Blacksmithing",Level=60,id=12705,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12705::::::::40:::::::|h[Plans: Imperial Plate Chest]|h|r"},["Blood Red Key"]={SubType="Quest",Level=49,id=13140,StackCount=1,Rarity=1,MinLevel=49,SellPrice=0,Texture=134235,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13140::::::::40:::::::|h[Blood Red Key]|h|r"},["Stone of Brownell"]={SubType="Miscellaneous",Level=1,id=6728,StackCount=1,Rarity=6,MinLevel=1,SellPrice=837,Texture=133346,Type="Armor",Link="|cffe6cc80|Hitem:6728::::::::40:::::::|h[Stone of Brownell]|h|r",EquipLoc="INVTYPE_FINGER"},["Tablet of Grace of Air Totem III"]={SubType="Book",Level=60,id=21293,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=134465,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:21293::::::::40:::::::|h[Tablet of Grace of Air Totem III]|h|r"},["Neeka's Report"]={SubType="Quest",Level=1,id=6167,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134944,Link="|cffffffff|Hitem:6167::::::::40:::::::|h[Neeka's Report]|h|r",EquipLoc="",Type="Quest"},["Midnight Orb"]={SubType="Quest",Level=1,id=1261,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134336,EquipLoc="",Link="|cffffffff|Hitem:1261::::::::40:::::::|h[Midnight Orb]|h|r",Type="Quest"},["Owatanka's Tailspike"]={SubType="Quest",Level=10,id=5102,StackCount=1,Rarity=1,MinLevel=10,SellPrice=0,Texture=133723,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5102::::::::40:::::::|h[Owatanka's Tailspike]|h|r"},["Band of Allegiance"]={SubType="Miscellaneous",Level=35,id=18585,StackCount=1,Rarity=3,MinLevel=0,SellPrice=14853,Texture=133351,Type="Armor",Link="|cff0070dd|Hitem:18585::::::::40:::::::|h[Band of Allegiance]|h|r",EquipLoc="INVTYPE_FINGER"},["Might of Cenarius"]={SubType="Miscellaneous",Level=62,id=21189,StackCount=1,Rarity=4,MinLevel=0,SellPrice=188888,Texture=133383,Link="|cffa335ee|Hitem:21189::::::::40:::::::|h[Might of Cenarius]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Feathery Wing"]={SubType="Junk",Level=1,id=11417,StackCount=5,Rarity=0,MinLevel=0,SellPrice=1204,Texture=134303,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11417::::::::40:::::::|h[Feathery Wing]|h|r",EquipLoc=""},["Militia Hammer"]={SubType="One-Handed Maces",Level=5,id=5580,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=133057,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:5580::::::::40:::::::|h[Militia Hammer]|h|r"},["Battleboar Snout"]={SubType="Quest",Level=1,id=4848,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135997,Type="Quest",Link="|cffffffff|Hitem:4848::::::::40:::::::|h[Battleboar Snout]|h|r",EquipLoc=""},["Killmaim"]={SubType="Two-Handed Axes",Level=26,id=13016,StackCount=1,Rarity=3,MinLevel=21,SellPrice=4771,Texture=132401,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13016::::::::40:::::::|h[Killmaim]|h|r"},["Large Bear Bone"]={SubType="One-Handed Maces",Level=28,id=11411,StackCount=1,Rarity=0,MinLevel=23,SellPrice=1484,Texture=133718,Type="Weapon",Link="|cff9d9d9d|Hitem:11411::::::::40:::::::|h[Large Bear Bone]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Blade of Vaulted Secrets"]={SubType="One-Handed Swords",Level=70,id=21413,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135367,Link="|cffa335ee|Hitem:21413::::::::40:::::::|h[Blade of Vaulted Secrets]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Kris of Unspoken Names"]={SubType="Daggers",Level=70,id=21416,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135663,Link="|cffa335ee|Hitem:21416::::::::40:::::::|h[Kris of Unspoken Names]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Darkspear Armsplints"]={SubType="Mail",Level=37,id=4132,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2681,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:4132::::::::40:::::::|h[Darkspear Armsplints]|h|r",Type="Armor"},["Secret Note #1"]={SubType="Quest",Level=0,id=12765,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134943,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12765::::::::40:::::::|h[Secret Note #1]|h|r"},["Test Hit Chance Chest"]={SubType="Plate",Level=60,id=13717,StackCount=1,Rarity=1,MinLevel=55,SellPrice=9488,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13717::::::::40:::::::|h[Test Hit Chance Chest]|h|r"},["Stormpike Insignia Rank 3"]={SubType="Miscellaneous",Level=60,id=17901,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133430,EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:17901::::::::40:::::::|h[Stormpike Insignia Rank 3]|h|r",Type="Armor"},["Sayge's Fortune #16"]={SubType="Junk",Level=1,id=19251,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19251::::::::40:::::::|h[Sayge's Fortune #16]|h|r",EquipLoc="",Type="Miscellaneous"},["Stone Club"]={SubType="One-Handed Maces",Level=40,id=3787,StackCount=1,Rarity=0,MinLevel=35,SellPrice=4289,Texture=133486,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:3787::::::::40:::::::|h[Stone Club]|h|r",Type="Weapon"},["AHNQIRAJ TEST ITEM D PLATE BRACER"]={SubType="Miscellaneous",Level=1,id=21445,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21445::::::::40:::::::|h[AHNQIRAJ TEST ITEM D PLATE BRACER]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Complimentary Beer Token"]={SubType="Junk",Level=1,id=5264,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133788,Link="|cffffffff|Hitem:5264::::::::40:::::::|h[Complimentary Beer Token]|h|r",EquipLoc="",Type="Miscellaneous"},["Overlinked Chain Pants"]={SubType="Mail",Level=43,id=4005,StackCount=1,Rarity=0,MinLevel=38,SellPrice=3477,Texture=134583,Link="|cff9d9d9d|Hitem:4005::::::::40:::::::|h[Overlinked Chain Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Sparkleshell Breastplate"]={SubType="Mail",Level=41,id=15578,StackCount=1,Rarity=2,MinLevel=36,SellPrice=6962,Texture=132751,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15578::::::::40:::::::|h[Sparkleshell Breastplate]|h|r",Type="Armor"},["Dusky Crab Cakes"]={SubType="Quest",Level=1,id=2250,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133950,EquipLoc="",Link="|cffffffff|Hitem:2250::::::::40:::::::|h[Dusky Crab Cakes]|h|r",Type="Quest"},["Platemail Armor"]={SubType="Plate",Level=50,id=8094,StackCount=1,Rarity=1,MinLevel=45,SellPrice=5458,Texture=132739,Link="|cffffffff|Hitem:8094::::::::40:::::::|h[Platemail Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Protector's Band"]={SubType="Miscellaneous",Level=63,id=19514,StackCount=1,Rarity=3,MinLevel=58,SellPrice=18750,Texture=133352,Link="|cff0070dd|Hitem:19514::::::::40:::::::|h[Protector's Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Black Whelp Boots"]={SubType="Leather",Level=18,id=6092,StackCount=1,Rarity=2,MinLevel=0,SellPrice=420,Texture=132539,Type="Armor",Link="|cff1eff00|Hitem:6092::::::::40:::::::|h[Black Whelp Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Cow King's Hide"]={SubType="Leather",Level=51,id=13009,StackCount=1,Rarity=3,MinLevel=46,SellPrice=15167,Texture=132721,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:13009::::::::40:::::::|h[Cow King's Hide]|h|r"},["Doomforged Straightedge"]={SubType="One-Handed Swords",Level=54,id=12535,StackCount=1,Rarity=3,MinLevel=49,SellPrice=34925,Texture=135351,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:12535::::::::40:::::::|h[Doomforged Straightedge]|h|r"},["Pit Fighter's Shield"]={SubType="Shields",Level=42,id=4507,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8282,Texture=134953,Link="|cff1eff00|Hitem:4507::::::::40:::::::|h[Pit Fighter's Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Jasper Link"]={SubType="Miscellaneous",Level=58,id=11978,StackCount=1,Rarity=2,MinLevel=53,SellPrice=7414,Texture=133346,Type="Armor",Link="|cff1eff00|Hitem:11978::::::::40:::::::|h[Jasper Link]|h|r",EquipLoc="INVTYPE_FINGER"},["Glacial Cloak"]={SubType="Cloth",Level=80,id=22658,StackCount=1,Rarity=4,MinLevel=60,SellPrice=53045,Texture=133768,Link="|cffa335ee|Hitem:22658::::::::40:::::::|h[Glacial Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["QAEnchant Gloves +7 Strength"]={SubType="Consumable",Level=1,id=17897,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17897::::::::40:::::::|h[QAEnchant Gloves +7 Strength]|h|r",Type="Consumable"},["Shindrell's Note"]={SubType="Quest",Level=1,id=12060,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134941,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12060::::::::40:::::::|h[Shindrell's Note]|h|r"},["Quickdraw Quiver"]={SubType="Quiver",Level=45,id=8217,StackCount=1,Rarity=2,MinLevel=40,SellPrice=1000,Texture=134407,Link="|cff1eff00|Hitem:8217::::::::40:::::::|h[Quickdraw Quiver]|h|r",EquipLoc="INVTYPE_BAG",Type="Quiver"},["Freezing Shard"]={SubType="Wands",Level=39,id=10572,StackCount=1,Rarity=3,MinLevel=34,SellPrice=9592,Texture=135463,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:10572::::::::40:::::::|h[Freezing Shard]|h|r",Type="Weapon"},["Luminescent Amice"]={SubType="Cloth",Level=30,id=17047,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1313,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:17047::::::::40:::::::|h[Luminescent Amice]|h|r",Type="Armor"},["Cracked Necrotic Crystal"]={SubType="Quest",Level=1,id=22949,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135228,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:22949::::::::40:::::::|h[Cracked Necrotic Crystal]|h|r"},["Crochet Bracers"]={SubType="Cloth",Level=44,id=3938,StackCount=1,Rarity=0,MinLevel=39,SellPrice=1189,Texture=132604,Type="Armor",Link="|cff9d9d9d|Hitem:3938::::::::40:::::::|h[Crochet Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Nubless Pacifier"]={SubType="Junk",Level=1,id=18227,StackCount=5,Rarity=0,MinLevel=0,SellPrice=248,Texture=132999,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18227::::::::40:::::::|h[Nubless Pacifier]|h|r",EquipLoc=""},["Talvash's Enhancing Necklace"]={SubType="Miscellaneous",Level=47,id=7673,StackCount=1,Rarity=3,MinLevel=0,SellPrice=8990,Texture=133289,EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:7673::::::::40:::::::|h[Talvash's Enhancing Necklace]|h|r",Type="Armor"},["2200 Test sword 70 purple"]={SubType="One-Handed Swords",Level=70,id=19504,StackCount=1,Rarity=4,MinLevel=58,SellPrice=103041,Texture=135637,Link="|cffa335ee|Hitem:19504::::::::40:::::::|h[2200 Test sword 70 purple]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Nightsky Armor"]={SubType="Cloth",Level=37,id=7111,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3329,Texture=132646,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7111::::::::40:::::::|h[Nightsky Armor]|h|r",Type="Armor"},["Blue Dinner Suit"]={SubType="Miscellaneous",Level=1,id=22281,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135023,Link="|cffffffff|Hitem:22281::::::::40:::::::|h[Blue Dinner Suit]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Hide of the Wild"]={SubType="Cloth",Level=62,id=18510,StackCount=1,Rarity=4,MinLevel=57,SellPrice=20889,Texture=133753,Type="Armor",Link="|cffa335ee|Hitem:18510::::::::40:::::::|h[Hide of the Wild]|h|r",EquipLoc="INVTYPE_CLOAK"},["Icy Tomb Spaulders"]={SubType="Leather",Level=57,id=18699,StackCount=1,Rarity=3,MinLevel=52,SellPrice=15380,Texture=135058,Type="Armor",Link="|cff0070dd|Hitem:18699::::::::40:::::::|h[Icy Tomb Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Abyssal Signet"]={SubType="Junk",Level=1,id=20514,StackCount=20,Rarity=3,MinLevel=1,SellPrice=0,Texture=133378,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:20514::::::::40:::::::|h[Abyssal Signet]|h|r"},["Pattern: Corehound Boots"]={SubType="Leatherworking",Level=59,id=17022,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37500,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:17022::::::::40:::::::|h[Pattern: Corehound Boots]|h|r",Type="Recipe"},["Loreskin Shoulders"]={SubType="Leather",Level=46,id=11502,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6510,Texture=135055,Type="Armor",Link="|cff1eff00|Hitem:11502::::::::40:::::::|h[Loreskin Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Fluorescent Green Mechanostrider"]={SubType="Junk",Level=40,id=13325,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132247,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:13325::::::::40:::::::|h[Fluorescent Green Mechanostrider]|h|r"},["Elune's Candle"]={SubType="Miscellaneous",Level=1,id=21713,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=134536,Link="|cffffffff|Hitem:21713::::::::40:::::::|h[Elune's Candle]|h|r",EquipLoc="",Type="Weapon"},["Supreme Crown"]={SubType="Leather",Level=64,id=15439,StackCount=1,Rarity=2,MinLevel=59,SellPrice=19387,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15439::::::::40:::::::|h[Supreme Crown]|h|r",Type="Armor"},["Level 65 Test Gear Cloth - Warlock"]={SubType="Junk",Level=1,id=17825,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17825::::::::40:::::::|h[Level 65 Test Gear Cloth - Warlock]|h|r",Type="Miscellaneous"},["Thick Yeti Hide"]={SubType="Quest",Level=1,id=8973,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134361,Link="|cffffffff|Hitem:8973::::::::40:::::::|h[Thick Yeti Hide]|h|r",EquipLoc="",Type="Quest"},["Bracers of Eternal Reckoning"]={SubType="Mail",Level=88,id=21584,StackCount=1,Rarity=4,MinLevel=60,SellPrice=77194,Texture=132617,Link="|cffa335ee|Hitem:21584::::::::40:::::::|h[Bracers of Eternal Reckoning]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Grand Marshal's Tome of Restoration"]={SubType="Miscellaneous",Level=78,id=23453,StackCount=1,Rarity=4,MinLevel=60,SellPrice=75452,Texture=133745,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffa335ee|Hitem:23453::::::::40:::::::|h[Grand Marshal's Tome of Restoration]|h|r"},["Battle Chain Bracers"]={SubType="Mail",Level=9,id=3280,StackCount=1,Rarity=1,MinLevel=4,SellPrice=33,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3280::::::::40:::::::|h[Battle Chain Bracers]|h|r"},["Letter to Jorgen"]={SubType="Quest",Level=1,id=5948,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133458,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5948::::::::40:::::::|h[Letter to Jorgen]|h|r"},["Innervating Band"]={SubType="Miscellaneous",Level=59,id=18701,StackCount=1,Rarity=3,MinLevel=54,SellPrice=36410,Texture=133366,Type="Armor",Link="|cff0070dd|Hitem:18701::::::::40:::::::|h[Innervating Band]|h|r",EquipLoc="INVTYPE_FINGER"},["Pattern: Red Linen Vest"]={SubType="Tailoring",Level=12,id=6271,StackCount=1,Rarity=2,MinLevel=0,SellPrice=50,Texture=134942,Link="|cff1eff00|Hitem:6271::::::::40:::::::|h[Pattern: Red Linen Vest]|h|r",EquipLoc="",Type="Recipe"},["Craftsman's Writ - Brightcloth Pants"]={SubType="Junk",Level=60,id=22609,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22609::::::::40:::::::|h[Craftsman's Writ - Brightcloth Pants]|h|r",EquipLoc="",Type="Miscellaneous"},["Sandy Scorpid Claw"]={SubType="Trade Goods",Level=1,id=20423,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133708,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:20423::::::::40:::::::|h[Sandy Scorpid Claw]|h|r"},["Monster - Staff, White Jeweled"]={SubType="Staves",Level=1,id=12421,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12421::::::::40:::::::|h[Monster - Staff, White Jeweled]|h|r"},["Vanquished Tentacle of C'Thun"]={SubType="Miscellaneous",Level=88,id=21579,StackCount=1,Rarity=4,MinLevel=60,SellPrice=108030,Texture=133574,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:21579::::::::40:::::::|h[Vanquished Tentacle of C'Thun]|h|r"},["Wolf Rider's Headgear"]={SubType="Leather",Level=47,id=15373,StackCount=1,Rarity=2,MinLevel=42,SellPrice=6930,Texture=133119,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15373::::::::40:::::::|h[Wolf Rider's Headgear]|h|r",Type="Armor"},["Wand of Eventide"]={SubType="Wands",Level=32,id=5214,StackCount=1,Rarity=2,MinLevel=27,SellPrice=3935,Texture=135463,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5214::::::::40:::::::|h[Wand of Eventide]|h|r",Type="Weapon"},["Gizzard Gum"]={SubType="Consumable",Level=1,id=8424,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133986,Link="|cffffffff|Hitem:8424::::::::40:::::::|h[Gizzard Gum]|h|r",EquipLoc="",Type="Consumable"},["Jazeraint Shield"]={SubType="Shields",Level=42,id=9899,StackCount=1,Rarity=2,MinLevel=37,SellPrice=7920,Texture=134951,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9899::::::::40:::::::|h[Jazeraint Shield]|h|r"},["Goblin Rocket Boots"]={SubType="Cloth",Level=45,id=7189,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4712,Texture=133029,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7189::::::::40:::::::|h[Goblin Rocket Boots]|h|r",Type="Armor"},["Jade Legplates"]={SubType="Plate",Level=51,id=14920,StackCount=1,Rarity=2,MinLevel=46,SellPrice=9744,Texture=134585,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14920::::::::40:::::::|h[Jade Legplates]|h|r"},["Saltstone Helm"]={SubType="Plate",Level=41,id=14899,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3731,Texture=133122,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14899::::::::40:::::::|h[Saltstone Helm]|h|r"},["Pattern: Shadow Hood"]={SubType="Tailoring",Level=34,id=4351,StackCount=1,Rarity=2,MinLevel=0,SellPrice=225,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:4351::::::::40:::::::|h[Pattern: Shadow Hood]|h|r"},["Stoneweaver Leggings"]={SubType="Cloth",Level=40,id=9407,StackCount=1,Rarity=3,MinLevel=35,SellPrice=5094,Texture=134581,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:9407::::::::40:::::::|h[Stoneweaver Leggings]|h|r"},["Monster - Staff, D01 Circling Black Skull"]={SubType="Staves",Level=1,id=13622,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13622::::::::40:::::::|h[Monster - Staff, D01 Circling Black Skull]|h|r"},["Swoop Gizzard"]={SubType="Quest",Level=1,id=4807,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134341,EquipLoc="",Link="|cffffffff|Hitem:4807::::::::40:::::::|h[Swoop Gizzard]|h|r",Type="Quest"},["Greater Holy Protection Potion"]={SubType="Consumable",Level=58,id=13460,StackCount=5,Rarity=1,MinLevel=48,SellPrice=750,Texture=134720,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13460::::::::40:::::::|h[Greater Holy Protection Potion]|h|r"},["Frostwolf Insignia Rank 3"]={SubType="Miscellaneous",Level=60,id=17906,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133284,EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:17906::::::::40:::::::|h[Frostwolf Insignia Rank 3]|h|r",Type="Armor"},["Core of Earth"]={SubType="Reagent",Level=45,id=7075,StackCount=10,Rarity=1,MinLevel=0,SellPrice=400,Texture=135231,EquipLoc="",Link="|cffffffff|Hitem:7075::::::::40:::::::|h[Core of Earth]|h|r",Type="Reagent"},["Firemoss Boots"]={SubType="Leather",Level=57,id=22275,StackCount=1,Rarity=3,MinLevel=52,SellPrice=15383,Texture=132542,Link="|cff0070dd|Hitem:22275::::::::40:::::::|h[Firemoss Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Lefty's Brass Knuckle"]={SubType="Fist Weapons",Level=61,id=22317,StackCount=1,Rarity=3,MinLevel=56,SellPrice=52093,Texture=132945,Link="|cff0070dd|Hitem:22317::::::::40:::::::|h[Lefty's Brass Knuckle]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Green Hakkari Bijou"]={SubType="Quest",Level=61,id=19711,StackCount=250,Rarity=3,MinLevel=58,SellPrice=0,Texture=132529,Link="|cff0070dd|Hitem:19711::::::::40:::::::|h[Green Hakkari Bijou]|h|r",EquipLoc="",Type="Quest"},["Codex of Shadow Word: Fumble II"]={SubType="Book",Level=32,id=4276,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2500,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4276::::::::40:::::::|h[Codex of Shadow Word: Fumble II]|h|r"},["Vosh'gajin's Strand"]={SubType="Leather",Level=60,id=13962,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12064,Texture=132504,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13962::::::::40:::::::|h[Vosh'gajin's Strand]|h|r"},["Chemist's Smock"]={SubType="Cloth",Level=55,id=15703,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9032,Texture=133763,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15703::::::::40:::::::|h[Chemist's Smock]|h|r",Type="Armor"},["Rubicund Armguards"]={SubType="Mail",Level=55,id=11679,StackCount=1,Rarity=3,MinLevel=50,SellPrice=11738,Texture=132612,Type="Armor",Link="|cff0070dd|Hitem:11679::::::::40:::::::|h[Rubicund Armguards]|h|r",EquipLoc="INVTYPE_WRIST"},["Grand Marshal's Longsword"]={SubType="One-Handed Swords",Level=78,id=12584,StackCount=1,Rarity=4,MinLevel=60,SellPrice=49636,Texture=135291,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:12584::::::::40:::::::|h[Grand Marshal's Longsword]|h|r"},["Flawed Power Stone"]={SubType="Quest",Level=1,id=4986,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134095,Link="|cffffffff|Hitem:4986::::::::40:::::::|h[Flawed Power Stone]|h|r",EquipLoc="",Type="Quest"},["Master's Hat"]={SubType="Cloth",Level=63,id=10250,StackCount=1,Rarity=2,MinLevel=58,SellPrice=14866,Texture=133153,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10250::::::::40:::::::|h[Master's Hat]|h|r",Type="Armor"},["Cenarion Reservist's Pants"]={SubType="Cloth",Level=63,id=20705,StackCount=1,Rarity=3,MinLevel=0,SellPrice=21968,Texture=134600,Link="|cff0070dd|Hitem:20705::::::::40:::::::|h[Cenarion Reservist's Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Prospector Gloves"]={SubType="Leather",Level=37,id=4980,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2209,Texture=132938,Link="|cff1eff00|Hitem:4980::::::::40:::::::|h[Prospector Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Hydrocane"]={SubType="Staves",Level=32,id=9452,StackCount=1,Rarity=3,MinLevel=27,SellPrice=8210,Texture=135152,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9452::::::::40:::::::|h[Hydrocane]|h|r"},["Explorer's Vest"]={SubType="Mail",Level=13,id=7229,StackCount=1,Rarity=2,MinLevel=0,SellPrice=285,Texture=132634,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7229::::::::40:::::::|h[Explorer's Vest]|h|r",Type="Armor"},["Deprecated Shadow Leather Armor"]={SubType="Leather",Level=18,id=917,StackCount=1,Rarity=0,MinLevel=13,SellPrice=221,Texture=132715,Type="Armor",Link="|cff9d9d9d|Hitem:917::::::::40:::::::|h[Deprecated Shadow Leather Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Frostweaver Cape"]={SubType="Cloth",Level=63,id=12968,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16948,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:12968::::::::40:::::::|h[Frostweaver Cape]|h|r"},["Farmer's Broom"]={SubType="Staves",Level=6,id=3335,StackCount=1,Rarity=1,MinLevel=3,SellPrice=46,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:3335::::::::40:::::::|h[Farmer's Broom]|h|r"},["Sheepshear Mantle"]={SubType="Leather",Level=45,id=13115,StackCount=1,Rarity=3,MinLevel=40,SellPrice=6990,Texture=135050,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13115::::::::40:::::::|h[Sheepshear Mantle]|h|r"},["Fireproof Cloak"]={SubType="Cloth",Level=71,id=18811,StackCount=1,Rarity=4,MinLevel=60,SellPrice=32665,Texture=133770,Type="Armor",Link="|cffa335ee|Hitem:18811::::::::40:::::::|h[Fireproof Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Deprecated Unholy Avenger"]={SubType="Two-Handed Swords",Level=40,id=3687,StackCount=1,Rarity=6,MinLevel=35,SellPrice=57718,Texture=135273,EquipLoc="INVTYPE_2HWEAPON",Link="|cffe6cc80|Hitem:3687::::::::40:::::::|h[Deprecated Unholy Avenger]|h|r",Type="Weapon"},["Butcher's Cleaver"]={SubType="One-Handed Axes",Level=25,id=1292,StackCount=1,Rarity=3,MinLevel=20,SellPrice=3300,Texture=132417,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:1292::::::::40:::::::|h[Butcher's Cleaver]|h|r",Type="Weapon"},["Tome of Frostbolt II"]={SubType="Book",Level=8,id=986,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:986::::::::40:::::::|h[Tome of Frostbolt II]|h|r"},["Sheaf of Cards"]={SubType="Consumable",Level=1,id=22299,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133472,Link="|cffffffff|Hitem:22299::::::::40:::::::|h[Sheaf of Cards]|h|r",EquipLoc="",Type="Consumable"},["Stonecloth Epaulets"]={SubType="Cloth",Level=36,id=14412,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2298,Texture=135034,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14412::::::::40:::::::|h[Stonecloth Epaulets]|h|r"},["Satyr Horns"]={SubType="Quest",Level=1,id=5481,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133721,EquipLoc="",Link="|cffffffff|Hitem:5481::::::::40:::::::|h[Satyr Horns]|h|r",Type="Quest"},["Wand of Holiday Cheer"]={SubType="Junk",Level=1,id=21328,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135464,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21328::::::::40:::::::|h[Wand of Holiday Cheer]|h|r"},["Large Flat Tooth"]={SubType="Junk",Level=1,id=5118,StackCount=10,Rarity=0,MinLevel=0,SellPrice=71,Texture=135233,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5118::::::::40:::::::|h[Large Flat Tooth]|h|r"},["Silver Scarab"]={SubType="Quest",Level=1,id=20860,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=134935,Link="|cff1eff00|Hitem:20860::::::::40:::::::|h[Silver Scarab]|h|r",EquipLoc="",Type="Quest"},["Serathil"]={SubType="One-Handed Axes",Level=61,id=13015,StackCount=1,Rarity=3,MinLevel=56,SellPrice=53957,Texture=132399,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13015::::::::40:::::::|h[Serathil]|h|r"},["Avenguard Helm"]={SubType="Plate",Level=54,id=10749,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10554,Texture=133124,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:10749::::::::40:::::::|h[Avenguard Helm]|h|r",Type="Armor"},["Zandalar Demoniac's Robe DEPRECATED"]={SubType="Cloth",Level=65,id=19847,StackCount=1,Rarity=4,MinLevel=0,SellPrice=32372,Texture=132653,Link="|cffa335ee|Hitem:19847::::::::40:::::::|h[Zandalar Demoniac's Robe DEPRECATED]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Khan's Helmet"]={SubType="Mail",Level=48,id=14785,StackCount=1,Rarity=2,MinLevel=43,SellPrice=9558,Texture=133101,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14785::::::::40:::::::|h[Khan's Helmet]|h|r"},["Pratt's Handcrafted Gloves"]={SubType="Leather",Level=45,id=9631,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3868,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9631::::::::40:::::::|h[Pratt's Handcrafted Gloves]|h|r"},["Cross-stitched Pants"]={SubType="Cloth",Level=27,id=1784,StackCount=1,Rarity=0,MinLevel=22,SellPrice=546,Texture=134582,Link="|cff9d9d9d|Hitem:1784::::::::40:::::::|h[Cross-stitched Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Sunscale Sabatons"]={SubType="Plate",Level=50,id=14848,StackCount=1,Rarity=2,MinLevel=45,SellPrice=6854,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14848::::::::40:::::::|h[Sunscale Sabatons]|h|r"},["Circlet of Restless Dreams"]={SubType="Leather",Level=72,id=20623,StackCount=1,Rarity=4,MinLevel=60,SellPrice=44713,Texture=133119,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:20623::::::::40:::::::|h[Circlet of Restless Dreams]|h|r"},["Test Language Item"]={SubType="Book",Level=1,id=5688,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132089,Link="|cffffffff|Hitem:5688::::::::40:::::::|h[Test Language Item]|h|r",EquipLoc="",Type="Recipe"},["Glowing Shard"]={SubType="Quest",Level=15,id=10441,StackCount=1,Rarity=1,MinLevel=15,SellPrice=0,Texture=135229,EquipLoc="",Link="|cffffffff|Hitem:10441::::::::40:::::::|h[Glowing Shard]|h|r",Type="Quest"},["Gnarled Ash Staff"]={SubType="Staves",Level=31,id=791,StackCount=1,Rarity=3,MinLevel=26,SellPrice=7069,Texture=135139,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:791::::::::40:::::::|h[Gnarled Ash Staff]|h|r"},["Bright Robe"]={SubType="Cloth",Level=27,id=3069,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1412,Texture=132667,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:3069::::::::40:::::::|h[Bright Robe]|h|r",Type="Armor"},["Libram of Focus"]={SubType="Book",Level=50,id=18333,StackCount=1,Rarity=2,MinLevel=50,SellPrice=0,Texture=133736,Type="Recipe",Link="|cff1eff00|Hitem:18333::::::::40:::::::|h[Libram of Focus]|h|r",EquipLoc=""},["Gift of Adoration: Undercity"]={SubType="Consumable",Level=1,id=22166,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135450,Link="|cffffffff|Hitem:22166::::::::40:::::::|h[Gift of Adoration: Undercity]|h|r",EquipLoc="",Type="Consumable"},["Cadaverous Walkers"]={SubType="Leather",Level=61,id=14641,StackCount=1,Rarity=3,MinLevel=56,SellPrice=19074,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:14641::::::::40:::::::|h[Cadaverous Walkers]|h|r"},["Deprecated Standard Shot"]={SubType="Bullet",Level=1,id=2104,StackCount=200,Rarity=1,MinLevel=1,SellPrice=0,Texture=132384,Type="Projectile",EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:2104::::::::40:::::::|h[Deprecated Standard Shot]|h|r"},["Bookmaker's Scepter"]={SubType="One-Handed Maces",Level=37,id=4122,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8384,Texture=133476,Link="|cff1eff00|Hitem:4122::::::::40:::::::|h[Bookmaker's Scepter]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Pattern: Inferno Gloves"]={SubType="Tailoring",Level=62,id=18416,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18416::::::::40:::::::|h[Pattern: Inferno Gloves]|h|r",EquipLoc=""},["Tablet of Windfury Weapon"]={SubType="Book",Level=26,id=9073,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=134459,Link="|cffffffff|Hitem:9073::::::::40:::::::|h[Tablet of Windfury Weapon]|h|r",EquipLoc="",Type="Recipe"},["Cadet Vest"]={SubType="Mail",Level=15,id=9765,StackCount=1,Rarity=2,MinLevel=10,SellPrice=406,Texture=132627,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9765::::::::40:::::::|h[Cadet Vest]|h|r"},["Eight of Elementals"]={SubType="Junk",Level=1,id=19275,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134486,Link="|cff0070dd|Hitem:19275::::::::40:::::::|h[Eight of Elementals]|h|r",EquipLoc="",Type="Miscellaneous"},["Heavy Copper Broadsword"]={SubType="Two-Handed Swords",Level=19,id=3487,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1498,Texture=135312,Type="Weapon",Link="|cff1eff00|Hitem:3487::::::::40:::::::|h[Heavy Copper Broadsword]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Drakefire Headguard"]={SubType="Mail",Level=51,id=10743,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10830,Texture=133119,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10743::::::::40:::::::|h[Drakefire Headguard]|h|r",Type="Armor"},["Bundle of Furs"]={SubType="Quest",Level=0,id=7626,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134366,Link="|cffffffff|Hitem:7626::::::::40:::::::|h[Bundle of Furs]|h|r",EquipLoc="",Type="Quest"},["Beaststalker's Boots"]={SubType="Mail",Level=59,id=16675,StackCount=1,Rarity=3,MinLevel=54,SellPrice=21421,Texture=132588,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16675::::::::40:::::::|h[Beaststalker's Boots]|h|r",Type="Armor"},["Naga Battle Gloves"]={SubType="Leather",Level=27,id=888,StackCount=1,Rarity=3,MinLevel=22,SellPrice=980,Texture=132947,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:888::::::::40:::::::|h[Naga Battle Gloves]|h|r",Type="Armor"},["Peacekeeper Leggings"]={SubType="Plate",Level=68,id=20266,StackCount=1,Rarity=3,MinLevel=60,SellPrice=28870,Texture=134680,Link="|cff0070dd|Hitem:20266::::::::40:::::::|h[Peacekeeper Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Masterwork Boots"]={SubType="Mail",Level=63,id=10270,StackCount=1,Rarity=2,MinLevel=58,SellPrice=22396,Texture=132584,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10270::::::::40:::::::|h[Masterwork Boots]|h|r",Type="Armor"},["[PH] Mail Boots of the Rising Dawn"]={SubType="Mail",Level=100,id=13805,StackCount=1,Rarity=1,MinLevel=100,SellPrice=81467,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:13805::::::::40:::::::|h[[PH] Mail Boots of the Rising Dawn]|h|r"},["Ice-covered Bracers"]={SubType="Leather",Level=12,id=763,StackCount=1,Rarity=1,MinLevel=7,SellPrice=58,Texture=132607,Type="Armor",Link="|cffffffff|Hitem:763::::::::40:::::::|h[Ice-covered Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Emberstone Staff"]={SubType="Staves",Level=23,id=5201,StackCount=1,Rarity=3,MinLevel=18,SellPrice=3161,Texture=135150,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:5201::::::::40:::::::|h[Emberstone Staff]|h|r",Type="Weapon"},["Giantstalker's Boots"]={SubType="Mail",Level=66,id=16849,StackCount=1,Rarity=4,MinLevel=60,SellPrice=41382,Texture=132556,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16849::::::::40:::::::|h[Giantstalker's Boots]|h|r",Type="Armor"},["Swine Fists"]={SubType="Leather",Level=39,id=10760,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2428,Texture=132957,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10760::::::::40:::::::|h[Swine Fists]|h|r",Type="Armor"},["Yellow Power Crystal"]={SubType="Junk",Level=1,id=11188,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=134136,Type="Miscellaneous",Link="|cffffffff|Hitem:11188::::::::40:::::::|h[Yellow Power Crystal]|h|r",EquipLoc=""},["Winterfall Ritual Totem"]={SubType="Junk",Level=50,id=20742,StackCount=1,Rarity=1,MinLevel=50,SellPrice=0,Texture=135816,Link="|cffffffff|Hitem:20742::::::::40:::::::|h[Winterfall Ritual Totem]|h|r",EquipLoc="",Type="Miscellaneous"},["Elemental Sharpening Stone"]={SubType="Trade Goods",Level=60,id=18262,StackCount=20,Rarity=2,MinLevel=50,SellPrice=1250,Texture=135228,Type="Trade Goods",Link="|cff1eff00|Hitem:18262::::::::40:::::::|h[Elemental Sharpening Stone]|h|r",EquipLoc=""},["Fast Test 2H Mace"]={SubType="Two-Handed Maces",Level=45,id=5554,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7851,Texture=133481,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5554::::::::40:::::::|h[Fast Test 2H Mace]|h|r",Type="Weapon"},["Leggings of the Plague Hunter"]={SubType="Mail",Level=66,id=22690,StackCount=1,Rarity=3,MinLevel=0,SellPrice=38147,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:22690::::::::40:::::::|h[Leggings of the Plague Hunter]|h|r"},["Embroidered Bracers"]={SubType="Cloth",Level=50,id=3588,StackCount=1,Rarity=1,MinLevel=45,SellPrice=2873,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3588::::::::40:::::::|h[Embroidered Bracers]|h|r"},["Extra-Dimensional Ghost Revealer"]={SubType="Quest",Level=1,id=22115,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133878,Link="|cffffffff|Hitem:22115::::::::40:::::::|h[Extra-Dimensional Ghost Revealer]|h|r",EquipLoc="",Type="Quest"},["A Clue to Sander's Treasure"]={SubType="Quest",Level=1,id=1358,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134251,Type="Quest",Link="|cffffffff|Hitem:1358::::::::40:::::::|h[A Clue to Sander's Treasure]|h|r",EquipLoc=""},["Deathmist Wraps"]={SubType="Cloth",Level=55,id=22077,StackCount=1,Rarity=4,MinLevel=0,SellPrice=10299,Texture=132966,Link="|cffa335ee|Hitem:22077::::::::40:::::::|h[Deathmist Wraps]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Grimoire of Curse of Agony II"]={SubType="Book",Level=20,id=9205,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133738,Link="|cffffffff|Hitem:9205::::::::40:::::::|h[Grimoire of Curse of Agony II]|h|r",EquipLoc="",Type="Recipe"},["Charger's Shield"]={SubType="Shields",Level=8,id=15478,StackCount=1,Rarity=1,MinLevel=3,SellPrice=52,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:15478::::::::40:::::::|h[Charger's Shield]|h|r",Type="Armor"},["Rugged Hide"]={SubType="Trade Goods",Level=50,id=8171,StackCount=10,Rarity=1,MinLevel=0,SellPrice=500,Texture=134357,Link="|cffffffff|Hitem:8171::::::::40:::::::|h[Rugged Hide]|h|r",EquipLoc="",Type="Trade Goods"},["Formula: Brilliant Mana Oil"]={SubType="Enchanting",Level=60,id=20757,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134327,Link="|cffffffff|Hitem:20757::::::::40:::::::|h[Formula: Brilliant Mana Oil]|h|r",EquipLoc="",Type="Recipe"},["Warden's Wristbands"]={SubType="Leather",Level=40,id=14600,StackCount=1,Rarity=2,MinLevel=35,SellPrice=2675,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14600::::::::40:::::::|h[Warden's Wristbands]|h|r"},["Woven Gloves"]={SubType="Cloth",Level=10,id=2369,StackCount=1,Rarity=1,MinLevel=5,SellPrice=30,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2369::::::::40:::::::|h[Woven Gloves]|h|r"},["Windchaser Amice"]={SubType="Cloth",Level=45,id=14432,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4679,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14432::::::::40:::::::|h[Windchaser Amice]|h|r"},["Warstrike Armsplints"]={SubType="Mail",Level=59,id=14810,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11669,Texture=132603,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14810::::::::40:::::::|h[Warstrike Armsplints]|h|r"},["Embersilk Leggings"]={SubType="Cloth",Level=40,id=14233,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4476,Texture=134592,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14233::::::::40:::::::|h[Embersilk Leggings]|h|r"},["Rainbow Girdle"]={SubType="Plate",Level=58,id=13384,StackCount=1,Rarity=3,MinLevel=53,SellPrice=8988,Texture=132519,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13384::::::::40:::::::|h[Rainbow Girdle]|h|r"},["Formula: Enchant Cloak - Subtlety"]={SubType="Enchanting",Level=70,id=20735,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25000,Texture=134327,Link="|cff0070dd|Hitem:20735::::::::40:::::::|h[Formula: Enchant Cloak - Subtlety]|h|r",EquipLoc="",Type="Recipe"},["Davil's Libram"]={SubType="Quest",Level=1,id=12954,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133742,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12954::::::::40:::::::|h[Davil's Libram]|h|r"},["Conqueror's Spaulders"]={SubType="Plate",Level=78,id=21330,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45987,Texture=135066,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:21330::::::::40:::::::|h[Conqueror's Spaulders]|h|r"},["Pagan Mitts"]={SubType="Cloth",Level=23,id=14162,StackCount=1,Rarity=2,MinLevel=18,SellPrice=445,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14162::::::::40:::::::|h[Pagan Mitts]|h|r"},["Wildkeeper Leggings"]={SubType="Leather",Level=18,id=15202,StackCount=1,Rarity=2,MinLevel=0,SellPrice=515,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15202::::::::40:::::::|h[Wildkeeper Leggings]|h|r",Type="Armor"},["Ryson's Beacon"]={SubType="Quest",Level=1,id=17362,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135148,EquipLoc="",Link="|cffffffff|Hitem:17362::::::::40:::::::|h[Ryson's Beacon]|h|r",Type="Quest"},["Dokebi Chestguard"]={SubType="Leather",Level=33,id=14581,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2912,Texture=132716,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14581::::::::40:::::::|h[Dokebi Chestguard]|h|r"},["Kodo Skin Scroll"]={SubType="Quest",Level=1,id=5838,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134252,EquipLoc="",Link="|cffffffff|Hitem:5838::::::::40:::::::|h[Kodo Skin Scroll]|h|r",Type="Quest"},["Training Sword"]={SubType="Two-Handed Swords",Level=10,id=8178,StackCount=1,Rarity=2,MinLevel=5,SellPrice=306,Texture=135355,Link="|cff1eff00|Hitem:8178::::::::40:::::::|h[Training Sword]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Tablet of Flametongue Weapon IV"]={SubType="Book",Level=50,id=9148,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=134459,Link="|cffffffff|Hitem:9148::::::::40:::::::|h[Tablet of Flametongue Weapon IV]|h|r",EquipLoc="",Type="Recipe"},["Circlet of Prophecy"]={SubType="Cloth",Level=66,id=16813,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27866,Texture=133136,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16813::::::::40:::::::|h[Circlet of Prophecy]|h|r",Type="Armor"},["Deprecated Flint Troll Axe"]={SubType="One-Handed Axes",Level=1,id=1719,StackCount=1,Rarity=1,MinLevel=1,SellPrice=3,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:1719::::::::40:::::::|h[Deprecated Flint Troll Axe]|h|r"},["Knight-Lieutenant's Silk Handwraps"]={SubType="Cloth",Level=66,id=23290,StackCount=1,Rarity=3,MinLevel=60,SellPrice=6552,Texture=132940,Link="|cff0070dd|Hitem:23290::::::::40:::::::|h[Knight-Lieutenant's Silk Handwraps]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["PVP Plate Gauntlets Alliance"]={SubType="Plate",Level=60,id=16029,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4828,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:16029::::::::40:::::::|h[PVP Plate Gauntlets Alliance]|h|r",Type="Armor"},["Handsewn Cloak"]={SubType="Cloth",Level=12,id=4944,StackCount=1,Rarity=1,MinLevel=0,SellPrice=72,Texture=133763,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:4944::::::::40:::::::|h[Handsewn Cloak]|h|r"},["Cloth Request"]={SubType="Quest",Level=1,id=2724,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",Link="|cffffffff|Hitem:2724::::::::40:::::::|h[Cloth Request]|h|r",EquipLoc=""},["Gnarlpine Fang"]={SubType="Quest",Level=1,id=5220,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5220::::::::40:::::::|h[Gnarlpine Fang]|h|r"},["Staff of Soran'ruk"]={SubType="Staves",Level=25,id=15109,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3344,Texture=135146,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15109::::::::40:::::::|h[Staff of Soran'ruk]|h|r",Type="Weapon"},["Necromancer Leggings"]={SubType="Cloth",Level=35,id=2277,StackCount=1,Rarity=3,MinLevel=30,SellPrice=3620,Texture=134581,Type="Armor",Link="|cff0070dd|Hitem:2277::::::::40:::::::|h[Necromancer Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Pattern: Bottomless Bag"]={SubType="Tailoring",Level=62,id=14510,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:14510::::::::40:::::::|h[Pattern: Bottomless Bag]|h|r"},["Shredder Operating Manual - Page 3"]={SubType="Junk",Level=1,id=16647,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:16647::::::::40:::::::|h[Shredder Operating Manual - Page 3]|h|r",Type="Miscellaneous"},["Bloodspattered Loincloth"]={SubType="Mail",Level=18,id=15493,StackCount=1,Rarity=2,MinLevel=13,SellPrice=647,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15493::::::::40:::::::|h[Bloodspattered Loincloth]|h|r",Type="Armor"},["Twilight Cuffs"]={SubType="Cloth",Level=36,id=7437,StackCount=1,Rarity=2,MinLevel=31,SellPrice=1554,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:7437::::::::40:::::::|h[Twilight Cuffs]|h|r",Type="Armor"},["Legionnaire's Plate Bracers"]={SubType="Plate",Level=60,id=16512,StackCount=1,Rarity=3,MinLevel=55,SellPrice=5160,Texture=132618,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16512::::::::40:::::::|h[Legionnaire's Plate Bracers]|h|r",Type="Armor"},["Blackmouth Oil"]={SubType="Reagent",Level=15,id=6370,StackCount=20,Rarity=1,MinLevel=0,SellPrice=10,Texture=132799,Link="|cffffffff|Hitem:6370::::::::40:::::::|h[Blackmouth Oil]|h|r",EquipLoc="",Type="Reagent"},["Breastplate of Ten Storms"]={SubType="Mail",Level=76,id=16950,StackCount=1,Rarity=4,MinLevel=60,SellPrice=83355,Texture=132633,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16950::::::::40:::::::|h[Breastplate of Ten Storms]|h|r",Type="Armor"},["Corrupted Ashbringer"]={SubType="Two-Handed Swords",Level=86,id=22691,StackCount=1,Rarity=4,MinLevel=60,SellPrice=288527,Texture=135331,Link="|cffa335ee|Hitem:22691::::::::40:::::::|h[Corrupted Ashbringer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Mysterious Fossil"]={SubType="Quest",Level=1,id=4654,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134431,Link="|cffffffff|Hitem:4654::::::::40:::::::|h[Mysterious Fossil]|h|r",EquipLoc="",Type="Quest"},["Solstice Staff"]={SubType="Staves",Level=60,id=15278,StackCount=1,Rarity=2,MinLevel=55,SellPrice=50285,Texture=135140,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15278::::::::40:::::::|h[Solstice Staff]|h|r",Type="Weapon"},["Minor Mana Oil"]={SubType="Trade Goods",Level=30,id=20745,StackCount=1,Rarity=1,MinLevel=20,SellPrice=1000,Texture=134878,Link="|cffffffff|Hitem:20745::::::::40:::::::|h[Minor Mana Oil]|h|r",EquipLoc="",Type="Trade Goods"},["Shadow Prowler's Cloak"]={SubType="Cloth",Level=63,id=22269,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16476,Texture=133772,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:22269::::::::40:::::::|h[Shadow Prowler's Cloak]|h|r"},["Wanderer's Hat"]={SubType="Leather",Level=57,id=10111,StackCount=1,Rarity=2,MinLevel=52,SellPrice=13444,Texture=133152,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10111::::::::40:::::::|h[Wanderer's Hat]|h|r",Type="Armor"},["Major Rejuvenation Potion"]={SubType="Consumable",Level=60,id=18253,StackCount=5,Rarity=1,MinLevel=50,SellPrice=15,Texture=134827,Type="Consumable",Link="|cffffffff|Hitem:18253::::::::40:::::::|h[Major Rejuvenation Potion]|h|r",EquipLoc=""},["Wild Hog Shank"]={SubType="Consumable",Level=35,id=3771,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=133969,Link="|cffffffff|Hitem:3771::::::::40:::::::|h[Wild Hog Shank]|h|r",EquipLoc="",Type="Consumable"},["Quillfire Bow"]={SubType="Bows",Level=55,id=15295,StackCount=1,Rarity=2,MinLevel=50,SellPrice=22712,Texture=135498,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:15295::::::::40:::::::|h[Quillfire Bow]|h|r",Type="Weapon"},["Verek's Leash"]={SubType="Mail",Level=56,id=22242,StackCount=1,Rarity=3,MinLevel=51,SellPrice=11489,Texture=132507,Link="|cff0070dd|Hitem:22242::::::::40:::::::|h[Verek's Leash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Green Lens"]={SubType="Cloth",Level=49,id=10504,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7770,Texture=133146,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:10504::::::::40:::::::|h[Green Lens]|h|r",Type="Armor"},["Tablet of Mana Font Totem IV"]={SubType="Book",Level=56,id=9166,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9166::::::::40:::::::|h[Tablet of Mana Font Totem IV]|h|r"},["Defiler's Basic Care Package"]={SubType="Consumable",Level=1,id=20229,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134143,Link="|cffffffff|Hitem:20229::::::::40:::::::|h[Defiler's Basic Care Package]|h|r",EquipLoc="",Type="Consumable"},["Lovingly Composed Letter"]={SubType="Junk",Level=1,id=22265,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135454,Link="|cffffffff|Hitem:22265::::::::40:::::::|h[Lovingly Composed Letter]|h|r",EquipLoc="",Type="Miscellaneous"},["Legplates of the Destroyer"]={SubType="Plate",Level=74,id=21475,StackCount=1,Rarity=3,MinLevel=60,SellPrice=40611,Texture=134677,Link="|cff0070dd|Hitem:21475::::::::40:::::::|h[Legplates of the Destroyer]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Rushridge Boots"]={SubType="Plate",Level=43,id=9662,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4258,Texture=132582,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9662::::::::40:::::::|h[Rushridge Boots]|h|r"},["Breastplate of Annihilation"]={SubType="Plate",Level=73,id=21814,StackCount=1,Rarity=4,MinLevel=60,SellPrice=51570,Texture=132737,Link="|cffa335ee|Hitem:21814::::::::40:::::::|h[Breastplate of Annihilation]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Knight-Lieutenant's Plate Gauntlets"]={SubType="Plate",Level=63,id=16406,StackCount=1,Rarity=3,MinLevel=58,SellPrice=5545,Texture=132957,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16406::::::::40:::::::|h[Knight-Lieutenant's Plate Gauntlets]|h|r",Type="Armor"},["Cat Carrier (Bombay)"]={SubType="Junk",Level=20,id=8485,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=132599,Link="|cffffffff|Hitem:8485::::::::40:::::::|h[Cat Carrier (Bombay)]|h|r",EquipLoc="",Type="Miscellaneous"},["Darnassian Bleu"]={SubType="Consumable",Level=5,id=2070,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=133948,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2070::::::::40:::::::|h[Darnassian Bleu]|h|r"},["Ironforge Gauntlets"]={SubType="Mail",Level=28,id=6733,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1145,Texture=132939,Link="|cff1eff00|Hitem:6733::::::::40:::::::|h[Ironforge Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Large Obsidian Shard"]={SubType="Trade Goods",Level=1,id=22203,StackCount=10,Rarity=1,MinLevel=0,SellPrice=5000,Texture=135241,Link="|cffffffff|Hitem:22203::::::::40:::::::|h[Large Obsidian Shard]|h|r",EquipLoc="",Type="Trade Goods"},["Blood Guard's Chain Vices"]={SubType="Mail",Level=66,id=22862,StackCount=1,Rarity=3,MinLevel=60,SellPrice=9973,Texture=132951,Link="|cff0070dd|Hitem:22862::::::::40:::::::|h[Blood Guard's Chain Vices]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Eyestalk Cord"]={SubType="Leather",Level=62,id=18391,StackCount=1,Rarity=3,MinLevel=57,SellPrice=13076,Texture=132515,Type="Armor",Link="|cff0070dd|Hitem:18391::::::::40:::::::|h[Eyestalk Cord]|h|r",EquipLoc="INVTYPE_WAIST"},["Cursed Eye of Paleth"]={SubType="Miscellaneous",Level=31,id=2944,StackCount=1,Rarity=2,MinLevel=26,SellPrice=0,Texture=134336,Link="|cff1eff00|Hitem:2944::::::::40:::::::|h[Cursed Eye of Paleth]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Frost Protection Potion"]={SubType="Consumable",Level=38,id=6050,StackCount=5,Rarity=1,MinLevel=28,SellPrice=300,Texture=134754,Type="Consumable",Link="|cffffffff|Hitem:6050::::::::40:::::::|h[Frost Protection Potion]|h|r",EquipLoc=""},["Big Bag of Enchantment"]={SubType="Enchanting Bag",Level=65,id=22249,StackCount=1,Rarity=2,MinLevel=0,SellPrice=30000,Texture=133662,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:22249::::::::40:::::::|h[Big Bag of Enchantment]|h|r"},["Warsong Gulch Ribbon of Sacrifice"]={SubType="Quest",Level=1,id=20256,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=134411,Link="|cff1eff00|Hitem:20256::::::::40:::::::|h[Warsong Gulch Ribbon of Sacrifice]|h|r",EquipLoc="",Type="Quest"},["Torch of the Dormant Flame"]={SubType="Quest",Level=1,id=6653,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135434,Link="|cffffffff|Hitem:6653::::::::40:::::::|h[Torch of the Dormant Flame]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Quest"},["Pridelord Pants"]={SubType="Leather",Level=58,id=14677,StackCount=1,Rarity=2,MinLevel=53,SellPrice=18524,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14677::::::::40:::::::|h[Pridelord Pants]|h|r"},["Scorpid Surprise"]={SubType="Consumable",Level=8,id=5473,StackCount=20,Rarity=1,MinLevel=1,SellPrice=10,Texture=133952,Link="|cffffffff|Hitem:5473::::::::40:::::::|h[Scorpid Surprise]|h|r",EquipLoc="",Type="Consumable"},["Filled Festive Mug"]={SubType="Junk",Level=1,id=21171,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132792,Link="|cffffffff|Hitem:21171::::::::40:::::::|h[Filled Festive Mug]|h|r",EquipLoc="",Type="Miscellaneous"},["Test Glaive C"]={SubType="One-Handed Swords",Level=5,id=14885,StackCount=1,Rarity=1,MinLevel=1,SellPrice=25,Texture=135643,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:14885::::::::40:::::::|h[Test Glaive C]|h|r"},["Wildthorn Mail"]={SubType="Mail",Level=54,id=12624,StackCount=1,Rarity=3,MinLevel=49,SellPrice=20642,Texture=132634,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:12624::::::::40:::::::|h[Wildthorn Mail]|h|r"},["Spiked Chain Belt"]={SubType="Mail",Level=25,id=15515,StackCount=1,Rarity=2,MinLevel=20,SellPrice=844,Texture=132505,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15515::::::::40:::::::|h[Spiked Chain Belt]|h|r",Type="Armor"},["Sprinter's Sword"]={SubType="Two-Handed Swords",Level=57,id=18410,StackCount=1,Rarity=2,MinLevel=0,SellPrice=45516,Texture=135329,Type="Weapon",Link="|cff1eff00|Hitem:18410::::::::40:::::::|h[Sprinter's Sword]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Empty Cliffspring Falls Sampler"]={SubType="Quest",Level=1,id=15844,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134776,EquipLoc="",Link="|cffffffff|Hitem:15844::::::::40:::::::|h[Empty Cliffspring Falls Sampler]|h|r",Type="Quest"},["Deprecated Area Trigger Flag - Fargodeep"]={SubType="Quest",Level=1,id=960,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135005,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:960::::::::40:::::::|h[Deprecated Area Trigger Flag - Fargodeep]|h|r"},["Heavy Mithril Helm"]={SubType="Plate",Level=47,id=7934,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5790,Texture=133078,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7934::::::::40:::::::|h[Heavy Mithril Helm]|h|r"},["Watcher's Cinch"]={SubType="Cloth",Level=27,id=14185,StackCount=1,Rarity=2,MinLevel=22,SellPrice=647,Texture=132510,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14185::::::::40:::::::|h[Watcher's Cinch]|h|r"},["Twilight Cape"]={SubType="Cloth",Level=35,id=7436,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2111,Texture=133765,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:7436::::::::40:::::::|h[Twilight Cape]|h|r"},["Reinforced Chain Cloak"]={SubType="Cloth",Level=29,id=1757,StackCount=1,Rarity=0,MinLevel=24,SellPrice=728,Texture=133768,Type="Armor",Link="|cff9d9d9d|Hitem:1757::::::::40:::::::|h[Reinforced Chain Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Plans: Bleakwood Hew"]={SubType="Blacksmithing",Level=54,id=12817,StackCount=1,Rarity=3,MinLevel=0,SellPrice=4000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12817::::::::40:::::::|h[Plans: Bleakwood Hew]|h|r"},["Jadefire Cap"]={SubType="Leather",Level=56,id=15391,StackCount=1,Rarity=2,MinLevel=51,SellPrice=12178,Texture=133142,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15391::::::::40:::::::|h[Jadefire Cap]|h|r",Type="Armor"},["Bonecracker"]={SubType="Two-Handed Maces",Level=13,id=3440,StackCount=1,Rarity=2,MinLevel=0,SellPrice=640,Texture=133479,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3440::::::::40:::::::|h[Bonecracker]|h|r"},["Girdle of the Dawn"]={SubType="Plate",Level=58,id=19051,StackCount=1,Rarity=3,MinLevel=53,SellPrice=9365,Texture=132500,Link="|cff0070dd|Hitem:19051::::::::40:::::::|h[Girdle of the Dawn]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Elegant Boots"]={SubType="Cloth",Level=59,id=10211,StackCount=1,Rarity=2,MinLevel=54,SellPrice=12276,Texture=132536,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10211::::::::40:::::::|h[Elegant Boots]|h|r",Type="Armor"},["Monster - Item, Book - Black Simple"]={SubType="Miscellaneous",Level=1,id=12862,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12862::::::::40:::::::|h[Monster - Item, Book - Black Simple]|h|r"},["Helm of the Mountain"]={SubType="Plate",Level=53,id=17734,StackCount=1,Rarity=3,MinLevel=48,SellPrice=10457,Texture=133122,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:17734::::::::40:::::::|h[Helm of the Mountain]|h|r",Type="Armor"},["Red Mageweave Headband"]={SubType="Cloth",Level=48,id=10033,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6075,Texture=133694,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10033::::::::40:::::::|h[Red Mageweave Headband]|h|r",Type="Armor"},["Solid Weightstone"]={SubType="Trade Goods",Level=35,id=7965,StackCount=20,Rarity=1,MinLevel=25,SellPrice=40,Texture=135258,EquipLoc="",Link="|cffffffff|Hitem:7965::::::::40:::::::|h[Solid Weightstone]|h|r",Type="Trade Goods"},["Gloves of Holy Might"]={SubType="Leather",Level=42,id=867,StackCount=1,Rarity=4,MinLevel=37,SellPrice=5344,Texture=132940,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:867::::::::40:::::::|h[Gloves of Holy Might]|h|r"},["Scroll of Protection IV"]={SubType="Consumable",Level=55,id=10305,StackCount=5,Rarity=1,MinLevel=45,SellPrice=100,Texture=134943,EquipLoc="",Link="|cffffffff|Hitem:10305::::::::40:::::::|h[Scroll of Protection IV]|h|r",Type="Consumable"},["Spiked Collar"]={SubType="Consumable",Level=30,id=1187,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1081,Texture=133075,Type="Consumable",EquipLoc="",Link="|cff1eff00|Hitem:1187::::::::40:::::::|h[Spiked Collar]|h|r"},["Shadowforge Key"]={SubType="Key",Level=1,id=11000,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134242,EquipLoc="",Link="|cffffffff|Hitem:11000::::::::40:::::::|h[Shadowforge Key]|h|r",Type="Key"},["Green Hills of Stranglethorn - Page 10"]={SubType="Junk",Level=1,id=2734,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,Type="Miscellaneous",Link="|cffffffff|Hitem:2734::::::::40:::::::|h[Green Hills of Stranglethorn - Page 10]|h|r",EquipLoc=""},["Simple Gloves"]={SubType="Cloth",Level=13,id=9746,StackCount=1,Rarity=1,MinLevel=8,SellPrice=56,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:9746::::::::40:::::::|h[Simple Gloves]|h|r"},["Edana's Dark Heart"]={SubType="Quest",Level=1,id=9528,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134131,Link="|cffffffff|Hitem:9528::::::::40:::::::|h[Edana's Dark Heart]|h|r",EquipLoc="",Type="Quest"},["Chillwind Meat"]={SubType="Quest",Level=1,id=12623,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=133970,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12623::::::::40:::::::|h[Chillwind Meat]|h|r"},["Mighty Leggings"]={SubType="Leather",Level=63,id=10152,StackCount=1,Rarity=2,MinLevel=58,SellPrice=24333,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10152::::::::40:::::::|h[Mighty Leggings]|h|r",Type="Armor"},["Monster - Item, Bag - Green Offhand"]={SubType="Miscellaneous",Level=1,id=12855,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133639,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12855::::::::40:::::::|h[Monster - Item, Bag - Green Offhand]|h|r"},["(OLD)Heavy Throwing Axe"]={SubType="Thrown",Level=19,id=3136,StackCount=200,Rarity=1,MinLevel=14,SellPrice=1,Texture=132392,Link="|cffffffff|Hitem:3136::::::::40:::::::|h[(OLD)Heavy Throwing Axe]|h|r",EquipLoc="INVTYPE_THROWN",Type="Weapon"},["Pattern: Wicked Leather Headband"]={SubType="Leatherworking",Level=56,id=15744,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15744::::::::40:::::::|h[Pattern: Wicked Leather Headband]|h|r",Type="Recipe"},["Turtle Meat"]={SubType="Trade Goods",Level=30,id=3712,StackCount=10,Rarity=1,MinLevel=0,SellPrice=87,Texture=134026,Type="Trade Goods",Link="|cffffffff|Hitem:3712::::::::40:::::::|h[Turtle Meat]|h|r",EquipLoc=""},["Mechanical Repair Kit"]={SubType="Devices",Level=40,id=11590,StackCount=5,Rarity=1,MinLevel=0,SellPrice=250,Texture=132997,Type="Trade Goods",Link="|cffffffff|Hitem:11590::::::::40:::::::|h[Mechanical Repair Kit]|h|r",EquipLoc=""},["Runecloth Pants"]={SubType="Cloth",Level=57,id=13865,StackCount=1,Rarity=2,MinLevel=52,SellPrice=13555,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:13865::::::::40:::::::|h[Runecloth Pants]|h|r"},["Quel'dorai Sash"]={SubType="Cloth",Level=59,id=18341,StackCount=1,Rarity=2,MinLevel=54,SellPrice=7638,Texture=132521,Type="Armor",Link="|cff1eff00|Hitem:18341::::::::40:::::::|h[Quel'dorai Sash]|h|r",EquipLoc="INVTYPE_WAIST"},["Darkwater Bracers"]={SubType="Leather",Level=52,id=10800,StackCount=1,Rarity=3,MinLevel=47,SellPrice=7562,Texture=132607,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:10800::::::::40:::::::|h[Darkwater Bracers]|h|r",Type="Armor"},["Creeping Torment"]={SubType="Consumable",Level=40,id=2927,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=134799,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2927::::::::40:::::::|h[Creeping Torment]|h|r"},["Crochet Boots"]={SubType="Cloth",Level=46,id=3937,StackCount=1,Rarity=0,MinLevel=41,SellPrice=2018,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:3937::::::::40:::::::|h[Crochet Boots]|h|r",Type="Armor"},["Arcane Star"]={SubType="Miscellaneous",Level=61,id=15931,StackCount=1,Rarity=2,MinLevel=56,SellPrice=10646,Texture=135140,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15931::::::::40:::::::|h[Arcane Star]|h|r",Type="Armor"},["Pattern: Sandstalker Breastplate"]={SubType="Leatherworking",Level=62,id=20511,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134939,Link="|cffffffff|Hitem:20511::::::::40:::::::|h[Pattern: Sandstalker Breastplate]|h|r",EquipLoc="",Type="Recipe"},["Laden Dew Gland"]={SubType="Quest",Level=0,id=8428,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134374,Link="|cffffffff|Hitem:8428::::::::40:::::::|h[Laden Dew Gland]|h|r",EquipLoc="",Type="Quest"},["Good Luck Other-Half-Charm"]={SubType="Quest",Level=1,id=12722,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133443,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12722::::::::40:::::::|h[Good Luck Other-Half-Charm]|h|r"},["Weather-worn Boots"]={SubType="Leather",Level=10,id=1173,StackCount=1,Rarity=1,MinLevel=0,SellPrice=52,Texture=132537,Type="Armor",Link="|cffffffff|Hitem:1173::::::::40:::::::|h[Weather-worn Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Hive'Ashi Silithid Brain"]={SubType="Quest",Level=1,id=20457,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134340,Link="|cffffffff|Hitem:20457::::::::40:::::::|h[Hive'Ashi Silithid Brain]|h|r",EquipLoc="",Type="Quest"},["Gri'lek's Grinder"]={SubType="One-Handed Maces",Level=68,id=19961,StackCount=1,Rarity=3,MinLevel=60,SellPrice=70537,Texture=133479,Link="|cff0070dd|Hitem:19961::::::::40:::::::|h[Gri'lek's Grinder]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Book of Rejuvenation VIII"]={SubType="Book",Level=46,id=8906,StackCount=1,Rarity=1,MinLevel=46,SellPrice=6250,Texture=133743,Link="|cffffffff|Hitem:8906::::::::40:::::::|h[Book of Rejuvenation VIII]|h|r",EquipLoc="",Type="Recipe"},["Tourmaline Phial"]={SubType="Quest",Level=1,id=5621,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134765,EquipLoc="",Link="|cffffffff|Hitem:5621::::::::40:::::::|h[Tourmaline Phial]|h|r",Type="Quest"},["Marshal's Plate Legguards"]={SubType="Plate",Level=71,id=16479,StackCount=1,Rarity=4,MinLevel=60,SellPrice=21856,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16479::::::::40:::::::|h[Marshal's Plate Legguards]|h|r",Type="Armor"},["Ordanus' Head"]={SubType="Quest",Level=1,id=5686,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134161,Link="|cffffffff|Hitem:5686::::::::40:::::::|h[Ordanus' Head]|h|r",EquipLoc="",Type="Quest"},["Catseye Elixir"]={SubType="Consumable",Level=40,id=10592,StackCount=5,Rarity=1,MinLevel=30,SellPrice=150,Texture=134816,EquipLoc="",Link="|cffffffff|Hitem:10592::::::::40:::::::|h[Catseye Elixir]|h|r",Type="Consumable"},["Widow Blade"]={SubType="One-Handed Swords",Level=54,id=15217,StackCount=1,Rarity=2,MinLevel=49,SellPrice=30996,Texture=135351,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15217::::::::40:::::::|h[Widow Blade]|h|r",Type="Weapon"},["Earthfury Epaulets"]={SubType="Mail",Level=66,id=16844,StackCount=1,Rarity=4,MinLevel=60,SellPrice=39582,Texture=135060,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16844::::::::40:::::::|h[Earthfury Epaulets]|h|r",Type="Armor"},["Searing Heart"]={SubType="Quest",Level=1,id=5841,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Link="|cffffffff|Hitem:5841::::::::40:::::::|h[Searing Heart]|h|r",EquipLoc="",Type="Quest"},["Empty Barrel"]={SubType="Junk",Level=1,id=4558,StackCount=1,Rarity=0,MinLevel=0,SellPrice=1565,Texture=132622,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:4558::::::::40:::::::|h[Empty Barrel]|h|r",EquipLoc=""},["Dwarven Tinder"]={SubType="Quest",Level=1,id=3339,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,EquipLoc="",Link="|cffffffff|Hitem:3339::::::::40:::::::|h[Dwarven Tinder]|h|r",Type="Quest"},["Irondeep Supplies"]={SubType="Quest",Level=1,id=17522,StackCount=20,Rarity=1,MinLevel=0,SellPrice=2,Texture=132761,EquipLoc="",Link="|cffffffff|Hitem:17522::::::::40:::::::|h[Irondeep Supplies]|h|r",Type="Quest"},["Bounty Hunter's Ring"]={SubType="Miscellaneous",Level=20,id=5351,StackCount=1,Rarity=2,MinLevel=0,SellPrice=403,Texture=133343,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:5351::::::::40:::::::|h[Bounty Hunter's Ring]|h|r",Type="Armor"},["Plans: Girdle of the Dawn"]={SubType="Blacksmithing",Level=58,id=19203,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5500,Texture=134939,Link="|cffffffff|Hitem:19203::::::::40:::::::|h[Plans: Girdle of the Dawn]|h|r",EquipLoc="",Type="Recipe"},["Supreme Sash"]={SubType="Leather",Level=61,id=15434,StackCount=1,Rarity=2,MinLevel=56,SellPrice=10964,Texture=132501,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15434::::::::40:::::::|h[Supreme Sash]|h|r",Type="Armor"},["Gloves of the Immortal"]={SubType="Cloth",Level=71,id=21888,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22875,Texture=132948,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:21888::::::::40:::::::|h[Gloves of the Immortal]|h|r"},["Pattern: Mooncloth Robe"]={SubType="Tailoring",Level=61,id=18487,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:18487::::::::40:::::::|h[Pattern: Mooncloth Robe]|h|r",EquipLoc=""},["Shield of Thorsen"]={SubType="Shields",Level=30,id=13079,StackCount=1,Rarity=3,MinLevel=25,SellPrice=3359,Texture=134956,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:13079::::::::40:::::::|h[Shield of Thorsen]|h|r"},["AHNQIRAJ TEST ITEM B LEATHER BRACER"]={SubType="Miscellaneous",Level=1,id=21432,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21432::::::::40:::::::|h[AHNQIRAJ TEST ITEM B LEATHER BRACER]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Qiraji Magisterial Ring"]={SubType="Quest",Level=1,id=20884,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134894,Type="Quest",EquipLoc="",Link="|cff0070dd|Hitem:20884::::::::40:::::::|h[Qiraji Magisterial Ring]|h|r"},["Mana Ruby"]={SubType="Consumable",Level=58,id=8008,StackCount=1,Rarity=1,MinLevel=58,SellPrice=0,Texture=134128,Link="|cffffffff|Hitem:8008::::::::40:::::::|h[Mana Ruby]|h|r",EquipLoc="",Type="Consumable"},["Acolyte's Pants"]={SubType="Cloth",Level=1,id=1396,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134581,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:1396::::::::40:::::::|h[Acolyte's Pants]|h|r",Type="Armor"},["Deprecated Crippling Agent"]={SubType="Consumable",Level=11,id=3441,StackCount=1,Rarity=1,MinLevel=0,SellPrice=162,Texture=134799,Type="Consumable",Link="|cffffffff|Hitem:3441::::::::40:::::::|h[Deprecated Crippling Agent]|h|r",EquipLoc=""},["Royal Highmark Vestments"]={SubType="Cloth",Level=55,id=9649,StackCount=1,Rarity=2,MinLevel=0,SellPrice=13229,Texture=132658,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:9649::::::::40:::::::|h[Royal Highmark Vestments]|h|r"},["Dreadmist Belt"]={SubType="Cloth",Level=58,id=16702,StackCount=1,Rarity=3,MinLevel=53,SellPrice=8592,Texture=132501,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16702::::::::40:::::::|h[Dreadmist Belt]|h|r",Type="Armor"},["Tome of Fire Blast III"]={SubType="Book",Level=22,id=3095,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133739,Link="|cffffffff|Hitem:3095::::::::40:::::::|h[Tome of Fire Blast III]|h|r",EquipLoc="",Type="Recipe"},["Vital Raiment"]={SubType="Cloth",Level=37,id=14213,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3553,Texture=132647,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14213::::::::40:::::::|h[Vital Raiment]|h|r"},["Cat Carrier (Cornish Rex)"]={SubType="Junk",Level=20,id=8486,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=132599,Link="|cffffffff|Hitem:8486::::::::40:::::::|h[Cat Carrier (Cornish Rex)]|h|r",EquipLoc="",Type="Miscellaneous"},["Verdant Keeper's Aim"]={SubType="Bows",Level=53,id=17753,StackCount=1,Rarity=3,MinLevel=0,SellPrice=26046,Texture=135491,EquipLoc="INVTYPE_RANGED",Link="|cff0070dd|Hitem:17753::::::::40:::::::|h[Verdant Keeper's Aim]|h|r",Type="Weapon"},["Crystalized Scales"]={SubType="Quest",Level=1,id=5675,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134304,EquipLoc="",Link="|cffffffff|Hitem:5675::::::::40:::::::|h[Crystalized Scales]|h|r",Type="Quest"},["A Frayed Knot"]={SubType="Junk",Level=1,id=6150,StackCount=20,Rarity=0,MinLevel=0,SellPrice=22,Texture=133676,Link="|cff9d9d9d|Hitem:6150::::::::40:::::::|h[A Frayed Knot]|h|r",EquipLoc="",Type="Miscellaneous"},["Plans: Heavy Timbermaw Belt"]={SubType="Blacksmithing",Level=58,id=19202,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5500,Texture=134939,Link="|cffffffff|Hitem:19202::::::::40:::::::|h[Plans: Heavy Timbermaw Belt]|h|r",EquipLoc="",Type="Recipe"},["Warstrike Buckler"]={SubType="Shields",Level=64,id=14812,StackCount=1,Rarity=2,MinLevel=59,SellPrice=32007,Texture=134966,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14812::::::::40:::::::|h[Warstrike Buckler]|h|r"},["Amberseal Keeper"]={SubType="Staves",Level=67,id=17113,StackCount=1,Rarity=4,MinLevel=60,SellPrice=119278,Texture=135225,EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:17113::::::::40:::::::|h[Amberseal Keeper]|h|r",Type="Weapon"},["Silithid Goo"]={SubType="Quest",Level=1,id=17345,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,EquipLoc="",Link="|cffffffff|Hitem:17345::::::::40:::::::|h[Silithid Goo]|h|r",Type="Quest"},["Cuirboulli Belt"]={SubType="Leather",Level=27,id=2142,StackCount=1,Rarity=1,MinLevel=22,SellPrice=524,Texture=132513,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:2142::::::::40:::::::|h[Cuirboulli Belt]|h|r",Type="Armor"},["Red Linen Vest"]={SubType="Cloth",Level=12,id=6239,StackCount=1,Rarity=2,MinLevel=7,SellPrice=160,Texture=132681,Link="|cff1eff00|Hitem:6239::::::::40:::::::|h[Red Linen Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Klaven Mortwake's Journal"]={SubType="Quest",Level=1,id=7908,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133742,Link="|cffffffff|Hitem:7908::::::::40:::::::|h[Klaven Mortwake's Journal]|h|r",EquipLoc="",Type="Quest"},["Codex of Fade IV"]={SubType="Book",Level=40,id=8989,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133741,Link="|cffffffff|Hitem:8989::::::::40:::::::|h[Codex of Fade IV]|h|r",EquipLoc="",Type="Recipe"},["Mail Combat Headguard"]={SubType="Mail",Level=35,id=4077,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3298,Texture=132768,Link="|cff1eff00|Hitem:4077::::::::40:::::::|h[Mail Combat Headguard]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Oslow's Toolbox"]={SubType="Quest",Level=1,id=1309,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132596,Type="Quest",Link="|cffffffff|Hitem:1309::::::::40:::::::|h[Oslow's Toolbox]|h|r",EquipLoc=""},["Nagmara's Vial"]={SubType="Quest",Level=1,id=11412,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134714,Type="Quest",Link="|cffffffff|Hitem:11412::::::::40:::::::|h[Nagmara's Vial]|h|r",EquipLoc=""},["Infantry Cloak"]={SubType="Cloth",Level=9,id=6508,StackCount=1,Rarity=1,MinLevel=4,SellPrice=34,Texture=133763,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:6508::::::::40:::::::|h[Infantry Cloak]|h|r"},["Lieutenant Commander's Leather Spaulders"]={SubType="Leather",Level=63,id=16420,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11239,Texture=135056,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16420::::::::40:::::::|h[Lieutenant Commander's Leather Spaulders]|h|r",Type="Armor"},["Scholarly Robes"]={SubType="Cloth",Level=25,id=2034,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1035,Texture=132645,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:2034::::::::40:::::::|h[Scholarly Robes]|h|r"},["Alchemist's Wand"]={SubType="Wands",Level=7,id=5235,StackCount=1,Rarity=1,MinLevel=0,SellPrice=41,Texture=135139,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:5235::::::::40:::::::|h[Alchemist's Wand]|h|r",Type="Weapon"},["2700 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19186,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19186::::::::40:::::::|h[2700 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Destroyed Red Scepter Shard"]={SubType="Quest",Level=1,id=21141,StackCount=1,Rarity=0,MinLevel=0,SellPrice=0,Texture=134130,Type="Quest",EquipLoc="",Link="|cff9d9d9d|Hitem:21141::::::::40:::::::|h[Destroyed Red Scepter Shard]|h|r"},["Deprecated Tattered Shirt"]={SubType="Miscellaneous",Level=1,id=3147,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:3147::::::::40:::::::|h[Deprecated Tattered Shirt]|h|r"},["Quickdraw Gloves"]={SubType="Leather",Level=62,id=18377,StackCount=1,Rarity=3,MinLevel=57,SellPrice=13076,Texture=132955,Type="Armor",Link="|cff0070dd|Hitem:18377::::::::40:::::::|h[Quickdraw Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["3700 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19201,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19201::::::::40:::::::|h[3700 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Polished Ironwood Crossbow"]={SubType="Crossbows",Level=71,id=20599,StackCount=1,Rarity=4,MinLevel=60,SellPrice=81672,Texture=135540,Link="|cffa335ee|Hitem:20599::::::::40:::::::|h[Polished Ironwood Crossbow]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Shadow Oil"]={SubType="Consumable",Level=34,id=3824,StackCount=5,Rarity=1,MinLevel=24,SellPrice=150,Texture=134803,Type="Consumable",Link="|cffffffff|Hitem:3824::::::::40:::::::|h[Shadow Oil]|h|r",EquipLoc=""},["Bloodlust Britches"]={SubType="Mail",Level=57,id=14805,StackCount=1,Rarity=2,MinLevel=52,SellPrice=20577,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14805::::::::40:::::::|h[Bloodlust Britches]|h|r"},["Un'Goro Etherfruit"]={SubType="Consumable",Level=55,id=12763,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=133998,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12763::::::::40:::::::|h[Un'Goro Etherfruit]|h|r"},["PVP Plate Helm Alliance"]={SubType="Plate",Level=60,id=16026,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7160,Texture=133121,EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:16026::::::::40:::::::|h[PVP Plate Helm Alliance]|h|r",Type="Armor"},["AHNQIRAJ TEST ITEM B LEATHER GAUNTLETS"]={SubType="Miscellaneous",Level=1,id=21428,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:21428::::::::40:::::::|h[AHNQIRAJ TEST ITEM B LEATHER GAUNTLETS]|h|r"},["Pardoc Grips"]={SubType="Cloth",Level=35,id=15585,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1446,Texture=132949,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15585::::::::40:::::::|h[Pardoc Grips]|h|r",Type="Armor"},["Hive'Zora Silithid Brain"]={SubType="Quest",Level=1,id=20458,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134340,Link="|cffffffff|Hitem:20458::::::::40:::::::|h[Hive'Zora Silithid Brain]|h|r",EquipLoc="",Type="Quest"},["Field Marshal's Chain Breastplate"]={SubType="Mail",Level=74,id=16466,StackCount=1,Rarity=4,MinLevel=60,SellPrice=38968,Texture=132625,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16466::::::::40:::::::|h[Field Marshal's Chain Breastplate]|h|r",Type="Armor"},["OLDDwarven Initiate's Boots"]={SubType="Miscellaneous",Level=1,id=92,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:92::::::::40:::::::|h[OLDDwarven Initiate's Boots]|h|r",Type="Armor"},["Plans: Runic Plate Helm"]={SubType="Blacksmithing",Level=61,id=12714,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12714::::::::40:::::::|h[Plans: Runic Plate Helm]|h|r"},["The Lion Horn of Stormwind"]={SubType="Miscellaneous",Level=63,id=14557,StackCount=1,Rarity=4,MinLevel=58,SellPrice=17880,Texture=134229,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:14557::::::::40:::::::|h[The Lion Horn of Stormwind]|h|r"},["Delicate Ribcage"]={SubType="Junk",Level=1,id=11416,StackCount=10,Rarity=0,MinLevel=0,SellPrice=328,Texture=133719,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11416::::::::40:::::::|h[Delicate Ribcage]|h|r",EquipLoc=""},["Grimlok's Charge"]={SubType="Polearms",Level=47,id=9416,StackCount=1,Rarity=3,MinLevel=42,SellPrice=28218,Texture=135131,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9416::::::::40:::::::|h[Grimlok's Charge]|h|r"},["Mud's Crushers"]={SubType="Leather",Level=36,id=9518,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1899,Texture=132959,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9518::::::::40:::::::|h[Mud's Crushers]|h|r"},["Cutthroat's Cape"]={SubType="Cloth",Level=30,id=15135,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1357,Texture=133760,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15135::::::::40:::::::|h[Cutthroat's Cape]|h|r",Type="Armor"},["General's Plate Leggings"]={SubType="Plate",Level=71,id=16543,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22782,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16543::::::::40:::::::|h[General's Plate Leggings]|h|r",Type="Armor"},["Mighty Rage Potion"]={SubType="Consumable",Level=51,id=13442,StackCount=5,Rarity=1,MinLevel=46,SellPrice=500,Texture=134821,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13442::::::::40:::::::|h[Mighty Rage Potion]|h|r"},["Monster - Mace, Scepter of the Shifting Sands"]={SubType="One-Handed Maces",Level=1,id=20738,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:20738::::::::40:::::::|h[Monster - Mace, Scepter of the Shifting Sands]|h|r"},["Nature Sword"]={SubType="One-Handed Swords",Level=1,id=948,StackCount=1,Rarity=1,MinLevel=1,SellPrice=3,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:948::::::::40:::::::|h[Nature Sword]|h|r"},["Judgement Bindings"]={SubType="Plate",Level=76,id=16951,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27889,Texture=132617,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16951::::::::40:::::::|h[Judgement Bindings]|h|r",Type="Armor"},["Sash of the Grand Hunt"]={SubType="Mail",Level=60,id=22207,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14233,Texture=132517,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:22207::::::::40:::::::|h[Sash of the Grand Hunt]|h|r"},["Deprecated Red Leather Mask"]={SubType="Leather",Level=20,id=2588,StackCount=1,Rarity=1,MinLevel=15,SellPrice=324,Texture=133694,EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:2588::::::::40:::::::|h[Deprecated Red Leather Mask]|h|r",Type="Armor"},["Succubus Summoning Scroll"]={SubType="Quest",Level=1,id=6623,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Type="Quest",Link="|cffffffff|Hitem:6623::::::::40:::::::|h[Succubus Summoning Scroll]|h|r",EquipLoc=""},["2900 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19194,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19194::::::::40:::::::|h[2900 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Holy War Sword"]={SubType="One-Handed Swords",Level=65,id=15221,StackCount=1,Rarity=2,MinLevel=60,SellPrice=51946,Texture=135276,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15221::::::::40:::::::|h[Holy War Sword]|h|r",Type="Weapon"},["Staff of the Qiraji Prophets"]={SubType="Staves",Level=75,id=21128,StackCount=1,Rarity=4,MinLevel=60,SellPrice=168041,Texture=135138,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:21128::::::::40:::::::|h[Staff of the Qiraji Prophets]|h|r"},["Black Dragonscale Boots"]={SubType="Mail",Level=61,id=16984,StackCount=1,Rarity=4,MinLevel=56,SellPrice=32653,Texture=132590,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16984::::::::40:::::::|h[Black Dragonscale Boots]|h|r",Type="Armor"},["Oglethorpe's Pledge of Secrecy"]={SubType="Quest",Level=0,id=10794,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,EquipLoc="",Link="|cffffffff|Hitem:10794::::::::40:::::::|h[Oglethorpe's Pledge of Secrecy]|h|r",Type="Quest"},["Pillager's Chestguard"]={SubType="Mail",Level=37,id=15557,StackCount=1,Rarity=2,MinLevel=32,SellPrice=5486,Texture=132634,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15557::::::::40:::::::|h[Pillager's Chestguard]|h|r",Type="Armor"},["Omnicast Boots"]={SubType="Cloth",Level=59,id=11822,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14153,Texture=132539,Type="Armor",Link="|cff0070dd|Hitem:11822::::::::40:::::::|h[Omnicast Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Monster - Glaive - 1 Blade Basic"]={SubType="Polearms",Level=1,id=3432,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135128,Link="|cff9d9d9d|Hitem:3432::::::::40:::::::|h[Monster - Glaive - 1 Blade Basic]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Fiery Cloak"]={SubType="Cloth",Level=25,id=4797,StackCount=1,Rarity=2,MinLevel=20,SellPrice=852,Texture=133760,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:4797::::::::40:::::::|h[Fiery Cloak]|h|r"},["Smooth Leather Gloves"]={SubType="Leather",Level=58,id=3973,StackCount=1,Rarity=0,MinLevel=53,SellPrice=3657,Texture=132952,Link="|cff9d9d9d|Hitem:3973::::::::40:::::::|h[Smooth Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Bundle of Cards"]={SubType="Consumable",Level=1,id=22284,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133459,Link="|cffffffff|Hitem:22284::::::::40:::::::|h[Bundle of Cards]|h|r",EquipLoc="",Type="Consumable"},["Spiked Chain Cloak"]={SubType="Cloth",Level=23,id=15519,StackCount=1,Rarity=2,MinLevel=18,SellPrice=607,Texture=133772,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15519::::::::40:::::::|h[Spiked Chain Cloak]|h|r",Type="Armor"},["Coarse Thread"]={SubType="Trade Goods",Level=5,id=2320,StackCount=20,Rarity=1,MinLevel=0,SellPrice=2,Texture=132891,Link="|cffffffff|Hitem:2320::::::::40:::::::|h[Coarse Thread]|h|r",EquipLoc="",Type="Trade Goods"},["Uthek's Finger"]={SubType="Miscellaneous",Level=42,id=6774,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2885,Texture=135465,Link="|cff1eff00|Hitem:6774::::::::40:::::::|h[Uthek's Finger]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Voodoo Band"]={SubType="Miscellaneous",Level=37,id=1996,StackCount=1,Rarity=2,MinLevel=32,SellPrice=1720,Texture=133357,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:1996::::::::40:::::::|h[Voodoo Band]|h|r",Type="Armor"},["Gift of Adoration: Darnassus"]={SubType="Consumable",Level=1,id=21979,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135450,Link="|cffffffff|Hitem:21979::::::::40:::::::|h[Gift of Adoration: Darnassus]|h|r",EquipLoc="",Type="Consumable"},["Feathered Armor"]={SubType="Leather",Level=27,id=4190,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1025,Texture=132721,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:4190::::::::40:::::::|h[Feathered Armor]|h|r",Type="Armor"},["Trance Stone"]={SubType="Miscellaneous",Level=71,id=20582,StackCount=1,Rarity=4,MinLevel=60,SellPrice=62802,Texture=134333,Link="|cffa335ee|Hitem:20582::::::::40:::::::|h[Trance Stone]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Dreadmist Sandals"]={SubType="Cloth",Level=59,id=16704,StackCount=1,Rarity=3,MinLevel=54,SellPrice=13639,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16704::::::::40:::::::|h[Dreadmist Sandals]|h|r",Type="Armor"},["General's Satin Bracers"]={SubType="Cloth",Level=65,id=17619,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8689,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:17619::::::::40:::::::|h[General's Satin Bracers]|h|r",Type="Armor"},["Monster - Item, Bag - Brown Offhand"]={SubType="Miscellaneous",Level=1,id=12745,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133639,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12745::::::::40:::::::|h[Monster - Item, Bag - Brown Offhand]|h|r"},["Wailing Nightbane Pauldrons"]={SubType="Plate",Level=57,id=13405,StackCount=1,Rarity=3,MinLevel=52,SellPrice=13102,Texture=135056,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13405::::::::40:::::::|h[Wailing Nightbane Pauldrons]|h|r"},["Outrunner's Slippers"]={SubType="Mail",Level=20,id=15498,StackCount=1,Rarity=2,MinLevel=15,SellPrice=674,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15498::::::::40:::::::|h[Outrunner's Slippers]|h|r",Type="Armor"},["Knitted Gloves"]={SubType="Cloth",Level=10,id=793,StackCount=1,Rarity=1,MinLevel=5,SellPrice=27,Texture=132952,Type="Armor",Link="|cffffffff|Hitem:793::::::::40:::::::|h[Knitted Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Elder's Gloves"]={SubType="Cloth",Level=32,id=7366,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1098,Texture=132951,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7366::::::::40:::::::|h[Elder's Gloves]|h|r"},["Tome of Conjure Water"]={SubType="Book",Level=4,id=5644,StackCount=1,Rarity=1,MinLevel=4,SellPrice=10,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5644::::::::40:::::::|h[Tome of Conjure Water]|h|r"},["Strapped Pants"]={SubType="Leather",Level=66,id=3982,StackCount=1,Rarity=0,MinLevel=61,SellPrice=11175,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:3982::::::::40:::::::|h[Strapped Pants]|h|r",Type="Armor"},["Recipe: Mageblood Potion"]={SubType="Alchemy",Level=55,id=20011,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:20011::::::::40:::::::|h[Recipe: Mageblood Potion]|h|r"},["Gloves of Delusional Power"]={SubType="Cloth",Level=72,id=20618,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22777,Texture=132951,Link="|cffa335ee|Hitem:20618::::::::40:::::::|h[Gloves of Delusional Power]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Arcane Bomb"]={SubType="Explosives",Level=60,id=16040,StackCount=10,Rarity=1,MinLevel=0,SellPrice=4000,Texture=136173,EquipLoc="",Link="|cffffffff|Hitem:16040::::::::40:::::::|h[Arcane Bomb]|h|r",Type="Trade Goods"},["Black Leather D02 Breastplate"]={SubType="Leather",Level=1,id=3537,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132715,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:3537::::::::40:::::::|h[Black Leather D02 Breastplate]|h|r"},["Codex of Prayer of Healing"]={SubType="Book",Level=30,id=4269,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133741,Link="|cffffffff|Hitem:4269::::::::40:::::::|h[Codex of Prayer of Healing]|h|r",EquipLoc="",Type="Recipe"},["Qiraji Bindings of Dominance"]={SubType="Quest",Level=1,id=20932,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=134881,Link="|cffa335ee|Hitem:20932::::::::40:::::::|h[Qiraji Bindings of Dominance]|h|r",EquipLoc="",Type="Quest"},["Monster - Item, Bucket - Wood Offhand"]={SubType="Miscellaneous",Level=1,id=13604,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134718,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13604::::::::40:::::::|h[Monster - Item, Bucket - Wood Offhand]|h|r"},["Nightslayer Chestpiece"]={SubType="Leather",Level=66,id=16820,StackCount=1,Rarity=4,MinLevel=60,SellPrice=43137,Texture=132648,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16820::::::::40:::::::|h[Nightslayer Chestpiece]|h|r",Type="Armor"},["Twain Random Sword"]={SubType="Miscellaneous",Level=20,id=6174,StackCount=1,Rarity=0,MinLevel=15,SellPrice=694,Texture=135273,Link="|cff9d9d9d|Hitem:6174::::::::40:::::::|h[Twain Random Sword]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Force Reactive Disk"]={SubType="Shields",Level=65,id=18168,StackCount=1,Rarity=4,MinLevel=60,SellPrice=56416,Texture=135741,Type="Armor",Link="|cffa335ee|Hitem:18168::::::::40:::::::|h[Force Reactive Disk]|h|r",EquipLoc="INVTYPE_SHIELD"},["Brute Hammer"]={SubType="Two-Handed Maces",Level=28,id=15464,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4504,Texture=133053,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15464::::::::40:::::::|h[Brute Hammer]|h|r",Type="Weapon"},["Monster - Item, Bag - Brown"]={SubType="Miscellaneous",Level=1,id=12744,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133639,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12744::::::::40:::::::|h[Monster - Item, Bag - Brown]|h|r"},["Pattern: Primal Batskin Jerkin"]={SubType="Leatherworking",Level=65,id=19769,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19769::::::::40:::::::|h[Pattern: Primal Batskin Jerkin]|h|r",EquipLoc="",Type="Recipe"},["Beacon of Hope"]={SubType="Miscellaneous",Level=38,id=9393,StackCount=1,Rarity=3,MinLevel=33,SellPrice=7882,Texture=134249,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:9393::::::::40:::::::|h[Beacon of Hope]|h|r"},["Khoo's Point"]={SubType="Polearms",Level=44,id=13058,StackCount=1,Rarity=3,MinLevel=39,SellPrice=21833,Texture=135125,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13058::::::::40:::::::|h[Khoo's Point]|h|r"},["Emerald Girdle"]={SubType="Plate",Level=55,id=10278,StackCount=1,Rarity=2,MinLevel=50,SellPrice=6239,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10278::::::::40:::::::|h[Emerald Girdle]|h|r",Type="Armor"},["Book of Healing Touch V"]={SubType="Book",Level=26,id=5160,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:5160::::::::40:::::::|h[Book of Healing Touch V]|h|r",Type="Recipe"},["Stoley's Bottle"]={SubType="Quest",Level=1,id=9245,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132798,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9245::::::::40:::::::|h[Stoley's Bottle]|h|r"},["Onyxia Scale Breastplate"]={SubType="Mail",Level=62,id=15141,StackCount=1,Rarity=4,MinLevel=57,SellPrice=41937,Texture=132741,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:15141::::::::40:::::::|h[Onyxia Scale Breastplate]|h|r",Type="Armor"},["Arcane Crystal Pendant"]={SubType="Miscellaneous",Level=52,id=20037,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=134135,Link="|cff0070dd|Hitem:20037::::::::40:::::::|h[Arcane Crystal Pendant]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Protector Ankleguards"]={SubType="Mail",Level=50,id=14794,StackCount=1,Rarity=2,MinLevel=45,SellPrice=10563,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14794::::::::40:::::::|h[Protector Ankleguards]|h|r"},["Plans: Ironvine Breastplate"]={SubType="Blacksmithing",Level=70,id=22766,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:22766::::::::40:::::::|h[Plans: Ironvine Breastplate]|h|r"},["Blighted Leggings"]={SubType="Cloth",Level=35,id=7709,StackCount=1,Rarity=3,MinLevel=30,SellPrice=3559,Texture=134587,Link="|cff0070dd|Hitem:7709::::::::40:::::::|h[Blighted Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Formula: Enchant Chest - Minor Mana"]={SubType="Enchanting",Level=12,id=6342,StackCount=1,Rarity=2,MinLevel=0,SellPrice=75,Texture=134327,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:6342::::::::40:::::::|h[Formula: Enchant Chest - Minor Mana]|h|r"},["Bluegill Kukri"]={SubType="One-Handed Swords",Level=24,id=2046,StackCount=1,Rarity=2,MinLevel=19,SellPrice=2461,Texture=135662,Link="|cff1eff00|Hitem:2046::::::::40:::::::|h[Bluegill Kukri]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Black Battlestrider"]={SubType="Junk",Level=40,id=18243,StackCount=1,Rarity=4,MinLevel=40,SellPrice=0,Texture=132247,Type="Miscellaneous",Link="|cffa335ee|Hitem:18243::::::::40:::::::|h[Black Battlestrider]|h|r",EquipLoc=""},["Knight-Captain's Satin Leggings"]={SubType="Cloth",Level=63,id=17599,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11518,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:17599::::::::40:::::::|h[Knight-Captain's Satin Leggings]|h|r",Type="Armor"},["Vaelan's Gift"]={SubType="Quest",Level=1,id=12339,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132595,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12339::::::::40:::::::|h[Vaelan's Gift]|h|r"},["Albino Crocscale Boots"]={SubType="Leather",Level=53,id=17728,StackCount=1,Rarity=3,MinLevel=48,SellPrice=12458,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:17728::::::::40:::::::|h[Albino Crocscale Boots]|h|r",Type="Armor"},["Betrayer's Boots"]={SubType="Cloth",Level=65,id=19897,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25878,Texture=132566,Link="|cffa335ee|Hitem:19897::::::::40:::::::|h[Betrayer's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Worn Mail Pants"]={SubType="Mail",Level=12,id=1735,StackCount=1,Rarity=0,MinLevel=7,SellPrice=89,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:1735::::::::40:::::::|h[Worn Mail Pants]|h|r",Type="Armor"},["Laced Cloak"]={SubType="Cloth",Level=17,id=1741,StackCount=1,Rarity=0,MinLevel=12,SellPrice=112,Texture=133765,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:1741::::::::40:::::::|h[Laced Cloak]|h|r"},["Test Arcane Resist Mail LockBox"]={SubType="Junk",Level=1,id=16188,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16188::::::::40:::::::|h[Test Arcane Resist Mail LockBox]|h|r",Type="Miscellaneous"},["Lieutenant Commander's Chain Helmet"]={SubType="Mail",Level=63,id=16428,StackCount=1,Rarity=3,MinLevel=58,SellPrice=12914,Texture=133123,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16428::::::::40:::::::|h[Lieutenant Commander's Chain Helmet]|h|r",Type="Armor"},["Knight-Captain's Dragonhide Tunic"]={SubType="Leather",Level=63,id=16421,StackCount=1,Rarity=3,MinLevel=58,SellPrice=15039,Texture=132725,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16421::::::::40:::::::|h[Knight-Captain's Dragonhide Tunic]|h|r",Type="Armor"},["Filled Dalson's Tears Bottle"]={SubType="Quest",Level=1,id=13191,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134821,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13191::::::::40:::::::|h[Filled Dalson's Tears Bottle]|h|r"},["Blisterbane Wrap"]={SubType="Cloth",Level=55,id=12552,StackCount=1,Rarity=3,MinLevel=50,SellPrice=10980,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:12552::::::::40:::::::|h[Blisterbane Wrap]|h|r"},["Death Cap"]={SubType="Quest",Level=1,id=5270,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134523,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5270::::::::40:::::::|h[Death Cap]|h|r"},["Argent Boots"]={SubType="Cloth",Level=58,id=19056,StackCount=1,Rarity=3,MinLevel=53,SellPrice=12941,Texture=132560,Link="|cff0070dd|Hitem:19056::::::::40:::::::|h[Argent Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Heraldic Cloak"]={SubType="Cloth",Level=45,id=8120,StackCount=1,Rarity=2,MinLevel=40,SellPrice=6207,Texture=133770,Link="|cff1eff00|Hitem:8120::::::::40:::::::|h[Heraldic Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Deprecated Shadowmaw Pelt"]={SubType="Trade Goods",Level=38,id=1693,StackCount=10,Rarity=1,MinLevel=0,SellPrice=70,Texture=134367,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:1693::::::::40:::::::|h[Deprecated Shadowmaw Pelt]|h|r"},["Deprecated Recipe: Elixir of Fortitude"]={SubType="Alchemy",Level=12,id=2554,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=134941,Link="|cffffffff|Hitem:2554::::::::40:::::::|h[Deprecated Recipe: Elixir of Fortitude]|h|r",EquipLoc="",Type="Recipe"},["Schematic: Pet Bombling"]={SubType="Engineering",Level=41,id=11828,StackCount=1,Rarity=2,MinLevel=0,SellPrice=675,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:11828::::::::40:::::::|h[Schematic: Pet Bombling]|h|r",EquipLoc=""},["Angerclaw Grizzly Hide"]={SubType="Quest",Level=1,id=20018,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134353,Link="|cffffffff|Hitem:20018::::::::40:::::::|h[Angerclaw Grizzly Hide]|h|r",EquipLoc="",Type="Quest"},["Savage Mail Boots"]={SubType="Mail",Level=63,id=12616,StackCount=1,Rarity=2,MinLevel=58,SellPrice=21841,Texture=132582,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:12616::::::::40:::::::|h[Savage Mail Boots]|h|r"},["3200 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19187,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19187::::::::40:::::::|h[3200 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["2200 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19188,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19188::::::::40:::::::|h[2200 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Schematic: Snowmaster 9000"]={SubType="Engineering",Level=38,id=17720,StackCount=1,Rarity=2,MinLevel=0,SellPrice=600,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:17720::::::::40:::::::|h[Schematic: Snowmaster 9000]|h|r",Type="Recipe"},["Ragefire Wand"]={SubType="Wands",Level=40,id=7513,StackCount=1,Rarity=3,MinLevel=0,SellPrice=9805,Texture=135471,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:7513::::::::40:::::::|h[Ragefire Wand]|h|r"},["Arcanum of Rapidity"]={SubType="Quest",Level=50,id=18329,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134072,Type="Quest",Link="|cff1eff00|Hitem:18329::::::::40:::::::|h[Arcanum of Rapidity]|h|r",EquipLoc=""},["Plans: Mithril Scale Bracers"]={SubType="Blacksmithing",Level=43,id=7995,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:7995::::::::40:::::::|h[Plans: Mithril Scale Bracers]|h|r",Type="Recipe"},["Bloodstrike Dagger"]={SubType="Daggers",Level=64,id=15247,StackCount=1,Rarity=2,MinLevel=59,SellPrice=50576,Texture=135639,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15247::::::::40:::::::|h[Bloodstrike Dagger]|h|r",Type="Weapon"},["Grimoire of Sacrifice (Rank 2)"]={SubType="Book",Level=24,id=16352,StackCount=1,Rarity=1,MinLevel=24,SellPrice=750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16352::::::::40:::::::|h[Grimoire of Sacrifice (Rank 2)]|h|r",Type="Recipe"},["Orange Martial Shirt"]={SubType="Miscellaneous",Level=40,id=10052,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=135027,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:10052::::::::40:::::::|h[Orange Martial Shirt]|h|r",Type="Armor"},["Felheart Shoulder Pads"]={SubType="Cloth",Level=66,id=16807,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26572,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16807::::::::40:::::::|h[Felheart Shoulder Pads]|h|r",Type="Armor"},["General's Dreadweave Pants"]={SubType="Cloth",Level=71,id=17593,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22192,Texture=134587,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:17593::::::::40:::::::|h[General's Dreadweave Pants]|h|r",Type="Armor"},["Black Bear Hide Vest"]={SubType="Leather",Level=12,id=2069,StackCount=1,Rarity=1,MinLevel=7,SellPrice=121,Texture=132760,Link="|cffffffff|Hitem:2069::::::::40:::::::|h[Black Bear Hide Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Stonetalon Sap"]={SubType="Quest",Level=1,id=5582,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,EquipLoc="",Link="|cffffffff|Hitem:5582::::::::40:::::::|h[Stonetalon Sap]|h|r",Type="Quest"},["Lavawalker Greaves"]={SubType="Plate",Level=62,id=13527,StackCount=1,Rarity=2,MinLevel=57,SellPrice=13149,Texture=132590,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:13527::::::::40:::::::|h[Lavawalker Greaves]|h|r"},["Poisonous Mushroom"]={SubType="Consumable",Level=15,id=5823,StackCount=10,Rarity=1,MinLevel=5,SellPrice=5,Texture=134527,EquipLoc="",Link="|cffffffff|Hitem:5823::::::::40:::::::|h[Poisonous Mushroom]|h|r",Type="Consumable"},["Sam's Tome"]={SubType="Book",Level=1,id=1164,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134940,EquipLoc="",Link="|cffffffff|Hitem:1164::::::::40:::::::|h[Sam's Tome]|h|r",Type="Recipe"},["Megashot Rifle"]={SubType="Guns",Level=53,id=17717,StackCount=1,Rarity=3,MinLevel=48,SellPrice=26425,Texture=135614,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:17717::::::::40:::::::|h[Megashot Rifle]|h|r",Type="Weapon"},["Bloodlust Belt"]={SubType="Mail",Level=55,id=14803,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9087,Texture=132502,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14803::::::::40:::::::|h[Bloodlust Belt]|h|r"},["Pathfinder Vest"]={SubType="Leather",Level=32,id=15346,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2788,Texture=132656,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15346::::::::40:::::::|h[Pathfinder Vest]|h|r",Type="Armor"},["Highperch Wyvern Egg"]={SubType="Quest",Level=1,id=12356,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132833,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12356::::::::40:::::::|h[Highperch Wyvern Egg]|h|r"},["Monster - Mace, Thaurissan Silver"]={SubType="One-Handed Maces",Level=1,id=12883,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133476,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12883::::::::40:::::::|h[Monster - Mace, Thaurissan Silver]|h|r"},["Enforcer Pauldrons"]={SubType="Mail",Level=40,id=6747,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5015,Texture=135034,Type="Armor",Link="|cff1eff00|Hitem:6747::::::::40:::::::|h[Enforcer Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Marauder's Circlet"]={SubType="Mail",Level=39,id=15572,StackCount=1,Rarity=2,MinLevel=34,SellPrice=4714,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15572::::::::40:::::::|h[Marauder's Circlet]|h|r",Type="Armor"},["First Sergeant's Silk Cuffs"]={SubType="Cloth",Level=63,id=16486,StackCount=1,Rarity=3,MinLevel=58,SellPrice=5695,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16486::::::::40:::::::|h[First Sergeant's Silk Cuffs]|h|r",Type="Armor"},["Ancient Corroded Leggings"]={SubType="Mail",Level=72,id=20617,StackCount=1,Rarity=4,MinLevel=60,SellPrice=68076,Texture=134660,Link="|cffa335ee|Hitem:20617::::::::40:::::::|h[Ancient Corroded Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["3400 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19198,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19198::::::::40:::::::|h[3400 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Legplates of the Chromatic Defier"]={SubType="Mail",Level=62,id=12945,StackCount=1,Rarity=4,MinLevel=0,SellPrice=42565,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:12945::::::::40:::::::|h[Legplates of the Chromatic Defier]|h|r"},["Dalewind Trousers"]={SubType="Cloth",Level=52,id=13008,StackCount=1,Rarity=3,MinLevel=47,SellPrice=12815,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:13008::::::::40:::::::|h[Dalewind Trousers]|h|r"},["Savage Gladiator Chain"]={SubType="Mail",Level=57,id=11726,StackCount=1,Rarity=4,MinLevel=52,SellPrice=33533,Texture=132637,Type="Armor",Link="|cffa335ee|Hitem:11726::::::::40:::::::|h[Savage Gladiator Chain]|h|r",EquipLoc="INVTYPE_CHEST"},["Ogreseer Tower Boots"]={SubType="Cloth",Level=59,id=13282,StackCount=1,Rarity=3,MinLevel=54,SellPrice=13684,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13282::::::::40:::::::|h[Ogreseer Tower Boots]|h|r"},["Uncracked Scarab Shell"]={SubType="Quest",Level=1,id=9238,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134305,Link="|cffffffff|Hitem:9238::::::::40:::::::|h[Uncracked Scarab Shell]|h|r",EquipLoc="",Type="Quest"},["Contest Winner's Tabard"]={SubType="Miscellaneous",Level=1,id=19160,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135026,Link="|cffffffff|Hitem:19160::::::::40:::::::|h[Contest Winner's Tabard]|h|r",EquipLoc="INVTYPE_TABARD",Type="Armor"},["The Rock"]={SubType="Miscellaneous",Level=60,id=7337,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250000,Texture=133373,EquipLoc="INVTYPE_FINGER",Link="|cffffffff|Hitem:7337::::::::40:::::::|h[The Rock]|h|r",Type="Armor"},["Monster - Lady Blameux"]={SubType="One-Handed Axes",Level=1,id=23582,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:23582::::::::40:::::::|h[Monster - Lady Blameux]|h|r"},["Corpseshroud"]={SubType="Cloth",Level=40,id=10574,StackCount=1,Rarity=3,MinLevel=35,SellPrice=3775,Texture=133756,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:10574::::::::40:::::::|h[Corpseshroud]|h|r",Type="Armor"},["Telescopic Lens"]={SubType="Quest",Level=1,id=5077,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134442,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5077::::::::40:::::::|h[Telescopic Lens]|h|r"},["Enchanted Powder"]={SubType="Trade Goods",Level=20,id=6374,StackCount=20,Rarity=1,MinLevel=0,SellPrice=125,Texture=133849,Type="Trade Goods",Link="|cffffffff|Hitem:6374::::::::40:::::::|h[Enchanted Powder]|h|r",EquipLoc=""},["Stormwind Brie"]={SubType="Consumable",Level=35,id=1707,StackCount=20,Rarity=1,MinLevel=25,SellPrice=62,Texture=133994,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:1707::::::::40:::::::|h[Stormwind Brie]|h|r"},["Lambent Scale Gloves"]={SubType="Mail",Level=27,id=3047,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1052,Texture=132945,Link="|cff1eff00|Hitem:3047::::::::40:::::::|h[Lambent Scale Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Red Skeletal Warhorse"]={SubType="Junk",Level=40,id=18248,StackCount=1,Rarity=4,MinLevel=40,SellPrice=0,Texture=132264,Type="Miscellaneous",Link="|cffa335ee|Hitem:18248::::::::40:::::::|h[Red Skeletal Warhorse]|h|r",EquipLoc=""},["Greater Darkmoon Prize"]={SubType="Junk",Level=50,id=19296,StackCount=1,Rarity=2,MinLevel=45,SellPrice=250,Texture=133654,Link="|cff1eff00|Hitem:19296::::::::40:::::::|h[Greater Darkmoon Prize]|h|r",EquipLoc="",Type="Miscellaneous"},["Test Offhand Weapon"]={SubType="Daggers",Level=2,id=3865,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=133980,Link="|cffffffff|Hitem:3865::::::::40:::::::|h[Test Offhand Weapon]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND",Type="Weapon"},["3100 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19196,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19196::::::::40:::::::|h[3100 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Tigerseye"]={SubType="Trade Goods",Level=15,id=818,StackCount=20,Rarity=2,MinLevel=0,SellPrice=100,Texture=134118,Link="|cff1eff00|Hitem:818::::::::40:::::::|h[Tigerseye]|h|r",EquipLoc="",Type="Trade Goods"},["Blood Tiger Shoulders"]={SubType="Leather",Level=65,id=19689,StackCount=1,Rarity=3,MinLevel=60,SellPrice=24082,Texture=135054,Link="|cff0070dd|Hitem:19689::::::::40:::::::|h[Blood Tiger Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Wormscale Stompers"]={SubType="Mail",Level=81,id=21612,StackCount=1,Rarity=4,MinLevel=60,SellPrice=87308,Texture=132551,Link="|cffa335ee|Hitem:21612::::::::40:::::::|h[Wormscale Stompers]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Lambent Scale Bracers"]={SubType="Mail",Level=26,id=3212,StackCount=1,Rarity=2,MinLevel=21,SellPrice=929,Texture=132600,Type="Armor",Link="|cff1eff00|Hitem:3212::::::::40:::::::|h[Lambent Scale Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Eye of Burning Shadow"]={SubType="Quest",Level=4,id=4903,StackCount=1,Rarity=1,MinLevel=4,SellPrice=0,Texture=134085,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4903::::::::40:::::::|h[Eye of Burning Shadow]|h|r"},["Qiraji Sacrificial Dagger"]={SubType="Daggers",Level=66,id=21498,StackCount=1,Rarity=4,MinLevel=60,SellPrice=92593,Texture=135648,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:21498::::::::40:::::::|h[Qiraji Sacrificial Dagger]|h|r"},["Fel Creep"]={SubType="Quest",Level=0,id=11514,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1,Texture=136007,Type="Quest",Link="|cffffffff|Hitem:11514::::::::40:::::::|h[Fel Creep]|h|r",EquipLoc=""},["Monster - Shield, Small Wooden"]={SubType="Shields",Level=1,id=1957,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:1957::::::::40:::::::|h[Monster - Shield, Small Wooden]|h|r",Type="Armor"},["Bonelink Sabatons"]={SubType="Mail",Level=45,id=15614,StackCount=1,Rarity=2,MinLevel=40,SellPrice=7026,Texture=132590,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15614::::::::40:::::::|h[Bonelink Sabatons]|h|r",Type="Armor"},["Shadow Mantle of the Dawn"]={SubType="Quest",Level=60,id=18173,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25000,Texture=136185,Type="Quest",Link="|cff1eff00|Hitem:18173::::::::40:::::::|h[Shadow Mantle of the Dawn]|h|r",EquipLoc=""},["Trickster's Sash"]={SubType="Leather",Level=37,id=15361,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2204,Texture=132498,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15361::::::::40:::::::|h[Trickster's Sash]|h|r",Type="Armor"},["Monster - Wand, Horde A01 Green"]={SubType="Miscellaneous",Level=1,id=19917,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135474,Link="|cff9d9d9d|Hitem:19917::::::::40:::::::|h[Monster - Wand, Horde A01 Green]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Monster - Axe, Horde Double Blade A02"]={SubType="One-Handed Axes",Level=1,id=14875,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14875::::::::40:::::::|h[Monster - Axe, Horde Double Blade A02]|h|r"},["Gauntlets of New Life"]={SubType="Leather",Level=72,id=21458,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31027,Texture=132958,Link="|cffa335ee|Hitem:21458::::::::40:::::::|h[Gauntlets of New Life]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Ebony Flame Gloves"]={SubType="Cloth",Level=75,id=19407,StackCount=1,Rarity=4,MinLevel=60,SellPrice=28312,Texture=132961,Link="|cffa335ee|Hitem:19407::::::::40:::::::|h[Ebony Flame Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Mooncloth Bag"]={SubType="Bag",Level=60,id=14155,StackCount=1,Rarity=2,MinLevel=0,SellPrice=20000,Texture=133647,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:14155::::::::40:::::::|h[Mooncloth Bag]|h|r"},["Knight-Captain's Dragonhide Chestpiece"]={SubType="Leather",Level=68,id=23294,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18330,Texture=132722,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:23294::::::::40:::::::|h[Knight-Captain's Dragonhide Chestpiece]|h|r"},["Ol' Sooty's Head"]={SubType="Quest",Level=1,id=2713,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132183,EquipLoc="",Link="|cffffffff|Hitem:2713::::::::40:::::::|h[Ol' Sooty's Head]|h|r",Type="Quest"},["Pattern: Runed Stygian Belt"]={SubType="Tailoring",Level=62,id=20548,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10000,Texture=134941,Link="|cff0070dd|Hitem:20548::::::::40:::::::|h[Pattern: Runed Stygian Belt]|h|r",EquipLoc="",Type="Recipe"},["3600 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19200,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19200::::::::40:::::::|h[3600 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Elunite Sword"]={SubType="One-Handed Swords",Level=15,id=6967,StackCount=1,Rarity=2,MinLevel=0,SellPrice=696,Texture=135274,Type="Weapon",Link="|cff1eff00|Hitem:6967::::::::40:::::::|h[Elunite Sword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Dragonheart Necklace"]={SubType="Miscellaneous",Level=71,id=20622,StackCount=1,Rarity=4,MinLevel=60,SellPrice=114103,Texture=133305,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:20622::::::::40:::::::|h[Dragonheart Necklace]|h|r"},["Loomguard Armbraces"]={SubType="Mail",Level=61,id=13969,StackCount=1,Rarity=3,MinLevel=56,SellPrice=16019,Texture=132615,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13969::::::::40:::::::|h[Loomguard Armbraces]|h|r"},["Hand of Justice"]={SubType="Miscellaneous",Level=58,id=11815,StackCount=1,Rarity=3,MinLevel=53,SellPrice=10000,Texture=133434,Type="Armor",Link="|cff0070dd|Hitem:11815::::::::40:::::::|h[Hand of Justice]|h|r",EquipLoc="INVTYPE_TRINKET"},["Moonshadow Hood"]={SubType="Leather",Level=52,id=22273,StackCount=1,Rarity=3,MinLevel=0,SellPrice=11408,Texture=133132,Link="|cff0070dd|Hitem:22273::::::::40:::::::|h[Moonshadow Hood]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["63 Green Warrior Neck"]={SubType="Miscellaneous",Level=63,id=20288,StackCount=1,Rarity=2,MinLevel=58,SellPrice=7108,Texture=133278,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:20288::::::::40:::::::|h[63 Green Warrior Neck]|h|r"},["Defender Axe"]={SubType="One-Handed Axes",Level=13,id=5459,StackCount=1,Rarity=2,MinLevel=0,SellPrice=472,Texture=132392,Link="|cff1eff00|Hitem:5459::::::::40:::::::|h[Defender Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Venture Co. Letters"]={SubType="Quest",Level=1,id=5717,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133465,EquipLoc="",Link="|cffffffff|Hitem:5717::::::::40:::::::|h[Venture Co. Letters]|h|r",Type="Quest"},["2300 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19189,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19189::::::::40:::::::|h[2300 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["3300 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19197,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19197::::::::40:::::::|h[3300 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Iron Bar"]={SubType="Trade Goods",Level=30,id=3575,StackCount=20,Rarity=1,MinLevel=0,SellPrice=200,Texture=133232,Link="|cffffffff|Hitem:3575::::::::40:::::::|h[Iron Bar]|h|r",EquipLoc="",Type="Trade Goods"},["Phalanx Breastplate"]={SubType="Mail",Level=35,id=7418,StackCount=1,Rarity=2,MinLevel=30,SellPrice=4256,Texture=132736,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7418::::::::40:::::::|h[Phalanx Breastplate]|h|r",Type="Armor"},["Thistlewood Maul"]={SubType="One-Handed Maces",Level=5,id=10544,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=133053,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:10544::::::::40:::::::|h[Thistlewood Maul]|h|r",Type="Weapon"},["Elixir of the Mongoose"]={SubType="Consumable",Level=56,id=13452,StackCount=5,Rarity=1,MinLevel=46,SellPrice=1250,Texture=134812,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13452::::::::40:::::::|h[Elixir of the Mongoose]|h|r"},["Thick Scale Legguards"]={SubType="Mail",Level=35,id=15551,StackCount=1,Rarity=2,MinLevel=30,SellPrice=4438,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15551::::::::40:::::::|h[Thick Scale Legguards]|h|r",Type="Armor"},["Russet Pants"]={SubType="Cloth",Level=37,id=2431,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2043,Texture=134590,Type="Armor",Link="|cffffffff|Hitem:2431::::::::40:::::::|h[Russet Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Flawless Arcanite Rifle"]={SubType="Guns",Level=61,id=16007,StackCount=1,Rarity=3,MinLevel=56,SellPrice=40625,Texture=135612,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:16007::::::::40:::::::|h[Flawless Arcanite Rifle]|h|r",Type="Weapon"},["Epaulets of Ten Storms"]={SubType="Mail",Level=76,id=16945,StackCount=1,Rarity=4,MinLevel=60,SellPrice=68140,Texture=135064,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16945::::::::40:::::::|h[Epaulets of Ten Storms]|h|r",Type="Armor"},["Formidable Shoulder Pads"]={SubType="Mail",Level=49,id=15638,StackCount=1,Rarity=2,MinLevel=44,SellPrice=9614,Texture=135061,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15638::::::::40:::::::|h[Formidable Shoulder Pads]|h|r",Type="Armor"},["Deprecated Strangleslash Metal"]={SubType="Trade Goods",Level=40,id=1654,StackCount=10,Rarity=1,MinLevel=0,SellPrice=30,Texture=133218,EquipLoc="",Link="|cffffffff|Hitem:1654::::::::40:::::::|h[Deprecated Strangleslash Metal]|h|r",Type="Trade Goods"},["Codex of Psychic Scream"]={SubType="Book",Level=14,id=8961,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8961::::::::40:::::::|h[Codex of Psychic Scream]|h|r"},["Fetish of the Sand Reaver"]={SubType="Miscellaneous",Level=77,id=21647,StackCount=1,Rarity=4,MinLevel=60,SellPrice=86370,Texture=133572,Link="|cffa335ee|Hitem:21647::::::::40:::::::|h[Fetish of the Sand Reaver]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Monster - Item, Sparkler Blue"]={SubType="Miscellaneous",Level=1,id=9700,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133942,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:9700::::::::40:::::::|h[Monster - Item, Sparkler Blue]|h|r"},["Band of the Inevitable"]={SubType="Miscellaneous",Level=83,id=23031,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133395,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:23031::::::::40:::::::|h[Band of the Inevitable]|h|r"},["Wicked Leather Pants"]={SubType="Leather",Level=58,id=15087,StackCount=1,Rarity=2,MinLevel=53,SellPrice=17892,Texture=134592,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15087::::::::40:::::::|h[Wicked Leather Pants]|h|r",Type="Armor"},["2800 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19193,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19193::::::::40:::::::|h[2800 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["[PH] Brilliant Dawn Fists"]={SubType="Mail",Level=100,id=13730,StackCount=1,Rarity=1,MinLevel=100,SellPrice=55064,Texture=132944,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:13730::::::::40:::::::|h[[PH] Brilliant Dawn Fists]|h|r"},["Plans: Radiant Gloves"]={SubType="Blacksmithing",Level=57,id=12695,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12695::::::::40:::::::|h[Plans: Radiant Gloves]|h|r"},["Galvanized Horn"]={SubType="Quest",Level=1,id=6840,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134228,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6840::::::::40:::::::|h[Galvanized Horn]|h|r"},["QAEnchant Gloves +5 Skinning"]={SubType="Consumable",Level=1,id=22035,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22035::::::::40:::::::|h[QAEnchant Gloves +5 Skinning]|h|r",EquipLoc="",Type="Consumable"},["Monster - Staff, 3 Piece Taped Staff Purple"]={SubType="Staves",Level=1,id=14706,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135146,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14706::::::::40:::::::|h[Monster - Staff, 3 Piece Taped Staff Purple]|h|r"},["Rock Stalker Fang"]={SubType="Quest",Level=0,id=20377,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,Link="|cffffffff|Hitem:20377::::::::40:::::::|h[Rock Stalker Fang]|h|r",EquipLoc="",Type="Quest"},["Digested Hand of Power"]={SubType="Miscellaneous",Level=83,id=22994,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91352,Texture=134555,Link="|cffa335ee|Hitem:22994::::::::40:::::::|h[Digested Hand of Power]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["3800 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19184,StackCount=1,Rarity=3,MinLevel=58,SellPrice=74691,Texture=132392,Link="|cff0070dd|Hitem:19184::::::::40:::::::|h[3800 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Laminated Scale Cloak"]={SubType="Cloth",Level=57,id=3995,StackCount=1,Rarity=0,MinLevel=52,SellPrice=6284,Texture=133756,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:3995::::::::40:::::::|h[Laminated Scale Cloak]|h|r"},["Helm of Wrath"]={SubType="Plate",Level=76,id=16963,StackCount=1,Rarity=4,MinLevel=60,SellPrice=44900,Texture=133173,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16963::::::::40:::::::|h[Helm of Wrath]|h|r",Type="Armor"},["Failed Flying Experiment"]={SubType="Leather",Level=48,id=9647,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7962,Texture=135056,Link="|cff1eff00|Hitem:9647::::::::40:::::::|h[Failed Flying Experiment]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Recipe: Invisibility Potion"]={SubType="Alchemy",Level=47,id=9295,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:9295::::::::40:::::::|h[Recipe: Invisibility Potion]|h|r"},["Avenger's Legguards"]={SubType="Plate",Level=81,id=21390,StackCount=1,Rarity=4,MinLevel=60,SellPrice=70952,Texture=134678,Link="|cffa335ee|Hitem:21390::::::::40:::::::|h[Avenger's Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Green Helper Box"]={SubType="Junk",Level=1,id=21301,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133204,Link="|cffffffff|Hitem:21301::::::::40:::::::|h[Green Helper Box]|h|r",EquipLoc="",Type="Miscellaneous"},["General's Silk Sash"]={SubType="Cloth",Level=65,id=16537,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8088,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16537::::::::40:::::::|h[General's Silk Sash]|h|r",Type="Armor"},["Scroll of Strength"]={SubType="Consumable",Level=20,id=954,StackCount=5,Rarity=1,MinLevel=10,SellPrice=50,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:954::::::::40:::::::|h[Scroll of Strength]|h|r",Type="Consumable"},["63 Green Rogue Gloves"]={SubType="Leather",Level=63,id=20318,StackCount=1,Rarity=2,MinLevel=58,SellPrice=11742,Texture=132958,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:20318::::::::40:::::::|h[63 Green Rogue Gloves]|h|r"},["2500 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19191,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19191::::::::40:::::::|h[2500 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Shellfish"]={SubType="Junk",Level=1,id=13545,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133900,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13545::::::::40:::::::|h[Shellfish]|h|r"},["Liferoot"]={SubType="Trade Goods",Level=30,id=3357,StackCount=20,Rarity=1,MinLevel=0,SellPrice=75,Texture=134413,Type="Trade Goods",Link="|cffffffff|Hitem:3357::::::::40:::::::|h[Liferoot]|h|r",EquipLoc=""},["Blackened Defias Armor"]={SubType="Leather",Level=24,id=10399,StackCount=1,Rarity=3,MinLevel=19,SellPrice=1467,Texture=132723,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:10399::::::::40:::::::|h[Blackened Defias Armor]|h|r",Type="Armor"},["Gigantic War Axe"]={SubType="Two-Handed Axes",Level=46,id=15270,StackCount=1,Rarity=2,MinLevel=41,SellPrice=22775,Texture=132408,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15270::::::::40:::::::|h[Gigantic War Axe]|h|r",Type="Weapon"},["Deeprock Salt"]={SubType="Trade Goods",Level=40,id=8150,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=133849,Link="|cffffffff|Hitem:8150::::::::40:::::::|h[Deeprock Salt]|h|r",EquipLoc="",Type="Trade Goods"},["Broken Cog"]={SubType="Junk",Level=1,id=813,StackCount=5,Rarity=0,MinLevel=0,SellPrice=58,Texture=134063,EquipLoc="",Link="|cff9d9d9d|Hitem:813::::::::40:::::::|h[Broken Cog]|h|r",Type="Miscellaneous"},["The Hand of Antu'sul"]={SubType="One-Handed Maces",Level=48,id=9639,StackCount=1,Rarity=3,MinLevel=43,SellPrice=24111,Texture=133486,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:9639::::::::40:::::::|h[The Hand of Antu'sul]|h|r"},["3500 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19199,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19199::::::::40:::::::|h[3500 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Helm of Valor"]={SubType="Plate",Level=62,id=16731,StackCount=1,Rarity=3,MinLevel=57,SellPrice=16210,Texture=133070,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16731::::::::40:::::::|h[Helm of Valor]|h|r",Type="Armor"},["Leggings of the Grand Crusader"]={SubType="Plate",Level=85,id=23668,StackCount=1,Rarity=4,MinLevel=60,SellPrice=87950,Texture=134584,Link="|cffa335ee|Hitem:23668::::::::40:::::::|h[Leggings of the Grand Crusader]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Ebonhold Gauntlets"]={SubType="Mail",Level=54,id=8267,StackCount=1,Rarity=2,MinLevel=49,SellPrice=8927,Texture=132949,Link="|cff1eff00|Hitem:8267::::::::40:::::::|h[Ebonhold Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Test Arcane Res Feet Cloth"]={SubType="Cloth",Level=35,id=16151,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2178,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:16151::::::::40:::::::|h[Test Arcane Res Feet Cloth]|h|r",Type="Armor"},["Filet of Redgill"]={SubType="Consumable",Level=45,id=13930,StackCount=20,Rarity=1,MinLevel=35,SellPrice=5,Texture=133892,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13930::::::::40:::::::|h[Filet of Redgill]|h|r"},["Schematic: Ice Deflector"]={SubType="Engineering",Level=31,id=13308,StackCount=1,Rarity=1,MinLevel=0,SellPrice=450,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13308::::::::40:::::::|h[Schematic: Ice Deflector]|h|r"},["Exploding Shot"]={SubType="Bullet",Level=36,id=3465,StackCount=200,Rarity=2,MinLevel=0,SellPrice=9,Texture=132384,EquipLoc="INVTYPE_AMMO",Link="|cff1eff00|Hitem:3465::::::::40:::::::|h[Exploding Shot]|h|r",Type="Projectile"},["Wand of Eternal Light"]={SubType="Wands",Level=57,id=22254,StackCount=1,Rarity=3,MinLevel=52,SellPrice=30655,Texture=135464,Link="|cff0070dd|Hitem:22254::::::::40:::::::|h[Wand of Eternal Light]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Test AQ Resource - Thick Leather"]={SubType="Junk",Level=1,id=21633,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21633::::::::40:::::::|h[Test AQ Resource - Thick Leather]|h|r",EquipLoc="",Type="Miscellaneous"},["Blessed Arcanite Barding"]={SubType="Quest",Level=1,id=18792,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135062,Type="Quest",Link="|cffffffff|Hitem:18792::::::::40:::::::|h[Blessed Arcanite Barding]|h|r",EquipLoc=""},["Primal Boots"]={SubType="Leather",Level=9,id=15004,StackCount=1,Rarity=1,MinLevel=4,SellPrice=42,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:15004::::::::40:::::::|h[Primal Boots]|h|r",Type="Armor"},["Seer's Gloves"]={SubType="Cloth",Level=18,id=2984,StackCount=1,Rarity=2,MinLevel=13,SellPrice=215,Texture=132952,Link="|cff1eff00|Hitem:2984::::::::40:::::::|h[Seer's Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Talon of Furious Concentration"]={SubType="Miscellaneous",Level=69,id=21471,StackCount=1,Rarity=4,MinLevel=60,SellPrice=88787,Texture=133498,Link="|cffa335ee|Hitem:21471::::::::40:::::::|h[Talon of Furious Concentration]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Magmus Stone"]={SubType="Miscellaneous",Level=58,id=11935,StackCount=1,Rarity=3,MinLevel=53,SellPrice=13162,Texture=134337,Type="Armor",Link="|cff0070dd|Hitem:11935::::::::40:::::::|h[Magmus Stone]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Strange Water Globe"]={SubType="Quest",Level=21,id=16782,StackCount=1,Rarity=2,MinLevel=21,SellPrice=0,Texture=136222,EquipLoc="",Link="|cff1eff00|Hitem:16782::::::::40:::::::|h[Strange Water Globe]|h|r",Type="Quest"},["Maple Seed"]={SubType="Reagent",Level=20,id=17034,StackCount=20,Rarity=1,MinLevel=0,SellPrice=50,Texture=133944,EquipLoc="",Link="|cffffffff|Hitem:17034::::::::40:::::::|h[Maple Seed]|h|r",Type="Reagent"},["Intrepid Shortsword"]={SubType="One-Handed Swords",Level=58,id=15800,StackCount=1,Rarity=2,MinLevel=0,SellPrice=36082,Texture=135327,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15800::::::::40:::::::|h[Intrepid Shortsword]|h|r",Type="Weapon"},["Filled Flasket"]={SubType="Quest",Level=1,id=12567,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134802,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12567::::::::40:::::::|h[Filled Flasket]|h|r"},["Flimsy Female Tauren Mask"]={SubType="Miscellaneous",Level=1,id=20571,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134175,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:20571::::::::40:::::::|h[Flimsy Female Tauren Mask]|h|r"},["Clam Chowder"]={SubType="Consumable",Level=20,id=5526,StackCount=20,Rarity=1,MinLevel=10,SellPrice=75,Texture=134712,EquipLoc="",Link="|cffffffff|Hitem:5526::::::::40:::::::|h[Clam Chowder]|h|r",Type="Consumable"},["Studded Bracers"]={SubType="Leather",Level=37,id=2468,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1262,Texture=132601,Type="Armor",Link="|cffffffff|Hitem:2468::::::::40:::::::|h[Studded Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Monster - Staff, Metal /w Spike Crystal"]={SubType="Staves",Level=1,id=5277,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135144,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5277::::::::40:::::::|h[Monster - Staff, Metal /w Spike Crystal]|h|r",Type="Weapon"},["Recipe: Minor Magic Resistance Potion"]={SubType="Alchemy",Level=22,id=3393,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=134939,Link="|cffffffff|Hitem:3393::::::::40:::::::|h[Recipe: Minor Magic Resistance Potion]|h|r",EquipLoc="",Type="Recipe"},["Runic Plate Leggings"]={SubType="Plate",Level=62,id=12614,StackCount=1,Rarity=2,MinLevel=57,SellPrice=18272,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:12614::::::::40:::::::|h[Runic Plate Leggings]|h|r"},["Bile-etched Spaulders"]={SubType="Plate",Level=62,id=18384,StackCount=1,Rarity=3,MinLevel=57,SellPrice=16093,Texture=135048,Type="Armor",Link="|cff0070dd|Hitem:18384::::::::40:::::::|h[Bile-etched Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Warstrike Sabatons"]={SubType="Mail",Level=62,id=14809,StackCount=1,Rarity=2,MinLevel=57,SellPrice=20276,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14809::::::::40:::::::|h[Warstrike Sabatons]|h|r"},["Encrypted Twilight Text"]={SubType="Quest",Level=1,id=20404,StackCount=250,Rarity=1,MinLevel=0,SellPrice=0,Texture=134332,Link="|cffffffff|Hitem:20404::::::::40:::::::|h[Encrypted Twilight Text]|h|r",EquipLoc="",Type="Quest"},["Enchanted Gaea Seeds"]={SubType="Quest",Level=1,id=16208,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133944,EquipLoc="",Link="|cffffffff|Hitem:16208::::::::40:::::::|h[Enchanted Gaea Seeds]|h|r",Type="Quest"},["Black Dragonspawn Eye"]={SubType="Quest",Level=1,id=16786,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133884,EquipLoc="",Link="|cffffffff|Hitem:16786::::::::40:::::::|h[Black Dragonspawn Eye]|h|r",Type="Quest"},["Woollies of the Prancing Minstrel"]={SubType="Mail",Level=58,id=13383,StackCount=1,Rarity=3,MinLevel=53,SellPrice=26864,Texture=134594,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:13383::::::::40:::::::|h[Woollies of the Prancing Minstrel]|h|r"},["Wand of Decay"]={SubType="Wands",Level=21,id=5252,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1175,Texture=135466,Link="|cff1eff00|Hitem:5252::::::::40:::::::|h[Wand of Decay]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Deprecated Empty Skin"]={SubType="Quest",Level=1,id=4754,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132794,Link="|cffffffff|Hitem:4754::::::::40:::::::|h[Deprecated Empty Skin]|h|r",EquipLoc="",Type="Quest"},["Heavy Flint Axe"]={SubType="One-Handed Axes",Level=48,id=4019,StackCount=1,Rarity=0,MinLevel=43,SellPrice=8336,Texture=135421,Link="|cff9d9d9d|Hitem:4019::::::::40:::::::|h[Heavy Flint Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Wristguards of Castigation"]={SubType="Plate",Level=88,id=21587,StackCount=1,Rarity=4,MinLevel=60,SellPrice=53413,Texture=132618,Link="|cffa335ee|Hitem:21587::::::::40:::::::|h[Wristguards of Castigation]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Stonelash Pincer Stinger"]={SubType="Quest",Level=0,id=20374,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136067,Link="|cffffffff|Hitem:20374::::::::40:::::::|h[Stonelash Pincer Stinger]|h|r",EquipLoc="",Type="Quest"},["General's Plate Gauntlets"]={SubType="Plate",Level=71,id=16548,StackCount=1,Rarity=4,MinLevel=60,SellPrice=11598,Texture=132944,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16548::::::::40:::::::|h[General's Plate Gauntlets]|h|r",Type="Armor"},["Band of Rumination"]={SubType="Miscellaneous",Level=63,id=18103,StackCount=1,Rarity=3,MinLevel=58,SellPrice=15252,Texture=133358,Type="Armor",Link="|cff0070dd|Hitem:18103::::::::40:::::::|h[Band of Rumination]|h|r",EquipLoc="INVTYPE_FINGER"},["High Chief's Shield"]={SubType="Shields",Level=56,id=14964,StackCount=1,Rarity=2,MinLevel=51,SellPrice=21741,Texture=134966,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14964::::::::40:::::::|h[High Chief's Shield]|h|r"},["Benedict's Key"]={SubType="Key",Level=1,id=4882,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134240,EquipLoc="",Link="|cffffffff|Hitem:4882::::::::40:::::::|h[Benedict's Key]|h|r",Type="Key"},["Black Pearl Ring"]={SubType="Miscellaneous",Level=22,id=6332,StackCount=1,Rarity=3,MinLevel=17,SellPrice=1153,Texture=133347,Type="Armor",Link="|cff0070dd|Hitem:6332::::::::40:::::::|h[Black Pearl Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Book of Rejuvenation III"]={SubType="Book",Level=16,id=1877,StackCount=1,Rarity=1,MinLevel=16,SellPrice=325,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:1877::::::::40:::::::|h[Book of Rejuvenation III]|h|r",Type="Recipe"},["Heirloom Sword"]={SubType="One-Handed Swords",Level=15,id=7118,StackCount=1,Rarity=2,MinLevel=0,SellPrice=690,Texture=135274,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:7118::::::::40:::::::|h[Heirloom Sword]|h|r",Type="Weapon"},["Bear Gall Bladder"]={SubType="Junk",Level=1,id=3702,StackCount=10,Rarity=0,MinLevel=0,SellPrice=498,Texture=134339,EquipLoc="",Link="|cff9d9d9d|Hitem:3702::::::::40:::::::|h[Bear Gall Bladder]|h|r",Type="Miscellaneous"},["Reins of the Black War Tiger"]={SubType="Junk",Level=40,id=18242,StackCount=1,Rarity=4,MinLevel=40,SellPrice=0,Texture=132225,Type="Miscellaneous",Link="|cffa335ee|Hitem:18242::::::::40:::::::|h[Reins of the Black War Tiger]|h|r",EquipLoc=""},["Test Crit Chest"]={SubType="Plate",Level=60,id=13586,StackCount=1,Rarity=1,MinLevel=55,SellPrice=9488,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13586::::::::40:::::::|h[Test Crit Chest]|h|r"},["Fang of Vagash"]={SubType="Quest",Level=1,id=3627,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3627::::::::40:::::::|h[Fang of Vagash]|h|r"},["Corrupt Tested Sample"]={SubType="Junk",Level=50,id=15103,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,EquipLoc="",Link="|cffffffff|Hitem:15103::::::::40:::::::|h[Corrupt Tested Sample]|h|r",Type="Miscellaneous"},["Earthslag Shoulders"]={SubType="Plate",Level=52,id=11632,StackCount=1,Rarity=3,MinLevel=47,SellPrice=9360,Texture=135057,Type="Armor",Link="|cff0070dd|Hitem:11632::::::::40:::::::|h[Earthslag Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Frayed Cloak"]={SubType="Cloth",Level=5,id=1376,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=133762,Type="Armor",Link="|cff9d9d9d|Hitem:1376::::::::40:::::::|h[Frayed Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Grand Marshal's Warhammer"]={SubType="One-Handed Maces",Level=78,id=23454,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45671,Texture=133039,Link="|cffa335ee|Hitem:23454::::::::40:::::::|h[Grand Marshal's Warhammer]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Raven Claw Talisman"]={SubType="Quest",Level=1,id=3405,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134334,Link="|cffffffff|Hitem:3405::::::::40:::::::|h[Raven Claw Talisman]|h|r",EquipLoc="",Type="Quest"},["Basalt Buckler"]={SubType="Shields",Level=40,id=6746,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7075,Texture=134956,Type="Armor",Link="|cff1eff00|Hitem:6746::::::::40:::::::|h[Basalt Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Boneclenched Gauntlets"]={SubType="Plate",Level=62,id=14525,StackCount=1,Rarity=3,MinLevel=57,SellPrice=10561,Texture=132963,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:14525::::::::40:::::::|h[Boneclenched Gauntlets]|h|r"},["Charger's Boots"]={SubType="Mail",Level=10,id=15473,StackCount=1,Rarity=1,MinLevel=5,SellPrice=65,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:15473::::::::40:::::::|h[Charger's Boots]|h|r",Type="Armor"},["Empty Vial Labeled #1"]={SubType="Consumable",Level=1,id=10687,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132793,EquipLoc="",Link="|cffffffff|Hitem:10687::::::::40:::::::|h[Empty Vial Labeled #1]|h|r",Type="Consumable"},["Desecrated Handguards"]={SubType="Junk",Level=60,id=22364,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133824,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:22364::::::::40:::::::|h[Desecrated Handguards]|h|r"},["Fresh Carcass"]={SubType="Quest",Level=1,id=5810,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134368,EquipLoc="",Link="|cffffffff|Hitem:5810::::::::40:::::::|h[Fresh Carcass]|h|r",Type="Quest"},["Wolffear Harness"]={SubType="Leather",Level=36,id=13110,StackCount=1,Rarity=3,MinLevel=31,SellPrice=4968,Texture=132719,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:13110::::::::40:::::::|h[Wolffear Harness]|h|r"},["Lunar Coronet"]={SubType="Cloth",Level=45,id=14252,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4914,Texture=132511,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14252::::::::40:::::::|h[Lunar Coronet]|h|r"},["Handful of Copper Bolts"]={SubType="Parts",Level=8,id=4359,StackCount=10,Rarity=1,MinLevel=0,SellPrice=12,Texture=134068,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4359::::::::40:::::::|h[Handful of Copper Bolts]|h|r"},["Heavy Lamellar Vambraces"]={SubType="Plate",Level=51,id=10239,StackCount=1,Rarity=2,MinLevel=46,SellPrice=4962,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10239::::::::40:::::::|h[Heavy Lamellar Vambraces]|h|r",Type="Armor"},["2500 Test 2h Axe 60 blue (bear)"]={SubType="Two-Handed Axes",Level=60,id=19811,StackCount=1,Rarity=3,MinLevel=58,SellPrice=59304,Texture=132392,Link="|cff0070dd|Hitem:19811::::::::40:::::::|h[2500 Test 2h Axe 60 blue (bear)]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["The McWeaksauce Classic"]={SubType="Consumable",Level=55,id=23579,StackCount=10,Rarity=1,MinLevel=45,SellPrice=0,Texture=134834,Link="|cffffffff|Hitem:23579::::::::40:::::::|h[The McWeaksauce Classic]|h|r",EquipLoc="",Type="Consumable"},["Painbringer"]={SubType="Two-Handed Maces",Level=58,id=15265,StackCount=1,Rarity=2,MinLevel=53,SellPrice=46823,Texture=133047,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15265::::::::40:::::::|h[Painbringer]|h|r",Type="Weapon"},["Healthy Courser Gland"]={SubType="Quest",Level=1,id=20027,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134343,Link="|cffffffff|Hitem:20027::::::::40:::::::|h[Healthy Courser Gland]|h|r",EquipLoc="",Type="Quest"},["Flank of Meat"]={SubType="Consumable",Level=25,id=5845,StackCount=10,Rarity=1,MinLevel=15,SellPrice=0,Texture=133970,EquipLoc="",Link="|cffffffff|Hitem:5845::::::::40:::::::|h[Flank of Meat]|h|r",Type="Consumable"},["Pattern: Red Woolen Bag"]={SubType="Tailoring",Level=23,id=5772,StackCount=1,Rarity=1,MinLevel=0,SellPrice=125,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:5772::::::::40:::::::|h[Pattern: Red Woolen Bag]|h|r",Type="Recipe"},["Tome of Mana Shield V"]={SubType="Book",Level=52,id=8873,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=133739,Link="|cffffffff|Hitem:8873::::::::40:::::::|h[Tome of Mana Shield V]|h|r",EquipLoc="",Type="Recipe"},["Lieutenant Commander's Chain Pauldrons"]={SubType="Mail",Level=63,id=16427,StackCount=1,Rarity=3,MinLevel=58,SellPrice=12923,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16427::::::::40:::::::|h[Lieutenant Commander's Chain Pauldrons]|h|r",Type="Armor"},["NG-5"]={SubType="Quest",Level=1,id=5732,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134721,EquipLoc="",Link="|cffffffff|Hitem:5732::::::::40:::::::|h[NG-5]|h|r",Type="Quest"},["Recipe: Nightfin Soup"]={SubType="Cooking",Level=50,id=13945,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13945::::::::40:::::::|h[Recipe: Nightfin Soup]|h|r"},["Eight of Warlords"]={SubType="Junk",Level=1,id=19265,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134497,Link="|cff0070dd|Hitem:19265::::::::40:::::::|h[Eight of Warlords]|h|r",EquipLoc="",Type="Miscellaneous"},["Shimmering Geta"]={SubType="Cloth",Level=77,id=19391,StackCount=1,Rarity=4,MinLevel=60,SellPrice=47496,Texture=132558,Link="|cffa335ee|Hitem:19391::::::::40:::::::|h[Shimmering Geta]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Conqueror's Breastplate"]={SubType="Plate",Level=88,id=21331,StackCount=1,Rarity=4,MinLevel=60,SellPrice=100263,Texture=132747,Link="|cffa335ee|Hitem:21331::::::::40:::::::|h[Conqueror's Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Spotted Hyena Pelt"]={SubType="Quest",Level=1,id=11507,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134364,Type="Quest",Link="|cffffffff|Hitem:11507::::::::40:::::::|h[Spotted Hyena Pelt]|h|r",EquipLoc=""},["Demon's Blood"]={SubType="Miscellaneous",Level=60,id=10779,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8807,Texture=136168,EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:10779::::::::40:::::::|h[Demon's Blood]|h|r",Type="Armor"},["General's Silk Cuffs"]={SubType="Cloth",Level=65,id=16538,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8120,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16538::::::::40:::::::|h[General's Silk Cuffs]|h|r",Type="Armor"},["Winter's Bite"]={SubType="One-Handed Axes",Level=48,id=10623,StackCount=1,Rarity=3,MinLevel=43,SellPrice=24748,Texture=132398,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:10623::::::::40:::::::|h[Winter's Bite]|h|r",Type="Weapon"},["Spiked Chain Shield"]={SubType="Shields",Level=29,id=15522,StackCount=1,Rarity=2,MinLevel=24,SellPrice=2516,Texture=134953,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15522::::::::40:::::::|h[Spiked Chain Shield]|h|r",Type="Armor"},["Welken Ring"]={SubType="Miscellaneous",Level=40,id=5011,StackCount=1,Rarity=2,MinLevel=35,SellPrice=1912,Texture=133354,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:5011::::::::40:::::::|h[Welken Ring]|h|r",Type="Armor"},["Battleworn Chain Leggings"]={SubType="Mail",Level=5,id=4917,StackCount=1,Rarity=1,MinLevel=0,SellPrice=14,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:4917::::::::40:::::::|h[Battleworn Chain Leggings]|h|r"},["Moonbrook Riot Taffy"]={SubType="Consumable",Level=35,id=18632,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=133986,Type="Consumable",Link="|cffffffff|Hitem:18632::::::::40:::::::|h[Moonbrook Riot Taffy]|h|r",EquipLoc=""},["Eldritch Reinforced Legplates"]={SubType="Plate",Level=62,id=18380,StackCount=1,Rarity=3,MinLevel=57,SellPrice=21135,Texture=134584,Type="Armor",Link="|cff0070dd|Hitem:18380::::::::40:::::::|h[Eldritch Reinforced Legplates]|h|r",EquipLoc="INVTYPE_LEGS"},["Shimmering Boots"]={SubType="Cloth",Level=21,id=6562,StackCount=1,Rarity=2,MinLevel=16,SellPrice=508,Texture=132539,Link="|cff1eff00|Hitem:6562::::::::40:::::::|h[Shimmering Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["92 Pound Mightfish"]={SubType="Junk",Level=55,id=13916,StackCount=1,Rarity=1,MinLevel=0,SellPrice=150,Texture=134300,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13916::::::::40:::::::|h[92 Pound Mightfish]|h|r"},["Blue Scepter Shard"]={SubType="Quest",Level=1,id=21137,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134133,Link="|cffffffff|Hitem:21137::::::::40:::::::|h[Blue Scepter Shard]|h|r",EquipLoc="",Type="Quest"},["Mantle of the Timbermaw"]={SubType="Cloth",Level=64,id=19050,StackCount=1,Rarity=3,MinLevel=59,SellPrice=18758,Texture=135050,Link="|cff0070dd|Hitem:19050::::::::40:::::::|h[Mantle of the Timbermaw]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Rigid Cape"]={SubType="Cloth",Level=19,id=15114,StackCount=1,Rarity=2,MinLevel=14,SellPrice=372,Texture=133762,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15114::::::::40:::::::|h[Rigid Cape]|h|r",Type="Armor"},["Adventurer's Boots"]={SubType="Leather",Level=62,id=10257,StackCount=1,Rarity=2,MinLevel=57,SellPrice=16877,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10257::::::::40:::::::|h[Adventurer's Boots]|h|r",Type="Armor"},["Cenarion Lunardust"]={SubType="Quest",Level=1,id=15710,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132857,EquipLoc="",Link="|cffffffff|Hitem:15710::::::::40:::::::|h[Cenarion Lunardust]|h|r",Type="Quest"},["Shoddy Blunderbuss"]={SubType="Guns",Level=22,id=2783,StackCount=1,Rarity=0,MinLevel=17,SellPrice=590,Texture=135610,Link="|cff9d9d9d|Hitem:2783::::::::40:::::::|h[Shoddy Blunderbuss]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Khan's Greaves"]={SubType="Mail",Level=46,id=14784,StackCount=1,Rarity=2,MinLevel=41,SellPrice=8202,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14784::::::::40:::::::|h[Khan's Greaves]|h|r"},["Deprecated Book of Entangling Roots IV"]={SubType="Book",Level=36,id=5159,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5159::::::::40:::::::|h[Deprecated Book of Entangling Roots IV]|h|r"},["Frostmane Hand Axe"]={SubType="One-Handed Axes",Level=9,id=2260,StackCount=1,Rarity=1,MinLevel=4,SellPrice=106,Texture=132408,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2260::::::::40:::::::|h[Frostmane Hand Axe]|h|r",Type="Weapon"},["Rune Sword"]={SubType="One-Handed Swords",Level=51,id=15216,StackCount=1,Rarity=2,MinLevel=46,SellPrice=25932,Texture=135351,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15216::::::::40:::::::|h[Rune Sword]|h|r",Type="Weapon"},["Wushoolay's Charm of Spirits"]={SubType="Miscellaneous",Level=65,id=19956,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133306,Link="|cffa335ee|Hitem:19956::::::::40:::::::|h[Wushoolay's Charm of Spirits]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Lawbringer Chestguard"]={SubType="Plate",Level=66,id=16853,StackCount=1,Rarity=4,MinLevel=60,SellPrice=37144,Texture=132738,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16853::::::::40:::::::|h[Lawbringer Chestguard]|h|r",Type="Armor"},["Belt of Untapped Power"]={SubType="Cloth",Level=68,id=22716,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15043,Texture=132490,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:22716::::::::40:::::::|h[Belt of Untapped Power]|h|r"},["Vek'lor's Gloves of Devastation"]={SubType="Mail",Level=81,id=21599,StackCount=1,Rarity=4,MinLevel=60,SellPrice=53835,Texture=132962,Link="|cffa335ee|Hitem:21599::::::::40:::::::|h[Vek'lor's Gloves of Devastation]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Libram: Seal of Wrath"]={SubType="Book",Level=30,id=1536,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:1536::::::::40:::::::|h[Libram: Seal of Wrath]|h|r",Type="Recipe"},["Orc Tooth"]={SubType="Quest",Level=0,id=18207,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=133725,Type="Quest",Link="|cffffffff|Hitem:18207::::::::40:::::::|h[Orc Tooth]|h|r",EquipLoc=""},["Darkshore Grouper"]={SubType="Consumable",Level=15,id=12238,StackCount=20,Rarity=1,MinLevel=5,SellPrice=2,Texture=133912,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12238::::::::40:::::::|h[Darkshore Grouper]|h|r"},["Ironforge Memorial Ring"]={SubType="Miscellaneous",Level=31,id=4535,StackCount=1,Rarity=2,MinLevel=0,SellPrice=882,Texture=133355,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:4535::::::::40:::::::|h[Ironforge Memorial Ring]|h|r",Type="Armor"},["Poison-tipped Bone Spear"]={SubType="Polearms",Level=36,id=1726,StackCount=1,Rarity=3,MinLevel=31,SellPrice=12183,Texture=135125,Type="Weapon",Link="|cff0070dd|Hitem:1726::::::::40:::::::|h[Poison-tipped Bone Spear]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Bright Armor"]={SubType="Cloth",Level=27,id=6608,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1328,Texture=132722,Link="|cff1eff00|Hitem:6608::::::::40:::::::|h[Bright Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Myrmidon's Girdle"]={SubType="Mail",Level=49,id=8129,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6253,Texture=132495,Link="|cff1eff00|Hitem:8129::::::::40:::::::|h[Myrmidon's Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Renegade Pauldrons"]={SubType="Mail",Level=37,id=9872,StackCount=1,Rarity=2,MinLevel=32,SellPrice=4101,Texture=135040,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9872::::::::40:::::::|h[Renegade Pauldrons]|h|r"},["High Test Eternium Fishing Line"]={SubType="Trade Goods",Level=45,id=19971,StackCount=5,Rarity=2,MinLevel=0,SellPrice=2000,Texture=132893,Link="|cff1eff00|Hitem:19971::::::::40:::::::|h[High Test Eternium Fishing Line]|h|r",EquipLoc="",Type="Trade Goods"},["Dusky Leather Armor"]={SubType="Leather",Level=35,id=7374,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3760,Texture=132718,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7374::::::::40:::::::|h[Dusky Leather Armor]|h|r"},["Razor-sharp Beak"]={SubType="Junk",Level=1,id=5829,StackCount=5,Rarity=0,MinLevel=0,SellPrice=804,Texture=133707,Link="|cff9d9d9d|Hitem:5829::::::::40:::::::|h[Razor-sharp Beak]|h|r",EquipLoc="",Type="Miscellaneous"},["Eye of Paleth"]={SubType="Miscellaneous",Level=31,id=2943,StackCount=1,Rarity=2,MinLevel=0,SellPrice=537,Texture=134335,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:2943::::::::40:::::::|h[Eye of Paleth]|h|r",Type="Armor"},["Boneslasher"]={SubType="Two-Handed Swords",Level=37,id=10573,StackCount=1,Rarity=3,MinLevel=32,SellPrice=13754,Texture=135351,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:10573::::::::40:::::::|h[Boneslasher]|h|r",Type="Weapon"},["Rage Scar Yeti Hide"]={SubType="Quest",Level=1,id=18947,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134359,Type="Quest",Link="|cffffffff|Hitem:18947::::::::40:::::::|h[Rage Scar Yeti Hide]|h|r",EquipLoc=""},["Formula: Enchant Gloves - Advanced Mining"]={SubType="Enchanting",Level=43,id=11203,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1100,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11203::::::::40:::::::|h[Formula: Enchant Gloves - Advanced Mining]|h|r",EquipLoc=""},["Master's Vest"]={SubType="Cloth",Level=65,id=10246,StackCount=1,Rarity=2,MinLevel=60,SellPrice=21542,Texture=135008,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10246::::::::40:::::::|h[Master's Vest]|h|r",Type="Armor"},["Watered-down Beer"]={SubType="Consumable",Level=1,id=5265,StackCount=10,Rarity=1,MinLevel=1,SellPrice=0,Texture=132800,Link="|cffffffff|Hitem:5265::::::::40:::::::|h[Watered-down Beer]|h|r",EquipLoc="",Type="Consumable"},["Decrypted Letter"]={SubType="Quest",Level=1,id=3518,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134940,EquipLoc="",Link="|cffffffff|Hitem:3518::::::::40:::::::|h[Decrypted Letter]|h|r",Type="Quest"},["Knight-Captain's Silk Leggings"]={SubType="Cloth",Level=63,id=16414,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11735,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16414::::::::40:::::::|h[Knight-Captain's Silk Leggings]|h|r",Type="Armor"},["Tablet of Healing Totem V"]={SubType="Book",Level=36,id=4183,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:4183::::::::40:::::::|h[Tablet of Healing Totem V]|h|r",Type="Recipe"},["Double Mail Belt"]={SubType="Mail",Level=34,id=3808,StackCount=1,Rarity=0,MinLevel=29,SellPrice=770,Texture=132495,Type="Armor",Link="|cff9d9d9d|Hitem:3808::::::::40:::::::|h[Double Mail Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Grimoire of Corruption II"]={SubType="Book",Level=16,id=9201,StackCount=1,Rarity=1,MinLevel=16,SellPrice=325,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9201::::::::40:::::::|h[Grimoire of Corruption II]|h|r"},["Tazan's Satchel"]={SubType="Junk",Level=1,id=7209,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133626,EquipLoc="",Link="|cffffffff|Hitem:7209::::::::40:::::::|h[Tazan's Satchel]|h|r",Type="Miscellaneous"},["Deathmist Leggings"]={SubType="Cloth",Level=66,id=22072,StackCount=1,Rarity=3,MinLevel=0,SellPrice=26695,Texture=134588,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:22072::::::::40:::::::|h[Deathmist Leggings]|h|r"},["Symbol of Lost Honor"]={SubType="Quest",Level=1,id=14625,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132483,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14625::::::::40:::::::|h[Symbol of Lost Honor]|h|r"},["Pattern: Fine Leather Pants"]={SubType="Leatherworking",Level=21,id=5972,StackCount=1,Rarity=2,MinLevel=0,SellPrice=375,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:5972::::::::40:::::::|h[Pattern: Fine Leather Pants]|h|r",Type="Recipe"},["90 Green Frost Boots"]={SubType="Cloth",Level=90,id=20340,StackCount=1,Rarity=2,MinLevel=60,SellPrice=52993,Texture=132536,Link="|cff1eff00|Hitem:20340::::::::40:::::::|h[90 Green Frost Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Merciless Cloak"]={SubType="Cloth",Level=51,id=15652,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7139,Texture=133760,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15652::::::::40:::::::|h[Merciless Cloak]|h|r",Type="Armor"},["Draco-Incarcinatrix 900"]={SubType="Quest",Level=1,id=12284,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133001,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12284::::::::40:::::::|h[Draco-Incarcinatrix 900]|h|r"},["Talisman of Protection"]={SubType="Miscellaneous",Level=68,id=19871,StackCount=1,Rarity=3,MinLevel=60,SellPrice=50287,Texture=133308,Link="|cff0070dd|Hitem:19871::::::::40:::::::|h[Talisman of Protection]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Flatland Cougar Femur"]={SubType="Quest",Level=1,id=4805,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133718,Type="Quest",Link="|cffffffff|Hitem:4805::::::::40:::::::|h[Flatland Cougar Femur]|h|r",EquipLoc=""},["Fall/Winter Morning"]={SubType="Junk",Level=25,id=13842,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13842::::::::40:::::::|h[Fall/Winter Morning]|h|r"},["Felhound Brain"]={SubType="Quest",Level=1,id=6250,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134340,Type="Quest",Link="|cffffffff|Hitem:6250::::::::40:::::::|h[Felhound Brain]|h|r",EquipLoc=""},["Bristlebark Bindings"]={SubType="Leather",Level=22,id=14569,StackCount=1,Rarity=2,MinLevel=17,SellPrice=472,Texture=132607,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14569::::::::40:::::::|h[Bristlebark Bindings]|h|r"},["PVP - Alliance Tower Plans"]={SubType="Key",Level=1,id=6208,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134238,Type="Key",Link="|cffffffff|Hitem:6208::::::::40:::::::|h[PVP - Alliance Tower Plans]|h|r",EquipLoc=""},["Pattern: Runecloth Boots"]={SubType="Tailoring",Level=56,id=14488,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:14488::::::::40:::::::|h[Pattern: Runecloth Boots]|h|r"},["Mograine's Might"]={SubType="Two-Handed Maces",Level=44,id=7723,StackCount=1,Rarity=3,MinLevel=39,SellPrice=22567,Texture=133488,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:7723::::::::40:::::::|h[Mograine's Might]|h|r",Type="Weapon"},["Hallowed Wand - Bat"]={SubType="Consumable",Level=1,id=20410,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135474,Link="|cffffffff|Hitem:20410::::::::40:::::::|h[Hallowed Wand - Bat]|h|r",EquipLoc="",Type="Consumable"},["Schematic: Thorium Shells"]={SubType="Engineering",Level=57,id=16051,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:16051::::::::40:::::::|h[Schematic: Thorium Shells]|h|r",Type="Recipe"},["Impenetrable Pauldrons"]={SubType="Mail",Level=59,id=15666,StackCount=1,Rarity=2,MinLevel=54,SellPrice=18375,Texture=135044,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15666::::::::40:::::::|h[Impenetrable Pauldrons]|h|r",Type="Armor"},["Worn Mace"]={SubType="One-Handed Maces",Level=2,id=36,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=133478,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:36::::::::40:::::::|h[Worn Mace]|h|r"},["Windchaser Footpads"]={SubType="Cloth",Level=44,id=14428,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4717,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14428::::::::40:::::::|h[Windchaser Footpads]|h|r"},["Monster - Hot Iron Poker Offhand"]={SubType="Miscellaneous",Level=1,id=13611,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134718,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13611::::::::40:::::::|h[Monster - Hot Iron Poker Offhand]|h|r"},["Deprecated Spotted Panther Skin"]={SubType="Junk",Level=1,id=4579,StackCount=10,Rarity=1,MinLevel=0,SellPrice=737,Texture=134366,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:4579::::::::40:::::::|h[Deprecated Spotted Panther Skin]|h|r"},["Heavy Scorpid Vest"]={SubType="Mail",Level=53,id=15076,StackCount=1,Rarity=2,MinLevel=48,SellPrice=16604,Texture=132637,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15076::::::::40:::::::|h[Heavy Scorpid Vest]|h|r",Type="Armor"},["Monster - Sword, Doomguard"]={SubType="One-Handed Swords",Level=1,id=13504,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135316,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13504::::::::40:::::::|h[Monster - Sword, Doomguard]|h|r"},["Tablet of Call Spirit"]={SubType="Book",Level=10,id=1035,StackCount=1,Rarity=1,MinLevel=10,SellPrice=187,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:1035::::::::40:::::::|h[Tablet of Call Spirit]|h|r",Type="Recipe"},["Greenweave Leggings"]={SubType="Cloth",Level=27,id=9772,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1328,Texture=134590,Link="|cff1eff00|Hitem:9772::::::::40:::::::|h[Greenweave Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Pattern: Ironfeather Shoulders"]={SubType="Leatherworking",Level=54,id=15735,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3500,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15735::::::::40:::::::|h[Pattern: Ironfeather Shoulders]|h|r",Type="Recipe"},["Artisan's Trousers"]={SubType="Cloth",Level=35,id=5016,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2955,Texture=134590,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:5016::::::::40:::::::|h[Artisan's Trousers]|h|r"},["Honed Stiletto"]={SubType="Daggers",Level=30,id=15242,StackCount=1,Rarity=2,MinLevel=25,SellPrice=4426,Texture=135637,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15242::::::::40:::::::|h[Honed Stiletto]|h|r",Type="Weapon"},["Monster - Axe, Wide Blade Silver"]={SubType="One-Handed Axes",Level=1,id=14880,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14880::::::::40:::::::|h[Monster - Axe, Wide Blade Silver]|h|r"},["Cloak of the Hakkari Worshipers"]={SubType="Cloth",Level=68,id=22711,StackCount=1,Rarity=3,MinLevel=60,SellPrice=22162,Texture=133768,Link="|cff0070dd|Hitem:22711::::::::40:::::::|h[Cloak of the Hakkari Worshipers]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Warchief's Girdle"]={SubType="Mail",Level=23,id=5750,StackCount=1,Rarity=2,MinLevel=18,SellPrice=641,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:5750::::::::40:::::::|h[Warchief's Girdle]|h|r",Type="Armor"},["Devilsaur Eye"]={SubType="Miscellaneous",Level=52,id=19991,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133884,Link="|cff0070dd|Hitem:19991::::::::40:::::::|h[Devilsaur Eye]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["AHNQIRAJ TEST ITEM A CLOTH ROBE"]={SubType="Miscellaneous",Level=1,id=21430,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:21430::::::::40:::::::|h[AHNQIRAJ TEST ITEM A CLOTH ROBE]|h|r"},["Deathdealer's Boots"]={SubType="Leather",Level=78,id=21359,StackCount=1,Rarity=4,MinLevel=60,SellPrice=59459,Texture=132542,Link="|cffa335ee|Hitem:21359::::::::40:::::::|h[Deathdealer's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Rough Leather Vest"]={SubType="Leather",Level=10,id=799,StackCount=1,Rarity=1,MinLevel=5,SellPrice=71,Texture=132760,Type="Armor",Link="|cffffffff|Hitem:799::::::::40:::::::|h[Rough Leather Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Painted Chain Leggings"]={SubType="Mail",Level=5,id=10635,StackCount=1,Rarity=1,MinLevel=0,SellPrice=14,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:10635::::::::40:::::::|h[Painted Chain Leggings]|h|r",Type="Armor"},["Skullsmoke Pants"]={SubType="Cloth",Level=61,id=14577,StackCount=1,Rarity=3,MinLevel=56,SellPrice=21585,Texture=134588,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:14577::::::::40:::::::|h[Skullsmoke Pants]|h|r"},["Stonecloth Gloves"]={SubType="Cloth",Level=35,id=14411,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1387,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14411::::::::40:::::::|h[Stonecloth Gloves]|h|r"},["Monster - Axe, 2H War Green - Mulgore Protector"]={SubType="Two-Handed Axes",Level=1,id=12754,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12754::::::::40:::::::|h[Monster - Axe, 2H War Green - Mulgore Protector]|h|r"},["Venomshroud Mantle"]={SubType="Cloth",Level=49,id=14443,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6745,Texture=135049,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14443::::::::40:::::::|h[Venomshroud Mantle]|h|r"},["Bank Voucher"]={SubType="Quest",Level=1,id=11843,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",Link="|cffffffff|Hitem:11843::::::::40:::::::|h[Bank Voucher]|h|r",EquipLoc=""},["Elementium Bar"]={SubType="Trade Goods",Level=60,id=17771,StackCount=10,Rarity=5,MinLevel=0,SellPrice=100000,Texture=133235,EquipLoc="",Link="|cffff8000|Hitem:17771::::::::40:::::::|h[Elementium Bar]|h|r",Type="Trade Goods"},["Codex of Holy Word: Shield VI"]={SubType="Book",Level=36,id=1651,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133741,Link="|cffffffff|Hitem:1651::::::::40:::::::|h[Codex of Holy Word: Shield VI]|h|r",EquipLoc="",Type="Recipe"},["Small Brilliant Shard"]={SubType="Trade Goods",Level=50,id=14343,StackCount=20,Rarity=3,MinLevel=0,SellPrice=0,Texture=132874,Type="Trade Goods",EquipLoc="",Link="|cff0070dd|Hitem:14343::::::::40:::::::|h[Small Brilliant Shard]|h|r"},["Zandalar Haruspex's Bracers"]={SubType="Leather",Level=61,id=19840,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132607,Link="|cffa335ee|Hitem:19840::::::::40:::::::|h[Zandalar Haruspex's Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Tarantula Silk Sash"]={SubType="Cloth",Level=23,id=3229,StackCount=1,Rarity=2,MinLevel=18,SellPrice=424,Texture=132496,Type="Armor",Link="|cff1eff00|Hitem:3229::::::::40:::::::|h[Tarantula Silk Sash]|h|r",EquipLoc="INVTYPE_WAIST"},["Head of Kelris"]={SubType="Quest",Level=1,id=5881,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,EquipLoc="",Link="|cffffffff|Hitem:5881::::::::40:::::::|h[Head of Kelris]|h|r",Type="Quest"},["[PH] Leather Leggings of the Shining Dawn"]={SubType="Leather",Level=100,id=13779,StackCount=1,Rarity=1,MinLevel=100,SellPrice=88202,Texture=134585,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:13779::::::::40:::::::|h[[PH] Leather Leggings of the Shining Dawn]|h|r"},["Eye of Arachnida"]={SubType="Consumable",Level=60,id=13508,StackCount=1,Rarity=2,MinLevel=55,SellPrice=4778,Texture=133884,Type="Consumable",EquipLoc="",Link="|cff1eff00|Hitem:13508::::::::40:::::::|h[Eye of Arachnida]|h|r"},["Merciless Surcoat"]={SubType="Mail",Level=57,id=15650,StackCount=1,Rarity=2,MinLevel=52,SellPrice=22230,Texture=132722,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15650::::::::40:::::::|h[Merciless Surcoat]|h|r",Type="Armor"},["Troll Temper"]={SubType="Quest",Level=1,id=9523,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134805,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9523::::::::40:::::::|h[Troll Temper]|h|r"},["90 Epic Rogue Neck"]={SubType="Miscellaneous",Level=90,id=20275,StackCount=1,Rarity=4,MinLevel=60,SellPrice=15038,Texture=133440,Link="|cffa335ee|Hitem:20275::::::::40:::::::|h[90 Epic Rogue Neck]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Dark Leather Shoulders"]={SubType="Leather",Level=28,id=4252,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1457,Texture=135043,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:4252::::::::40:::::::|h[Dark Leather Shoulders]|h|r"},["Formula: Enchant Gloves - Healing Power"]={SubType="Enchanting",Level=70,id=20730,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25000,Texture=134327,Link="|cff0070dd|Hitem:20730::::::::40:::::::|h[Formula: Enchant Gloves - Healing Power]|h|r",EquipLoc="",Type="Recipe"},["Blue Moro'gai Gem"]={SubType="Quest",Level=1,id=18155,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133367,Type="Quest",Link="|cff1eff00|Hitem:18155::::::::40:::::::|h[Blue Moro'gai Gem]|h|r",EquipLoc=""},["Monster - Sword2H, Horde Massive Blue"]={SubType="Two-Handed Swords",Level=1,id=13708,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13708::::::::40:::::::|h[Monster - Sword2H, Horde Massive Blue]|h|r"},["Gray Kodo"]={SubType="Junk",Level=40,id=15277,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132243,EquipLoc="",Link="|cff0070dd|Hitem:15277::::::::40:::::::|h[Gray Kodo]|h|r",Type="Miscellaneous"},["Kite Shield"]={SubType="Shields",Level=27,id=2446,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1236,Texture=134952,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:2446::::::::40:::::::|h[Kite Shield]|h|r"},["Pendant of Celerity"]={SubType="Miscellaneous",Level=63,id=22340,StackCount=1,Rarity=3,MinLevel=58,SellPrice=65328,Texture=133291,Link="|cff0070dd|Hitem:22340::::::::40:::::::|h[Pendant of Celerity]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Interlaced Bracers"]={SubType="Cloth",Level=38,id=3794,StackCount=1,Rarity=0,MinLevel=33,SellPrice=774,Texture=132601,Link="|cff9d9d9d|Hitem:3794::::::::40:::::::|h[Interlaced Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Taillasher Egg"]={SubType="Quest",Level=1,id=4890,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132833,Link="|cffffffff|Hitem:4890::::::::40:::::::|h[Taillasher Egg]|h|r",EquipLoc="",Type="Quest"},["Test Shadow Resist Mail LockBox"]={SubType="Junk",Level=1,id=16183,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16183::::::::40:::::::|h[Test Shadow Resist Mail LockBox]|h|r",Type="Miscellaneous"},["Malfurion's Blessed Bulwark"]={SubType="Leather",Level=75,id=19405,StackCount=1,Rarity=4,MinLevel=60,SellPrice=70277,Texture=132723,Link="|cffa335ee|Hitem:19405::::::::40:::::::|h[Malfurion's Blessed Bulwark]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Deprecated Tribal Mantle"]={SubType="Leather",Level=12,id=4673,StackCount=1,Rarity=1,MinLevel=7,SellPrice=86,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:4673::::::::40:::::::|h[Deprecated Tribal Mantle]|h|r",Type="Armor"},["Icebane Breastplate"]={SubType="Plate",Level=80,id=22669,StackCount=1,Rarity=4,MinLevel=60,SellPrice=68390,Texture=132633,Link="|cffa335ee|Hitem:22669::::::::40:::::::|h[Icebane Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Jadefire Cloak"]={SubType="Cloth",Level=49,id=15392,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6382,Texture=133769,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15392::::::::40:::::::|h[Jadefire Cloak]|h|r",Type="Armor"},["Fourth Mosh'aru Tablet"]={SubType="Quest",Level=1,id=12412,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134421,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12412::::::::40:::::::|h[Fourth Mosh'aru Tablet]|h|r"},["Lard's Special Picnic Basket"]={SubType="Junk",Level=50,id=19035,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=132594,Link="|cff1eff00|Hitem:19035::::::::40:::::::|h[Lard's Special Picnic Basket]|h|r",EquipLoc="",Type="Miscellaneous"},["Chitinous Plate Legguards"]={SubType="Plate",Level=61,id=18739,StackCount=1,Rarity=3,MinLevel=56,SellPrice=20124,Texture=134584,Type="Armor",Link="|cff0070dd|Hitem:18739::::::::40:::::::|h[Chitinous Plate Legguards]|h|r",EquipLoc="INVTYPE_LEGS"},["Plans: Imperial Plate Boots"]={SubType="Blacksmithing",Level=59,id=12700,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6250,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12700::::::::40:::::::|h[Plans: Imperial Plate Boots]|h|r"},["Tough Scorpid Helm"]={SubType="Mail",Level=50,id=8208,StackCount=1,Rarity=2,MinLevel=45,SellPrice=10272,Texture=133122,Link="|cff1eff00|Hitem:8208::::::::40:::::::|h[Tough Scorpid Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Nightscape Shoulders"]={SubType="Leather",Level=42,id=8192,StackCount=1,Rarity=2,MinLevel=37,SellPrice=4782,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:8192::::::::40:::::::|h[Nightscape Shoulders]|h|r"},["Outrider's Silk Leggings"]={SubType="Cloth",Level=65,id=22747,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33526,Texture=134599,Link="|cffa335ee|Hitem:22747::::::::40:::::::|h[Outrider's Silk Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Drape of Unyielding Strength"]={SubType="Cloth",Level=67,id=21394,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133772,Link="|cffa335ee|Hitem:21394::::::::40:::::::|h[Drape of Unyielding Strength]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Gatorbite Axe"]={SubType="Two-Handed Axes",Level=53,id=17730,StackCount=1,Rarity=3,MinLevel=48,SellPrice=42951,Texture=132395,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:17730::::::::40:::::::|h[Gatorbite Axe]|h|r",Type="Weapon"},["Buttermilk Delight"]={SubType="Consumable",Level=1,id=22236,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135457,Link="|cffffffff|Hitem:22236::::::::40:::::::|h[Buttermilk Delight]|h|r",EquipLoc="",Type="Consumable"},["Scout's Medallion"]={SubType="Miscellaneous",Level=63,id=19534,StackCount=1,Rarity=3,MinLevel=58,SellPrice=18750,Texture=133301,Link="|cff0070dd|Hitem:19534::::::::40:::::::|h[Scout's Medallion]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Girdle of Thero-shan"]={SubType="Leather",Level=32,id=7948,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1357,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:7948::::::::40:::::::|h[Girdle of Thero-shan]|h|r",Type="Armor"},["Deprecated Split Elemental Bracer"]={SubType="Quest",Level=1,id=5454,StackCount=20,Rarity=1,MinLevel=0,SellPrice=26,Texture=132606,EquipLoc="",Link="|cffffffff|Hitem:5454::::::::40:::::::|h[Deprecated Split Elemental Bracer]|h|r",Type="Quest"},["Crusader's Gauntlets"]={SubType="Mail",Level=52,id=10196,StackCount=1,Rarity=2,MinLevel=47,SellPrice=7593,Texture=132957,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10196::::::::40:::::::|h[Crusader's Gauntlets]|h|r",Type="Armor"},["Orphic Bracers"]={SubType="Cloth",Level=59,id=18337,StackCount=1,Rarity=2,MinLevel=54,SellPrice=8103,Texture=132608,Type="Armor",Link="|cff1eff00|Hitem:18337::::::::40:::::::|h[Orphic Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Myrmidon's Helm"]={SubType="Mail",Level=50,id=8131,StackCount=1,Rarity=2,MinLevel=45,SellPrice=10115,Texture=133078,Link="|cff1eff00|Hitem:8131::::::::40:::::::|h[Myrmidon's Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Mighty Tunic"]={SubType="Leather",Level=64,id=10151,StackCount=1,Rarity=2,MinLevel=59,SellPrice=25456,Texture=132646,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10151::::::::40:::::::|h[Mighty Tunic]|h|r",Type="Armor"},["Stoneshatter"]={SubType="Crossbows",Level=62,id=18388,StackCount=1,Rarity=3,MinLevel=57,SellPrice=41928,Texture=135537,Type="Weapon",Link="|cff0070dd|Hitem:18388::::::::40:::::::|h[Stoneshatter]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Avenger's Breastplate"]={SubType="Plate",Level=88,id=21389,StackCount=1,Rarity=4,MinLevel=60,SellPrice=99463,Texture=132738,Link="|cffa335ee|Hitem:21389::::::::40:::::::|h[Avenger's Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Ground Scorpok Assay"]={SubType="Consumable",Level=1,id=8412,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,Link="|cffffffff|Hitem:8412::::::::40:::::::|h[Ground Scorpok Assay]|h|r",EquipLoc="",Type="Consumable"},["QAEnchant Bracer +9 Strength"]={SubType="Consumable",Level=1,id=17827,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17827::::::::40:::::::|h[QAEnchant Bracer +9 Strength]|h|r",Type="Consumable"},["Tarnished Chain Belt"]={SubType="Mail",Level=5,id=2380,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=132495,Link="|cffffffff|Hitem:2380::::::::40:::::::|h[Tarnished Chain Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Echeyakee's Hide"]={SubType="Quest",Level=1,id=5100,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134371,EquipLoc="",Link="|cffffffff|Hitem:5100::::::::40:::::::|h[Echeyakee's Hide]|h|r",Type="Quest"},["Arathi Basin Mageweave Bandage"]={SubType="Consumable",Level=45,id=20065,StackCount=20,Rarity=1,MinLevel=35,SellPrice=75,Texture=133690,Link="|cffffffff|Hitem:20065::::::::40:::::::|h[Arathi Basin Mageweave Bandage]|h|r",EquipLoc="",Type="Consumable"},["Grimoire of Health Funnel"]={SubType="Book",Level=12,id=9198,StackCount=1,Rarity=1,MinLevel=12,SellPrice=150,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9198::::::::40:::::::|h[Grimoire of Health Funnel]|h|r"},["Shinkicker Boots"]={SubType="Plate",Level=45,id=9637,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4749,Texture=132588,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9637::::::::40:::::::|h[Shinkicker Boots]|h|r"},["Zandalarian Hero Medallion"]={SubType="Miscellaneous",Level=68,id=19949,StackCount=1,Rarity=4,MinLevel=0,SellPrice=111303,Texture=133300,Link="|cffa335ee|Hitem:19949::::::::40:::::::|h[Zandalarian Hero Medallion]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Rockgrip Gauntlets"]={SubType="Mail",Level=53,id=17736,StackCount=1,Rarity=3,MinLevel=48,SellPrice=9646,Texture=132962,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:17736::::::::40:::::::|h[Rockgrip Gauntlets]|h|r",Type="Armor"},["Hawkeye's Cord"]={SubType="Leather",Level=36,id=14588,StackCount=1,Rarity=2,MinLevel=31,SellPrice=1989,Texture=132498,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14588::::::::40:::::::|h[Hawkeye's Cord]|h|r"},["Encased Corrupt Ooze"]={SubType="Quest",Level=1,id=12288,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132622,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12288::::::::40:::::::|h[Encased Corrupt Ooze]|h|r"},["Thick Cloth Pants"]={SubType="Cloth",Level=22,id=201,StackCount=1,Rarity=1,MinLevel=17,SellPrice=455,Texture=134592,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:201::::::::40:::::::|h[Thick Cloth Pants]|h|r",Type="Armor"},["Ring of Saviors"]={SubType="Miscellaneous",Level=46,id=1447,StackCount=1,Rarity=4,MinLevel=41,SellPrice=22775,Texture=132516,Link="|cffa335ee|Hitem:1447::::::::40:::::::|h[Ring of Saviors]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Deprecated Work Shirt"]={SubType="Miscellaneous",Level=1,id=3148,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135012,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:3148::::::::40:::::::|h[Deprecated Work Shirt]|h|r"},["Sunscale Belt"]={SubType="Plate",Level=49,id=14847,StackCount=1,Rarity=2,MinLevel=44,SellPrice=4254,Texture=132508,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14847::::::::40:::::::|h[Sunscale Belt]|h|r"},["Instant Poison"]={SubType="Consumable",Level=20,id=6947,StackCount=20,Rarity=1,MinLevel=20,SellPrice=5,Texture=132273,Type="Consumable",Link="|cffffffff|Hitem:6947::::::::40:::::::|h[Instant Poison]|h|r",EquipLoc=""},["Musty Parchment"]={SubType="Quest",Level=1,id=6277,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133463,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6277::::::::40:::::::|h[Musty Parchment]|h|r"},["Praetorian Padded Armor"]={SubType="Leather",Level=57,id=15179,StackCount=1,Rarity=2,MinLevel=52,SellPrice=18593,Texture=132629,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15179::::::::40:::::::|h[Praetorian Padded Armor]|h|r",Type="Armor"},["William's Shipment"]={SubType="Quest",Level=1,id=957,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133751,Link="|cffffffff|Hitem:957::::::::40:::::::|h[William's Shipment]|h|r",EquipLoc="",Type="Quest"},["Champion's Leather Shoulders"]={SubType="Leather",Level=71,id=23258,StackCount=1,Rarity=3,MinLevel=60,SellPrice=16152,Texture=135045,Link="|cff0070dd|Hitem:23258::::::::40:::::::|h[Champion's Leather Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Tranquil Mechanical Yeti"]={SubType="Devices",Level=60,id=21277,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=132189,Link="|cffffffff|Hitem:21277::::::::40:::::::|h[Tranquil Mechanical Yeti]|h|r",EquipLoc="",Type="Trade Goods"},["Ivycloth Sash"]={SubType="Cloth",Level=26,id=9799,StackCount=1,Rarity=2,MinLevel=21,SellPrice=635,Texture=132514,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9799::::::::40:::::::|h[Ivycloth Sash]|h|r"},["Supreme Breastplate"]={SubType="Leather",Level=65,id=15442,StackCount=1,Rarity=2,MinLevel=60,SellPrice=27433,Texture=132741,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15442::::::::40:::::::|h[Supreme Breastplate]|h|r",Type="Armor"},["Ethereal Mist Cape"]={SubType="Cloth",Level=56,id=11873,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9661,Texture=133757,Type="Armor",Link="|cff1eff00|Hitem:11873::::::::40:::::::|h[Ethereal Mist Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Monster - Item, Book - Blue"]={SubType="Miscellaneous",Level=1,id=12751,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12751::::::::40:::::::|h[Monster - Item, Book - Blue]|h|r"},["Gustweald Cloak"]={SubType="Cloth",Level=15,id=5610,StackCount=1,Rarity=2,MinLevel=0,SellPrice=208,Texture=133763,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:5610::::::::40:::::::|h[Gustweald Cloak]|h|r",Type="Armor"},["Stonemason Cloak"]={SubType="Cloth",Level=18,id=1930,StackCount=1,Rarity=2,MinLevel=13,SellPrice=408,Texture=133763,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:1930::::::::40:::::::|h[Stonemason Cloak]|h|r",Type="Armor"},["Beaded Orb"]={SubType="Miscellaneous",Level=10,id=15969,StackCount=1,Rarity=2,MinLevel=5,SellPrice=425,Texture=134337,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15969::::::::40:::::::|h[Beaded Orb]|h|r",Type="Armor"},["Grimoire of Shadow Bolt II"]={SubType="Book",Level=6,id=1231,StackCount=1,Rarity=1,MinLevel=6,SellPrice=25,Texture=133738,Type="Recipe",Link="|cffffffff|Hitem:1231::::::::40:::::::|h[Grimoire of Shadow Bolt II]|h|r",EquipLoc=""},["Ados Fragment"]={SubType="Quest",Level=1,id=2658,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135235,Link="|cffffffff|Hitem:2658::::::::40:::::::|h[Ados Fragment]|h|r",EquipLoc="",Type="Quest"},["Thistlenettle's Badge"]={SubType="Quest",Level=1,id=1875,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133278,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1875::::::::40:::::::|h[Thistlenettle's Badge]|h|r"},["Essence of the Pure Flame"]={SubType="Miscellaneous",Level=75,id=18815,StackCount=1,Rarity=4,MinLevel=60,SellPrice=64095,Texture=135805,Type="Armor",Link="|cffa335ee|Hitem:18815::::::::40:::::::|h[Essence of the Pure Flame]|h|r",EquipLoc="INVTYPE_TRINKET"},["Slatemetal Cutlass"]={SubType="One-Handed Swords",Level=24,id=16890,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2483,Texture=135343,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:16890::::::::40:::::::|h[Slatemetal Cutlass]|h|r",Type="Weapon"},["Riphook"]={SubType="Bows",Level=59,id=12653,StackCount=1,Rarity=3,MinLevel=54,SellPrice=36318,Texture=135496,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff0070dd|Hitem:12653::::::::40:::::::|h[Riphook]|h|r"},["Noble's Robe"]={SubType="Cloth",Level=18,id=3019,StackCount=1,Rarity=2,MinLevel=13,SellPrice=423,Texture=132679,Link="|cff1eff00|Hitem:3019::::::::40:::::::|h[Noble's Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Death Speaker Mantle"]={SubType="Cloth",Level=30,id=6685,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1310,Texture=135040,Type="Armor",Link="|cff1eff00|Hitem:6685::::::::40:::::::|h[Death Speaker Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Bloodlust Cape"]={SubType="Cloth",Level=52,id=14801,StackCount=1,Rarity=2,MinLevel=47,SellPrice=8156,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14801::::::::40:::::::|h[Bloodlust Cape]|h|r"},["Lord Sakrasis' Scepter"]={SubType="Miscellaneous",Level=47,id=5028,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5537,Texture=135472,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:5028::::::::40:::::::|h[Lord Sakrasis' Scepter]|h|r",Type="Armor"},["Unused Cloth Shoulder A02 Yellow"]={SubType="Cloth",Level=35,id=4856,StackCount=1,Rarity=0,MinLevel=30,SellPrice=841,Texture=135036,Type="Armor",Link="|cff9d9d9d|Hitem:4856::::::::40:::::::|h[Unused Cloth Shoulder A02 Yellow]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Masterwork Girdle"]={SubType="Mail",Level=62,id=10269,StackCount=1,Rarity=2,MinLevel=57,SellPrice=14106,Texture=132500,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10269::::::::40:::::::|h[Masterwork Girdle]|h|r",Type="Armor"},["Renataki's Soul Conduit"]={SubType="One-Handed Swords",Level=68,id=19964,StackCount=1,Rarity=3,MinLevel=60,SellPrice=73293,Texture=135347,Link="|cff0070dd|Hitem:19964::::::::40:::::::|h[Renataki's Soul Conduit]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Bloodwoven Rod"]={SubType="Miscellaneous",Level=51,id=15982,StackCount=1,Rarity=2,MinLevel=46,SellPrice=8142,Texture=135150,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15982::::::::40:::::::|h[Bloodwoven Rod]|h|r",Type="Armor"},["Ignition Key"]={SubType="Key",Level=1,id=5050,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134240,EquipLoc="",Link="|cffffffff|Hitem:5050::::::::40:::::::|h[Ignition Key]|h|r",Type="Key"},["Nightsky Orb"]={SubType="Miscellaneous",Level=37,id=15929,StackCount=1,Rarity=2,MinLevel=32,SellPrice=4396,Texture=134336,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15929::::::::40:::::::|h[Nightsky Orb]|h|r",Type="Armor"},["Triumphant Shield"]={SubType="Shields",Level=65,id=15687,StackCount=1,Rarity=2,MinLevel=60,SellPrice=32493,Texture=134948,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15687::::::::40:::::::|h[Triumphant Shield]|h|r",Type="Armor"},["Warsong Sash"]={SubType="Cloth",Level=27,id=16975,StackCount=1,Rarity=3,MinLevel=0,SellPrice=813,Texture=132491,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16975::::::::40:::::::|h[Warsong Sash]|h|r",Type="Armor"},["Journeyman's Backpack"]={SubType="Bag",Level=45,id=3914,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6250,Texture=133629,Type="Container",Link="|cffffffff|Hitem:3914::::::::40:::::::|h[Journeyman's Backpack]|h|r",EquipLoc="INVTYPE_BAG"},["Band of Purification"]={SubType="Miscellaneous",Level=23,id=12996,StackCount=1,Rarity=3,MinLevel=18,SellPrice=1527,Texture=133373,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:12996::::::::40:::::::|h[Band of Purification]|h|r"},["Margol's Gigantic Horn"]={SubType="Quest",Level=1,id=10005,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134229,EquipLoc="",Link="|cffffffff|Hitem:10005::::::::40:::::::|h[Margol's Gigantic Horn]|h|r",Type="Quest"},["Robes of the Guardian Saint"]={SubType="Cloth",Level=77,id=21663,StackCount=1,Rarity=4,MinLevel=60,SellPrice=61534,Texture=132664,Link="|cffa335ee|Hitem:21663::::::::40:::::::|h[Robes of the Guardian Saint]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Raschal's Report"]={SubType="Quest",Level=1,id=11466,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134943,Type="Quest",Link="|cffffffff|Hitem:11466::::::::40:::::::|h[Raschal's Report]|h|r",EquipLoc=""},["Schematic: Portable Bronze Mortar"]={SubType="Engineering",Level=33,id=4414,StackCount=1,Rarity=2,MinLevel=0,SellPrice=462,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:4414::::::::40:::::::|h[Schematic: Portable Bronze Mortar]|h|r",EquipLoc=""},["Dancing Flame"]={SubType="Wands",Level=40,id=6806,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8508,Texture=135466,Type="Weapon",Link="|cff1eff00|Hitem:6806::::::::40:::::::|h[Dancing Flame]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Taut Dragonhide Shoulderpads"]={SubType="Leather",Level=77,id=19389,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58954,Texture=135039,Link="|cffa335ee|Hitem:19389::::::::40:::::::|h[Taut Dragonhide Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Recipe: Longjaw Mud Snapper"]={SubType="Cooking",Level=15,id=6328,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:6328::::::::40:::::::|h[Recipe: Longjaw Mud Snapper]|h|r",EquipLoc=""},["Town Meeting Notice"]={SubType="Junk",Level=1,id=13365,StackCount=20,Rarity=0,MinLevel=0,SellPrice=2000,Texture=134946,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:13365::::::::40:::::::|h[Town Meeting Notice]|h|r"},["Recipe: Purification Potion"]={SubType="Alchemy",Level=57,id=13492,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13492::::::::40:::::::|h[Recipe: Purification Potion]|h|r"},["Spellshock Leggings"]={SubType="Cloth",Level=50,id=9484,StackCount=1,Rarity=3,MinLevel=45,SellPrice=10962,Texture=134588,Link="|cff0070dd|Hitem:9484::::::::40:::::::|h[Spellshock Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Deprecated Pattern: Light Winter Boots"]={SubType="Leatherworking",Level=6,id=2405,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=134939,Link="|cffffffff|Hitem:2405::::::::40:::::::|h[Deprecated Pattern: Light Winter Boots]|h|r",EquipLoc="",Type="Recipe"},["Footpad's Shoes"]={SubType="Miscellaneous",Level=1,id=47,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132539,Type="Armor",Link="|cffffffff|Hitem:47::::::::40:::::::|h[Footpad's Shoes]|h|r",EquipLoc="INVTYPE_FEET"},["Barrel of Barleybrew Scalder"]={SubType="Quest",Level=1,id=2548,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132620,Link="|cffffffff|Hitem:2548::::::::40:::::::|h[Barrel of Barleybrew Scalder]|h|r",EquipLoc="",Type="Quest"},["Thermaplugg's Safe Combination"]={SubType="Key",Level=1,id=9299,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134331,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:9299::::::::40:::::::|h[Thermaplugg's Safe Combination]|h|r"},["Copper Rod"]={SubType="Trade Goods",Level=5,id=6217,StackCount=1,Rarity=1,MinLevel=0,SellPrice=24,Texture=133942,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:6217::::::::40:::::::|h[Copper Rod]|h|r"},["Formula: Enchant Cloak - Greater Resistance"]={SubType="Enchanting",Level=53,id=16216,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16216::::::::40:::::::|h[Formula: Enchant Cloak - Greater Resistance]|h|r",Type="Recipe"},["Darkmoon Card: Heroism"]={SubType="Miscellaneous",Level=66,id=19287,StackCount=1,Rarity=4,MinLevel=60,SellPrice=100000,Texture=134488,Link="|cffa335ee|Hitem:19287::::::::40:::::::|h[Darkmoon Card: Heroism]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Bonelink Legplates"]={SubType="Mail",Level=46,id=15616,StackCount=1,Rarity=2,MinLevel=41,SellPrice=10151,Texture=134581,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15616::::::::40:::::::|h[Bonelink Legplates]|h|r",Type="Armor"},["Blood Guard's Satin Handwraps"]={SubType="Cloth",Level=66,id=22869,StackCount=1,Rarity=3,MinLevel=60,SellPrice=6821,Texture=132951,Link="|cff0070dd|Hitem:22869::::::::40:::::::|h[Blood Guard's Satin Handwraps]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Sentinel Bracers"]={SubType="Leather",Level=36,id=7447,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2068,Texture=132607,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:7447::::::::40:::::::|h[Sentinel Bracers]|h|r",Type="Armor"},["Tigerbane"]={SubType="Daggers",Level=38,id=1465,StackCount=1,Rarity=2,MinLevel=33,SellPrice=9824,Texture=135651,Link="|cff1eff00|Hitem:1465::::::::40:::::::|h[Tigerbane]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Striking Hatchet"]={SubType="One-Handed Axes",Level=12,id=3071,StackCount=1,Rarity=1,MinLevel=0,SellPrice=231,Texture=132402,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:3071::::::::40:::::::|h[Striking Hatchet]|h|r"},["Swift Olive Raptor"]={SubType="Junk",Level=60,id=18789,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132253,Type="Miscellaneous",Link="|cffa335ee|Hitem:18789::::::::40:::::::|h[Swift Olive Raptor]|h|r",EquipLoc=""},["Glass Shooter"]={SubType="Guns",Level=35,id=9456,StackCount=1,Rarity=3,MinLevel=30,SellPrice=6652,Texture=135611,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:9456::::::::40:::::::|h[Glass Shooter]|h|r"},["Chromite Pauldrons"]={SubType="Plate",Level=45,id=8144,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5036,Texture=135060,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:8144::::::::40:::::::|h[Chromite Pauldrons]|h|r"},["Sentinel's Lizardhide Pants"]={SubType="Leather",Level=65,id=22750,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42373,Texture=134586,Link="|cffa335ee|Hitem:22750::::::::40:::::::|h[Sentinel's Lizardhide Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Mazzranache's Head"]={SubType="Quest",Level=4,id=4966,StackCount=1,Rarity=1,MinLevel=4,SellPrice=0,Texture=133707,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4966::::::::40:::::::|h[Mazzranache's Head]|h|r"},["Monster - Axe, Horde Badass 01"]={SubType="One-Handed Axes",Level=1,id=10611,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:10611::::::::40:::::::|h[Monster - Axe, Horde Badass 01]|h|r",Type="Weapon"},["Qiraji Ceremonial Ring"]={SubType="Quest",Level=1,id=20888,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134893,Link="|cff0070dd|Hitem:20888::::::::40:::::::|h[Qiraji Ceremonial Ring]|h|r",EquipLoc="",Type="Quest"},["Recipe: Greater Shadow Protection Potion"]={SubType="Alchemy",Level=58,id=13499,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13499::::::::40:::::::|h[Recipe: Greater Shadow Protection Potion]|h|r"},["Highlander's Chain Pauldrons"]={SubType="Mail",Level=65,id=20055,StackCount=1,Rarity=4,MinLevel=60,SellPrice=36867,Texture=135032,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:20055::::::::40:::::::|h[Highlander's Chain Pauldrons]|h|r"},["Nightshade Spaulders"]={SubType="Leather",Level=60,id=10228,StackCount=1,Rarity=2,MinLevel=55,SellPrice=15940,Texture=135042,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10228::::::::40:::::::|h[Nightshade Spaulders]|h|r",Type="Armor"},["Fizzle's Zippy Lighter"]={SubType="Wands",Level=38,id=6729,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7187,Texture=135473,Type="Weapon",Link="|cff1eff00|Hitem:6729::::::::40:::::::|h[Fizzle's Zippy Lighter]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Plans: Darkrune Gauntlets"]={SubType="Blacksmithing",Level=63,id=20553,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134941,Link="|cff0070dd|Hitem:20553::::::::40:::::::|h[Plans: Darkrune Gauntlets]|h|r",EquipLoc="",Type="Recipe"},["Celestial Belt"]={SubType="Cloth",Level=56,id=14309,StackCount=1,Rarity=2,MinLevel=51,SellPrice=6866,Texture=132518,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14309::::::::40:::::::|h[Celestial Belt]|h|r"},["Legacy of the Aspects"]={SubType="Quest",Level=1,id=5860,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:5860::::::::40:::::::|h[Legacy of the Aspects]|h|r",Type="Quest"},["Formula: Enchant 2H Weapon - Major Spirit"]={SubType="Enchanting",Level=62,id=16255,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16255::::::::40:::::::|h[Formula: Enchant 2H Weapon - Major Spirit]|h|r",Type="Recipe"},["Primal Hakkari Kossack"]={SubType="Quest",Level=1,id=19723,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=135011,Link="|cffa335ee|Hitem:19723::::::::40:::::::|h[Primal Hakkari Kossack]|h|r",EquipLoc="",Type="Quest"},["Zalazane's Head"]={SubType="Quest",Level=1,id=4866,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136218,EquipLoc="",Link="|cffffffff|Hitem:4866::::::::40:::::::|h[Zalazane's Head]|h|r",Type="Quest"},["Faint Necrotic Crystal"]={SubType="Quest",Level=1,id=22950,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134084,Link="|cffffffff|Hitem:22950::::::::40:::::::|h[Faint Necrotic Crystal]|h|r",EquipLoc="",Type="Quest"},["A Sycamore Branch"]={SubType="Quest",Level=1,id=742,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133749,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:742::::::::40:::::::|h[A Sycamore Branch]|h|r"},["Half Pendant of Aquatic Agility"]={SubType="Quest",Level=1,id=15883,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133443,EquipLoc="",Link="|cffffffff|Hitem:15883::::::::40:::::::|h[Half Pendant of Aquatic Agility]|h|r",Type="Quest"},["Geomancer's Cap"]={SubType="Cloth",Level=40,id=14220,StackCount=1,Rarity=2,MinLevel=35,SellPrice=3442,Texture=132512,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14220::::::::40:::::::|h[Geomancer's Cap]|h|r"},["Stormbull Well Water"]={SubType="Quest",Level=1,id=4747,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133748,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4747::::::::40:::::::|h[Stormbull Well Water]|h|r"},["Soran'ruk Fragment"]={SubType="Quest",Level=1,id=6914,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134336,Type="Quest",Link="|cffffffff|Hitem:6914::::::::40:::::::|h[Soran'ruk Fragment]|h|r",EquipLoc=""},["Runic Breastplate"]={SubType="Plate",Level=62,id=12613,StackCount=1,Rarity=2,MinLevel=57,SellPrice=18205,Texture=132746,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:12613::::::::40:::::::|h[Runic Breastplate]|h|r"},["Imposing Cape"]={SubType="Cloth",Level=42,id=15165,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3744,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15165::::::::40:::::::|h[Imposing Cape]|h|r",Type="Armor"},["Hyperion Pauldrons"]={SubType="Plate",Level=63,id=10390,StackCount=1,Rarity=2,MinLevel=58,SellPrice=14175,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10390::::::::40:::::::|h[Hyperion Pauldrons]|h|r",Type="Armor"},["Sage's Bracers"]={SubType="Cloth",Level=28,id=6613,StackCount=1,Rarity=2,MinLevel=23,SellPrice=744,Texture=132610,Link="|cff1eff00|Hitem:6613::::::::40:::::::|h[Sage's Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Band of Piety"]={SubType="Miscellaneous",Level=66,id=22681,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10709,Texture=133375,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:22681::::::::40:::::::|h[Band of Piety]|h|r"},["Handbook of Deadly Poison V"]={SubType="Book",Level=60,id=21302,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133742,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:21302::::::::40:::::::|h[Handbook of Deadly Poison V]|h|r"},["Runic Stone"]={SubType="Junk",Level=60,id=21226,StackCount=10,Rarity=0,MinLevel=0,SellPrice=4000,Texture=134464,Link="|cff9d9d9d|Hitem:21226::::::::40:::::::|h[Runic Stone]|h|r",EquipLoc="",Type="Miscellaneous"},["Tor'gan's Orb"]={SubType="Quest",Level=1,id=4528,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134333,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4528::::::::40:::::::|h[Tor'gan's Orb]|h|r"},["Icebane Gauntlets"]={SubType="Plate",Level=80,id=22670,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34321,Texture=132962,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:22670::::::::40:::::::|h[Icebane Gauntlets]|h|r"},["Elder's Boots"]={SubType="Cloth",Level=33,id=7354,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1864,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7354::::::::40:::::::|h[Elder's Boots]|h|r",Type="Armor"},["Jinxed Hoodoo Kilt"]={SubType="Leather",Level=49,id=9474,StackCount=1,Rarity=3,MinLevel=44,SellPrice=13290,Texture=134585,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:9474::::::::40:::::::|h[Jinxed Hoodoo Kilt]|h|r"},["Magic Candle"]={SubType="Consumable",Level=8,id=1399,StackCount=20,Rarity=1,MinLevel=1,SellPrice=12,Texture=133751,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:1399::::::::40:::::::|h[Magic Candle]|h|r"},["Raptorbane Armor"]={SubType="Leather",Level=29,id=3566,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2023,Texture=132716,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:3566::::::::40:::::::|h[Raptorbane Armor]|h|r"},["Plans: Frostguard"]={SubType="Blacksmithing",Level=63,id=12836,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12836::::::::40:::::::|h[Plans: Frostguard]|h|r"},["Test Glaive F"]={SubType="One-Handed Swords",Level=5,id=14888,StackCount=1,Rarity=1,MinLevel=1,SellPrice=25,Texture=135643,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:14888::::::::40:::::::|h[Test Glaive F]|h|r"},["Watchman Pauldrons"]={SubType="Leather",Level=32,id=7727,StackCount=1,Rarity=3,MinLevel=27,SellPrice=2488,Texture=135054,Link="|cff0070dd|Hitem:7727::::::::40:::::::|h[Watchman Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Seafury Leggings"]={SubType="Mail",Level=68,id=20260,StackCount=1,Rarity=3,MinLevel=60,SellPrice=42331,Texture=134658,Link="|cff0070dd|Hitem:20260::::::::40:::::::|h[Seafury Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Small Shot Pouch"]={SubType="Ammo Pouch",Level=5,id=5441,StackCount=1,Rarity=1,MinLevel=1,SellPrice=250,Texture=133581,Link="|cffffffff|Hitem:5441::::::::40:::::::|h[Small Shot Pouch]|h|r",EquipLoc="INVTYPE_BAG",Type="Quiver"},["Level 65 Test Gear Cloth - Mage 2"]={SubType="Junk",Level=1,id=17851,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17851::::::::40:::::::|h[Level 65 Test Gear Cloth - Mage 2]|h|r",Type="Miscellaneous"},["Heavy Mithril Shoulder"]={SubType="Plate",Level=41,id=7918,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3701,Texture=135053,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7918::::::::40:::::::|h[Heavy Mithril Shoulder]|h|r"},["Green Hills of Stranglethorn - Chapter II"]={SubType="Quest",Level=1,id=2757,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133677,Type="Quest",Link="|cffffffff|Hitem:2757::::::::40:::::::|h[Green Hills of Stranglethorn - Chapter II]|h|r",EquipLoc=""},["Heraldic Belt"]={SubType="Leather",Level=47,id=8116,StackCount=1,Rarity=2,MinLevel=42,SellPrice=4632,Texture=132501,Link="|cff1eff00|Hitem:8116::::::::40:::::::|h[Heraldic Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Blackhand's Breadth"]={SubType="Miscellaneous",Level=63,id=13965,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16250,Texture=133604,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:13965::::::::40:::::::|h[Blackhand's Breadth]|h|r"},["Fel Infused Leggings"]={SubType="Cloth",Level=71,id=19133,StackCount=1,Rarity=4,MinLevel=60,SellPrice=43277,Texture=134586,Link="|cffa335ee|Hitem:19133::::::::40:::::::|h[Fel Infused Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Deprecated Stiff Leather Pants"]={SubType="Cloth",Level=1,id=135,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:135::::::::40:::::::|h[Deprecated Stiff Leather Pants]|h|r",Type="Armor"},["Mind's Eye"]={SubType="Quest",Level=1,id=3616,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134095,Type="Quest",Link="|cffffffff|Hitem:3616::::::::40:::::::|h[Mind's Eye]|h|r",EquipLoc=""},["Deprecated Cracked Razormane Wand"]={SubType="Quest",Level=1,id=5652,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135145,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5652::::::::40:::::::|h[Deprecated Cracked Razormane Wand]|h|r"},["A Talking Head"]={SubType="Quest",Level=12,id=3317,StackCount=1,Rarity=1,MinLevel=12,SellPrice=0,Texture=134173,Link="|cffffffff|Hitem:3317::::::::40:::::::|h[A Talking Head]|h|r",EquipLoc="",Type="Quest"},["Seer's Boots"]={SubType="Cloth",Level=17,id=2983,StackCount=1,Rarity=2,MinLevel=12,SellPrice=280,Texture=132539,Link="|cff1eff00|Hitem:2983::::::::40:::::::|h[Seer's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Hulking Boots"]={SubType="Mail",Level=24,id=14742,StackCount=1,Rarity=2,MinLevel=19,SellPrice=1118,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14742::::::::40:::::::|h[Hulking Boots]|h|r"},["Forest Leather Gloves"]={SubType="Leather",Level=25,id=3058,StackCount=1,Rarity=2,MinLevel=20,SellPrice=682,Texture=132955,Type="Armor",Link="|cff1eff00|Hitem:3058::::::::40:::::::|h[Forest Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Nightslayer Boots"]={SubType="Leather",Level=66,id=16824,StackCount=1,Rarity=4,MinLevel=60,SellPrice=32842,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16824::::::::40:::::::|h[Nightslayer Boots]|h|r",Type="Armor"},["Double Link Tunic"]={SubType="Mail",Level=30,id=1717,StackCount=1,Rarity=3,MinLevel=25,SellPrice=3108,Texture=132624,Link="|cff0070dd|Hitem:1717::::::::40:::::::|h[Double Link Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Codex of Abolish Disease"]={SubType="Book",Level=32,id=8976,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=133741,Link="|cffffffff|Hitem:8976::::::::40:::::::|h[Codex of Abolish Disease]|h|r",EquipLoc="",Type="Recipe"},["Plans: Volcanic Hammer"]={SubType="Blacksmithing",Level=58,id=12828,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12828::::::::40:::::::|h[Plans: Volcanic Hammer]|h|r"},["Belt of the Den Watcher"]={SubType="Mail",Level=48,id=21312,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6377,Texture=132498,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:21312::::::::40:::::::|h[Belt of the Den Watcher]|h|r"},["Box Shield"]={SubType="Shields",Level=23,id=2220,StackCount=1,Rarity=0,MinLevel=18,SellPrice=519,Texture=134949,EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:2220::::::::40:::::::|h[Box Shield]|h|r",Type="Armor"},["Hilary's Necklace"]={SubType="Quest",Level=1,id=10958,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133298,EquipLoc="",Link="|cffffffff|Hitem:10958::::::::40:::::::|h[Hilary's Necklace]|h|r",Type="Quest"},["Codex of Greater Heal IV"]={SubType="Book",Level=58,id=9025,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=133741,Link="|cffffffff|Hitem:9025::::::::40:::::::|h[Codex of Greater Heal IV]|h|r",EquipLoc="",Type="Recipe"},["Petrified Band"]={SubType="Miscellaneous",Level=59,id=18343,StackCount=1,Rarity=2,MinLevel=59,SellPrice=14615,Texture=133356,Type="Armor",Link="|cff1eff00|Hitem:18343::::::::40:::::::|h[Petrified Band]|h|r",EquipLoc="INVTYPE_FINGER"},["Sarilus Foulborne's Head"]={SubType="Quest",Level=1,id=5537,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134173,Link="|cffffffff|Hitem:5537::::::::40:::::::|h[Sarilus Foulborne's Head]|h|r",EquipLoc="",Type="Quest"},["Bloodlust Helm"]={SubType="Mail",Level=58,id=14804,StackCount=1,Rarity=2,MinLevel=53,SellPrice=16296,Texture=133076,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14804::::::::40:::::::|h[Bloodlust Helm]|h|r"},["Recipe: Elixir of Minor Agility"]={SubType="Alchemy",Level=12,id=2553,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:2553::::::::40:::::::|h[Recipe: Elixir of Minor Agility]|h|r"},["Crippling Poison II"]={SubType="Consumable",Level=50,id=3776,StackCount=20,Rarity=1,MinLevel=50,SellPrice=175,Texture=134799,EquipLoc="",Link="|cffffffff|Hitem:3776::::::::40:::::::|h[Crippling Poison II]|h|r",Type="Consumable"},["Ur's Treatise on Shadow Magic"]={SubType="Consumable",Level=1,id=7266,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133733,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:7266::::::::40:::::::|h[Ur's Treatise on Shadow Magic]|h|r"},["Sunblaze Coif"]={SubType="Mail",Level=33,id=5819,StackCount=1,Rarity=3,MinLevel=28,SellPrice=3201,Texture=133071,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:5819::::::::40:::::::|h[Sunblaze Coif]|h|r"},["Deprecated Deepwood Pants"]={SubType="Leather",Level=25,id=3064,StackCount=1,Rarity=0,MinLevel=20,SellPrice=558,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:3064::::::::40:::::::|h[Deprecated Deepwood Pants]|h|r",Type="Armor"},["Fire Goggles"]={SubType="Cloth",Level=41,id=10500,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3478,Texture=133149,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10500::::::::40:::::::|h[Fire Goggles]|h|r",Type="Armor"},["Invisibility Potion"]={SubType="Consumable",Level=47,id=9172,StackCount=5,Rarity=1,MinLevel=37,SellPrice=500,Texture=134805,Link="|cffffffff|Hitem:9172::::::::40:::::::|h[Invisibility Potion]|h|r",EquipLoc="",Type="Consumable"},["Deputy Chain Coat"]={SubType="Mail",Level=25,id=1275,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1668,Texture=132624,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:1275::::::::40:::::::|h[Deputy Chain Coat]|h|r"},["Mail Combat Belt"]={SubType="Mail",Level=34,id=4717,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2014,Texture=132498,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4717::::::::40:::::::|h[Mail Combat Belt]|h|r"},["Light Plate Helmet"]={SubType="Plate",Level=55,id=8755,StackCount=1,Rarity=0,MinLevel=50,SellPrice=3728,Texture=133071,Link="|cff9d9d9d|Hitem:8755::::::::40:::::::|h[Light Plate Helmet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Steel Plate Helm"]={SubType="Plate",Level=43,id=7922,StackCount=1,Rarity=1,MinLevel=40,SellPrice=2377,Texture=133071,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:7922::::::::40:::::::|h[Steel Plate Helm]|h|r"},["Huntsman's Bands"]={SubType="Leather",Level=39,id=9886,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2589,Texture=132605,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9886::::::::40:::::::|h[Huntsman's Bands]|h|r"},["Logistics Task Briefing VII"]={SubType="Quest",Level=60,id=21263,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21263::::::::40:::::::|h[Logistics Task Briefing VII]|h|r",EquipLoc="",Type="Quest"},["Marshal's Dreadweave Cuffs"]={SubType="Cloth",Level=65,id=17582,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8561,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:17582::::::::40:::::::|h[Marshal's Dreadweave Cuffs]|h|r",Type="Armor"},["Seal of Rivendare"]={SubType="Miscellaneous",Level=63,id=13345,StackCount=1,Rarity=3,MinLevel=58,SellPrice=15457,Texture=133358,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:13345::::::::40:::::::|h[Seal of Rivendare]|h|r"},["Bonelink Belt"]={SubType="Mail",Level=42,id=15613,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3688,Texture=132524,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15613::::::::40:::::::|h[Bonelink Belt]|h|r",Type="Armor"},["Huntsman's Shoulders"]={SubType="Leather",Level=41,id=9894,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4661,Texture=135039,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9894::::::::40:::::::|h[Huntsman's Shoulders]|h|r"},["Shadowhide Two-handed Sword"]={SubType="Two-Handed Swords",Level=20,id=1460,StackCount=1,Rarity=2,MinLevel=15,SellPrice=1768,Texture=135356,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1460::::::::40:::::::|h[Shadowhide Two-handed Sword]|h|r"},["Durable Robe"]={SubType="Cloth",Level=34,id=9826,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2600,Texture=132661,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:9826::::::::40:::::::|h[Durable Robe]|h|r"},["Venomshroud Silk Robes"]={SubType="Cloth",Level=54,id=14445,StackCount=1,Rarity=2,MinLevel=49,SellPrice=12353,Texture=132642,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14445::::::::40:::::::|h[Venomshroud Silk Robes]|h|r"},["Heavy Weave Pants"]={SubType="Cloth",Level=17,id=838,StackCount=1,Rarity=1,MinLevel=12,SellPrice=225,Texture=134594,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:838::::::::40:::::::|h[Heavy Weave Pants]|h|r"},["Splinter of Nordrassil"]={SubType="Quest",Level=71,id=18659,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135152,Type="Quest",Link="|cffa335ee|Hitem:18659::::::::40:::::::|h[Splinter of Nordrassil]|h|r",EquipLoc=""},["Insignia Leggings"]={SubType="Leather",Level=35,id=4054,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3625,Texture=134589,Type="Armor",Link="|cff1eff00|Hitem:4054::::::::40:::::::|h[Insignia Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Head of Baron Rivendare"]={SubType="Quest",Level=1,id=13251,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136129,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13251::::::::40:::::::|h[Head of Baron Rivendare]|h|r"},["Chief Brigadier Cloak"]={SubType="Cloth",Level=36,id=4726,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2340,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:4726::::::::40:::::::|h[Chief Brigadier Cloak]|h|r",Type="Armor"},["Wild Leather Shoulders"]={SubType="Leather",Level=44,id=8210,StackCount=1,Rarity=2,MinLevel=39,SellPrice=5537,Texture=135049,Link="|cff1eff00|Hitem:8210::::::::40:::::::|h[Wild Leather Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Twitching Antenna"]={SubType="Quest",Level=1,id=7119,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133027,EquipLoc="",Link="|cffffffff|Hitem:7119::::::::40:::::::|h[Twitching Antenna]|h|r",Type="Quest"},["High Councillor's Circlet"]={SubType="Cloth",Level=62,id=10139,StackCount=1,Rarity=2,MinLevel=57,SellPrice=14258,Texture=132768,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10139::::::::40:::::::|h[High Councillor's Circlet]|h|r",Type="Armor"},["Codex of Divine Escape"]={SubType="Book",Level=36,id=4274,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133741,Type="Recipe",Link="|cffffffff|Hitem:4274::::::::40:::::::|h[Codex of Divine Escape]|h|r",EquipLoc=""},["Outrider's Bow"]={SubType="Bows",Level=63,id=19558,StackCount=1,Rarity=3,MinLevel=58,SellPrice=44011,Texture=135494,Link="|cff0070dd|Hitem:19558::::::::40:::::::|h[Outrider's Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Seafarer's Pantaloons"]={SubType="Cloth",Level=20,id=3563,StackCount=1,Rarity=2,MinLevel=15,SellPrice=557,Texture=134582,Type="Armor",Link="|cff1eff00|Hitem:3563::::::::40:::::::|h[Seafarer's Pantaloons]|h|r",EquipLoc="INVTYPE_LEGS"},["Scaled Leather Tunic"]={SubType="Leather",Level=33,id=9835,StackCount=1,Rarity=2,MinLevel=28,SellPrice=3053,Texture=132725,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9835::::::::40:::::::|h[Scaled Leather Tunic]|h|r"},["Star Belt"]={SubType="Cloth",Level=40,id=4329,StackCount=1,Rarity=2,MinLevel=35,SellPrice=2120,Texture=132495,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4329::::::::40:::::::|h[Star Belt]|h|r"},["Fortified Leggings"]={SubType="Mail",Level=25,id=9815,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1664,Texture=134583,Link="|cff1eff00|Hitem:9815::::::::40:::::::|h[Fortified Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Darkweave Breeches"]={SubType="Cloth",Level=22,id=12987,StackCount=1,Rarity=3,MinLevel=17,SellPrice=906,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:12987::::::::40:::::::|h[Darkweave Breeches]|h|r"},["Tome of Conjure Mana Gem II"]={SubType="Book",Level=38,id=8840,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133739,Link="|cffffffff|Hitem:8840::::::::40:::::::|h[Tome of Conjure Mana Gem II]|h|r",EquipLoc="",Type="Recipe"},["Charger's Bindings"]={SubType="Mail",Level=8,id=15474,StackCount=1,Rarity=1,MinLevel=3,SellPrice=23,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:15474::::::::40:::::::|h[Charger's Bindings]|h|r",Type="Armor"},["Boahn's Fang"]={SubType="Two-Handed Axes",Level=20,id=5423,StackCount=1,Rarity=3,MinLevel=15,SellPrice=2084,Texture=132408,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:5423::::::::40:::::::|h[Boahn's Fang]|h|r",Type="Weapon"},["Henrig Lonebrow's Journal"]={SubType="Quest",Level=29,id=5791,StackCount=1,Rarity=1,MinLevel=29,SellPrice=0,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:5791::::::::40:::::::|h[Henrig Lonebrow's Journal]|h|r",Type="Quest"},["MacGrann's Dried Meats"]={SubType="Quest",Level=1,id=2667,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133970,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2667::::::::40:::::::|h[MacGrann's Dried Meats]|h|r"},["Creeper Ichor"]={SubType="Quest",Level=1,id=3477,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3477::::::::40:::::::|h[Creeper Ichor]|h|r"},["Dawn's Gambit"]={SubType="Quest",Level=1,id=12368,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132596,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12368::::::::40:::::::|h[Dawn's Gambit]|h|r"},["Ring of Calm"]={SubType="Miscellaneous",Level=32,id=6790,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1540,Texture=133344,Type="Armor",Link="|cff1eff00|Hitem:6790::::::::40:::::::|h[Ring of Calm]|h|r",EquipLoc="INVTYPE_FINGER"},["Formula: Enchant Gloves - Frost Power"]={SubType="Enchanting",Level=70,id=20728,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25000,Texture=134327,Link="|cff0070dd|Hitem:20728::::::::40:::::::|h[Formula: Enchant Gloves - Frost Power]|h|r",EquipLoc="",Type="Recipe"},["Blade of Hanna"]={SubType="Two-Handed Swords",Level=64,id=2801,StackCount=1,Rarity=4,MinLevel=59,SellPrice=104729,Texture=135280,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:2801::::::::40:::::::|h[Blade of Hanna]|h|r"},["Pattern: Spider Silk Slippers"]={SubType="Tailoring",Level=28,id=4350,StackCount=1,Rarity=2,MinLevel=0,SellPrice=200,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:4350::::::::40:::::::|h[Pattern: Spider Silk Slippers]|h|r"},["Reins of the Nightsaber"]={SubType="Junk",Level=60,id=12303,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132267,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:12303::::::::40:::::::|h[Reins of the Nightsaber]|h|r"},["Heavy Mithril Gauntlet"]={SubType="Plate",Level=41,id=7919,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2476,Texture=132961,Link="|cff1eff00|Hitem:7919::::::::40:::::::|h[Heavy Mithril Gauntlet]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Plans: Imperial Plate Helm"]={SubType="Blacksmithing",Level=59,id=12701,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6250,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12701::::::::40:::::::|h[Plans: Imperial Plate Helm]|h|r"},["Dreadmist Mantle"]={SubType="Cloth",Level=60,id=16701,StackCount=1,Rarity=3,MinLevel=55,SellPrice=15650,Texture=133732,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16701::::::::40:::::::|h[Dreadmist Mantle]|h|r",Type="Armor"},["Highborne Cord"]={SubType="Cloth",Level=53,id=14454,StackCount=1,Rarity=2,MinLevel=48,SellPrice=5598,Texture=132519,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14454::::::::40:::::::|h[Highborne Cord]|h|r"},["Heart Candy"]={SubType="Junk",Level=1,id=21817,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135451,Link="|cffffffff|Hitem:21817::::::::40:::::::|h[Heart Candy]|h|r",EquipLoc="",Type="Miscellaneous"},["Spiked Chain Breastplate"]={SubType="Mail",Level=30,id=15518,StackCount=1,Rarity=2,MinLevel=25,SellPrice=2825,Texture=132639,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15518::::::::40:::::::|h[Spiked Chain Breastplate]|h|r",Type="Armor"},["Deprecated Rose Colored Goggles"]={SubType="Cloth",Level=46,id=10596,StackCount=1,Rarity=0,MinLevel=0,SellPrice=2067,Texture=133149,EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:10596::::::::40:::::::|h[Deprecated Rose Colored Goggles]|h|r",Type="Armor"},["Ward of the Elements"]={SubType="Miscellaneous",Level=60,id=12065,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7953,Texture=133435,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:12065::::::::40:::::::|h[Ward of the Elements]|h|r"},["Pattern: Green Whelp Armor"]={SubType="Leatherworking",Level=35,id=7450,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=134939,EquipLoc="",Link="|cff1eff00|Hitem:7450::::::::40:::::::|h[Pattern: Green Whelp Armor]|h|r",Type="Recipe"},["Plainstrider Beak"]={SubType="Quest",Level=1,id=5087,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133707,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5087::::::::40:::::::|h[Plainstrider Beak]|h|r"},["Dried King Bolete"]={SubType="Consumable",Level=55,id=8948,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=134526,Link="|cffffffff|Hitem:8948::::::::40:::::::|h[Dried King Bolete]|h|r",EquipLoc="",Type="Consumable"},["Unbalanced Axe"]={SubType="One-Handed Axes",Level=19,id=1816,StackCount=1,Rarity=0,MinLevel=14,SellPrice=486,Texture=135421,Type="Weapon",Link="|cff9d9d9d|Hitem:1816::::::::40:::::::|h[Unbalanced Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Blood Ruby Pendant"]={SubType="Miscellaneous",Level=59,id=18023,StackCount=1,Rarity=3,MinLevel=54,SellPrice=15538,Texture=134128,Type="Armor",Link="|cff0070dd|Hitem:18023::::::::40:::::::|h[Blood Ruby Pendant]|h|r",EquipLoc="INVTYPE_NECK"},["Jungle Necklace"]={SubType="Miscellaneous",Level=60,id=12046,StackCount=1,Rarity=2,MinLevel=55,SellPrice=5757,Texture=133288,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12046::::::::40:::::::|h[Jungle Necklace]|h|r"},["Thundering Key"]={SubType="Key",Level=1,id=4485,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134236,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:4485::::::::40:::::::|h[Thundering Key]|h|r"},["Stygian Buckler"]={SubType="Shields",Level=83,id=23238,StackCount=1,Rarity=4,MinLevel=60,SellPrice=128589,Texture=132390,Link="|cffa335ee|Hitem:23238::::::::40:::::::|h[Stygian Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Formula: Enchant Bracer - Minor Strength"]={SubType="Enchanting",Level=19,id=6347,StackCount=1,Rarity=2,MinLevel=0,SellPrice=100,Texture=134327,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:6347::::::::40:::::::|h[Formula: Enchant Bracer - Minor Strength]|h|r"},["Embrace of the Wind Serpent"]={SubType="Cloth",Level=55,id=12462,StackCount=1,Rarity=4,MinLevel=50,SellPrice=20274,Texture=132683,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:12462::::::::40:::::::|h[Embrace of the Wind Serpent]|h|r"},["Book of Moonfire X"]={SubType="Book",Level=58,id=8796,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=133743,Link="|cffffffff|Hitem:8796::::::::40:::::::|h[Book of Moonfire X]|h|r",EquipLoc="",Type="Recipe"},["Sergeant Major's Cape"]={SubType="Cloth",Level=30,id=16315,StackCount=1,Rarity=3,MinLevel=25,SellPrice=805,Texture=133773,EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:16315::::::::40:::::::|h[Sergeant Major's Cape]|h|r",Type="Armor"},["Book of Moonfire V"]={SubType="Book",Level=28,id=8763,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8763::::::::40:::::::|h[Book of Moonfire V]|h|r"},["Robe of Volatile Power"]={SubType="Cloth",Level=66,id=19145,StackCount=1,Rarity=4,MinLevel=60,SellPrice=37033,Texture=132659,Link="|cffa335ee|Hitem:19145::::::::40:::::::|h[Robe of Volatile Power]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Flax Vest"]={SubType="Cloth",Level=5,id=3270,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10,Texture=135009,Link="|cffffffff|Hitem:3270::::::::40:::::::|h[Flax Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Monster - Mace, Tauren Spiked"]={SubType="One-Handed Maces",Level=1,id=9659,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133476,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:9659::::::::40:::::::|h[Monster - Mace, Tauren Spiked]|h|r"},["Executioner's Key"]={SubType="Consumable",Level=1,id=8444,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134236,Link="|cffffffff|Hitem:8444::::::::40:::::::|h[Executioner's Key]|h|r",EquipLoc="",Type="Consumable"},["Trickster's Headdress"]={SubType="Leather",Level=42,id=15363,StackCount=1,Rarity=2,MinLevel=37,SellPrice=4894,Texture=133121,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15363::::::::40:::::::|h[Trickster's Headdress]|h|r",Type="Armor"},["Margol's Horn"]={SubType="Quest",Level=40,id=10000,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=134229,Link="|cffffffff|Hitem:10000::::::::40:::::::|h[Margol's Horn]|h|r",EquipLoc="",Type="Quest"},["Gift of Adoration: Thunder Bluff"]={SubType="Consumable",Level=1,id=22165,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135450,Link="|cffffffff|Hitem:22165::::::::40:::::::|h[Gift of Adoration: Thunder Bluff]|h|r",EquipLoc="",Type="Consumable"},["Obsidian Power Source"]={SubType="Quest",Level=1,id=8053,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134335,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:8053::::::::40:::::::|h[Obsidian Power Source]|h|r"},["Blackcrow"]={SubType="Crossbows",Level=59,id=12651,StackCount=1,Rarity=3,MinLevel=54,SellPrice=36055,Texture=135533,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:12651::::::::40:::::::|h[Blackcrow]|h|r"},["Branded Leather Bracers"]={SubType="Leather",Level=41,id=19508,StackCount=1,Rarity=2,MinLevel=36,SellPrice=1423,Texture=132610,Link="|cff1eff00|Hitem:19508::::::::40:::::::|h[Branded Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Silksand Star"]={SubType="Miscellaneous",Level=44,id=15964,StackCount=1,Rarity=2,MinLevel=39,SellPrice=6364,Texture=134334,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15964::::::::40:::::::|h[Silksand Star]|h|r",Type="Armor"},["Orb of Dar'Orahil"]={SubType="Miscellaneous",Level=40,id=15108,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5000,Texture=134335,EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:15108::::::::40:::::::|h[Orb of Dar'Orahil]|h|r",Type="Armor"},["Windscale Sarong"]={SubType="Leather",Level=54,id=10842,StackCount=1,Rarity=3,MinLevel=49,SellPrice=17595,Texture=134594,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:10842::::::::40:::::::|h[Windscale Sarong]|h|r",Type="Armor"},["Harvester's Head"]={SubType="Quest",Level=10,id=5138,StackCount=1,Rarity=1,MinLevel=10,SellPrice=0,Texture=134321,EquipLoc="",Link="|cffffffff|Hitem:5138::::::::40:::::::|h[Harvester's Head]|h|r",Type="Quest"},["Murgut's Totem"]={SubType="Quest",Level=1,id=16976,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134232,EquipLoc="",Link="|cffffffff|Hitem:16976::::::::40:::::::|h[Murgut's Totem]|h|r",Type="Quest"},["Tome of Flamestrike II"]={SubType="Book",Level=24,id=3093,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133739,Link="|cffffffff|Hitem:3093::::::::40:::::::|h[Tome of Flamestrike II]|h|r",EquipLoc="",Type="Recipe"},["Arnak's Hoof"]={SubType="Consumable",Level=0,id=12884,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134060,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12884::::::::40:::::::|h[Arnak's Hoof]|h|r"},["Joseph's Wedding Ring"]={SubType="Consumable",Level=1,id=12894,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133345,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12894::::::::40:::::::|h[Joseph's Wedding Ring]|h|r"},["Wolf Bracers"]={SubType="Leather",Level=25,id=4794,StackCount=1,Rarity=2,MinLevel=20,SellPrice=703,Texture=132603,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:4794::::::::40:::::::|h[Wolf Bracers]|h|r"},["Deprecated Captain Sander's Eyepatch"]={SubType="Cloth",Level=15,id=1363,StackCount=1,Rarity=0,MinLevel=0,SellPrice=83,Texture=133148,Type="Armor",Link="|cff9d9d9d|Hitem:1363::::::::40:::::::|h[Deprecated Captain Sander's Eyepatch]|h|r",EquipLoc="INVTYPE_HEAD"},["Southsea Pirate Hat"]={SubType="Quest",Level=1,id=20519,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133168,Link="|cffffffff|Hitem:20519::::::::40:::::::|h[Southsea Pirate Hat]|h|r",EquipLoc="",Type="Quest"},["Field Plate Armor"]={SubType="Plate",Level=44,id=9286,StackCount=1,Rarity=2,MinLevel=40,SellPrice=6040,Texture=132749,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9286::::::::40:::::::|h[Field Plate Armor]|h|r"},["Augmented Chain Vest"]={SubType="Mail",Level=37,id=2417,StackCount=1,Rarity=1,MinLevel=32,SellPrice=3134,Texture=132747,Link="|cffffffff|Hitem:2417::::::::40:::::::|h[Augmented Chain Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Braidfur Gloves"]={SubType="Leather",Level=38,id=16873,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2254,Texture=132959,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:16873::::::::40:::::::|h[Braidfur Gloves]|h|r",Type="Armor"},["Cracked Silithid Shell"]={SubType="Junk",Level=1,id=5268,StackCount=5,Rarity=0,MinLevel=0,SellPrice=218,Texture=134321,EquipLoc="",Link="|cff9d9d9d|Hitem:5268::::::::40:::::::|h[Cracked Silithid Shell]|h|r",Type="Miscellaneous"},["Ferra's Collar"]={SubType="Miscellaneous",Level=60,id=18355,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14996,Texture=133293,Type="Armor",Link="|cff0070dd|Hitem:18355::::::::40:::::::|h[Ferra's Collar]|h|r",EquipLoc="INVTYPE_TRINKET"},["Flesh Eating Worm"]={SubType="Consumable",Level=30,id=7307,StackCount=20,Rarity=1,MinLevel=0,SellPrice=62,Texture=134324,Link="|cffffffff|Hitem:7307::::::::40:::::::|h[Flesh Eating Worm]|h|r",EquipLoc="",Type="Consumable"},["Riptide Shoes"]={SubType="Cloth",Level=58,id=18307,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11163,Texture=132539,Type="Armor",Link="|cff1eff00|Hitem:18307::::::::40:::::::|h[Riptide Shoes]|h|r",EquipLoc="INVTYPE_FEET"},["Necropile Robe"]={SubType="Cloth",Level=61,id=14626,StackCount=1,Rarity=3,MinLevel=56,SellPrice=20732,Texture=132684,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:14626::::::::40:::::::|h[Necropile Robe]|h|r"},["Crown of Tyranny"]={SubType="Mail",Level=63,id=13359,StackCount=1,Rarity=3,MinLevel=58,SellPrice=25336,Texture=133071,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:13359::::::::40:::::::|h[Crown of Tyranny]|h|r"},["Ragged Leather Bracers"]={SubType="Leather",Level=4,id=1370,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132609,EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:1370::::::::40:::::::|h[Ragged Leather Bracers]|h|r",Type="Armor"},["Tough Scorpid Bracers"]={SubType="Mail",Level=44,id=8205,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4346,Texture=132608,Link="|cff1eff00|Hitem:8205::::::::40:::::::|h[Tough Scorpid Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Ragged Leather Boots"]={SubType="Leather",Level=3,id=1367,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132540,Type="Armor",Link="|cff9d9d9d|Hitem:1367::::::::40:::::::|h[Ragged Leather Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Grimoire of Immolate III"]={SubType="Book",Level=22,id=4200,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4200::::::::40:::::::|h[Grimoire of Immolate III]|h|r"},["Test HP Ring"]={SubType="Miscellaneous",Level=1,id=6673,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1052,Texture=133352,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff9d9d9d|Hitem:6673::::::::40:::::::|h[Test HP Ring]|h|r"},["Gothic Sabatons"]={SubType="Plate",Level=45,id=10089,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4749,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10089::::::::40:::::::|h[Gothic Sabatons]|h|r",Type="Armor"},["Tough Scorpid Leggings"]={SubType="Mail",Level=49,id=8206,StackCount=1,Rarity=2,MinLevel=44,SellPrice=12704,Texture=134592,Link="|cff1eff00|Hitem:8206::::::::40:::::::|h[Tough Scorpid Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Bloodstained Legplates"]={SubType="Mail",Level=71,id=19887,StackCount=1,Rarity=3,MinLevel=60,SellPrice=50147,Texture=134661,Link="|cff0070dd|Hitem:19887::::::::40:::::::|h[Bloodstained Legplates]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["[PH] Valentine Quest Item, UncommonDarnassus"]={SubType="Consumable",Level=1,id=21964,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134121,Link="|cffffffff|Hitem:21964::::::::40:::::::|h[[PH] Valentine Quest Item, UncommonDarnassus]|h|r",EquipLoc="",Type="Consumable"},["Libram: Holy Strike VI"]={SubType="Book",Level=40,id=8922,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133740,Link="|cffffffff|Hitem:8922::::::::40:::::::|h[Libram: Holy Strike VI]|h|r",EquipLoc="",Type="Recipe"},["Tablet of Lightning Shield"]={SubType="Book",Level=8,id=5698,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5698::::::::40:::::::|h[Tablet of Lightning Shield]|h|r"},["Pledge of Loyalty: Orgrimmar"]={SubType="Consumable",Level=1,id=22123,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134331,Link="|cffffffff|Hitem:22123::::::::40:::::::|h[Pledge of Loyalty: Orgrimmar]|h|r",EquipLoc="",Type="Consumable"},["Blacksmith Hammer"]={SubType="Miscellaneous",Level=1,id=5956,StackCount=1,Rarity=1,MinLevel=1,SellPrice=3,Texture=133057,Link="|cffffffff|Hitem:5956::::::::40:::::::|h[Blacksmith Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Bonegrinding Pestle"]={SubType="One-Handed Maces",Level=16,id=3570,StackCount=1,Rarity=2,MinLevel=0,SellPrice=839,Texture=133481,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:3570::::::::40:::::::|h[Bonegrinding Pestle]|h|r"},["Monster - Axe, 2H UBER Blackwing"]={SubType="Two-Handed Axes",Level=1,id=21192,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Link="|cff9d9d9d|Hitem:21192::::::::40:::::::|h[Monster - Axe, 2H UBER Blackwing]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Diamond Flask"]={SubType="Miscellaneous",Level=52,id=20130,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=132788,Link="|cff0070dd|Hitem:20130::::::::40:::::::|h[Diamond Flask]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Pattern: Stormcloth Vest"]={SubType="Tailoring",Level=45,id=10313,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10313::::::::40:::::::|h[Pattern: Stormcloth Vest]|h|r",Type="Recipe"},["Maladath, Runed Blade of the Black Flight"]={SubType="One-Handed Swords",Level=75,id=19351,StackCount=1,Rarity=4,MinLevel=60,SellPrice=139989,Texture=135359,Link="|cffa335ee|Hitem:19351::::::::40:::::::|h[Maladath, Runed Blade of the Black Flight]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Ancient Defender"]={SubType="Shields",Level=46,id=15604,StackCount=1,Rarity=2,MinLevel=41,SellPrice=11158,Texture=134949,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15604::::::::40:::::::|h[Ancient Defender]|h|r",Type="Armor"},["Lieutenant Commander's Lamellar Shoulders"]={SubType="Plate",Level=63,id=16436,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8863,Texture=135059,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16436::::::::40:::::::|h[Lieutenant Commander's Lamellar Shoulders]|h|r",Type="Armor"},["Monster - Glaive - 3 Blade Black"]={SubType="One-Handed Axes",Level=1,id=14881,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14881::::::::40:::::::|h[Monster - Glaive - 3 Blade Black]|h|r"},["Pioneer Belt"]={SubType="Leather",Level=10,id=6517,StackCount=1,Rarity=1,MinLevel=5,SellPrice=35,Texture=132514,Type="Armor",Link="|cffffffff|Hitem:6517::::::::40:::::::|h[Pioneer Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Belt of Tiny Heads"]={SubType="Cloth",Level=70,id=20217,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16575,Texture=132502,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:20217::::::::40:::::::|h[Belt of Tiny Heads]|h|r"},["Codex of Mind Control"]={SubType="Book",Level=30,id=8974,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133741,Link="|cffffffff|Hitem:8974::::::::40:::::::|h[Codex of Mind Control]|h|r",EquipLoc="",Type="Recipe"},["Dark Runner Boots"]={SubType="Cloth",Level=25,id=2232,StackCount=1,Rarity=2,MinLevel=20,SellPrice=812,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:2232::::::::40:::::::|h[Dark Runner Boots]|h|r"},["Small Yellow Rocket"]={SubType="Consumable",Level=1,id=21562,StackCount=20,Rarity=1,MinLevel=0,SellPrice=6,Texture=134287,Link="|cffffffff|Hitem:21562::::::::40:::::::|h[Small Yellow Rocket]|h|r",EquipLoc="",Type="Consumable"},["Dusky Bracers"]={SubType="Leather",Level=37,id=7378,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2146,Texture=132606,Link="|cff1eff00|Hitem:7378::::::::40:::::::|h[Dusky Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Small Pumpkin"]={SubType="Consumable",Level=5,id=4656,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=133981,EquipLoc="",Link="|cffffffff|Hitem:4656::::::::40:::::::|h[Small Pumpkin]|h|r",Type="Consumable"},["Valorous Helm"]={SubType="Plate",Level=48,id=8279,StackCount=1,Rarity=2,MinLevel=43,SellPrice=5937,Texture=133124,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:8279::::::::40:::::::|h[Valorous Helm]|h|r"},["Arcanite Rod"]={SubType="Trade Goods",Level=55,id=16206,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=135156,EquipLoc="",Link="|cffffffff|Hitem:16206::::::::40:::::::|h[Arcanite Rod]|h|r",Type="Trade Goods"},["Pattern: White Bandit Mask"]={SubType="Tailoring",Level=43,id=10301,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10301::::::::40:::::::|h[Pattern: White Bandit Mask]|h|r",Type="Recipe"},["Cold Iron Pick"]={SubType="Two-Handed Axes",Level=17,id=1959,StackCount=1,Rarity=2,MinLevel=12,SellPrice=1223,Texture=134707,Type="Weapon",Link="|cff1eff00|Hitem:1959::::::::40:::::::|h[Cold Iron Pick]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Blood Guard's Silk Handwraps"]={SubType="Cloth",Level=66,id=22870,StackCount=1,Rarity=3,MinLevel=60,SellPrice=6845,Texture=132940,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:22870::::::::40:::::::|h[Blood Guard's Silk Handwraps]|h|r"},["Grimoire of Health Funnel III"]={SubType="Book",Level=28,id=9215,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9215::::::::40:::::::|h[Grimoire of Health Funnel III]|h|r"},["Lightforge Legplates"]={SubType="Plate",Level=61,id=16728,StackCount=1,Rarity=3,MinLevel=56,SellPrice=20354,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16728::::::::40:::::::|h[Lightforge Legplates]|h|r",Type="Armor"},["Truesilver Transformer"]={SubType="Parts",Level=50,id=18631,StackCount=10,Rarity=1,MinLevel=0,SellPrice=3000,Texture=135155,Type="Trade Goods",Link="|cffffffff|Hitem:18631::::::::40:::::::|h[Truesilver Transformer]|h|r",EquipLoc=""},["Stonecloth Bindings"]={SubType="Cloth",Level=34,id=14416,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1285,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14416::::::::40:::::::|h[Stonecloth Bindings]|h|r"},["Vorrel's Boots"]={SubType="Leather",Level=30,id=7751,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1614,Texture=132537,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7751::::::::40:::::::|h[Vorrel's Boots]|h|r",Type="Armor"},["Zargh's Meats"]={SubType="Quest",Level=1,id=16306,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133969,EquipLoc="",Link="|cffffffff|Hitem:16306::::::::40:::::::|h[Zargh's Meats]|h|r",Type="Quest"},["Patchwork Shoes"]={SubType="Cloth",Level=10,id=1427,StackCount=1,Rarity=0,MinLevel=5,SellPrice=29,Texture=132543,Type="Armor",Link="|cff9d9d9d|Hitem:1427::::::::40:::::::|h[Patchwork Shoes]|h|r",EquipLoc="INVTYPE_FEET"},["Ace of Elementals"]={SubType="Junk",Level=1,id=19268,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134486,Link="|cff0070dd|Hitem:19268::::::::40:::::::|h[Ace of Elementals]|h|r",EquipLoc="",Type="Miscellaneous"},["Slayer's Gloves"]={SubType="Mail",Level=29,id=14754,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1193,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14754::::::::40:::::::|h[Slayer's Gloves]|h|r"},["Woven Wand"]={SubType="Quest",Level=1,id=3425,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135463,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3425::::::::40:::::::|h[Woven Wand]|h|r"},["Monster - Glaive - Demonhunter Black"]={SubType="One-Handed Axes",Level=1,id=12482,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12482::::::::40:::::::|h[Monster - Glaive - Demonhunter Black]|h|r"},["Crimson Silk Pantaloons"]={SubType="Cloth",Level=39,id=7062,StackCount=1,Rarity=1,MinLevel=34,SellPrice=2430,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:7062::::::::40:::::::|h[Crimson Silk Pantaloons]|h|r",Type="Armor"},["Rawhide Bracers"]={SubType="Leather",Level=21,id=1797,StackCount=1,Rarity=0,MinLevel=16,SellPrice=161,Texture=132601,EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:1797::::::::40:::::::|h[Rawhide Bracers]|h|r",Type="Armor"},["Tablet of Shock IV"]={SubType="Book",Level=28,id=4173,StackCount=1,Rarity=1,MinLevel=28,SellPrice=1750,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:4173::::::::40:::::::|h[Tablet of Shock IV]|h|r",Type="Recipe"},["Spectral Essence"]={SubType="Miscellaneous",Level=60,id=13544,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134337,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:13544::::::::40:::::::|h[Spectral Essence]|h|r"},["QAEnchant Weapon +20 Spirit"]={SubType="Consumable",Level=1,id=22023,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22023::::::::40:::::::|h[QAEnchant Weapon +20 Spirit]|h|r",EquipLoc="",Type="Consumable"},["Tribal Vest"]={SubType="Leather",Level=13,id=3288,StackCount=1,Rarity=2,MinLevel=8,SellPrice=250,Texture=132657,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:3288::::::::40:::::::|h[Tribal Vest]|h|r",Type="Armor"},["Thick Leather Gloves"]={SubType="Leather",Level=49,id=3965,StackCount=1,Rarity=0,MinLevel=44,SellPrice=2221,Texture=132958,EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:3965::::::::40:::::::|h[Thick Leather Gloves]|h|r",Type="Armor"},["Magnificent Shoulders"]={SubType="Mail",Level=61,id=15677,StackCount=1,Rarity=2,MinLevel=56,SellPrice=19605,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15677::::::::40:::::::|h[Magnificent Shoulders]|h|r",Type="Armor"},["Test Potion LockBox (Hunter)"]={SubType="Junk",Level=1,id=16077,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16077::::::::40:::::::|h[Test Potion LockBox (Hunter)]|h|r",Type="Miscellaneous"},["Grimoire of Lesser Invisibility"]={SubType="Book",Level=32,id=16380,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16380::::::::40:::::::|h[Grimoire of Lesser Invisibility]|h|r",Type="Recipe"},["Chipped Boar Tusk"]={SubType="Junk",Level=1,id=771,StackCount=5,Rarity=0,MinLevel=0,SellPrice=38,Texture=133721,EquipLoc="",Link="|cff9d9d9d|Hitem:771::::::::40:::::::|h[Chipped Boar Tusk]|h|r",Type="Miscellaneous"},["Tome of Conjure Water V"]={SubType="Book",Level=40,id=8850,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133739,Link="|cffffffff|Hitem:8850::::::::40:::::::|h[Tome of Conjure Water V]|h|r",EquipLoc="",Type="Recipe"},["Spiked Chain Shoulder Pads"]={SubType="Mail",Level=27,id=15523,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1474,Texture=135050,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15523::::::::40:::::::|h[Spiked Chain Shoulder Pads]|h|r",Type="Armor"},["Zulian Hacker"]={SubType="One-Handed Axes",Level=65,id=19921,StackCount=1,Rarity=3,MinLevel=60,SellPrice=60951,Texture=132399,Link="|cff0070dd|Hitem:19921::::::::40:::::::|h[Zulian Hacker]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["90 Epic Rogue Boots"]={SubType="Leather",Level=90,id=20268,StackCount=1,Rarity=4,MinLevel=60,SellPrice=109200,Texture=132542,Link="|cffa335ee|Hitem:20268::::::::40:::::::|h[90 Epic Rogue Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Deprecated Candle of Black Smoke"]={SubType="Miscellaneous",Level=40,id=1544,StackCount=1,Rarity=0,MinLevel=0,SellPrice=700,Texture=133750,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff9d9d9d|Hitem:1544::::::::40:::::::|h[Deprecated Candle of Black Smoke]|h|r"},["Rodentia Shortsword"]={SubType="One-Handed Swords",Level=10,id=2282,StackCount=1,Rarity=1,MinLevel=5,SellPrice=139,Texture=135357,Link="|cffffffff|Hitem:2282::::::::40:::::::|h[Rodentia Shortsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Tainted Memorandum"]={SubType="Quest",Level=1,id=9577,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134332,Link="|cffffffff|Hitem:9577::::::::40:::::::|h[Tainted Memorandum]|h|r",EquipLoc="",Type="Quest"},["Saltstone Girdle"]={SubType="Plate",Level=40,id=14898,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2295,Texture=132502,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14898::::::::40:::::::|h[Saltstone Girdle]|h|r"},["Nightsky Boots"]={SubType="Cloth",Level=34,id=6406,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1970,Texture=132539,Type="Armor",Link="|cff1eff00|Hitem:6406::::::::40:::::::|h[Nightsky Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Gyth's Skull"]={SubType="Plate",Level=60,id=12952,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14861,Texture=133125,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:12952::::::::40:::::::|h[Gyth's Skull]|h|r"},["Studded Ring Shield"]={SubType="Shields",Level=38,id=15695,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5771,Texture=134953,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15695::::::::40:::::::|h[Studded Ring Shield]|h|r",Type="Armor"},["Ritssyn's Ring of Chaos"]={SubType="Miscellaneous",Level=71,id=21836,StackCount=1,Rarity=4,MinLevel=60,SellPrice=96853,Texture=133376,Link="|cffa335ee|Hitem:21836::::::::40:::::::|h[Ritssyn's Ring of Chaos]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Pattern: Frostweave Tunic"]={SubType="Tailoring",Level=51,id=14466,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14466::::::::40:::::::|h[Pattern: Frostweave Tunic]|h|r"},["Exalted Sabatons"]={SubType="Plate",Level=63,id=14978,StackCount=1,Rarity=2,MinLevel=58,SellPrice=13913,Texture=132592,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14978::::::::40:::::::|h[Exalted Sabatons]|h|r"},["Blue Rocket Cluster"]={SubType="Consumable",Level=1,id=21571,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=134288,Link="|cffffffff|Hitem:21571::::::::40:::::::|h[Blue Rocket Cluster]|h|r",EquipLoc="",Type="Consumable"},["Libram: Seal of Righteousness V"]={SubType="Book",Level=56,id=8942,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=133740,Link="|cffffffff|Hitem:8942::::::::40:::::::|h[Libram: Seal of Righteousness V]|h|r",EquipLoc="",Type="Recipe"},["Monster - Sword, Flaming Crimson Battlemage Longsword"]={SubType="One-Handed Swords",Level=1,id=13222,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135277,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13222::::::::40:::::::|h[Monster - Sword, Flaming Crimson Battlemage Longsword]|h|r"},["Jungle Ring"]={SubType="Miscellaneous",Level=61,id=12016,StackCount=1,Rarity=2,MinLevel=56,SellPrice=7781,Texture=133350,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12016::::::::40:::::::|h[Jungle Ring]|h|r"},["Recipe: Lean Wolf Steak"]={SubType="Cooking",Level=25,id=12227,StackCount=1,Rarity=1,MinLevel=0,SellPrice=400,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12227::::::::40:::::::|h[Recipe: Lean Wolf Steak]|h|r"},["Imperial Leather Helm"]={SubType="Leather",Level=43,id=6433,StackCount=1,Rarity=2,MinLevel=38,SellPrice=4953,Texture=133118,Link="|cff1eff00|Hitem:6433::::::::40:::::::|h[Imperial Leather Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Hatched Egg Sac"]={SubType="Junk",Level=1,id=5601,StackCount=10,Rarity=0,MinLevel=0,SellPrice=22,Texture=132835,EquipLoc="",Link="|cff9d9d9d|Hitem:5601::::::::40:::::::|h[Hatched Egg Sac]|h|r",Type="Miscellaneous"},["Combat Task Briefing XII"]={SubType="Quest",Level=60,id=20941,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:20941::::::::40:::::::|h[Combat Task Briefing XII]|h|r",EquipLoc="",Type="Quest"},["Frostwolf Lieutenant's Medal"]={SubType="Quest",Level=1,id=17503,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=133437,EquipLoc="",Link="|cffffffff|Hitem:17503::::::::40:::::::|h[Frostwolf Lieutenant's Medal]|h|r",Type="Quest"},["Gauntlets of Accuracy"]={SubType="Mail",Level=61,id=18349,StackCount=1,Rarity=2,MinLevel=56,SellPrice=12454,Texture=132946,Type="Armor",Link="|cff1eff00|Hitem:18349::::::::40:::::::|h[Gauntlets of Accuracy]|h|r",EquipLoc="INVTYPE_HAND"},["Book of Regrowth VI"]={SubType="Book",Level=42,id=8905,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133743,Link="|cffffffff|Hitem:8905::::::::40:::::::|h[Book of Regrowth VI]|h|r",EquipLoc="",Type="Recipe"},["Jazeraint Belt"]={SubType="Mail",Level=40,id=9901,StackCount=1,Rarity=2,MinLevel=35,SellPrice=3294,Texture=132516,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9901::::::::40:::::::|h[Jazeraint Belt]|h|r"},["Quartermaster Zigris' Footlocker"]={SubType="Junk",Level=60,id=13247,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5837,Texture=132594,Type="Miscellaneous",EquipLoc="",Link="|cff1eff00|Hitem:13247::::::::40:::::::|h[Quartermaster Zigris' Footlocker]|h|r"},["Dark Leather Pants"]={SubType="Leather",Level=23,id=5961,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1089,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:5961::::::::40:::::::|h[Dark Leather Pants]|h|r"},["Soul Pouch"]={SubType="Soul Bag",Level=52,id=21340,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=133670,Link="|cff1eff00|Hitem:21340::::::::40:::::::|h[Soul Pouch]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Interlaced Cowl"]={SubType="Cloth",Level=33,id=8746,StackCount=1,Rarity=0,MinLevel=28,SellPrice=682,Texture=133130,Link="|cff9d9d9d|Hitem:8746::::::::40:::::::|h[Interlaced Cowl]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Lieutenant Commander's Dragonhide Shoulders"]={SubType="Leather",Level=71,id=23309,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15619,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:23309::::::::40:::::::|h[Lieutenant Commander's Dragonhide Shoulders]|h|r"},["Coldwater Ring"]={SubType="Miscellaneous",Level=46,id=4550,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2092,Texture=133352,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:4550::::::::40:::::::|h[Coldwater Ring]|h|r",Type="Armor"},["Rough Weightstone"]={SubType="Trade Goods",Level=5,id=3239,StackCount=20,Rarity=1,MinLevel=1,SellPrice=3,Texture=135255,Link="|cffffffff|Hitem:3239::::::::40:::::::|h[Rough Weightstone]|h|r",EquipLoc="",Type="Trade Goods"},["Beastmaster's Tunic"]={SubType="Mail",Level=60,id=22060,StackCount=1,Rarity=4,MinLevel=0,SellPrice=41015,Texture=132625,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:22060::::::::40:::::::|h[Beastmaster's Tunic]|h|r"},["Formula: Enchant Boots - Minor Stamina"]={SubType="Enchanting",Level=25,id=6376,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:6376::::::::40:::::::|h[Formula: Enchant Boots - Minor Stamina]|h|r",EquipLoc=""},["Scepter of Vectus"]={SubType="Quest",Level=1,id=12369,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135471,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12369::::::::40:::::::|h[Scepter of Vectus]|h|r"},["Grimoire of Rain of Fire"]={SubType="Book",Level=20,id=4215,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:4215::::::::40:::::::|h[Grimoire of Rain of Fire]|h|r",Type="Recipe"},["Cheap Blunderbuss"]={SubType="Guns",Level=13,id=2778,StackCount=1,Rarity=0,MinLevel=8,SellPrice=147,Texture=135612,Type="Weapon",Link="|cff9d9d9d|Hitem:2778::::::::40:::::::|h[Cheap Blunderbuss]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Jade Deflector"]={SubType="Shields",Level=53,id=14916,StackCount=1,Rarity=2,MinLevel=48,SellPrice=17254,Texture=134967,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14916::::::::40:::::::|h[Jade Deflector]|h|r"},["Recipe: Beer Basted Boar Ribs"]={SubType="Cooking",Level=8,id=2889,StackCount=1,Rarity=1,MinLevel=0,SellPrice=60,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:2889::::::::40:::::::|h[Recipe: Beer Basted Boar Ribs]|h|r",Type="Recipe"},["Claystone Shortsword"]={SubType="One-Handed Swords",Level=21,id=16891,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1697,Texture=135324,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:16891::::::::40:::::::|h[Claystone Shortsword]|h|r",Type="Weapon"},["Duskwoven Robe"]={SubType="Cloth",Level=55,id=10065,StackCount=1,Rarity=2,MinLevel=50,SellPrice=12153,Texture=132687,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:10065::::::::40:::::::|h[Duskwoven Robe]|h|r",Type="Armor"},["Candy Cane"]={SubType="Consumable",Level=5,id=17344,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=134017,EquipLoc="",Link="|cffffffff|Hitem:17344::::::::40:::::::|h[Candy Cane]|h|r",Type="Consumable"},["Warlord's Mail Armor"]={SubType="Mail",Level=74,id=16577,StackCount=1,Rarity=4,MinLevel=60,SellPrice=38681,Texture=132633,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16577::::::::40:::::::|h[Warlord's Mail Armor]|h|r",Type="Armor"},["Ravager's Sandals"]={SubType="Mail",Level=42,id=14769,StackCount=1,Rarity=2,MinLevel=37,SellPrice=5554,Texture=132579,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14769::::::::40:::::::|h[Ravager's Sandals]|h|r"},["Raptor Flesh"]={SubType="Trade Goods",Level=30,id=12184,StackCount=10,Rarity=1,MinLevel=0,SellPrice=87,Texture=134025,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12184::::::::40:::::::|h[Raptor Flesh]|h|r"},["Deprecated Shattered Elemental Bracer"]={SubType="Quest",Level=1,id=5453,StackCount=20,Rarity=1,MinLevel=0,SellPrice=10,Texture=132606,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5453::::::::40:::::::|h[Deprecated Shattered Elemental Bracer]|h|r"},["Fernpulse Jerkin"]={SubType="Leather",Level=59,id=15786,StackCount=1,Rarity=2,MinLevel=0,SellPrice=18826,Texture=132721,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15786::::::::40:::::::|h[Fernpulse Jerkin]|h|r",Type="Armor"},["Ensign Cloak"]={SubType="Cloth",Level=5,id=3070,StackCount=1,Rarity=1,MinLevel=0,SellPrice=11,Texture=133753,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:3070::::::::40:::::::|h[Ensign Cloak]|h|r"},["Of Love and Family"]={SubType="Quest",Level=1,id=14679,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134942,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14679::::::::40:::::::|h[Of Love and Family]|h|r"},["Spool of Light Chartreuse Silk Thread"]={SubType="Quest",Level=1,id=8431,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132906,Link="|cffffffff|Hitem:8431::::::::40:::::::|h[Spool of Light Chartreuse Silk Thread]|h|r",EquipLoc="",Type="Quest"},["Blackmist Armguards"]={SubType="Leather",Level=63,id=12966,StackCount=1,Rarity=3,MinLevel=58,SellPrice=14018,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:12966::::::::40:::::::|h[Blackmist Armguards]|h|r"},["Briar Tredders"]={SubType="Leather",Level=36,id=10582,StackCount=1,Rarity=3,MinLevel=31,SellPrice=3606,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:10582::::::::40:::::::|h[Briar Tredders]|h|r",Type="Armor"},["Black Stallion Bridle"]={SubType="Junk",Level=40,id=2411,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132261,EquipLoc="",Link="|cffffffff|Hitem:2411::::::::40:::::::|h[Black Stallion Bridle]|h|r",Type="Miscellaneous"},["Black Whelp Cloak"]={SubType="Cloth",Level=20,id=7283,StackCount=1,Rarity=2,MinLevel=15,SellPrice=519,Texture=134305,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:7283::::::::40:::::::|h[Black Whelp Cloak]|h|r"},["Thick Scale Bracelets"]={SubType="Mail",Level=30,id=15545,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1348,Texture=132605,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15545::::::::40:::::::|h[Thick Scale Bracelets]|h|r",Type="Armor"},["Brown Kodo"]={SubType="Junk",Level=40,id=15290,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132245,EquipLoc="",Link="|cff0070dd|Hitem:15290::::::::40:::::::|h[Brown Kodo]|h|r",Type="Miscellaneous"},["Tome of Scorch VI"]={SubType="Book",Level=52,id=8874,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=133739,Link="|cffffffff|Hitem:8874::::::::40:::::::|h[Tome of Scorch VI]|h|r",EquipLoc="",Type="Recipe"},["Wild Leather Helmet"]={SubType="Leather",Level=45,id=8214,StackCount=1,Rarity=2,MinLevel=40,SellPrice=6230,Texture=133078,Link="|cff1eff00|Hitem:8214::::::::40:::::::|h[Wild Leather Helmet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Claw of the Shadowmancer"]={SubType="Daggers",Level=32,id=2912,StackCount=1,Rarity=3,MinLevel=27,SellPrice=6731,Texture=135652,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:2912::::::::40:::::::|h[Claw of the Shadowmancer]|h|r",Type="Weapon"},["Warleader's Breastplate"]={SubType="Plate",Level=63,id=14862,StackCount=1,Rarity=2,MinLevel=58,SellPrice=18339,Texture=132744,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14862::::::::40:::::::|h[Warleader's Breastplate]|h|r"},["Hulking Leggings"]={SubType="Mail",Level=25,id=14748,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1550,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14748::::::::40:::::::|h[Hulking Leggings]|h|r"},["Onyxia Hide Backpack"]={SubType="Bag",Level=55,id=17966,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8750,Texture=133655,EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:17966::::::::40:::::::|h[Onyxia Hide Backpack]|h|r",Type="Container"},["Pattern: Azure Silk Gloves"]={SubType="Tailoring",Level=29,id=7114,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=134939,Link="|cffffffff|Hitem:7114::::::::40:::::::|h[Pattern: Azure Silk Gloves]|h|r",EquipLoc="",Type="Recipe"},["Azure Shoulders"]={SubType="Cloth",Level=38,id=7060,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2791,Texture=135058,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7060::::::::40:::::::|h[Azure Shoulders]|h|r",Type="Armor"},["Mistscape Armor"]={SubType="Cloth",Level=46,id=7113,StackCount=1,Rarity=2,MinLevel=41,SellPrice=6707,Texture=135021,Link="|cff1eff00|Hitem:7113::::::::40:::::::|h[Mistscape Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Lieutenant Commander's Dragonhide Shroud"]={SubType="Leather",Level=63,id=16424,StackCount=1,Rarity=3,MinLevel=58,SellPrice=10317,Texture=133143,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16424::::::::40:::::::|h[Lieutenant Commander's Dragonhide Shroud]|h|r",Type="Armor"},["Collection Plate"]={SubType="Shields",Level=44,id=4129,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9444,Texture=134952,Type="Armor",Link="|cff1eff00|Hitem:4129::::::::40:::::::|h[Collection Plate]|h|r",EquipLoc="INVTYPE_SHIELD"},["Johaan's Special Drink"]={SubType="Quest",Level=1,id=3460,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132792,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3460::::::::40:::::::|h[Johaan's Special Drink]|h|r"},["Monster - Shield, Engineer B01"]={SubType="Shields",Level=1,id=11586,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",Link="|cff9d9d9d|Hitem:11586::::::::40:::::::|h[Monster - Shield, Engineer B01]|h|r",EquipLoc="INVTYPE_SHIELD"},["Zandalar Signet of Mojo"]={SubType="Quest",Level=60,id=20076,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133388,Link="|cff0070dd|Hitem:20076::::::::40:::::::|h[Zandalar Signet of Mojo]|h|r",EquipLoc="",Type="Quest"},["Deprecated BKP \"Impact\" Shot"]={SubType="Bullet",Level=35,id=3034,StackCount=200,Rarity=1,MinLevel=30,SellPrice=0,Texture=132384,EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:3034::::::::40:::::::|h[Deprecated BKP \"Impact\" Shot]|h|r",Type="Projectile"},["Giantstalker's Helmet"]={SubType="Mail",Level=66,id=16846,StackCount=1,Rarity=4,MinLevel=60,SellPrice=40759,Texture=133073,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16846::::::::40:::::::|h[Giantstalker's Helmet]|h|r",Type="Armor"},["Moonsteel Broadsword"]={SubType="Two-Handed Swords",Level=36,id=3853,StackCount=1,Rarity=2,MinLevel=31,SellPrice=10153,Texture=135326,Type="Weapon",Link="|cff1eff00|Hitem:3853::::::::40:::::::|h[Moonsteel Broadsword]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Frostwolf Insignia Rank 2"]={SubType="Miscellaneous",Level=60,id=17905,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133283,EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:17905::::::::40:::::::|h[Frostwolf Insignia Rank 2]|h|r",Type="Armor"},["Arachnidian Bracelets"]={SubType="Cloth",Level=50,id=14291,StackCount=1,Rarity=2,MinLevel=45,SellPrice=4830,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14291::::::::40:::::::|h[Arachnidian Bracelets]|h|r"},["Primitive Rock Tool"]={SubType="Junk",Level=1,id=5367,StackCount=5,Rarity=0,MinLevel=0,SellPrice=22,Texture=135233,Link="|cff9d9d9d|Hitem:5367::::::::40:::::::|h[Primitive Rock Tool]|h|r",EquipLoc="",Type="Miscellaneous"},["Ceremonial Leather Loincloth"]={SubType="Leather",Level=17,id=3315,StackCount=1,Rarity=2,MinLevel=12,SellPrice=454,Texture=134706,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:3315::::::::40:::::::|h[Ceremonial Leather Loincloth]|h|r"},["Recipe: Gift of Arthas"]={SubType="Alchemy",Level=48,id=9296,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2000,Texture=134941,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:9296::::::::40:::::::|h[Recipe: Gift of Arthas]|h|r"},["Magister's Belt"]={SubType="Cloth",Level=58,id=16685,StackCount=1,Rarity=3,MinLevel=53,SellPrice=8694,Texture=132497,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16685::::::::40:::::::|h[Magister's Belt]|h|r",Type="Armor"},["Conjured Spring Water"]={SubType="Consumable",Level=35,id=3772,StackCount=20,Rarity=1,MinLevel=25,SellPrice=0,Texture=132797,Link="|cffffffff|Hitem:3772::::::::40:::::::|h[Conjured Spring Water]|h|r",EquipLoc="",Type="Consumable"},["Shiny Fish Scales"]={SubType="Junk",Level=1,id=17057,StackCount=20,Rarity=1,MinLevel=0,SellPrice=7,Texture=134310,EquipLoc="",Link="|cffffffff|Hitem:17057::::::::40:::::::|h[Shiny Fish Scales]|h|r",Type="Miscellaneous"},["Kurzen's Head"]={SubType="Quest",Level=1,id=3615,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Link="|cffffffff|Hitem:3615::::::::40:::::::|h[Kurzen's Head]|h|r",EquipLoc="",Type="Quest"},["Hedgecutter"]={SubType="One-Handed Axes",Level=60,id=18498,StackCount=1,Rarity=3,MinLevel=55,SellPrice=47443,Texture=132402,Type="Weapon",Link="|cff0070dd|Hitem:18498::::::::40:::::::|h[Hedgecutter]|h|r",EquipLoc="INVTYPE_WEAPON"},["Top Half of Advanced Armorsmithing: Volume II"]={SubType="Quest",Level=60,id=18782,StackCount=1,Rarity=3,MinLevel=50,SellPrice=0,Texture=134329,Type="Quest",Link="|cff0070dd|Hitem:18782::::::::40:::::::|h[Top Half of Advanced Armorsmithing: Volume II]|h|r",EquipLoc=""},["Warped Leather Pants"]={SubType="Leather",Level=14,id=1507,StackCount=1,Rarity=0,MinLevel=9,SellPrice=123,Texture=134588,Type="Armor",Link="|cff9d9d9d|Hitem:1507::::::::40:::::::|h[Warped Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Green Tea Leaf"]={SubType="Consumable",Level=14,id=1401,StackCount=20,Rarity=1,MinLevel=4,SellPrice=14,Texture=134190,Link="|cffffffff|Hitem:1401::::::::40:::::::|h[Green Tea Leaf]|h|r",EquipLoc="",Type="Consumable"},["Summer Gift Package"]={SubType="Consumable",Level=1,id=23224,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134140,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:23224::::::::40:::::::|h[Summer Gift Package]|h|r"},["Buzzard Wing"]={SubType="Trade Goods",Level=35,id=3404,StackCount=10,Rarity=1,MinLevel=0,SellPrice=181,Texture=134304,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:3404::::::::40:::::::|h[Buzzard Wing]|h|r"},["Plans: Dark Iron Helm"]={SubType="Blacksmithing",Level=66,id=19206,StackCount=1,Rarity=1,MinLevel=0,SellPrice=15000,Texture=134939,Link="|cffffffff|Hitem:19206::::::::40:::::::|h[Plans: Dark Iron Helm]|h|r",EquipLoc="",Type="Recipe"},["Warlord's Silk Amice"]={SubType="Cloth",Level=74,id=16536,StackCount=1,Rarity=4,MinLevel=60,SellPrice=18751,Texture=135050,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16536::::::::40:::::::|h[Warlord's Silk Amice]|h|r",Type="Armor"},["Mindseye Circle"]={SubType="Miscellaneous",Level=46,id=10634,StackCount=1,Rarity=3,MinLevel=41,SellPrice=10812,Texture=133352,EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:10634::::::::40:::::::|h[Mindseye Circle]|h|r",Type="Armor"},["Succubi Stone (Deprecated)"]={SubType="Reagent",Level=20,id=5563,StackCount=10,Rarity=1,MinLevel=0,SellPrice=200,Texture=134334,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:5563::::::::40:::::::|h[Succubi Stone (Deprecated)]|h|r"},["Skull of Horgus"]={SubType="Quest",Level=1,id=12956,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133729,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12956::::::::40:::::::|h[Skull of Horgus]|h|r"},["Weighted Sap"]={SubType="One-Handed Maces",Level=15,id=1926,StackCount=1,Rarity=2,MinLevel=10,SellPrice=687,Texture=133481,Link="|cff1eff00|Hitem:1926::::::::40:::::::|h[Weighted Sap]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Trickster's Boots"]={SubType="Leather",Level=39,id=15362,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3871,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15362::::::::40:::::::|h[Trickster's Boots]|h|r",Type="Armor"},["Deprecated Flax Mantle"]={SubType="Cloth",Level=4,id=3271,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:3271::::::::40:::::::|h[Deprecated Flax Mantle]|h|r",Type="Armor"},["Broken Scorpid Leg"]={SubType="Junk",Level=1,id=4867,StackCount=5,Rarity=0,MinLevel=0,SellPrice=8,Texture=134321,EquipLoc="",Link="|cff9d9d9d|Hitem:4867::::::::40:::::::|h[Broken Scorpid Leg]|h|r",Type="Miscellaneous"},["Worn Leather Gloves"]={SubType="Leather",Level=6,id=1422,StackCount=1,Rarity=0,MinLevel=1,SellPrice=6,Texture=132952,Link="|cff9d9d9d|Hitem:1422::::::::40:::::::|h[Worn Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Tablet of Healing Totem III"]={SubType="Book",Level=20,id=5705,StackCount=1,Rarity=1,MinLevel=20,SellPrice=750,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:5705::::::::40:::::::|h[Tablet of Healing Totem III]|h|r",Type="Recipe"},["Mail Combat Boots"]={SubType="Mail",Level=35,id=4076,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3301,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:4076::::::::40:::::::|h[Mail Combat Boots]|h|r"},["An Undelivered Letter"]={SubType="Quest",Level=1,id=910,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133464,Type="Quest",Link="|cffffffff|Hitem:910::::::::40:::::::|h[An Undelivered Letter]|h|r",EquipLoc=""},["Destiny"]={SubType="Two-Handed Swords",Level=57,id=647,StackCount=1,Rarity=4,MinLevel=52,SellPrice=70024,Texture=135317,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:647::::::::40:::::::|h[Destiny]|h|r"},["Jer'kai's Signet Ring"]={SubType="Quest",Level=1,id=9368,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133347,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9368::::::::40:::::::|h[Jer'kai's Signet Ring]|h|r"},["Adventurer's Cape"]={SubType="Cloth",Level=60,id=10258,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12292,Texture=133760,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10258::::::::40:::::::|h[Adventurer's Cape]|h|r",Type="Armor"},["Arcane Cover"]={SubType="Cloth",Level=58,id=8292,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11476,Texture=133090,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:8292::::::::40:::::::|h[Arcane Cover]|h|r"},["Swashbuckler's Eyepatch"]={SubType="Leather",Level=55,id=10187,StackCount=1,Rarity=2,MinLevel=50,SellPrice=11785,Texture=133148,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10187::::::::40:::::::|h[Swashbuckler's Eyepatch]|h|r",Type="Armor"},["Elixir of Giants"]={SubType="Consumable",Level=48,id=9206,StackCount=5,Rarity=1,MinLevel=38,SellPrice=700,Texture=134841,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9206::::::::40:::::::|h[Elixir of Giants]|h|r"},["Marshal's Lamellar Belt"]={SubType="Plate",Level=65,id=16470,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8497,Texture=132516,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16470::::::::40:::::::|h[Marshal's Lamellar Belt]|h|r",Type="Armor"},["Starfaller"]={SubType="Wands",Level=34,id=13063,StackCount=1,Rarity=3,MinLevel=29,SellPrice=5851,Texture=135139,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13063::::::::40:::::::|h[Starfaller]|h|r"},["1800 Test Dagger 63 blue"]={SubType="Daggers",Level=63,id=19622,StackCount=1,Rarity=3,MinLevel=58,SellPrice=54922,Texture=135637,Link="|cff0070dd|Hitem:19622::::::::40:::::::|h[1800 Test Dagger 63 blue]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Gri'lek's Carver"]={SubType="Two-Handed Axes",Level=68,id=19962,StackCount=1,Rarity=3,MinLevel=60,SellPrice=88511,Texture=132418,Link="|cff0070dd|Hitem:19962::::::::40:::::::|h[Gri'lek's Carver]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Scavenger Paw"]={SubType="Quest",Level=1,id=3265,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134297,Type="Quest",Link="|cffffffff|Hitem:3265::::::::40:::::::|h[Scavenger Paw]|h|r",EquipLoc=""},["Sword of the Magistrate"]={SubType="Two-Handed Swords",Level=41,id=13042,StackCount=1,Rarity=3,MinLevel=36,SellPrice=17596,Texture=135351,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13042::::::::40:::::::|h[Sword of the Magistrate]|h|r"},["Ornamental Mace"]={SubType="One-Handed Maces",Level=17,id=1815,StackCount=1,Rarity=0,MinLevel=12,SellPrice=366,Texture=133478,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:1815::::::::40:::::::|h[Ornamental Mace]|h|r",Type="Weapon"},["Plains Hunter Wristguards"]={SubType="Leather",Level=10,id=4973,StackCount=1,Rarity=1,MinLevel=0,SellPrice=35,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:4973::::::::40:::::::|h[Plains Hunter Wristguards]|h|r"},["Recipe: Crispy Bat Wing"]={SubType="Cooking",Level=5,id=12226,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12226::::::::40:::::::|h[Recipe: Crispy Bat Wing]|h|r"},["Death's Head Vestment"]={SubType="Cloth",Level=40,id=10581,StackCount=1,Rarity=3,MinLevel=35,SellPrice=5310,Texture=132723,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:10581::::::::40:::::::|h[Death's Head Vestment]|h|r",Type="Armor"},["Wanderlust Boots"]={SubType="Leather",Level=41,id=10748,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4380,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10748::::::::40:::::::|h[Wanderlust Boots]|h|r",Type="Armor"},["Cho'Rush's Blade"]={SubType="One-Handed Swords",Level=61,id=18484,StackCount=1,Rarity=3,MinLevel=56,SellPrice=53822,Texture=135640,Type="Weapon",Link="|cff0070dd|Hitem:18484::::::::40:::::::|h[Cho'Rush's Blade]|h|r",EquipLoc="INVTYPE_WEAPON"},["Knight-Lieutenant's Dragonhide Grips"]={SubType="Leather",Level=66,id=23280,StackCount=1,Rarity=3,MinLevel=60,SellPrice=8497,Texture=132959,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:23280::::::::40:::::::|h[Knight-Lieutenant's Dragonhide Grips]|h|r"},["Espadon"]={SubType="Two-Handed Swords",Level=21,id=2024,StackCount=1,Rarity=1,MinLevel=16,SellPrice=1215,Texture=135353,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:2024::::::::40:::::::|h[Espadon]|h|r",Type="Weapon"},["Sentinel's Medallion"]={SubType="Miscellaneous",Level=63,id=19538,StackCount=1,Rarity=3,MinLevel=58,SellPrice=18750,Texture=133300,Link="|cff0070dd|Hitem:19538::::::::40:::::::|h[Sentinel's Medallion]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Shining Silver Breastplate"]={SubType="Mail",Level=29,id=2870,StackCount=1,Rarity=3,MinLevel=24,SellPrice=2935,Texture=132750,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:2870::::::::40:::::::|h[Shining Silver Breastplate]|h|r"},["Band of the Unicorn"]={SubType="Miscellaneous",Level=48,id=7553,StackCount=1,Rarity=2,MinLevel=43,SellPrice=2542,Texture=133353,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:7553::::::::40:::::::|h[Band of the Unicorn]|h|r"},["Mithril Frag Bomb"]={SubType="Explosives",Level=43,id=10514,StackCount=10,Rarity=1,MinLevel=0,SellPrice=750,Texture=133710,EquipLoc="",Link="|cffffffff|Hitem:10514::::::::40:::::::|h[Mithril Frag Bomb]|h|r",Type="Trade Goods"},["Blade of the Basilisk"]={SubType="One-Handed Swords",Level=37,id=8223,StackCount=1,Rarity=3,MinLevel=32,SellPrice=10066,Texture=135353,Link="|cff0070dd|Hitem:8223::::::::40:::::::|h[Blade of the Basilisk]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Runn Tum Tuber"]={SubType="Consumable",Level=55,id=18255,StackCount=20,Rarity=1,MinLevel=45,SellPrice=15,Texture=134011,Type="Consumable",Link="|cffffffff|Hitem:18255::::::::40:::::::|h[Runn Tum Tuber]|h|r",EquipLoc=""},["Watcher's Cape"]={SubType="Cloth",Level=24,id=14179,StackCount=1,Rarity=2,MinLevel=19,SellPrice=747,Texture=133767,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14179::::::::40:::::::|h[Watcher's Cape]|h|r"},["Dokebi Hat"]={SubType="Leather",Level=35,id=14584,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2673,Texture=133117,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14584::::::::40:::::::|h[Dokebi Hat]|h|r"},["Zandalar Honor Token"]={SubType="Quest",Level=1,id=19858,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=133791,Link="|cff1eff00|Hitem:19858::::::::40:::::::|h[Zandalar Honor Token]|h|r",EquipLoc="",Type="Quest"},["Dirty Kodo Scale"]={SubType="Junk",Level=1,id=5121,StackCount=5,Rarity=0,MinLevel=0,SellPrice=162,Texture=134305,EquipLoc="",Link="|cff9d9d9d|Hitem:5121::::::::40:::::::|h[Dirty Kodo Scale]|h|r",Type="Miscellaneous"},["Trelane's Wand of Invocation"]={SubType="Quest",Level=1,id=4525,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135464,EquipLoc="",Link="|cffffffff|Hitem:4525::::::::40:::::::|h[Trelane's Wand of Invocation]|h|r",Type="Quest"},["Bear Shawl"]={SubType="Cloth",Level=5,id=6185,StackCount=1,Rarity=1,MinLevel=0,SellPrice=9,Texture=134354,Type="Armor",Link="|cffffffff|Hitem:6185::::::::40:::::::|h[Bear Shawl]|h|r",EquipLoc="INVTYPE_CLOAK"},["Fishing Pole"]={SubType="Fishing Pole",Level=1,id=6256,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4,Texture=132932,Link="|cffffffff|Hitem:6256::::::::40:::::::|h[Fishing Pole]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Massive Battle Axe"]={SubType="Two-Handed Axes",Level=24,id=15269,StackCount=1,Rarity=2,MinLevel=19,SellPrice=3036,Texture=132415,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15269::::::::40:::::::|h[Massive Battle Axe]|h|r",Type="Weapon"},["Resilient Cape"]={SubType="Cloth",Level=29,id=14400,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1215,Texture=133766,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14400::::::::40:::::::|h[Resilient Cape]|h|r"},["Plans: Moonsteel Broadsword"]={SubType="Blacksmithing",Level=36,id=12163,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1100,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12163::::::::40:::::::|h[Plans: Moonsteel Broadsword]|h|r"},["Dreadnaught Gauntlets"]={SubType="Plate",Level=88,id=22421,StackCount=1,Rarity=4,MinLevel=60,SellPrice=53974,Texture=132962,Link="|cffa335ee|Hitem:22421::::::::40:::::::|h[Dreadnaught Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Mage Dragon Robe"]={SubType="Cloth",Level=50,id=4989,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9058,Texture=132670,Link="|cff1eff00|Hitem:4989::::::::40:::::::|h[Mage Dragon Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Redemption Legguards"]={SubType="Plate",Level=88,id=22427,StackCount=1,Rarity=4,MinLevel=60,SellPrice=102583,Texture=134667,Link="|cffa335ee|Hitem:22427::::::::40:::::::|h[Redemption Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Shredder Operating Manual - Chapter 2"]={SubType="Quest",Level=1,id=16643,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133677,EquipLoc="",Link="|cffffffff|Hitem:16643::::::::40:::::::|h[Shredder Operating Manual - Chapter 2]|h|r",Type="Quest"},["Packet of Tharlendris Seeds"]={SubType="Quest",Level=1,id=11022,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=136074,Type="Quest",Link="|cffffffff|Hitem:11022::::::::40:::::::|h[Packet of Tharlendris Seeds]|h|r",EquipLoc=""},["Woolen Boots"]={SubType="Cloth",Level=19,id=2583,StackCount=1,Rarity=2,MinLevel=14,SellPrice=359,Texture=132543,Type="Armor",Link="|cff1eff00|Hitem:2583::::::::40:::::::|h[Woolen Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Barrow Key"]={SubType="Quest",Level=1,id=5691,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134235,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5691::::::::40:::::::|h[Barrow Key]|h|r"},["Imp in a Jar"]={SubType="Quest",Level=1,id=18688,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134514,Type="Quest",Link="|cffffffff|Hitem:18688::::::::40:::::::|h[Imp in a Jar]|h|r",EquipLoc=""},["Slumber Sand"]={SubType="Consumable",Level=7,id=3434,StackCount=10,Rarity=1,MinLevel=0,SellPrice=3,Texture=133849,Link="|cffffffff|Hitem:3434::::::::40:::::::|h[Slumber Sand]|h|r",EquipLoc="",Type="Consumable"},["Enduring Pauldrons"]={SubType="Mail",Level=38,id=14767,StackCount=1,Rarity=2,MinLevel=33,SellPrice=4478,Texture=135052,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14767::::::::40:::::::|h[Enduring Pauldrons]|h|r"},["Opulent Belt"]={SubType="Cloth",Level=50,id=14286,StackCount=1,Rarity=2,MinLevel=45,SellPrice=4620,Texture=132510,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14286::::::::40:::::::|h[Opulent Belt]|h|r"},["Level 25 Test Gear Cloth - Mage/Priest/Warlock"]={SubType="Junk",Level=1,id=13647,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13647::::::::40:::::::|h[Level 25 Test Gear Cloth - Mage/Priest/Warlock]|h|r"},["Knight-Captain's Silk Raiment"]={SubType="Cloth",Level=63,id=16413,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11692,Texture=132670,EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:16413::::::::40:::::::|h[Knight-Captain's Silk Raiment]|h|r",Type="Armor"},["Brutal Hauberk"]={SubType="Mail",Level=30,id=7133,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3098,Texture=132629,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:7133::::::::40:::::::|h[Brutal Hauberk]|h|r",Type="Armor"},["Doomcaller's Circlet"]={SubType="Cloth",Level=81,id=21337,StackCount=1,Rarity=4,MinLevel=60,SellPrice=54661,Texture=133074,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:21337::::::::40:::::::|h[Doomcaller's Circlet]|h|r"},["Unused Black Night Elf Boots"]={SubType="Mail",Level=1,id=3524,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132542,Type="Armor",Link="|cffffffff|Hitem:3524::::::::40:::::::|h[Unused Black Night Elf Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Knowledge: Dalaran Wizard Disguise"]={SubType="Book",Level=13,id=5130,StackCount=1,Rarity=1,MinLevel=13,SellPrice=162,Texture=134941,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5130::::::::40:::::::|h[Knowledge: Dalaran Wizard Disguise]|h|r"},["Pattern: Heavy Scorpid Vest"]={SubType="Leatherworking",Level=53,id=15727,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134939,EquipLoc="",Link="|cff1eff00|Hitem:15727::::::::40:::::::|h[Pattern: Heavy Scorpid Vest]|h|r",Type="Recipe"},["Reward Voucher"]={SubType="Quest",Level=1,id=8070,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,Link="|cffffffff|Hitem:8070::::::::40:::::::|h[Reward Voucher]|h|r",EquipLoc="",Type="Quest"},["Scrap Metal"]={SubType="Quest",Level=1,id=4630,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134070,Type="Quest",Link="|cffffffff|Hitem:4630::::::::40:::::::|h[Scrap Metal]|h|r",EquipLoc=""},["Raider's Shoulderpads"]={SubType="Mail",Level=21,id=10407,StackCount=1,Rarity=1,MinLevel=16,SellPrice=431,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:10407::::::::40:::::::|h[Raider's Shoulderpads]|h|r",Type="Armor"},["Plans: Sageblade"]={SubType="Blacksmithing",Level=64,id=22389,StackCount=1,Rarity=4,MinLevel=0,SellPrice=20000,Texture=134941,Type="Recipe",EquipLoc="",Link="|cffa335ee|Hitem:22389::::::::40:::::::|h[Plans: Sageblade]|h|r"},["Ironspine's Eye"]={SubType="Miscellaneous",Level=35,id=7686,StackCount=1,Rarity=3,MinLevel=30,SellPrice=4308,Texture=133346,EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:7686::::::::40:::::::|h[Ironspine's Eye]|h|r",Type="Armor"},["Broken Blade of Heroes"]={SubType="Trade Goods",Level=38,id=9719,StackCount=1,Rarity=3,MinLevel=0,SellPrice=6250,Texture=135280,Type="Trade Goods",EquipLoc="",Link="|cff0070dd|Hitem:9719::::::::40:::::::|h[Broken Blade of Heroes]|h|r"},["Arcane Staff"]={SubType="Staves",Level=10,id=9514,StackCount=1,Rarity=2,MinLevel=0,SellPrice=306,Texture=135147,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:9514::::::::40:::::::|h[Arcane Staff]|h|r"},["Obsidian Edged Blade"]={SubType="Two-Handed Swords",Level=68,id=18822,StackCount=1,Rarity=4,MinLevel=60,SellPrice=125768,Texture=135329,Type="Weapon",Link="|cffa335ee|Hitem:18822::::::::40:::::::|h[Obsidian Edged Blade]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Vermilion Band"]={SubType="Miscellaneous",Level=37,id=7466,StackCount=1,Rarity=2,MinLevel=32,SellPrice=1921,Texture=133352,Link="|cff1eff00|Hitem:7466::::::::40:::::::|h[Vermilion Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["[PH] Rising Dawn Cap"]={SubType="Leather",Level=1,id=13790,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133117,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:13790::::::::40:::::::|h[[PH] Rising Dawn Cap]|h|r"},["Formidable Sabatons"]={SubType="Mail",Level=49,id=15630,StackCount=1,Rarity=2,MinLevel=44,SellPrice=10312,Texture=132587,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15630::::::::40:::::::|h[Formidable Sabatons]|h|r",Type="Armor"},["Gaea Seed"]={SubType="Quest",Level=1,id=16205,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=133944,EquipLoc="",Link="|cffffffff|Hitem:16205::::::::40:::::::|h[Gaea Seed]|h|r",Type="Quest"},["Wildvine Potion"]={SubType="Consumable",Level=45,id=9144,StackCount=5,Rarity=1,MinLevel=35,SellPrice=250,Texture=134814,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9144::::::::40:::::::|h[Wildvine Potion]|h|r"},["Crochet Hat"]={SubType="Cloth",Level=43,id=8749,StackCount=1,Rarity=0,MinLevel=38,SellPrice=1603,Texture=133117,Link="|cff9d9d9d|Hitem:8749::::::::40:::::::|h[Crochet Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Beerstained Gloves"]={SubType="Cloth",Level=20,id=3565,StackCount=1,Rarity=2,MinLevel=0,SellPrice=280,Texture=132939,Type="Armor",Link="|cff1eff00|Hitem:3565::::::::40:::::::|h[Beerstained Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Brilliant Sword of Zealotry"]={SubType="Quest",Level=1,id=22228,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135271,Link="|cffffffff|Hitem:22228::::::::40:::::::|h[Brilliant Sword of Zealotry]|h|r",EquipLoc="",Type="Quest"},["Keeper's Cloak"]={SubType="Cloth",Level=48,id=14665,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6214,Texture=133769,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14665::::::::40:::::::|h[Keeper's Cloak]|h|r"},["Armor Scraps"]={SubType="Quest",Level=1,id=17422,StackCount=100,Rarity=1,MinLevel=0,SellPrice=2,Texture=135050,EquipLoc="",Link="|cffffffff|Hitem:17422::::::::40:::::::|h[Armor Scraps]|h|r",Type="Quest"},["Heavy Scorpid Gauntlet"]={SubType="Mail",Level=55,id=15078,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9649,Texture=132958,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15078::::::::40:::::::|h[Heavy Scorpid Gauntlet]|h|r",Type="Armor"},["Beaded Cuffs"]={SubType="Cloth",Level=8,id=14087,StackCount=1,Rarity=1,MinLevel=3,SellPrice=16,Texture=132611,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:14087::::::::40:::::::|h[Beaded Cuffs]|h|r"},["Deprecated Obsidian Stone"]={SubType="Quest",Level=1,id=3338,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135231,Type="Quest",Link="|cffffffff|Hitem:3338::::::::40:::::::|h[Deprecated Obsidian Stone]|h|r",EquipLoc=""},["Sayge's Fortune #6"]={SubType="Junk",Level=1,id=19241,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19241::::::::40:::::::|h[Sayge's Fortune #6]|h|r",EquipLoc="",Type="Miscellaneous"},["Drake Talon Cleaver"]={SubType="Two-Handed Axes",Level=75,id=19353,StackCount=1,Rarity=4,MinLevel=60,SellPrice=180812,Texture=132401,Link="|cffa335ee|Hitem:19353::::::::40:::::::|h[Drake Talon Cleaver]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["[PH] Cloth Bracers of the Brilliant Dawn"]={SubType="Cloth",Level=100,id=13738,StackCount=1,Rarity=1,MinLevel=100,SellPrice=34233,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:13738::::::::40:::::::|h[[PH] Cloth Bracers of the Brilliant Dawn]|h|r"},["Vestments of the Oracle"]={SubType="Cloth",Level=88,id=21351,StackCount=1,Rarity=4,MinLevel=60,SellPrice=100253,Texture=132651,Link="|cffa335ee|Hitem:21351::::::::40:::::::|h[Vestments of the Oracle]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Elder Raptor Feathers"]={SubType="Junk",Level=1,id=20015,StackCount=10,Rarity=0,MinLevel=0,SellPrice=1658,Texture=132914,Link="|cff9d9d9d|Hitem:20015::::::::40:::::::|h[Elder Raptor Feathers]|h|r",EquipLoc="",Type="Miscellaneous"},["Red Rocket Cluster"]={SubType="Consumable",Level=1,id=21576,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=134291,Link="|cffffffff|Hitem:21576::::::::40:::::::|h[Red Rocket Cluster]|h|r",EquipLoc="",Type="Consumable"},["Ebonhold Girdle"]={SubType="Mail",Level=54,id=8268,StackCount=1,Rarity=2,MinLevel=49,SellPrice=8960,Texture=132515,Link="|cff1eff00|Hitem:8268::::::::40:::::::|h[Ebonhold Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Test Shadow Resist Leather LockBox"]={SubType="Junk",Level=1,id=16182,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16182::::::::40:::::::|h[Test Shadow Resist Leather LockBox]|h|r",Type="Miscellaneous"},["Fel Orb"]={SubType="Quest",Level=1,id=10831,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134334,EquipLoc="",Link="|cffffffff|Hitem:10831::::::::40:::::::|h[Fel Orb]|h|r",Type="Quest"},["Milly's Harvest"]={SubType="Quest",Level=0,id=11119,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134014,Type="Quest",Link="|cffffffff|Hitem:11119::::::::40:::::::|h[Milly's Harvest]|h|r",EquipLoc=""},["Royal Sash"]={SubType="Cloth",Level=44,id=9906,StackCount=1,Rarity=2,MinLevel=39,SellPrice=3043,Texture=132499,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9906::::::::40:::::::|h[Royal Sash]|h|r"},["Scarab Trousers"]={SubType="Cloth",Level=20,id=6659,StackCount=1,Rarity=2,MinLevel=0,SellPrice=541,Texture=134586,Type="Armor",Link="|cff1eff00|Hitem:6659::::::::40:::::::|h[Scarab Trousers]|h|r",EquipLoc="INVTYPE_LEGS"},["Shadra's Venom"]={SubType="Quest",Level=1,id=9324,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134858,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9324::::::::40:::::::|h[Shadra's Venom]|h|r"},["Tablet of Flame Shock II"]={SubType="Book",Level=18,id=9054,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=134459,Link="|cffffffff|Hitem:9054::::::::40:::::::|h[Tablet of Flame Shock II]|h|r",EquipLoc="",Type="Recipe"},["Ring of the Desert Winds"]={SubType="Miscellaneous",Level=73,id=21483,StackCount=1,Rarity=3,MinLevel=60,SellPrice=75303,Texture=133427,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:21483::::::::40:::::::|h[Ring of the Desert Winds]|h|r"},["Runic Leather Shoulders"]={SubType="Leather",Level=62,id=15096,StackCount=1,Rarity=2,MinLevel=57,SellPrice=17332,Texture=135046,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15096::::::::40:::::::|h[Runic Leather Shoulders]|h|r",Type="Armor"},["Kim'Jael's Wizzlegoober"]={SubType="Quest",Level=1,id=10718,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132997,EquipLoc="",Link="|cffffffff|Hitem:10718::::::::40:::::::|h[Kim'Jael's Wizzlegoober]|h|r",Type="Quest"},["Dark Espadon"]={SubType="Two-Handed Swords",Level=54,id=15254,StackCount=1,Rarity=2,MinLevel=49,SellPrice=35584,Texture=135327,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15254::::::::40:::::::|h[Dark Espadon]|h|r",Type="Weapon"},["Atal'ai Girdle"]={SubType="Plate",Level=52,id=10788,StackCount=1,Rarity=2,MinLevel=47,SellPrice=5338,Texture=132504,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10788::::::::40:::::::|h[Atal'ai Girdle]|h|r",Type="Armor"},["Tome of Sleep IV"]={SubType="Book",Level=60,id=8893,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133739,Link="|cffffffff|Hitem:8893::::::::40:::::::|h[Tome of Sleep IV]|h|r",EquipLoc="",Type="Recipe"},["Tome of Frost Shield III"]={SubType="Book",Level=34,id=4149,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3000,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:4149::::::::40:::::::|h[Tome of Frost Shield III]|h|r",EquipLoc=""},["Ruffled Chaplet"]={SubType="Leather",Level=31,id=5753,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1884,Texture=133072,Link="|cff1eff00|Hitem:5753::::::::40:::::::|h[Ruffled Chaplet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Long Redwood Bow"]={SubType="Bows",Level=35,id=15286,StackCount=1,Rarity=2,MinLevel=30,SellPrice=5568,Texture=135498,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:15286::::::::40:::::::|h[Long Redwood Bow]|h|r",Type="Weapon"},["Stormcloth Shoulders"]={SubType="Cloth",Level=49,id=10038,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6620,Texture=135056,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10038::::::::40:::::::|h[Stormcloth Shoulders]|h|r",Type="Armor"},["Monster - Shield, Large Wooden"]={SubType="Shields",Level=1,id=1985,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134950,EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:1985::::::::40:::::::|h[Monster - Shield, Large Wooden]|h|r",Type="Armor"},["Necropile Leggings"]={SubType="Cloth",Level=61,id=14632,StackCount=1,Rarity=3,MinLevel=56,SellPrice=21746,Texture=134588,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:14632::::::::40:::::::|h[Necropile Leggings]|h|r"},["Cured Leather Bracers"]={SubType="Leather",Level=22,id=1850,StackCount=1,Rarity=1,MinLevel=17,SellPrice=278,Texture=132603,Type="Armor",Link="|cffffffff|Hitem:1850::::::::40:::::::|h[Cured Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Belt of the Dark Bog"]={SubType="Cloth",Level=71,id=20625,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22879,Texture=132504,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:20625::::::::40:::::::|h[Belt of the Dark Bog]|h|r"},["Traveler's Bracers"]={SubType="Leather",Level=56,id=8295,StackCount=1,Rarity=2,MinLevel=51,SellPrice=7988,Texture=132602,Link="|cff1eff00|Hitem:8295::::::::40:::::::|h[Traveler's Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Formula: Enchant Bracer - Mana Regeneration"]={SubType="Enchanting",Level=58,id=19446,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7500,Texture=134327,Link="|cffffffff|Hitem:19446::::::::40:::::::|h[Formula: Enchant Bracer - Mana Regeneration]|h|r",EquipLoc="",Type="Recipe"},["Goodsteel Ledger"]={SubType="Quest",Level=1,id=11727,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,Type="Quest",Link="|cffffffff|Hitem:11727::::::::40:::::::|h[Goodsteel Ledger]|h|r",EquipLoc=""},["Cortello's Riddle"]={SubType="Quest",Level=35,id=4056,StackCount=1,Rarity=1,MinLevel=35,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:4056::::::::40:::::::|h[Cortello's Riddle]|h|r",EquipLoc="",Type="Quest"},["Belt of Valor"]={SubType="Plate",Level=58,id=16736,StackCount=1,Rarity=3,MinLevel=53,SellPrice=9295,Texture=132523,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16736::::::::40:::::::|h[Belt of Valor]|h|r",Type="Armor"},["A Stack of Letters"]={SubType="Quest",Level=1,id=2187,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133459,EquipLoc="",Link="|cffffffff|Hitem:2187::::::::40:::::::|h[A Stack of Letters]|h|r",Type="Quest"},["Dire Wand"]={SubType="Wands",Level=26,id=8186,StackCount=1,Rarity=2,MinLevel=21,SellPrice=2231,Texture=135468,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:8186::::::::40:::::::|h[Dire Wand]|h|r"},["Deathclasp's Pincer"]={SubType="Quest",Level=0,id=20385,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133708,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:20385::::::::40:::::::|h[Deathclasp's Pincer]|h|r"},["Mantle of the Desert Crusade"]={SubType="Plate",Level=76,id=21683,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45100,Texture=135060,Link="|cffa335ee|Hitem:21683::::::::40:::::::|h[Mantle of the Desert Crusade]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Viny Wrappings"]={SubType="Cloth",Level=7,id=2571,StackCount=1,Rarity=1,MinLevel=0,SellPrice=16,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:2571::::::::40:::::::|h[Viny Wrappings]|h|r"},["Mug O' Hurt"]={SubType="One-Handed Maces",Level=46,id=4090,StackCount=1,Rarity=3,MinLevel=41,SellPrice=20736,Texture=132790,Link="|cff0070dd|Hitem:4090::::::::40:::::::|h[Mug O' Hurt]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Zandalar Haruspex's Tunic"]={SubType="Leather",Level=65,id=19838,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132721,Link="|cffa335ee|Hitem:19838::::::::40:::::::|h[Zandalar Haruspex's Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Tome of Khadgar's Unlocking"]={SubType="Book",Level=18,id=985,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:985::::::::40:::::::|h[Tome of Khadgar's Unlocking]|h|r",Type="Recipe"},["Fire Wand"]={SubType="Wands",Level=12,id=5069,StackCount=1,Rarity=2,MinLevel=7,SellPrice=293,Texture=135139,Link="|cff1eff00|Hitem:5069::::::::40:::::::|h[Fire Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Lawbringer Belt"]={SubType="Plate",Level=66,id=16858,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17119,Texture=132516,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16858::::::::40:::::::|h[Lawbringer Belt]|h|r",Type="Armor"},["Rune of Teleportation"]={SubType="Reagent",Level=20,id=17031,StackCount=10,Rarity=1,MinLevel=0,SellPrice=250,Texture=134419,EquipLoc="",Link="|cffffffff|Hitem:17031::::::::40:::::::|h[Rune of Teleportation]|h|r",Type="Reagent"},["Mandokir's Sting DEPRECATED"]={SubType="Bows",Level=66,id=19868,StackCount=1,Rarity=4,MinLevel=60,SellPrice=65739,Texture=135461,Link="|cffa335ee|Hitem:19868::::::::40:::::::|h[Mandokir's Sting DEPRECATED]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Flimsy Chain Gloves"]={SubType="Mail",Level=4,id=2653,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=132938,Type="Armor",Link="|cff9d9d9d|Hitem:2653::::::::40:::::::|h[Flimsy Chain Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Monster - Dagger Badass"]={SubType="Daggers",Level=1,id=2711,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135638,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2711::::::::40:::::::|h[Monster - Dagger Badass]|h|r"},["Dreadnaught Breastplate"]={SubType="Plate",Level=92,id=22416,StackCount=1,Rarity=4,MinLevel=60,SellPrice=128887,Texture=132737,Link="|cffa335ee|Hitem:22416::::::::40:::::::|h[Dreadnaught Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Skul's Cold Embrace"]={SubType="Plate",Level=59,id=13394,StackCount=1,Rarity=3,MinLevel=54,SellPrice=18176,Texture=132637,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:13394::::::::40:::::::|h[Skul's Cold Embrace]|h|r"},["Large Metal Shield"]={SubType="Shields",Level=22,id=2445,StackCount=1,Rarity=1,MinLevel=17,SellPrice=686,Texture=134949,Link="|cffffffff|Hitem:2445::::::::40:::::::|h[Large Metal Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Linen Boots"]={SubType="Cloth",Level=13,id=2569,StackCount=1,Rarity=1,MinLevel=8,SellPrice=87,Texture=132543,Type="Armor",Link="|cffffffff|Hitem:2569::::::::40:::::::|h[Linen Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Patchwork Pants"]={SubType="Cloth",Level=8,id=1431,StackCount=1,Rarity=0,MinLevel=3,SellPrice=20,Texture=134591,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:1431::::::::40:::::::|h[Patchwork Pants]|h|r"},["Bloodfury Ripper's Remains"]={SubType="Quest",Level=1,id=16190,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,EquipLoc="",Link="|cffffffff|Hitem:16190::::::::40:::::::|h[Bloodfury Ripper's Remains]|h|r",Type="Quest"},["Band of the Hierophant"]={SubType="Miscellaneous",Level=60,id=13096,StackCount=1,Rarity=3,MinLevel=55,SellPrice=7913,Texture=133359,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:13096::::::::40:::::::|h[Band of the Hierophant]|h|r"},["Foreman Belt"]={SubType="Cloth",Level=15,id=3217,StackCount=1,Rarity=2,MinLevel=0,SellPrice=134,Texture=132512,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:3217::::::::40:::::::|h[Foreman Belt]|h|r"},["Monster - Sword2H, Horde Broad"]={SubType="Two-Handed Swords",Level=1,id=11322,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",Link="|cff9d9d9d|Hitem:11322::::::::40:::::::|h[Monster - Sword2H, Horde Broad]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Grizzled Scalp"]={SubType="Quest",Level=1,id=5414,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134359,EquipLoc="",Link="|cffffffff|Hitem:5414::::::::40:::::::|h[Grizzled Scalp]|h|r",Type="Quest"},["Fathom Core"]={SubType="Quest",Level=1,id=16762,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134462,EquipLoc="",Link="|cffffffff|Hitem:16762::::::::40:::::::|h[Fathom Core]|h|r",Type="Quest"},["Grimoire of Create Bloodstone II"]={SubType="Book",Level=24,id=9207,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133738,Link="|cffffffff|Hitem:9207::::::::40:::::::|h[Grimoire of Create Bloodstone II]|h|r",EquipLoc="",Type="Recipe"},["Helm of Exile"]={SubType="Mail",Level=55,id=11124,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16980,Texture=133123,Type="Armor",Link="|cff0070dd|Hitem:11124::::::::40:::::::|h[Helm of Exile]|h|r",EquipLoc="INVTYPE_HEAD"},["Anubisath Warhammer"]={SubType="One-Handed Maces",Level=71,id=21837,StackCount=1,Rarity=4,MinLevel=60,SellPrice=118175,Texture=133048,Link="|cffa335ee|Hitem:21837::::::::40:::::::|h[Anubisath Warhammer]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Hook of the Master Angler"]={SubType="Miscellaneous",Level=65,id=19979,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25000,Texture=136245,Link="|cff0070dd|Hitem:19979::::::::40:::::::|h[Hook of the Master Angler]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Molasses Firewater"]={SubType="Consumable",Level=1,id=18288,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=132621,Type="Consumable",Link="|cffffffff|Hitem:18288::::::::40:::::::|h[Molasses Firewater]|h|r",EquipLoc=""},["Guardian Cloak"]={SubType="Cloth",Level=37,id=5965,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2536,Texture=133755,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:5965::::::::40:::::::|h[Guardian Cloak]|h|r",Type="Armor"},["Grimoire of Create Lesser Bloodstone"]={SubType="Book",Level=14,id=4210,StackCount=1,Rarity=1,MinLevel=14,SellPrice=325,Texture=133738,Link="|cffffffff|Hitem:4210::::::::40:::::::|h[Grimoire of Create Lesser Bloodstone]|h|r",EquipLoc="",Type="Recipe"},["Repairman's Cape"]={SubType="Cloth",Level=30,id=9605,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1356,Texture=133758,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9605::::::::40:::::::|h[Repairman's Cape]|h|r"},["Scroll of Strength IV"]={SubType="Consumable",Level=65,id=10310,StackCount=5,Rarity=1,MinLevel=55,SellPrice=125,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:10310::::::::40:::::::|h[Scroll of Strength IV]|h|r",Type="Consumable"},["Magician's Mantle"]={SubType="Cloth",Level=25,id=12998,StackCount=1,Rarity=3,MinLevel=20,SellPrice=1020,Texture=135044,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:12998::::::::40:::::::|h[Magician's Mantle]|h|r"},["Deprecated Amulet of the Pinto"]={SubType="Miscellaneous",Level=45,id=1123,StackCount=1,Rarity=1,MinLevel=40,SellPrice=25000,Texture=133279,EquipLoc="INVTYPE_NECK",Link="|cffffffff|Hitem:1123::::::::40:::::::|h[Deprecated Amulet of the Pinto]|h|r",Type="Armor"},["Bottom Half of Advanced Armorsmithing: Volume III"]={SubType="Quest",Level=60,id=18783,StackCount=1,Rarity=3,MinLevel=50,SellPrice=0,Texture=134330,Type="Quest",Link="|cff0070dd|Hitem:18783::::::::40:::::::|h[Bottom Half of Advanced Armorsmithing: Volume III]|h|r",EquipLoc=""},["Staff of Prehistoria"]={SubType="Quest",Level=1,id=7733,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135138,Link="|cffffffff|Hitem:7733::::::::40:::::::|h[Staff of Prehistoria]|h|r",EquipLoc="",Type="Quest"},["Yellow Hakkari Bijou"]={SubType="Quest",Level=61,id=19709,StackCount=250,Rarity=3,MinLevel=58,SellPrice=0,Texture=132534,Link="|cff0070dd|Hitem:19709::::::::40:::::::|h[Yellow Hakkari Bijou]|h|r",EquipLoc="",Type="Quest"},["Head of VanCleef"]={SubType="Quest",Level=1,id=3637,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Type="Quest",Link="|cffffffff|Hitem:3637::::::::40:::::::|h[Head of VanCleef]|h|r",EquipLoc=""},["Plans: Green Iron Shoulders"]={SubType="Blacksmithing",Level=32,id=3870,StackCount=1,Rarity=2,MinLevel=0,SellPrice=750,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:3870::::::::40:::::::|h[Plans: Green Iron Shoulders]|h|r",EquipLoc=""},["Level 65 Test Gear Plate - Paladin 2"]={SubType="Junk",Level=1,id=17860,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17860::::::::40:::::::|h[Level 65 Test Gear Plate - Paladin 2]|h|r",Type="Miscellaneous"},["Thuzadin Sash"]={SubType="Cloth",Level=61,id=18740,StackCount=1,Rarity=3,MinLevel=56,SellPrice=10101,Texture=132502,Type="Armor",Link="|cff0070dd|Hitem:18740::::::::40:::::::|h[Thuzadin Sash]|h|r",EquipLoc="INVTYPE_WAIST"},["[PH] Leather Chestguard of the Brilliant Dawn"]={SubType="Leather",Level=100,id=13765,StackCount=1,Rarity=1,MinLevel=100,SellPrice=90136,Texture=132722,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13765::::::::40:::::::|h[[PH] Leather Chestguard of the Brilliant Dawn]|h|r"},["Test Arcane Resist Leather LockBox"]={SubType="Junk",Level=1,id=16187,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16187::::::::40:::::::|h[Test Arcane Resist Leather LockBox]|h|r",Type="Miscellaneous"},["Gray Fur Booties"]={SubType="Leather",Level=9,id=3321,StackCount=1,Rarity=1,MinLevel=4,SellPrice=41,Texture=132539,Link="|cffffffff|Hitem:3321::::::::40:::::::|h[Gray Fur Booties]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Tiny Copper Key"]={SubType="Reagent",Level=42,id=8147,StackCount=10,Rarity=1,MinLevel=0,SellPrice=100,Texture=134246,Link="|cffffffff|Hitem:8147::::::::40:::::::|h[Tiny Copper Key]|h|r",EquipLoc="",Type="Reagent"},["Battle Chain Cloak"]={SubType="Cloth",Level=9,id=4668,StackCount=1,Rarity=1,MinLevel=4,SellPrice=32,Texture=133771,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:4668::::::::40:::::::|h[Battle Chain Cloak]|h|r",Type="Armor"},["Fiery Festival Brew"]={SubType="Consumable",Level=0,id=23246,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135262,Link="|cffffffff|Hitem:23246::::::::40:::::::|h[Fiery Festival Brew]|h|r",EquipLoc="",Type="Consumable"},["Bind On Acquire Test Item"]={SubType="Miscellaneous",Level=40,id=8688,StackCount=1,Rarity=0,MinLevel=35,SellPrice=1087,Texture=135279,Link="|cff9d9d9d|Hitem:8688::::::::40:::::::|h[Bind On Acquire Test Item]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Rageclaw Boots"]={SubType="Leather",Level=48,id=15379,StackCount=1,Rarity=2,MinLevel=43,SellPrice=7654,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15379::::::::40:::::::|h[Rageclaw Boots]|h|r",Type="Armor"},["Dargol's Skull"]={SubType="Quest",Level=1,id=3082,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,EquipLoc="",Link="|cffffffff|Hitem:3082::::::::40:::::::|h[Dargol's Skull]|h|r",Type="Quest"},["Hawkeye's Breeches"]={SubType="Leather",Level=38,id=14595,StackCount=1,Rarity=2,MinLevel=33,SellPrice=4500,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14595::::::::40:::::::|h[Hawkeye's Breeches]|h|r"},["Purified Kor Gem"]={SubType="Quest",Level=1,id=7083,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134132,Link="|cffffffff|Hitem:7083::::::::40:::::::|h[Purified Kor Gem]|h|r",EquipLoc="",Type="Quest"},["Ornate Circlet"]={SubType="Mail",Level=57,id=10123,StackCount=1,Rarity=2,MinLevel=52,SellPrice=15239,Texture=132768,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10123::::::::40:::::::|h[Ornate Circlet]|h|r",Type="Armor"},["Trapper's Shirt"]={SubType="Miscellaneous",Level=1,id=127,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135011,Type="Armor",Link="|cffffffff|Hitem:127::::::::40:::::::|h[Trapper's Shirt]|h|r",EquipLoc="INVTYPE_BODY"},["Knight-Captain's Leather Bracers"]={SubType="Leather",Level=60,id=16394,StackCount=1,Rarity=3,MinLevel=55,SellPrice=6171,Texture=132601,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16394::::::::40:::::::|h[Knight-Captain's Leather Bracers]|h|r",Type="Armor"},["Monster - Item, Flower - Yellow"]={SubType="Miscellaneous",Level=1,id=2707,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133938,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2707::::::::40:::::::|h[Monster - Item, Flower - Yellow]|h|r"},["Vigilance Charm"]={SubType="Miscellaneous",Level=62,id=18370,StackCount=1,Rarity=3,MinLevel=57,SellPrice=21612,Texture=134458,Type="Armor",Link="|cff0070dd|Hitem:18370::::::::40:::::::|h[Vigilance Charm]|h|r",EquipLoc="INVTYPE_TRINKET"},["90 Epic Warrior Legplates"]={SubType="Plate",Level=90,id=20139,StackCount=1,Rarity=4,MinLevel=60,SellPrice=115150,Texture=134584,Link="|cffa335ee|Hitem:20139::::::::40:::::::|h[90 Epic Warrior Legplates]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Heaven Peach"]={SubType="Consumable",Level=45,id=16168,StackCount=20,Rarity=1,MinLevel=35,SellPrice=100,Texture=133998,EquipLoc="",Link="|cffffffff|Hitem:16168::::::::40:::::::|h[Heaven Peach]|h|r",Type="Consumable"},["Elder's Hat"]={SubType="Cloth",Level=34,id=7357,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1875,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7357::::::::40:::::::|h[Elder's Hat]|h|r",Type="Armor"},["Rendered Spores"]={SubType="Quest",Level=1,id=5027,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133640,Link="|cffffffff|Hitem:5027::::::::40:::::::|h[Rendered Spores]|h|r",EquipLoc="",Type="Quest"},["Bloody Bone Necklace"]={SubType="Quest",Level=1,id=3915,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133724,Link="|cffffffff|Hitem:3915::::::::40:::::::|h[Bloody Bone Necklace]|h|r",EquipLoc="",Type="Quest"},["Formidable Belt"]={SubType="Mail",Level=49,id=15636,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6333,Texture=132524,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15636::::::::40:::::::|h[Formidable Belt]|h|r",Type="Armor"},["Bloodfang Gloves"]={SubType="Leather",Level=76,id=16907,StackCount=1,Rarity=4,MinLevel=60,SellPrice=37004,Texture=132955,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16907::::::::40:::::::|h[Bloodfang Gloves]|h|r",Type="Armor"},["Darksoul Leggings"]={SubType="Plate",Level=65,id=19694,StackCount=1,Rarity=3,MinLevel=60,SellPrice=24286,Texture=134697,Link="|cff0070dd|Hitem:19694::::::::40:::::::|h[Darksoul Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["The Collector's Ring"]={SubType="Quest",Level=1,id=2239,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133345,Link="|cffffffff|Hitem:2239::::::::40:::::::|h[The Collector's Ring]|h|r",EquipLoc="",Type="Quest"},["Undamaged Venom Sac"]={SubType="Quest",Level=1,id=9322,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,Link="|cffffffff|Hitem:9322::::::::40:::::::|h[Undamaged Venom Sac]|h|r",EquipLoc="",Type="Quest"},["Tome of the Lost"]={SubType="Miscellaneous",Level=63,id=22253,StackCount=1,Rarity=3,MinLevel=58,SellPrice=34450,Texture=133738,Link="|cff0070dd|Hitem:22253::::::::40:::::::|h[Tome of the Lost]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Ambercorn"]={SubType="Quest",Level=1,id=4809,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133944,Type="Quest",Link="|cffffffff|Hitem:4809::::::::40:::::::|h[Ambercorn]|h|r",EquipLoc=""},["Trickster's Cloak"]={SubType="Cloth",Level=36,id=15364,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2431,Texture=133768,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15364::::::::40:::::::|h[Trickster's Cloak]|h|r",Type="Armor"},["Pattern: Red Mageweave Gloves"]={SubType="Tailoring",Level=45,id=10312,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10312::::::::40:::::::|h[Pattern: Red Mageweave Gloves]|h|r",Type="Recipe"},["Stylish Blue Shirt"]={SubType="Miscellaneous",Level=25,id=6384,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=135023,Type="Armor",Link="|cffffffff|Hitem:6384::::::::40:::::::|h[Stylish Blue Shirt]|h|r",EquipLoc="INVTYPE_BODY"},["Combustible Wand"]={SubType="Wands",Level=34,id=5236,StackCount=1,Rarity=1,MinLevel=29,SellPrice=2878,Texture=135468,Link="|cffffffff|Hitem:5236::::::::40:::::::|h[Combustible Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Rumsey Rum"]={SubType="Consumable",Level=1,id=17048,StackCount=10,Rarity=1,MinLevel=0,SellPrice=400,Texture=132790,EquipLoc="",Link="|cffffffff|Hitem:17048::::::::40:::::::|h[Rumsey Rum]|h|r",Type="Consumable"},["Schematic: Master Engineer's Goggles"]={SubType="Engineering",Level=58,id=16053,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:16053::::::::40:::::::|h[Schematic: Master Engineer's Goggles]|h|r",Type="Recipe"},["Autographed Picture of Foror & Tigule"]={SubType="Junk",Level=1,id=18228,StackCount=1,Rarity=0,MinLevel=0,SellPrice=2500,Texture=134946,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18228::::::::40:::::::|h[Autographed Picture of Foror & Tigule]|h|r",EquipLoc=""},["Impervious Giant"]={SubType="Two-Handed Maces",Level=57,id=11921,StackCount=1,Rarity=3,MinLevel=52,SellPrice=54167,Texture=133045,Type="Weapon",Link="|cff0070dd|Hitem:11921::::::::40:::::::|h[Impervious Giant]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Life Channeling Necklace"]={SubType="Miscellaneous",Level=92,id=23058,StackCount=1,Rarity=4,MinLevel=60,SellPrice=88355,Texture=133321,Link="|cffa335ee|Hitem:23058::::::::40:::::::|h[Life Channeling Necklace]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Night Watch Pantaloons"]={SubType="Cloth",Level=33,id=2954,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2485,Texture=134588,Link="|cff1eff00|Hitem:2954::::::::40:::::::|h[Night Watch Pantaloons]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Sceptre of Smiting"]={SubType="One-Handed Maces",Level=65,id=19908,StackCount=1,Rarity=3,MinLevel=60,SellPrice=62589,Texture=133483,Link="|cff0070dd|Hitem:19908::::::::40:::::::|h[Sceptre of Smiting]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Rageclaw Leggings"]={SubType="Leather",Level=49,id=15385,StackCount=1,Rarity=2,MinLevel=44,SellPrice=11449,Texture=134592,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15385::::::::40:::::::|h[Rageclaw Leggings]|h|r",Type="Armor"},["Mug of Shimmer Stout"]={SubType="Consumable",Level=15,id=3087,StackCount=10,Rarity=1,MinLevel=0,SellPrice=11,Texture=132792,Link="|cffffffff|Hitem:3087::::::::40:::::::|h[Mug of Shimmer Stout]|h|r",EquipLoc="",Type="Consumable"},["Viscous Hammer"]={SubType="Two-Handed Maces",Level=35,id=13045,StackCount=1,Rarity=3,MinLevel=30,SellPrice=10809,Texture=133488,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13045::::::::40:::::::|h[Viscous Hammer]|h|r"},["Recipe: Rage Potion"]={SubType="Alchemy",Level=14,id=5640,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:5640::::::::40:::::::|h[Recipe: Rage Potion]|h|r",Type="Recipe"},["War Torn Bands"]={SubType="Mail",Level=11,id=15482,StackCount=1,Rarity=1,MinLevel=6,SellPrice=54,Texture=132607,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:15482::::::::40:::::::|h[War Torn Bands]|h|r",Type="Armor"},["Vanadium Loop"]={SubType="Miscellaneous",Level=51,id=11989,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7471,Texture=133350,Type="Armor",Link="|cff1eff00|Hitem:11989::::::::40:::::::|h[Vanadium Loop]|h|r",EquipLoc="INVTYPE_FINGER"},["Jadescale Breastplate"]={SubType="Mail",Level=59,id=15827,StackCount=1,Rarity=2,MinLevel=0,SellPrice=22592,Texture=132626,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15827::::::::40:::::::|h[Jadescale Breastplate]|h|r",Type="Armor"},["Shivery Handwraps"]={SubType="Cloth",Level=62,id=18693,StackCount=1,Rarity=3,MinLevel=57,SellPrice=11425,Texture=132950,Type="Armor",Link="|cff0070dd|Hitem:18693::::::::40:::::::|h[Shivery Handwraps]|h|r",EquipLoc="INVTYPE_HAND"},["Tin Bar"]={SubType="Trade Goods",Level=20,id=3576,StackCount=20,Rarity=1,MinLevel=0,SellPrice=35,Texture=133219,Link="|cffffffff|Hitem:3576::::::::40:::::::|h[Tin Bar]|h|r",EquipLoc="",Type="Trade Goods"},["Shadowcraft Spaulders"]={SubType="Leather",Level=60,id=16708,StackCount=1,Rarity=3,MinLevel=55,SellPrice=18175,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16708::::::::40:::::::|h[Shadowcraft Spaulders]|h|r",Type="Armor"},["Tome of Conjure Water VI"]={SubType="Book",Level=50,id=8868,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133739,Link="|cffffffff|Hitem:8868::::::::40:::::::|h[Tome of Conjure Water VI]|h|r",EquipLoc="",Type="Recipe"},["Monster - Staff, Pointed Red Crystal"]={SubType="Staves",Level=1,id=13078,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13078::::::::40:::::::|h[Monster - Staff, Pointed Red Crystal]|h|r"},["Pattern: Phoenix Gloves"]={SubType="Tailoring",Level=25,id=4348,StackCount=1,Rarity=2,MinLevel=0,SellPrice=175,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:4348::::::::40:::::::|h[Pattern: Phoenix Gloves]|h|r",Type="Recipe"},["Deprecated Summon Winter Wolf (Mount)"]={SubType="Junk",Level=1,id=1042,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134938,Type="Miscellaneous",Link="|cffffffff|Hitem:1042::::::::40:::::::|h[Deprecated Summon Winter Wolf (Mount)]|h|r",EquipLoc=""},["Staff of Dominance"]={SubType="Staves",Level=70,id=18842,StackCount=1,Rarity=4,MinLevel=60,SellPrice=138646,Texture=135150,Type="Weapon",Link="|cffa335ee|Hitem:18842::::::::40:::::::|h[Staff of Dominance]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Swiftdart Battleboots"]={SubType="Mail",Level=58,id=13284,StackCount=1,Rarity=3,MinLevel=53,SellPrice=19785,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13284::::::::40:::::::|h[Swiftdart Battleboots]|h|r"},["Scalemail Bracers"]={SubType="Mail",Level=22,id=1852,StackCount=1,Rarity=1,MinLevel=17,SellPrice=336,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:1852::::::::40:::::::|h[Scalemail Bracers]|h|r",Type="Armor"},["Long Tail Feather"]={SubType="Reagent",Level=1,id=5116,StackCount=10,Rarity=1,MinLevel=0,SellPrice=303,Texture=132916,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:5116::::::::40:::::::|h[Long Tail Feather]|h|r"},["Thistlefur Pants"]={SubType="Cloth",Level=35,id=14203,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2754,Texture=134592,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14203::::::::40:::::::|h[Thistlefur Pants]|h|r"},["Bracers of Qiraji Command"]={SubType="Cloth",Level=71,id=21496,StackCount=1,Rarity=3,MinLevel=60,SellPrice=17600,Texture=132612,Link="|cff0070dd|Hitem:21496::::::::40:::::::|h[Bracers of Qiraji Command]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Runic Leather Belt"]={SubType="Leather",Level=56,id=15093,StackCount=1,Rarity=2,MinLevel=51,SellPrice=8368,Texture=132512,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15093::::::::40:::::::|h[Runic Leather Belt]|h|r",Type="Armor"},["Sequoia Hammer"]={SubType="One-Handed Maces",Level=33,id=15225,StackCount=1,Rarity=2,MinLevel=28,SellPrice=5958,Texture=133045,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:15225::::::::40:::::::|h[Sequoia Hammer]|h|r",Type="Weapon"},["Stormcaller's Diadem"]={SubType="Mail",Level=81,id=21372,StackCount=1,Rarity=4,MinLevel=60,SellPrice=80445,Texture=133175,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:21372::::::::40:::::::|h[Stormcaller's Diadem]|h|r"},["Overlord's Crown"]={SubType="Plate",Level=49,id=10207,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6695,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10207::::::::40:::::::|h[Overlord's Crown]|h|r",Type="Armor"},["Imprisoned Felhound Spirit"]={SubType="Quest",Level=1,id=12648,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134128,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12648::::::::40:::::::|h[Imprisoned Felhound Spirit]|h|r"},["Wicked Throwing Dagger"]={SubType="Thrown",Level=40,id=15327,StackCount=200,Rarity=1,MinLevel=35,SellPrice=1,Texture=135427,EquipLoc="INVTYPE_THROWN",Link="|cffffffff|Hitem:15327::::::::40:::::::|h[Wicked Throwing Dagger]|h|r",Type="Weapon"},["High Councillor's Tunic"]={SubType="Cloth",Level=64,id=10135,StackCount=1,Rarity=2,MinLevel=59,SellPrice=20663,Texture=135021,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10135::::::::40:::::::|h[High Councillor's Tunic]|h|r",Type="Armor"},["Pattern: Runecloth Robe"]={SubType="Tailoring",Level=52,id=14469,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:14469::::::::40:::::::|h[Pattern: Runecloth Robe]|h|r"},["Libram: Holy Strike II"]={SubType="Book",Level=8,id=8909,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=133740,Link="|cffffffff|Hitem:8909::::::::40:::::::|h[Libram: Holy Strike II]|h|r",EquipLoc="",Type="Recipe"},["Driftmire Shield"]={SubType="Shields",Level=27,id=16660,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2200,Texture=134962,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:16660::::::::40:::::::|h[Driftmire Shield]|h|r",Type="Armor"},["Mithril Mechanical Dragonling"]={SubType="Devices",Level=50,id=10576,StackCount=1,Rarity=1,MinLevel=40,SellPrice=6000,Texture=134153,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:10576::::::::40:::::::|h[Mithril Mechanical Dragonling]|h|r",Type="Trade Goods"},["QAEnchant Gloves +5 Fishing"]={SubType="Consumable",Level=45,id=23727,StackCount=1,Rarity=1,MinLevel=0,SellPrice=650,Texture=133434,Link="|cffffffff|Hitem:23727::::::::40:::::::|h[QAEnchant Gloves +5 Fishing]|h|r",EquipLoc="",Type="Consumable"},["Thorium Shells"]={SubType="Bullet",Level=57,id=15997,StackCount=200,Rarity=2,MinLevel=52,SellPrice=10,Texture=132385,EquipLoc="INVTYPE_AMMO",Link="|cff1eff00|Hitem:15997::::::::40:::::::|h[Thorium Shells]|h|r",Type="Projectile"},["Recipe: Mithril Head Trout"]={SubType="Cooking",Level=30,id=17062,StackCount=1,Rarity=1,MinLevel=0,SellPrice=550,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:17062::::::::40:::::::|h[Recipe: Mithril Head Trout]|h|r",Type="Recipe"},["PVP Cloth Shoulder Horde"]={SubType="Plate",Level=60,id=16038,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7116,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:16038::::::::40:::::::|h[PVP Cloth Shoulder Horde]|h|r",Type="Armor"},["Runic Darkblade"]={SubType="Two-Handed Swords",Level=32,id=3822,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6481,Texture=135272,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3822::::::::40:::::::|h[Runic Darkblade]|h|r"},["Super Sticky Tar"]={SubType="Quest",Level=1,id=11834,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132386,Type="Quest",Link="|cffffffff|Hitem:11834::::::::40:::::::|h[Super Sticky Tar]|h|r",EquipLoc=""},["Swift Orange Raptor"]={SubType="Junk",Level=60,id=18790,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132253,Type="Miscellaneous",Link="|cffa335ee|Hitem:18790::::::::40:::::::|h[Swift Orange Raptor]|h|r",EquipLoc=""},["Wildheart Cowl"]={SubType="Leather",Level=62,id=16720,StackCount=1,Rarity=3,MinLevel=57,SellPrice=21490,Texture=133129,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16720::::::::40:::::::|h[Wildheart Cowl]|h|r",Type="Armor"},["Large Purple Rocket Cluster"]={SubType="Consumable",Level=1,id=21717,StackCount=20,Rarity=1,MinLevel=0,SellPrice=50,Texture=134278,Link="|cffffffff|Hitem:21717::::::::40:::::::|h[Large Purple Rocket Cluster]|h|r",EquipLoc="",Type="Consumable"},["Voodoo Feathers"]={SubType="Junk",Level=1,id=20609,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=135225,Link="|cffffffff|Hitem:20609::::::::40:::::::|h[Voodoo Feathers]|h|r",EquipLoc="",Type="Miscellaneous"},["Bag of Smorc Ingredients"]={SubType="Consumable",Level=1,id=23215,StackCount=20,Rarity=1,MinLevel=1,SellPrice=500,Texture=133642,Link="|cffffffff|Hitem:23215::::::::40:::::::|h[Bag of Smorc Ingredients]|h|r",EquipLoc="",Type="Consumable"},["Nocturnal Cloak"]={SubType="Cloth",Level=37,id=15153,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2626,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15153::::::::40:::::::|h[Nocturnal Cloak]|h|r",Type="Armor"},["OLDNoboru's Cudgel"]={SubType="Quest",Level=1,id=6090,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133485,Link="|cffffffff|Hitem:6090::::::::40:::::::|h[OLDNoboru's Cudgel]|h|r",EquipLoc="",Type="Quest"},["Red Traditional Hanbok"]={SubType="Miscellaneous",Level=20,id=13899,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3528,Texture=132665,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:13899::::::::40:::::::|h[Red Traditional Hanbok]|h|r"},["Spellbound Tome"]={SubType="Miscellaneous",Level=62,id=18695,StackCount=1,Rarity=3,MinLevel=57,SellPrice=34450,Texture=133738,Type="Armor",Link="|cff0070dd|Hitem:18695::::::::40:::::::|h[Spellbound Tome]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Lupine Mantle"]={SubType="Leather",Level=21,id=15019,StackCount=1,Rarity=1,MinLevel=16,SellPrice=366,Texture=135037,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:15019::::::::40:::::::|h[Lupine Mantle]|h|r",Type="Armor"},["Jeweled Pendant"]={SubType="Quest",Level=1,id=5942,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133278,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5942::::::::40:::::::|h[Jeweled Pendant]|h|r"},["Pattern: Hide of the Wild"]={SubType="Leatherworking",Level=62,id=18518,StackCount=1,Rarity=4,MinLevel=0,SellPrice=40000,Texture=134940,Type="Recipe",Link="|cffa335ee|Hitem:18518::::::::40:::::::|h[Pattern: Hide of the Wild]|h|r",EquipLoc=""},["Mithril Spurs"]={SubType="Trade Goods",Level=43,id=7969,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=132307,Link="|cff1eff00|Hitem:7969::::::::40:::::::|h[Mithril Spurs]|h|r",EquipLoc="",Type="Trade Goods"},["Heavy Leather Ammo Pouch"]={SubType="Ammo Pouch",Level=35,id=7372,StackCount=1,Rarity=2,MinLevel=30,SellPrice=500,Texture=133634,EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:7372::::::::40:::::::|h[Heavy Leather Ammo Pouch]|h|r",Type="Quiver"},["Worn Leather Bracers"]={SubType="Leather",Level=9,id=1420,StackCount=1,Rarity=0,MinLevel=4,SellPrice=18,Texture=132604,Type="Armor",Link="|cff9d9d9d|Hitem:1420::::::::40:::::::|h[Worn Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Cauldron Stirrer"]={SubType="Staves",Level=15,id=5340,StackCount=1,Rarity=2,MinLevel=0,SellPrice=919,Texture=135145,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:5340::::::::40:::::::|h[Cauldron Stirrer]|h|r",Type="Weapon"},["Major Spellstone"]={SubType="Miscellaneous",Level=60,id=13603,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134131,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13603::::::::40:::::::|h[Major Spellstone]|h|r"},["Durnan's Scalding Mornbrew"]={SubType="Quest",Level=1,id=10439,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132791,EquipLoc="",Link="|cffffffff|Hitem:10439::::::::40:::::::|h[Durnan's Scalding Mornbrew]|h|r",Type="Quest"},["Thorium Bar"]={SubType="Trade Goods",Level=50,id=12359,StackCount=20,Rarity=1,MinLevel=0,SellPrice=600,Texture=133221,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12359::::::::40:::::::|h[Thorium Bar]|h|r"},["Gnoll War Harness"]={SubType="Leather",Level=15,id=1211,StackCount=1,Rarity=2,MinLevel=10,SellPrice=347,Texture=132719,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:1211::::::::40:::::::|h[Gnoll War Harness]|h|r",Type="Armor"},["Package for Stormpike"]={SubType="Quest",Level=1,id=2806,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133628,EquipLoc="",Link="|cffffffff|Hitem:2806::::::::40:::::::|h[Package for Stormpike]|h|r",Type="Quest"},["Deprecated Pickpocket Undead 41-50"]={SubType="Junk",Level=1,id=5436,StackCount=5,Rarity=1,MinLevel=0,SellPrice=303,Texture=133854,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:5436::::::::40:::::::|h[Deprecated Pickpocket Undead 41-50]|h|r"},["Deprecated [PH] Recipe: Broiled Sunfish"]={SubType="Book",Level=1,id=1323,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:1323::::::::40:::::::|h[Deprecated [PH] Recipe: Broiled Sunfish]|h|r",Type="Recipe"},["Brown Linen Shirt"]={SubType="Miscellaneous",Level=7,id=4344,StackCount=1,Rarity=1,MinLevel=0,SellPrice=11,Texture=135006,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:4344::::::::40:::::::|h[Brown Linen Shirt]|h|r",Type="Armor"},["Deathmage Sash"]={SubType="Cloth",Level=41,id=10771,StackCount=1,Rarity=3,MinLevel=36,SellPrice=2910,Texture=132513,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:10771::::::::40:::::::|h[Deathmage Sash]|h|r",Type="Armor"},["A Ragged Page"]={SubType="Quest",Level=45,id=22974,StackCount=1,Rarity=1,MinLevel=45,SellPrice=0,Texture=134331,Link="|cffffffff|Hitem:22974::::::::40:::::::|h[A Ragged Page]|h|r",EquipLoc="",Type="Quest"},["Grimoire of Create Greater Bloodstone"]={SubType="Book",Level=38,id=5726,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4250,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:5726::::::::40:::::::|h[Grimoire of Create Greater Bloodstone]|h|r",Type="Recipe"},["Small Radiant Shard"]={SubType="Trade Goods",Level=40,id=11177,StackCount=20,Rarity=3,MinLevel=0,SellPrice=0,Texture=132884,Type="Trade Goods",Link="|cff0070dd|Hitem:11177::::::::40:::::::|h[Small Radiant Shard]|h|r",EquipLoc=""},["Black Mageweave Boots"]={SubType="Cloth",Level=46,id=10026,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5459,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10026::::::::40:::::::|h[Black Mageweave Boots]|h|r",Type="Armor"},["90 Epic Frost Mantle"]={SubType="Cloth",Level=90,id=20330,StackCount=1,Rarity=4,MinLevel=60,SellPrice=87962,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:20330::::::::40:::::::|h[90 Epic Frost Mantle]|h|r"},["Test Arcane Res Waist Cloth"]={SubType="Cloth",Level=35,id=16152,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1457,Texture=133693,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16152::::::::40:::::::|h[Test Arcane Res Waist Cloth]|h|r",Type="Armor"},["Test Glaive D"]={SubType="One-Handed Swords",Level=5,id=14886,StackCount=1,Rarity=1,MinLevel=1,SellPrice=25,Texture=135643,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:14886::::::::40:::::::|h[Test Glaive D]|h|r"},["Lieutenant Commander's Leather Shoulders"]={SubType="Leather",Level=71,id=23313,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15854,Texture=135045,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:23313::::::::40:::::::|h[Lieutenant Commander's Leather Shoulders]|h|r"},["Headhunter's Woolies"]={SubType="Leather",Level=35,id=15358,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3604,Texture=134587,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15358::::::::40:::::::|h[Headhunter's Woolies]|h|r",Type="Armor"},["Acidic Venom Sac"]={SubType="Quest",Level=1,id=5959,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,EquipLoc="",Link="|cffffffff|Hitem:5959::::::::40:::::::|h[Acidic Venom Sac]|h|r",Type="Quest"},["Grizzly Slippers"]={SubType="Leather",Level=13,id=15301,StackCount=1,Rarity=1,MinLevel=8,SellPrice=108,Texture=132579,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:15301::::::::40:::::::|h[Grizzly Slippers]|h|r",Type="Armor"},["Funeral Pyre Vestment"]={SubType="Cloth",Level=51,id=12542,StackCount=1,Rarity=3,MinLevel=46,SellPrice=12356,Texture=132681,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:12542::::::::40:::::::|h[Funeral Pyre Vestment]|h|r"},["Sack of Barley"]={SubType="Quest",Level=1,id=738,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134058,Type="Quest",Link="|cffffffff|Hitem:738::::::::40:::::::|h[Sack of Barley]|h|r",EquipLoc=""},["Plans: Thorium Greatsword"]={SubType="Blacksmithing",Level=52,id=12816,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12816::::::::40:::::::|h[Plans: Thorium Greatsword]|h|r"},["Thinking Cap"]={SubType="Cloth",Level=42,id=2624,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3852,Texture=133072,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:2624::::::::40:::::::|h[Thinking Cap]|h|r"},["Soulcatcher Halo"]={SubType="Cloth",Level=51,id=10630,StackCount=1,Rarity=3,MinLevel=46,SellPrice=8664,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:10630::::::::40:::::::|h[Soulcatcher Halo]|h|r",Type="Armor"},["Book of Wrath VIII"]={SubType="Book",Level=54,id=8793,StackCount=1,Rarity=1,MinLevel=54,SellPrice=7000,Texture=133743,Link="|cffffffff|Hitem:8793::::::::40:::::::|h[Book of Wrath VIII]|h|r",EquipLoc="",Type="Recipe"},["Pattern: Mongoose Boots"]={SubType="Leatherworking",Level=62,id=18515,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18515::::::::40:::::::|h[Pattern: Mongoose Boots]|h|r",EquipLoc=""},["Councillor's Sash"]={SubType="Cloth",Level=54,id=10103,StackCount=1,Rarity=2,MinLevel=49,SellPrice=5687,Texture=132514,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10103::::::::40:::::::|h[Councillor's Sash]|h|r",Type="Armor"},["Xorothian Stardust"]={SubType="Quest",Level=1,id=18687,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,Type="Quest",Link="|cffffffff|Hitem:18687::::::::40:::::::|h[Xorothian Stardust]|h|r",EquipLoc=""},["[PH] Mail Boots of the Shining Dawn"]={SubType="Mail",Level=100,id=13806,StackCount=1,Rarity=1,MinLevel=100,SellPrice=81760,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:13806::::::::40:::::::|h[[PH] Mail Boots of the Shining Dawn]|h|r"},["Spritecaster Cape"]={SubType="Cloth",Level=52,id=11623,StackCount=1,Rarity=3,MinLevel=47,SellPrice=9999,Texture=133772,Type="Armor",Link="|cff0070dd|Hitem:11623::::::::40:::::::|h[Spritecaster Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Eternal Spaulders"]={SubType="Cloth",Level=63,id=14335,StackCount=1,Rarity=2,MinLevel=58,SellPrice=15086,Texture=135045,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14335::::::::40:::::::|h[Eternal Spaulders]|h|r"},["Medium Leather"]={SubType="Trade Goods",Level=20,id=2319,StackCount=20,Rarity=1,MinLevel=0,SellPrice=50,Texture=134254,Link="|cffffffff|Hitem:2319::::::::40:::::::|h[Medium Leather]|h|r",EquipLoc="",Type="Trade Goods"},["Prospector's Cloak"]={SubType="Cloth",Level=17,id=14563,StackCount=1,Rarity=2,MinLevel=12,SellPrice=275,Texture=133763,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14563::::::::40:::::::|h[Prospector's Cloak]|h|r"},["Monster - Knuckle, B01 Red Offhand"]={SubType="Fist Weapons",Level=1,id=22211,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134294,Link="|cff9d9d9d|Hitem:22211::::::::40:::::::|h[Monster - Knuckle, B01 Red Offhand]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND",Type="Weapon"},["Champion's Chain Shoulders"]={SubType="Mail",Level=71,id=23252,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18536,Texture=135032,Link="|cff0070dd|Hitem:23252::::::::40:::::::|h[Champion's Chain Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["63 Green Rogue Ring"]={SubType="Miscellaneous",Level=63,id=20321,StackCount=1,Rarity=2,MinLevel=58,SellPrice=7102,Texture=133347,Link="|cff1eff00|Hitem:20321::::::::40:::::::|h[63 Green Rogue Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Tome of Dampen Magic V"]={SubType="Book",Level=60,id=8894,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133739,Link="|cffffffff|Hitem:8894::::::::40:::::::|h[Tome of Dampen Magic V]|h|r",EquipLoc="",Type="Recipe"},["Third Relic Fragment"]={SubType="Quest",Level=1,id=12898,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135152,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12898::::::::40:::::::|h[Third Relic Fragment]|h|r"},["Ironforge Pledge Collection"]={SubType="Consumable",Level=1,id=22286,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133458,Link="|cffffffff|Hitem:22286::::::::40:::::::|h[Ironforge Pledge Collection]|h|r",EquipLoc="",Type="Consumable"},["Will of the Martyr"]={SubType="Miscellaneous",Level=61,id=17044,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15038,Texture=133440,EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:17044::::::::40:::::::|h[Will of the Martyr]|h|r",Type="Armor"},["Engineer's Guild Headpiece"]={SubType="Leather",Level=47,id=9534,StackCount=1,Rarity=3,MinLevel=0,SellPrice=8847,Texture=133135,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:9534::::::::40:::::::|h[Engineer's Guild Headpiece]|h|r"},["Dreamscale"]={SubType="Junk",Level=63,id=20381,StackCount=20,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134313,Link="|cff1eff00|Hitem:20381::::::::40:::::::|h[Dreamscale]|h|r",EquipLoc="",Type="Miscellaneous"},["Huhuran's Stinger"]={SubType="Bows",Level=78,id=21616,StackCount=1,Rarity=4,MinLevel=60,SellPrice=114921,Texture=135502,Link="|cffa335ee|Hitem:21616::::::::40:::::::|h[Huhuran's Stinger]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Monster - Mace, Horde Skull Club"]={SubType="One-Handed Maces",Level=1,id=12786,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133476,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12786::::::::40:::::::|h[Monster - Mace, Horde Skull Club]|h|r"},["Krastinov's Bag of Horrors"]={SubType="Quest",Level=1,id=13725,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133648,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13725::::::::40:::::::|h[Krastinov's Bag of Horrors]|h|r"},["Pattern: Rugged Leather Pants"]={SubType="Leatherworking",Level=11,id=7288,StackCount=1,Rarity=2,MinLevel=0,SellPrice=125,Texture=134939,EquipLoc="",Link="|cff1eff00|Hitem:7288::::::::40:::::::|h[Pattern: Rugged Leather Pants]|h|r",Type="Recipe"},["The Book of Ur"]={SubType="Quest",Level=1,id=6283,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133740,Type="Quest",Link="|cffffffff|Hitem:6283::::::::40:::::::|h[The Book of Ur]|h|r",EquipLoc=""},["Unbridled Leggings"]={SubType="Leather",Level=56,id=18298,StackCount=1,Rarity=3,MinLevel=51,SellPrice=20685,Texture=134591,Type="Armor",Link="|cff0070dd|Hitem:18298::::::::40:::::::|h[Unbridled Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Scaled Cloak"]={SubType="Cloth",Level=29,id=9831,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1233,Texture=133759,Link="|cff1eff00|Hitem:9831::::::::40:::::::|h[Scaled Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Conjured Rye"]={SubType="Consumable",Level=25,id=1114,StackCount=20,Rarity=1,MinLevel=15,SellPrice=0,Texture=133968,EquipLoc="",Link="|cffffffff|Hitem:1114::::::::40:::::::|h[Conjured Rye]|h|r",Type="Consumable"},["Greater Maul"]={SubType="Two-Handed Maces",Level=46,id=15262,StackCount=1,Rarity=2,MinLevel=41,SellPrice=21552,Texture=133056,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15262::::::::40:::::::|h[Greater Maul]|h|r",Type="Weapon"},["Deep River Cloak"]={SubType="Cloth",Level=56,id=15789,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9574,Texture=133768,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15789::::::::40:::::::|h[Deep River Cloak]|h|r",Type="Armor"},["Test Glaive H"]={SubType="One-Handed Swords",Level=5,id=14890,StackCount=1,Rarity=1,MinLevel=1,SellPrice=25,Texture=135643,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:14890::::::::40:::::::|h[Test Glaive H]|h|r"},["Buccaneer's Mantle"]={SubType="Cloth",Level=22,id=14170,StackCount=1,Rarity=1,MinLevel=17,SellPrice=331,Texture=135044,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:14170::::::::40:::::::|h[Buccaneer's Mantle]|h|r"},["Consecrated Relic Parchment"]={SubType="Miscellaneous",Level=35,id=3790,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2000,Texture=134938,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:3790::::::::40:::::::|h[Consecrated Relic Parchment]|h|r"},["Ironfur Liver"]={SubType="Quest",Level=1,id=6258,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134341,Link="|cffffffff|Hitem:6258::::::::40:::::::|h[Ironfur Liver]|h|r",EquipLoc="",Type="Quest"},["Durtfeet Stompers"]={SubType="Cloth",Level=36,id=9519,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2288,Texture=132540,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9519::::::::40:::::::|h[Durtfeet Stompers]|h|r"},["Restabilization Cog"]={SubType="Quest",Level=1,id=3083,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134064,Type="Quest",Link="|cffffffff|Hitem:3083::::::::40:::::::|h[Restabilization Cog]|h|r",EquipLoc=""},["Gloves of Ebru"]={SubType="Leather",Level=75,id=21689,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33101,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:21689::::::::40:::::::|h[Gloves of Ebru]|h|r"},["White Stallion Bridle"]={SubType="Junk",Level=60,id=12353,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132261,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:12353::::::::40:::::::|h[White Stallion Bridle]|h|r"},["Deep Fathom Ring"]={SubType="Miscellaneous",Level=26,id=6463,StackCount=1,Rarity=3,MinLevel=21,SellPrice=1527,Texture=133357,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:6463::::::::40:::::::|h[Deep Fathom Ring]|h|r"},["Orb of Deception"]={SubType="Miscellaneous",Level=59,id=1973,StackCount=1,Rarity=3,MinLevel=54,SellPrice=4618,Texture=134334,EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:1973::::::::40:::::::|h[Orb of Deception]|h|r",Type="Armor"},["Engineer's Shield 1"]={SubType="Shields",Level=1,id=11199,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=134954,Type="Armor",Link="|cffffffff|Hitem:11199::::::::40:::::::|h[Engineer's Shield 1]|h|r",EquipLoc="INVTYPE_SHIELD"},["Sergeant's Cape"]={SubType="Cloth",Level=63,id=16342,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8830,Texture=133773,EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:16342::::::::40:::::::|h[Sergeant's Cape]|h|r",Type="Armor"},["Heavy Timbermaw Boots"]={SubType="Mail",Level=64,id=19048,StackCount=1,Rarity=3,MinLevel=59,SellPrice=28061,Texture=132553,Link="|cff0070dd|Hitem:19048::::::::40:::::::|h[Heavy Timbermaw Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Book of Regrowth"]={SubType="Book",Level=12,id=5141,StackCount=1,Rarity=1,MinLevel=12,SellPrice=150,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:5141::::::::40:::::::|h[Book of Regrowth]|h|r",Type="Recipe"},["Monster - Item, Staff Glowing Jeweled B01 Red Offhand"]={SubType="Miscellaneous",Level=1,id=13221,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134754,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13221::::::::40:::::::|h[Monster - Item, Staff Glowing Jeweled B01 Red Offhand]|h|r"},["Short Ash Bow"]={SubType="Bows",Level=23,id=3039,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1610,Texture=135491,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:3039::::::::40:::::::|h[Short Ash Bow]|h|r"},["Scented Candle"]={SubType="Reagent",Level=36,id=17027,StackCount=20,Rarity=1,MinLevel=0,SellPrice=100,Texture=133750,EquipLoc="",Link="|cffffffff|Hitem:17027::::::::40:::::::|h[Scented Candle]|h|r",Type="Reagent"},["Monster - Mace2H, Smite's Mighty Hammer"]={SubType="Two-Handed Maces",Level=1,id=10756,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133038,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:10756::::::::40:::::::|h[Monster - Mace2H, Smite's Mighty Hammer]|h|r",Type="Weapon"},["Swift White Ram"]={SubType="Junk",Level=60,id=18785,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132248,Type="Miscellaneous",Link="|cffa335ee|Hitem:18785::::::::40:::::::|h[Swift White Ram]|h|r",EquipLoc=""},["Iron Lockbox"]={SubType="Junk",Level=30,id=4634,StackCount=1,Rarity=2,MinLevel=0,SellPrice=87,Texture=134344,Link="|cff1eff00|Hitem:4634::::::::40:::::::|h[Iron Lockbox]|h|r",EquipLoc="",Type="Miscellaneous"},["Recipe: Transmute Iron to Gold"]={SubType="Alchemy",Level=45,id=9304,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2000,Texture=134939,Link="|cffffffff|Hitem:9304::::::::40:::::::|h[Recipe: Transmute Iron to Gold]|h|r",EquipLoc="",Type="Recipe"},["QAEnchant Gloves +20 Frost Damage"]={SubType="Consumable",Level=1,id=22029,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22029::::::::40:::::::|h[QAEnchant Gloves +20 Frost Damage]|h|r"},["Codex of Shadow Word: Pain VIII"]={SubType="Book",Level=58,id=9028,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=133741,Link="|cffffffff|Hitem:9028::::::::40:::::::|h[Codex of Shadow Word: Pain VIII]|h|r",EquipLoc="",Type="Recipe"},["Plans: Ornate Mithril Helm"]={SubType="Blacksmithing",Level=49,id=7987,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7987::::::::40:::::::|h[Plans: Ornate Mithril Helm]|h|r",Type="Recipe"},["Scroll: Create Scepter of Beckoning"]={SubType="Junk",Level=1,id=20540,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1250,Texture=134943,Link="|cffffffff|Hitem:20540::::::::40:::::::|h[Scroll: Create Scepter of Beckoning]|h|r",EquipLoc="",Type="Miscellaneous"},["Tome of Nobility"]={SubType="Quest",Level=40,id=6779,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133739,Link="|cffffffff|Hitem:6779::::::::40:::::::|h[Tome of Nobility]|h|r",EquipLoc="",Type="Quest"},["Thieven' Kit"]={SubType="Junk",Level=16,id=7868,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132765,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:7868::::::::40:::::::|h[Thieven' Kit]|h|r"},["Schematic: Deepdive Helmet"]={SubType="Engineering",Level=46,id=10607,StackCount=1,Rarity=1,MinLevel=0,SellPrice=900,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10607::::::::40:::::::|h[Schematic: Deepdive Helmet]|h|r",Type="Recipe"},["Windsong Cinch"]={SubType="Leather",Level=29,id=15469,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1009,Texture=132499,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15469::::::::40:::::::|h[Windsong Cinch]|h|r",Type="Armor"},["Narain's Robe"]={SubType="Miscellaneous",Level=1,id=21040,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132665,Link="|cffffffff|Hitem:21040::::::::40:::::::|h[Narain's Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Rugged Trapper's Pants"]={SubType="Cloth",Level=1,id=147,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:147::::::::40:::::::|h[Rugged Trapper's Pants]|h|r"},["Severed Talon"]={SubType="Junk",Level=1,id=5114,StackCount=5,Rarity=0,MinLevel=0,SellPrice=96,Texture=134294,Link="|cff9d9d9d|Hitem:5114::::::::40:::::::|h[Severed Talon]|h|r",EquipLoc="",Type="Miscellaneous"},["Potent Armor"]={SubType="Leather",Level=52,id=15170,StackCount=1,Rarity=2,MinLevel=47,SellPrice=13103,Texture=132635,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15170::::::::40:::::::|h[Potent Armor]|h|r",Type="Armor"},["Plans: Runic Plate Boots"]={SubType="Blacksmithing",Level=60,id=12707,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12707::::::::40:::::::|h[Plans: Runic Plate Boots]|h|r"},["Mixologist's Tunic"]={SubType="Leather",Level=55,id=12793,StackCount=1,Rarity=3,MinLevel=50,SellPrice=19846,Texture=132716,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:12793::::::::40:::::::|h[Mixologist's Tunic]|h|r"},["Voone's Twitchbow"]={SubType="Bows",Level=60,id=13175,StackCount=1,Rarity=2,MinLevel=55,SellPrice=30619,Texture=135498,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:13175::::::::40:::::::|h[Voone's Twitchbow]|h|r"},["Case of Elunite"]={SubType="Consumable",Level=1,id=6812,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,Link="|cffffffff|Hitem:6812::::::::40:::::::|h[Case of Elunite]|h|r",EquipLoc="",Type="Consumable"},["Shadow Sword"]={SubType="One-Handed Swords",Level=1,id=945,StackCount=1,Rarity=1,MinLevel=1,SellPrice=3,Texture=135274,Type="Weapon",Link="|cffffffff|Hitem:945::::::::40:::::::|h[Shadow Sword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Feral Cord"]={SubType="Leather",Level=17,id=15308,StackCount=1,Rarity=2,MinLevel=12,SellPrice=241,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15308::::::::40:::::::|h[Feral Cord]|h|r",Type="Armor"},["Karang's Banner"]={SubType="Quest",Level=1,id=16972,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132484,EquipLoc="",Link="|cffffffff|Hitem:16972::::::::40:::::::|h[Karang's Banner]|h|r",Type="Quest"},["Striker's Footguards"]={SubType="Mail",Level=78,id=21365,StackCount=1,Rarity=4,MinLevel=60,SellPrice=75168,Texture=132551,Link="|cffa335ee|Hitem:21365::::::::40:::::::|h[Striker's Footguards]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Robe of Doan"]={SubType="Cloth",Level=38,id=7711,StackCount=1,Rarity=2,MinLevel=33,SellPrice=1171,Texture=132666,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:7711::::::::40:::::::|h[Robe of Doan]|h|r"},["Compact Fighting Knife"]={SubType="Daggers",Level=12,id=4974,StackCount=1,Rarity=2,MinLevel=0,SellPrice=388,Texture=135641,Type="Weapon",Link="|cff1eff00|Hitem:4974::::::::40:::::::|h[Compact Fighting Knife]|h|r",EquipLoc="INVTYPE_WEAPON"},["Quel'Serrar"]={SubType="One-Handed Swords",Level=71,id=18348,StackCount=1,Rarity=4,MinLevel=60,SellPrice=112651,Texture=135271,Type="Weapon",Link="|cffa335ee|Hitem:18348::::::::40:::::::|h[Quel'Serrar]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Empty Water Vial"]={SubType="Quest",Level=1,id=16974,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134868,EquipLoc="",Link="|cffffffff|Hitem:16974::::::::40:::::::|h[Empty Water Vial]|h|r",Type="Quest"},["Amulet of Vek'nilash"]={SubType="Miscellaneous",Level=81,id=21608,StackCount=1,Rarity=4,MinLevel=60,SellPrice=102777,Texture=133339,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:21608::::::::40:::::::|h[Amulet of Vek'nilash]|h|r"},["Alterac Manna Biscuit"]={SubType="Consumable",Level=60,id=19301,StackCount=20,Rarity=1,MinLevel=51,SellPrice=350,Texture=133989,Link="|cffffffff|Hitem:19301::::::::40:::::::|h[Alterac Manna Biscuit]|h|r",EquipLoc="",Type="Consumable"},["PVP Plate Wrist Alliance"]={SubType="Plate",Level=60,id=16033,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4901,Texture=133344,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:16033::::::::40:::::::|h[PVP Plate Wrist Alliance]|h|r",Type="Armor"},["Grand Marshal's Glaive"]={SubType="Polearms",Level=78,id=18869,StackCount=1,Rarity=4,MinLevel=60,SellPrice=56993,Texture=135131,Type="Weapon",Link="|cffa335ee|Hitem:18869::::::::40:::::::|h[Grand Marshal's Glaive]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Flimsy Chain Vest"]={SubType="Mail",Level=5,id=2656,StackCount=1,Rarity=0,MinLevel=1,SellPrice=9,Texture=132624,EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:2656::::::::40:::::::|h[Flimsy Chain Vest]|h|r",Type="Armor"},["Mishandled Recurve Bow"]={SubType="Bows",Level=24,id=2782,StackCount=1,Rarity=0,MinLevel=19,SellPrice=751,Texture=135491,EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:2782::::::::40:::::::|h[Mishandled Recurve Bow]|h|r",Type="Weapon"},["Stockade Pauldrons"]={SubType="Plate",Level=55,id=14552,StackCount=1,Rarity=4,MinLevel=50,SellPrice=15378,Texture=135051,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:14552::::::::40:::::::|h[Stockade Pauldrons]|h|r"},["Legionnaire's Plate Legguards"]={SubType="Plate",Level=63,id=16515,StackCount=1,Rarity=3,MinLevel=58,SellPrice=12075,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16515::::::::40:::::::|h[Legionnaire's Plate Legguards]|h|r",Type="Armor"},["Tablet of Undying Strength"]={SubType="Book",Level=22,id=1034,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1000,Texture=134459,Link="|cffffffff|Hitem:1034::::::::40:::::::|h[Tablet of Undying Strength]|h|r",EquipLoc="",Type="Recipe"},["Ziata'jai Trophy"]={SubType="Quest",Level=1,id=3907,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,EquipLoc="",Link="|cffffffff|Hitem:3907::::::::40:::::::|h[Ziata'jai Trophy]|h|r",Type="Quest"},["Long Staff"]={SubType="Staves",Level=25,id=928,StackCount=1,Rarity=1,MinLevel=20,SellPrice=1972,Texture=135157,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:928::::::::40:::::::|h[Long Staff]|h|r"},["Twilight Orb"]={SubType="Miscellaneous",Level=40,id=7556,StackCount=1,Rarity=2,MinLevel=35,SellPrice=5387,Texture=134336,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:7556::::::::40:::::::|h[Twilight Orb]|h|r",Type="Armor"},["Crown of the Fire Festival"]={SubType="Cloth",Level=1,id=23323,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=133076,Link="|cffffffff|Hitem:23323::::::::40:::::::|h[Crown of the Fire Festival]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Wind Dancer Boots"]={SubType="Mail",Level=61,id=13260,StackCount=1,Rarity=3,MinLevel=56,SellPrice=22561,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13260::::::::40:::::::|h[Wind Dancer Boots]|h|r"},["Headhunter's Spaulders"]={SubType="Leather",Level=35,id=15357,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2693,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15357::::::::40:::::::|h[Headhunter's Spaulders]|h|r",Type="Armor"},["Earthen Rod"]={SubType="Wands",Level=38,id=9381,StackCount=1,Rarity=3,MinLevel=33,SellPrice=8628,Texture=135154,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:9381::::::::40:::::::|h[Earthen Rod]|h|r"},["Lesser Bloodstone Ore"]={SubType="Quest",Level=1,id=4278,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=134577,Link="|cffffffff|Hitem:4278::::::::40:::::::|h[Lesser Bloodstone Ore]|h|r",EquipLoc="",Type="Quest"},["Tablet of Grace of Air Totem II"]={SubType="Book",Level=56,id=9164,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=134459,Link="|cffffffff|Hitem:9164::::::::40:::::::|h[Tablet of Grace of Air Totem II]|h|r",EquipLoc="",Type="Recipe"},["Dusky Leather Leggings"]={SubType="Leather",Level=33,id=7373,StackCount=1,Rarity=2,MinLevel=28,SellPrice=3097,Texture=134587,Link="|cff1eff00|Hitem:7373::::::::40:::::::|h[Dusky Leather Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Major Mana Draught"]={SubType="Consumable",Level=55,id=17351,StackCount=10,Rarity=1,MinLevel=45,SellPrice=250,Texture=134860,EquipLoc="",Link="|cffffffff|Hitem:17351::::::::40:::::::|h[Major Mana Draught]|h|r",Type="Consumable"},["Calico Bracers"]={SubType="Cloth",Level=12,id=3375,StackCount=1,Rarity=0,MinLevel=7,SellPrice=30,Texture=132612,Link="|cff9d9d9d|Hitem:3375::::::::40:::::::|h[Calico Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Jouster's Crest"]={SubType="Shields",Level=41,id=4070,StackCount=1,Rarity=2,MinLevel=36,SellPrice=7527,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:4070::::::::40:::::::|h[Jouster's Crest]|h|r"},["Crystallized Mana Shard"]={SubType="Junk",Level=1,id=18285,StackCount=20,Rarity=0,MinLevel=0,SellPrice=4558,Texture=134095,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18285::::::::40:::::::|h[Crystallized Mana Shard]|h|r",EquipLoc=""},["Hornwood Recurve Bow"]={SubType="Bows",Level=8,id=2506,StackCount=1,Rarity=1,MinLevel=3,SellPrice=57,Texture=135499,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cffffffff|Hitem:2506::::::::40:::::::|h[Hornwood Recurve Bow]|h|r"},["Major Firestone"]={SubType="Miscellaneous",Level=56,id=13701,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134085,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13701::::::::40:::::::|h[Major Firestone]|h|r"},["Three of Warlords"]={SubType="Junk",Level=1,id=19260,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134497,Link="|cff0070dd|Hitem:19260::::::::40:::::::|h[Three of Warlords]|h|r",EquipLoc="",Type="Miscellaneous"},["Plans: Corruption"]={SubType="Blacksmithing",Level=58,id=12830,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12830::::::::40:::::::|h[Plans: Corruption]|h|r"},["Mana Citrine"]={SubType="Consumable",Level=48,id=8007,StackCount=1,Rarity=1,MinLevel=48,SellPrice=0,Texture=134116,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8007::::::::40:::::::|h[Mana Citrine]|h|r"},["Knitted Sandals"]={SubType="Cloth",Level=10,id=792,StackCount=1,Rarity=1,MinLevel=5,SellPrice=41,Texture=132579,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:792::::::::40:::::::|h[Knitted Sandals]|h|r",Type="Armor"},["Johaan's Findings"]={SubType="Quest",Level=1,id=3238,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133458,Link="|cffffffff|Hitem:3238::::::::40:::::::|h[Johaan's Findings]|h|r",EquipLoc="",Type="Quest"},["Knight-Captain's Satin Cord"]={SubType="Cloth",Level=60,id=17597,StackCount=1,Rarity=3,MinLevel=55,SellPrice=4744,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:17597::::::::40:::::::|h[Knight-Captain's Satin Cord]|h|r",Type="Armor"},["Sara Balloo's Plea"]={SubType="Quest",Level=1,id=4514,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133460,Link="|cffffffff|Hitem:4514::::::::40:::::::|h[Sara Balloo's Plea]|h|r",EquipLoc="",Type="Quest"},["Wandering Boots"]={SubType="Cloth",Level=24,id=6095,StackCount=1,Rarity=2,MinLevel=0,SellPrice=688,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:6095::::::::40:::::::|h[Wandering Boots]|h|r"},["Fishing Tournament!"]={SubType="Junk",Level=1,id=19978,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134331,Link="|cffffffff|Hitem:19978::::::::40:::::::|h[Fishing Tournament!]|h|r",EquipLoc="",Type="Miscellaneous"},["Mithril Pendant"]={SubType="Quest",Level=1,id=8686,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133278,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:8686::::::::40:::::::|h[Mithril Pendant]|h|r"},["Torch of Holy Flame"]={SubType="Miscellaneous",Level=33,id=7344,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=135142,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:7344::::::::40:::::::|h[Torch of Holy Flame]|h|r",Type="Armor"},["Divino-matic Rod"]={SubType="Consumable",Level=1,id=8548,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135470,Link="|cffffffff|Hitem:8548::::::::40:::::::|h[Divino-matic Rod]|h|r",EquipLoc="",Type="Consumable"},["Alex's Ring of Audacity"]={SubType="Miscellaneous",Level=60,id=12947,StackCount=1,Rarity=6,MinLevel=0,SellPrice=0,Texture=133006,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffe6cc80|Hitem:12947::::::::40:::::::|h[Alex's Ring of Audacity]|h|r"},["Thun'grim's Instructions"]={SubType="Quest",Level=1,id=7587,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134940,Link="|cffffffff|Hitem:7587::::::::40:::::::|h[Thun'grim's Instructions]|h|r",EquipLoc="",Type="Quest"},["Legionnaire's Dreadweave Leggings"]={SubType="Cloth",Level=63,id=17571,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11182,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:17571::::::::40:::::::|h[Legionnaire's Dreadweave Leggings]|h|r",Type="Armor"},["Tome of the Cabal"]={SubType="Quest",Level=1,id=6999,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133740,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6999::::::::40:::::::|h[Tome of the Cabal]|h|r"},["Buccaneer's Robes"]={SubType="Cloth",Level=23,id=14172,StackCount=1,Rarity=2,MinLevel=18,SellPrice=837,Texture=132659,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14172::::::::40:::::::|h[Buccaneer's Robes]|h|r"},["Large Bear Tooth"]={SubType="Junk",Level=1,id=3170,StackCount=10,Rarity=0,MinLevel=0,SellPrice=47,Texture=134298,EquipLoc="",Link="|cff9d9d9d|Hitem:3170::::::::40:::::::|h[Large Bear Tooth]|h|r",Type="Miscellaneous"},["Jade Phial"]={SubType="Quest",Level=1,id=5619,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134721,EquipLoc="",Link="|cffffffff|Hitem:5619::::::::40:::::::|h[Jade Phial]|h|r",Type="Quest"},["Monster - Axe, 2H Horde Brown Tombstone"]={SubType="Two-Handed Axes",Level=1,id=12461,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12461::::::::40:::::::|h[Monster - Axe, 2H Horde Brown Tombstone]|h|r"},["Frost Vial"]={SubType="Reagent",Level=15,id=5024,StackCount=20,Rarity=1,MinLevel=0,SellPrice=10,Texture=134754,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:5024::::::::40:::::::|h[Frost Vial]|h|r"},["Enduring Circlet"]={SubType="Mail",Level=38,id=14765,StackCount=1,Rarity=2,MinLevel=33,SellPrice=4427,Texture=132768,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14765::::::::40:::::::|h[Enduring Circlet]|h|r"},["Fresh Zhevra Carcass"]={SubType="Quest",Level=1,id=10338,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134368,EquipLoc="",Link="|cffffffff|Hitem:10338::::::::40:::::::|h[Fresh Zhevra Carcass]|h|r",Type="Quest"},["Tribal Boots"]={SubType="Leather",Level=12,id=3284,StackCount=1,Rarity=1,MinLevel=7,SellPrice=88,Texture=132542,Type="Armor",Link="|cffffffff|Hitem:3284::::::::40:::::::|h[Tribal Boots]|h|r",EquipLoc="INVTYPE_FEET"},["War Staff"]={SubType="Staves",Level=45,id=2535,StackCount=1,Rarity=1,MinLevel=40,SellPrice=12311,Texture=135151,Link="|cffffffff|Hitem:2535::::::::40:::::::|h[War Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Rawhide Belt"]={SubType="Leather",Level=24,id=1795,StackCount=1,Rarity=0,MinLevel=19,SellPrice=235,Texture=132513,EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:1795::::::::40:::::::|h[Rawhide Belt]|h|r",Type="Armor"},["Draconic Maul"]={SubType="Two-Handed Maces",Level=70,id=19358,StackCount=1,Rarity=4,MinLevel=60,SellPrice=130638,Texture=133480,Link="|cffa335ee|Hitem:19358::::::::40:::::::|h[Draconic Maul]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Evonice's Landin' Pilla"]={SubType="Miscellaneous",Level=50,id=18951,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133612,Type="Armor",Link="|cff1eff00|Hitem:18951::::::::40:::::::|h[Evonice's Landin' Pilla]|h|r",EquipLoc="INVTYPE_TRINKET"},["Conjured Pumpernickel"]={SubType="Consumable",Level=35,id=1487,StackCount=20,Rarity=1,MinLevel=25,SellPrice=0,Texture=133950,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:1487::::::::40:::::::|h[Conjured Pumpernickel]|h|r"},["Journeyman's Stave"]={SubType="Miscellaneous",Level=10,id=15925,StackCount=1,Rarity=2,MinLevel=5,SellPrice=439,Texture=135157,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15925::::::::40:::::::|h[Journeyman's Stave]|h|r",Type="Armor"},["Translated Letter"]={SubType="Quest",Level=1,id=1656,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",Link="|cffffffff|Hitem:1656::::::::40:::::::|h[Translated Letter]|h|r",EquipLoc=""},["Mystical Bracers"]={SubType="Cloth",Level=53,id=10173,StackCount=1,Rarity=2,MinLevel=48,SellPrice=5718,Texture=132609,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10173::::::::40:::::::|h[Mystical Bracers]|h|r",Type="Armor"},["Goblin Mail Leggings"]={SubType="Mail",Level=19,id=1943,StackCount=1,Rarity=2,MinLevel=14,SellPrice=713,Texture=134583,Link="|cff1eff00|Hitem:1943::::::::40:::::::|h[Goblin Mail Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Hunting Bow"]={SubType="Bows",Level=11,id=8180,StackCount=1,Rarity=2,MinLevel=6,SellPrice=240,Texture=135491,Link="|cff1eff00|Hitem:8180::::::::40:::::::|h[Hunting Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Fallen Moonstone"]={SubType="Quest",Level=1,id=5508,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134333,EquipLoc="",Link="|cffffffff|Hitem:5508::::::::40:::::::|h[Fallen Moonstone]|h|r",Type="Quest"},["Heavy Silken Thread"]={SubType="Trade Goods",Level=40,id=8343,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=132906,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:8343::::::::40:::::::|h[Heavy Silken Thread]|h|r"},["Tome of Blizzard V"]={SubType="Book",Level=52,id=8872,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=133739,Link="|cffffffff|Hitem:8872::::::::40:::::::|h[Tome of Blizzard V]|h|r",EquipLoc="",Type="Recipe"},["Package of Empty Ooze Containers"]={SubType="Junk",Level=48,id=11912,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132763,Type="Miscellaneous",Link="|cffffffff|Hitem:11912::::::::40:::::::|h[Package of Empty Ooze Containers]|h|r",EquipLoc=""},["Heavy Quiver"]={SubType="Quiver",Level=35,id=7371,StackCount=1,Rarity=2,MinLevel=30,SellPrice=500,Texture=134402,Type="Quiver",EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:7371::::::::40:::::::|h[Heavy Quiver]|h|r"},["Abyssal Mail Armguards"]={SubType="Mail",Level=68,id=20684,StackCount=1,Rarity=3,MinLevel=60,SellPrice=21028,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:20684::::::::40:::::::|h[Abyssal Mail Armguards]|h|r"},["Power of the Scourge"]={SubType="Quest",Level=60,id=23545,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=136141,Link="|cffa335ee|Hitem:23545::::::::40:::::::|h[Power of the Scourge]|h|r",EquipLoc="",Type="Quest"},["Grimoire of Curse of Tongues"]={SubType="Book",Level=22,id=5724,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:5724::::::::40:::::::|h[Grimoire of Curse of Tongues]|h|r",Type="Recipe"},["Laced Mail Shoulderpads"]={SubType="Mail",Level=20,id=1744,StackCount=1,Rarity=0,MinLevel=15,SellPrice=260,Texture=135038,Type="Armor",Link="|cff9d9d9d|Hitem:1744::::::::40:::::::|h[Laced Mail Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Fine Longbow"]={SubType="Bows",Level=19,id=11304,StackCount=1,Rarity=2,MinLevel=14,SellPrice=972,Texture=135490,Type="Weapon",Link="|cff1eff00|Hitem:11304::::::::40:::::::|h[Fine Longbow]|h|r",EquipLoc="INVTYPE_RANGED"},["Reinforced Woolen Shoulders"]={SubType="Cloth",Level=24,id=4315,StackCount=1,Rarity=1,MinLevel=19,SellPrice=425,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:4315::::::::40:::::::|h[Reinforced Woolen Shoulders]|h|r",Type="Armor"},["Deprecated Lockpick"]={SubType="Lockpick",Level=12,id=1918,StackCount=1,Rarity=1,MinLevel=2,SellPrice=10,Texture=134238,Type="Key",Link="|cffffffff|Hitem:1918::::::::40:::::::|h[Deprecated Lockpick]|h|r",EquipLoc=""},["Wicked Chain Shoulder Pads"]={SubType="Mail",Level=32,id=15542,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2365,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15542::::::::40:::::::|h[Wicked Chain Shoulder Pads]|h|r",Type="Armor"},["Stonerender Gauntlets"]={SubType="Mail",Level=51,id=17007,StackCount=1,Rarity=4,MinLevel=46,SellPrice=11447,Texture=132949,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:17007::::::::40:::::::|h[Stonerender Gauntlets]|h|r",Type="Armor"},["Rotten Eggs"]={SubType="Quest",Level=1,id=20605,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132832,Link="|cffffffff|Hitem:20605::::::::40:::::::|h[Rotten Eggs]|h|r",EquipLoc="",Type="Quest"},["Haggard's Axe"]={SubType="One-Handed Axes",Level=15,id=6979,StackCount=1,Rarity=2,MinLevel=0,SellPrice=675,Texture=132392,Type="Weapon",Link="|cff1eff00|Hitem:6979::::::::40:::::::|h[Haggard's Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Icepane Warhammer"]={SubType="Two-Handed Maces",Level=12,id=2254,StackCount=1,Rarity=2,MinLevel=7,SellPrice=506,Texture=133041,Type="Weapon",Link="|cff1eff00|Hitem:2254::::::::40:::::::|h[Icepane Warhammer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Sparkleshell Cloak"]={SubType="Cloth",Level=35,id=15579,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2122,Texture=133759,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15579::::::::40:::::::|h[Sparkleshell Cloak]|h|r",Type="Armor"},["Legionnaire's Plate Hauberk"]={SubType="Plate",Level=68,id=22872,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14120,Texture=132751,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:22872::::::::40:::::::|h[Legionnaire's Plate Hauberk]|h|r"},["Praetorian Girdle"]={SubType="Leather",Level=53,id=15180,StackCount=1,Rarity=2,MinLevel=48,SellPrice=6686,Texture=132500,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15180::::::::40:::::::|h[Praetorian Girdle]|h|r",Type="Armor"},["Frostmaul Shards"]={SubType="Quest",Level=1,id=12334,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134087,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12334::::::::40:::::::|h[Frostmaul Shards]|h|r"},["The Skull of Somnus"]={SubType="Quest",Level=1,id=16870,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134153,EquipLoc="",Link="|cffffffff|Hitem:16870::::::::40:::::::|h[The Skull of Somnus]|h|r",Type="Quest"},["Scavenged Goods"]={SubType="Quest",Level=0,id=11127,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132766,Type="Quest",Link="|cffffffff|Hitem:11127::::::::40:::::::|h[Scavenged Goods]|h|r",EquipLoc=""},["Plans: Runic Plate Leggings"]={SubType="Blacksmithing",Level=62,id=12719,StackCount=1,Rarity=2,MinLevel=0,SellPrice=15000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12719::::::::40:::::::|h[Plans: Runic Plate Leggings]|h|r"},["Primitive Hatchet"]={SubType="One-Handed Axes",Level=5,id=4923,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=135419,Link="|cffffffff|Hitem:4923::::::::40:::::::|h[Primitive Hatchet]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Magma Tempered Boots"]={SubType="Plate",Level=70,id=18824,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33518,Texture=132589,Type="Armor",Link="|cffa335ee|Hitem:18824::::::::40:::::::|h[Magma Tempered Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Rustmetal Bracers"]={SubType="Mail",Level=5,id=11849,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=132606,Type="Armor",Link="|cffffffff|Hitem:11849::::::::40:::::::|h[Rustmetal Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Ornate Bronze Lockbox"]={SubType="Junk",Level=20,id=4632,StackCount=1,Rarity=2,MinLevel=0,SellPrice=50,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cff1eff00|Hitem:4632::::::::40:::::::|h[Ornate Bronze Lockbox]|h|r"},["Flash Wand"]={SubType="Wands",Level=37,id=5248,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6849,Texture=135464,Link="|cff1eff00|Hitem:5248::::::::40:::::::|h[Flash Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Sayge's Fortune #10"]={SubType="Junk",Level=1,id=19245,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19245::::::::40:::::::|h[Sayge's Fortune #10]|h|r",EquipLoc="",Type="Miscellaneous"},["Frayed Bracers"]={SubType="Cloth",Level=5,id=3365,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=132609,EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:3365::::::::40:::::::|h[Frayed Bracers]|h|r",Type="Armor"},["Deprecated Demon Scarred Pelt"]={SubType="Quest",Level=5,id=4839,StackCount=1,Rarity=1,MinLevel=5,SellPrice=0,Texture=134371,Type="Quest",Link="|cffffffff|Hitem:4839::::::::40:::::::|h[Deprecated Demon Scarred Pelt]|h|r",EquipLoc=""},["Elven Cup Relic"]={SubType="Quest",Level=1,id=5330,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132819,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5330::::::::40:::::::|h[Elven Cup Relic]|h|r"},["Soulforge Breastplate"]={SubType="Plate",Level=60,id=22089,StackCount=1,Rarity=4,MinLevel=0,SellPrice=26266,Texture=132738,Link="|cffa335ee|Hitem:22089::::::::40:::::::|h[Soulforge Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Fang of the Faceless"]={SubType="Daggers",Level=68,id=19859,StackCount=1,Rarity=4,MinLevel=60,SellPrice=100605,Texture=135666,Link="|cffa335ee|Hitem:19859::::::::40:::::::|h[Fang of the Faceless]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Deprecated Dented Skullcap"]={SubType="Mail",Level=20,id=1028,StackCount=1,Rarity=0,MinLevel=15,SellPrice=254,Texture=133070,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:1028::::::::40:::::::|h[Deprecated Dented Skullcap]|h|r"},["Bingles' Hammer"]={SubType="Quest",Level=1,id=7346,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133057,Link="|cffffffff|Hitem:7346::::::::40:::::::|h[Bingles' Hammer]|h|r",EquipLoc="",Type="Quest"},["Blood of Morphaz"]={SubType="Quest",Level=1,id=20025,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134719,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:20025::::::::40:::::::|h[Blood of Morphaz]|h|r"},["Great Brown Kodo"]={SubType="Junk",Level=60,id=18794,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132245,Type="Miscellaneous",Link="|cffa335ee|Hitem:18794::::::::40:::::::|h[Great Brown Kodo]|h|r",EquipLoc=""},["Cracked Egg Shells"]={SubType="Junk",Level=1,id=4757,StackCount=5,Rarity=0,MinLevel=0,SellPrice=4,Texture=132835,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:4757::::::::40:::::::|h[Cracked Egg Shells]|h|r",EquipLoc=""},["Giantstalker's Bracers"]={SubType="Mail",Level=66,id=16850,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27564,Texture=132616,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16850::::::::40:::::::|h[Giantstalker's Bracers]|h|r",Type="Armor"},["Beaded Gloves"]={SubType="Cloth",Level=10,id=14089,StackCount=1,Rarity=1,MinLevel=5,SellPrice=30,Texture=132952,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:14089::::::::40:::::::|h[Beaded Gloves]|h|r"},["Horn of the Brown Wolf"]={SubType="Junk",Level=40,id=5668,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132224,EquipLoc="",Link="|cff0070dd|Hitem:5668::::::::40:::::::|h[Horn of the Brown Wolf]|h|r",Type="Miscellaneous"},["Deprecated Book of Barkskin II"]={SubType="Book",Level=37,id=5161,StackCount=1,Rarity=1,MinLevel=37,SellPrice=3925,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5161::::::::40:::::::|h[Deprecated Book of Barkskin II]|h|r"},["Rabbit Handler Gloves"]={SubType="Cloth",Level=5,id=719,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4,Texture=132940,Link="|cffffffff|Hitem:719::::::::40:::::::|h[Rabbit Handler Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Simple Black Dress"]={SubType="Miscellaneous",Level=47,id=10053,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4499,Texture=132662,EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:10053::::::::40:::::::|h[Simple Black Dress]|h|r",Type="Armor"},["Knitted Tunic"]={SubType="Cloth",Level=10,id=795,StackCount=1,Rarity=1,MinLevel=5,SellPrice=56,Texture=135014,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:795::::::::40:::::::|h[Knitted Tunic]|h|r",Type="Armor"},["Battle Shield"]={SubType="Shields",Level=9,id=3650,StackCount=1,Rarity=1,MinLevel=4,SellPrice=68,Texture=134955,Link="|cffffffff|Hitem:3650::::::::40:::::::|h[Battle Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Myrmidon's Pauldrons"]={SubType="Mail",Level=50,id=8133,StackCount=1,Rarity=2,MinLevel=45,SellPrice=10517,Texture=135057,Link="|cff1eff00|Hitem:8133::::::::40:::::::|h[Myrmidon's Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Recipe: Lobster Stew"]={SubType="Cooking",Level=55,id=13947,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13947::::::::40:::::::|h[Recipe: Lobster Stew]|h|r"},["Tome of Frostbolt"]={SubType="Book",Level=4,id=3090,StackCount=1,Rarity=1,MinLevel=4,SellPrice=10,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:3090::::::::40:::::::|h[Tome of Frostbolt]|h|r"},["Robe of Everlasting Night"]={SubType="Cloth",Level=62,id=18385,StackCount=1,Rarity=3,MinLevel=57,SellPrice=21536,Texture=132692,Type="Armor",Link="|cff0070dd|Hitem:18385::::::::40:::::::|h[Robe of Everlasting Night]|h|r",EquipLoc="INVTYPE_ROBE"},["Chief Brigadier Shield"]={SubType="Shields",Level=40,id=4068,StackCount=1,Rarity=2,MinLevel=35,SellPrice=6918,Texture=134952,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:4068::::::::40:::::::|h[Chief Brigadier Shield]|h|r",Type="Armor"},["Talisman of Corruption"]={SubType="Quest",Level=1,id=12355,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133437,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12355::::::::40:::::::|h[Talisman of Corruption]|h|r"},["Husk of the Old God"]={SubType="Quest",Level=1,id=20933,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=134887,Type="Quest",EquipLoc="",Link="|cffa335ee|Hitem:20933::::::::40:::::::|h[Husk of the Old God]|h|r"},["General's Satin Gloves"]={SubType="Cloth",Level=71,id=17620,StackCount=1,Rarity=4,MinLevel=60,SellPrice=11687,Texture=132961,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:17620::::::::40:::::::|h[General's Satin Gloves]|h|r",Type="Armor"},["Scepter of Beckoning: Fire"]={SubType="Junk",Level=1,id=20447,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135473,Link="|cffffffff|Hitem:20447::::::::40:::::::|h[Scepter of Beckoning: Fire]|h|r",EquipLoc="",Type="Miscellaneous"},["Severing Axe"]={SubType="Two-Handed Axes",Level=10,id=4562,StackCount=1,Rarity=2,MinLevel=5,SellPrice=298,Texture=135420,Type="Weapon",Link="|cff1eff00|Hitem:4562::::::::40:::::::|h[Severing Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Codex of Greater Heal V"]={SubType="Book",Level=60,id=21284,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133741,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:21284::::::::40:::::::|h[Codex of Greater Heal V]|h|r"},["Book of Thorns IV"]={SubType="Book",Level=34,id=8769,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133743,Link="|cffffffff|Hitem:8769::::::::40:::::::|h[Book of Thorns IV]|h|r",EquipLoc="",Type="Recipe"},["Mistscape Robe"]={SubType="Cloth",Level=46,id=6427,StackCount=1,Rarity=2,MinLevel=41,SellPrice=7016,Texture=132644,Type="Armor",Link="|cff1eff00|Hitem:6427::::::::40:::::::|h[Mistscape Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Grand Breastplate"]={SubType="Leather",Level=62,id=15195,StackCount=1,Rarity=2,MinLevel=57,SellPrice=23617,Texture=132720,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15195::::::::40:::::::|h[Grand Breastplate]|h|r",Type="Armor"},["Lesser Darkmoon Prize"]={SubType="Junk",Level=35,id=19297,StackCount=1,Rarity=2,MinLevel=30,SellPrice=110,Texture=133629,Link="|cff1eff00|Hitem:19297::::::::40:::::::|h[Lesser Darkmoon Prize]|h|r",EquipLoc="",Type="Miscellaneous"},["Shredder Operating Gloves"]={SubType="Cloth",Level=31,id=16740,StackCount=1,Rarity=2,MinLevel=0,SellPrice=942,Texture=132952,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:16740::::::::40:::::::|h[Shredder Operating Gloves]|h|r",Type="Armor"},["Book of Entangling Roots"]={SubType="Book",Level=8,id=1339,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=133743,Link="|cffffffff|Hitem:1339::::::::40:::::::|h[Book of Entangling Roots]|h|r",EquipLoc="",Type="Recipe"},["Gold Power Core"]={SubType="Parts",Level=30,id=10558,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=132489,EquipLoc="",Link="|cffffffff|Hitem:10558::::::::40:::::::|h[Gold Power Core]|h|r",Type="Trade Goods"},["Mud Stompers"]={SubType="Mail",Level=15,id=6188,StackCount=1,Rarity=2,MinLevel=0,SellPrice=305,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:6188::::::::40:::::::|h[Mud Stompers]|h|r"},["Mechbuilder's Overalls"]={SubType="Cloth",Level=31,id=9508,StackCount=1,Rarity=3,MinLevel=26,SellPrice=2352,Texture=135018,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:9508::::::::40:::::::|h[Mechbuilder's Overalls]|h|r"},["Mantle of Wicked Revenge"]={SubType="Leather",Level=77,id=21665,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58104,Texture=135061,Link="|cffa335ee|Hitem:21665::::::::40:::::::|h[Mantle of Wicked Revenge]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Nightshade Boots"]={SubType="Leather",Level=59,id=10222,StackCount=1,Rarity=2,MinLevel=54,SellPrice=14462,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10222::::::::40:::::::|h[Nightshade Boots]|h|r",Type="Armor"},["Gnome Camera Key"]={SubType="Key",Level=1,id=5916,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134236,Link="|cffffffff|Hitem:5916::::::::40:::::::|h[Gnome Camera Key]|h|r",EquipLoc="",Type="Key"},["Scrawled Parchment"]={SubType="Quest",Level=1,id=6494,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",Link="|cffffffff|Hitem:6494::::::::40:::::::|h[Scrawled Parchment]|h|r",EquipLoc=""},["Sentry Cloak"]={SubType="Cloth",Level=24,id=2059,StackCount=1,Rarity=3,MinLevel=19,SellPrice=863,Texture=133756,EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:2059::::::::40:::::::|h[Sentry Cloak]|h|r",Type="Armor"},["Robe of the Archmage"]={SubType="Cloth",Level=62,id=14152,StackCount=1,Rarity=4,MinLevel=57,SellPrice=28815,Texture=132679,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:14152::::::::40:::::::|h[Robe of the Archmage]|h|r"},["Elunarian Vest"]={SubType="Cloth",Level=64,id=14456,StackCount=1,Rarity=2,MinLevel=59,SellPrice=20230,Texture=132642,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14456::::::::40:::::::|h[Elunarian Vest]|h|r"},["Shard of the Scale"]={SubType="Miscellaneous",Level=71,id=17064,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45914,Texture=134317,EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:17064::::::::40:::::::|h[Shard of the Scale]|h|r",Type="Armor"},["Veteran Cloak"]={SubType="Cloth",Level=12,id=4677,StackCount=1,Rarity=1,MinLevel=7,SellPrice=70,Texture=133759,Link="|cffffffff|Hitem:4677::::::::40:::::::|h[Veteran Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Councillor's Scepter"]={SubType="Miscellaneous",Level=59,id=15939,StackCount=1,Rarity=2,MinLevel=54,SellPrice=10455,Texture=135466,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15939::::::::40:::::::|h[Councillor's Scepter]|h|r",Type="Armor"},["Monster - Item, Bag - Black Offhand"]={SubType="Miscellaneous",Level=1,id=12851,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133639,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12851::::::::40:::::::|h[Monster - Item, Bag - Black Offhand]|h|r"},["Captain's Key"]={SubType="Key",Level=1,id=9249,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1553,Texture=134235,Type="Key",EquipLoc="",Link="|cff1eff00|Hitem:9249::::::::40:::::::|h[Captain's Key]|h|r"},["Thick Cloth Vest"]={SubType="Cloth",Level=22,id=200,StackCount=1,Rarity=1,MinLevel=17,SellPrice=454,Texture=135006,Type="Armor",Link="|cffffffff|Hitem:200::::::::40:::::::|h[Thick Cloth Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Timbermaw Brawlers"]={SubType="Leather",Level=64,id=19049,StackCount=1,Rarity=3,MinLevel=59,SellPrice=15576,Texture=132960,Link="|cff0070dd|Hitem:19049::::::::40:::::::|h[Timbermaw Brawlers]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Resilient Mantle"]={SubType="Cloth",Level=32,id=14397,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1600,Texture=135037,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14397::::::::40:::::::|h[Resilient Mantle]|h|r"},["Pattern: Dark Silk Shirt"]={SubType="Tailoring",Level=31,id=6401,StackCount=1,Rarity=1,MinLevel=0,SellPrice=275,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:6401::::::::40:::::::|h[Pattern: Dark Silk Shirt]|h|r"},["Flimsy Male Tauren Mask"]={SubType="Miscellaneous",Level=1,id=20572,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134174,Link="|cffffffff|Hitem:20572::::::::40:::::::|h[Flimsy Male Tauren Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Mercurial Guard"]={SubType="Shields",Level=64,id=10158,StackCount=1,Rarity=2,MinLevel=59,SellPrice=31040,Texture=134951,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:10158::::::::40:::::::|h[Mercurial Guard]|h|r",Type="Armor"},["Worn Fishing Hat"]={SubType="Cloth",Level=20,id=7996,StackCount=1,Rarity=1,MinLevel=15,SellPrice=244,Texture=133133,Link="|cffffffff|Hitem:7996::::::::40:::::::|h[Worn Fishing Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Test AQ Resource - Arthas' Tear"]={SubType="Junk",Level=1,id=21643,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21643::::::::40:::::::|h[Test AQ Resource - Arthas' Tear]|h|r"},["Chief Brigadier Gauntlets"]={SubType="Mail",Level=38,id=1988,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2852,Texture=132956,Link="|cff1eff00|Hitem:1988::::::::40:::::::|h[Chief Brigadier Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Holy Shroud"]={SubType="Cloth",Level=32,id=2721,StackCount=1,Rarity=3,MinLevel=27,SellPrice=1982,Texture=133118,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:2721::::::::40:::::::|h[Holy Shroud]|h|r",Type="Armor"},["Cyrik's Head"]={SubType="Quest",Level=1,id=7425,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134159,EquipLoc="",Link="|cffffffff|Hitem:7425::::::::40:::::::|h[Cyrik's Head]|h|r",Type="Quest"},["Pattern: Ghostweave Gloves"]={SubType="Tailoring",Level=54,id=14477,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14477::::::::40:::::::|h[Pattern: Ghostweave Gloves]|h|r"},["Raptor Hide Harness"]={SubType="Leather",Level=33,id=4455,StackCount=1,Rarity=2,MinLevel=28,SellPrice=3096,Texture=132719,Type="Armor",Link="|cff1eff00|Hitem:4455::::::::40:::::::|h[Raptor Hide Harness]|h|r",EquipLoc="INVTYPE_CHEST"},["Highlander's Iron Ration"]={SubType="Consumable",Level=45,id=20227,StackCount=20,Rarity=1,MinLevel=35,SellPrice=75,Texture=133950,Link="|cffffffff|Hitem:20227::::::::40:::::::|h[Highlander's Iron Ration]|h|r",EquipLoc="",Type="Consumable"},["Monster - Polearm, PVPAlliance_A01"]={SubType="Polearms",Level=1,id=20412,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135321,Link="|cff9d9d9d|Hitem:20412::::::::40:::::::|h[Monster - Polearm, PVPAlliance_A01]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Blood of Serpentis"]={SubType="Quest",Level=1,id=5403,StackCount=1,Rarity=1,MinLevel=0,SellPrice=17,Texture=134719,Link="|cffffffff|Hitem:5403::::::::40:::::::|h[Blood of Serpentis]|h|r",EquipLoc="",Type="Quest"},["Gossamer Boots"]={SubType="Cloth",Level=45,id=7522,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4962,Texture=132543,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7522::::::::40:::::::|h[Gossamer Boots]|h|r",Type="Armor"},["Night Watch Shortsword"]={SubType="One-Handed Swords",Level=20,id=935,StackCount=1,Rarity=3,MinLevel=15,SellPrice=1742,Texture=135327,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:935::::::::40:::::::|h[Night Watch Shortsword]|h|r"},["Everlast Boots"]={SubType="Cloth",Level=36,id=10359,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2430,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10359::::::::40:::::::|h[Everlast Boots]|h|r",Type="Armor"},["Mana Shaping Handwraps"]={SubType="Cloth",Level=57,id=22256,StackCount=1,Rarity=3,MinLevel=52,SellPrice=8236,Texture=132951,Link="|cff0070dd|Hitem:22256::::::::40:::::::|h[Mana Shaping Handwraps]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Bundle of Akiris Reeds"]={SubType="Quest",Level=1,id=4028,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135437,Link="|cffffffff|Hitem:4028::::::::40:::::::|h[Bundle of Akiris Reeds]|h|r",EquipLoc="",Type="Quest"},["Farmer Dalson's Shotgun"]={SubType="Guns",Level=56,id=13474,StackCount=1,Rarity=2,MinLevel=0,SellPrice=24724,Texture=135613,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:13474::::::::40:::::::|h[Farmer Dalson's Shotgun]|h|r"},["Soulbound Keepsake"]={SubType="Quest",Level=1,id=13624,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133736,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13624::::::::40:::::::|h[Soulbound Keepsake]|h|r"},["Steadfast Buckler"]={SubType="Shields",Level=43,id=15592,StackCount=1,Rarity=2,MinLevel=38,SellPrice=8465,Texture=134957,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15592::::::::40:::::::|h[Steadfast Buckler]|h|r",Type="Armor"},["Broken Electro-lantern"]={SubType="Junk",Level=1,id=1630,StackCount=5,Rarity=0,MinLevel=0,SellPrice=66,Texture=134249,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:1630::::::::40:::::::|h[Broken Electro-lantern]|h|r"},["Hornbeam Seed"]={SubType="Reagent",Level=50,id=17037,StackCount=20,Rarity=1,MinLevel=0,SellPrice=350,Texture=133944,EquipLoc="",Link="|cffffffff|Hitem:17037::::::::40:::::::|h[Hornbeam Seed]|h|r",Type="Reagent"},["White Linen Shirt"]={SubType="Miscellaneous",Level=7,id=2576,StackCount=1,Rarity=1,MinLevel=0,SellPrice=75,Texture=135030,Link="|cffffffff|Hitem:2576::::::::40:::::::|h[White Linen Shirt]|h|r",EquipLoc="INVTYPE_BODY",Type="Armor"},["Plow Wood Spaulders"]={SubType="Leather",Level=58,id=15792,StackCount=1,Rarity=2,MinLevel=0,SellPrice=14154,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15792::::::::40:::::::|h[Plow Wood Spaulders]|h|r",Type="Armor"},["Whirring Bronze Gizmo"]={SubType="Parts",Level=25,id=4375,StackCount=10,Rarity=1,MinLevel=0,SellPrice=115,Texture=132996,EquipLoc="",Link="|cffffffff|Hitem:4375::::::::40:::::::|h[Whirring Bronze Gizmo]|h|r",Type="Trade Goods"},["Monster - Wand, Jeweled - B02 Red"]={SubType="Wands",Level=1,id=12941,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135463,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:12941::::::::40:::::::|h[Monster - Wand, Jeweled - B02 Red]|h|r"},["Deprecated Bone Chips"]={SubType="Trade Goods",Level=17,id=1963,StackCount=5,Rarity=1,MinLevel=0,SellPrice=29,Texture=133724,EquipLoc="",Link="|cffffffff|Hitem:1963::::::::40:::::::|h[Deprecated Bone Chips]|h|r",Type="Trade Goods"},["Blackflame Cape"]={SubType="Cloth",Level=49,id=13109,StackCount=1,Rarity=3,MinLevel=44,SellPrice=8152,Texture=133772,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:13109::::::::40:::::::|h[Blackflame Cape]|h|r"},["Beastial Manacles"]={SubType="Mail",Level=30,id=6722,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1331,Texture=132602,Type="Armor",Link="|cff1eff00|Hitem:6722::::::::40:::::::|h[Beastial Manacles]|h|r",EquipLoc="INVTYPE_WRIST"},["Book of Wrath II"]={SubType="Book",Level=6,id=5142,StackCount=1,Rarity=1,MinLevel=6,SellPrice=20,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:5142::::::::40:::::::|h[Book of Wrath II]|h|r",Type="Recipe"},["AHNQIRAJ TEST ITEM C MAIL BOOTS"]={SubType="Miscellaneous",Level=1,id=21449,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21449::::::::40:::::::|h[AHNQIRAJ TEST ITEM C MAIL BOOTS]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Golden Scale Bracers"]={SubType="Mail",Level=37,id=6040,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1649,Texture=132609,Link="|cffffffff|Hitem:6040::::::::40:::::::|h[Golden Scale Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Book of Entangling Roots V"]={SubType="Book",Level=48,id=8773,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8773::::::::40:::::::|h[Book of Entangling Roots V]|h|r"},["Wartorn Cloth Scrap"]={SubType="Junk",Level=60,id=22376,StackCount=200,Rarity=3,MinLevel=0,SellPrice=0,Texture=134516,Link="|cff0070dd|Hitem:22376::::::::40:::::::|h[Wartorn Cloth Scrap]|h|r",EquipLoc="",Type="Miscellaneous"},["Avenger's Greaves"]={SubType="Plate",Level=78,id=21388,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45619,Texture=132550,Link="|cffa335ee|Hitem:21388::::::::40:::::::|h[Avenger's Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Logistics Task Briefing IV"]={SubType="Quest",Level=60,id=21257,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21257::::::::40:::::::|h[Logistics Task Briefing IV]|h|r",EquipLoc="",Type="Quest"},["Schematic: Goblin Jumper Cables"]={SubType="Engineering",Level=33,id=7561,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:7561::::::::40:::::::|h[Schematic: Goblin Jumper Cables]|h|r"},["Head of Weldon Barov"]={SubType="Quest",Level=1,id=13469,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134173,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13469::::::::40:::::::|h[Head of Weldon Barov]|h|r"},["3500 Test 2h Axe 80 purple"]={SubType="Two-Handed Axes",Level=80,id=19662,StackCount=1,Rarity=4,MinLevel=60,SellPrice=209804,Texture=132392,Link="|cffa335ee|Hitem:19662::::::::40:::::::|h[3500 Test 2h Axe 80 purple]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Ritssyn's Wand of Bad Mojo"]={SubType="Wands",Level=63,id=22408,StackCount=1,Rarity=3,MinLevel=58,SellPrice=42763,Texture=135469,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:22408::::::::40:::::::|h[Ritssyn's Wand of Bad Mojo]|h|r"},["Wound Poison"]={SubType="Consumable",Level=32,id=10918,StackCount=20,Rarity=1,MinLevel=32,SellPrice=42,Texture=132274,EquipLoc="",Link="|cffffffff|Hitem:10918::::::::40:::::::|h[Wound Poison]|h|r",Type="Consumable"},["Wildheart Kilt"]={SubType="Leather",Level=61,id=16719,StackCount=1,Rarity=3,MinLevel=56,SellPrice=27192,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16719::::::::40:::::::|h[Wildheart Kilt]|h|r",Type="Armor"},["Mugger's Belt"]={SubType="Leather",Level=62,id=18505,StackCount=1,Rarity=3,MinLevel=57,SellPrice=13076,Texture=132491,Type="Armor",Link="|cff0070dd|Hitem:18505::::::::40:::::::|h[Mugger's Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Tome of Fireball X"]={SubType="Book",Level=54,id=8877,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133739,Link="|cffffffff|Hitem:8877::::::::40:::::::|h[Tome of Fireball X]|h|r",EquipLoc="",Type="Recipe"},["Tracker's Wristguards"]={SubType="Leather",Level=44,id=9925,StackCount=1,Rarity=2,MinLevel=39,SellPrice=3789,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9925::::::::40:::::::|h[Tracker's Wristguards]|h|r"},["Thick Scale Gauntlets"]={SubType="Mail",Level=32,id=15548,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1649,Texture=132945,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15548::::::::40:::::::|h[Thick Scale Gauntlets]|h|r",Type="Armor"},["Monster - Axe, 2H Horde Black Tombstone"]={SubType="Two-Handed Axes",Level=1,id=13706,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13706::::::::40:::::::|h[Monster - Axe, 2H Horde Black Tombstone]|h|r"},["Brocade Bracers"]={SubType="Cloth",Level=22,id=3379,StackCount=1,Rarity=0,MinLevel=17,SellPrice=152,Texture=132602,Type="Armor",Link="|cff9d9d9d|Hitem:3379::::::::40:::::::|h[Brocade Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Thorium Shield Spike"]={SubType="Trade Goods",Level=55,id=12645,StackCount=5,Rarity=2,MinLevel=0,SellPrice=500,Texture=133614,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:12645::::::::40:::::::|h[Thorium Shield Spike]|h|r"},["Great White Kodo"]={SubType="Junk",Level=60,id=18793,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132243,Type="Miscellaneous",Link="|cffa335ee|Hitem:18793::::::::40:::::::|h[Great White Kodo]|h|r",EquipLoc=""},["Legionnaire's Silk Robes"]={SubType="Cloth",Level=63,id=16491,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11906,Texture=132669,EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:16491::::::::40:::::::|h[Legionnaire's Silk Robes]|h|r",Type="Armor"},["Tabard of Stormwind"]={SubType="Miscellaneous",Level=1,id=11364,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135026,Type="Armor",Link="|cffffffff|Hitem:11364::::::::40:::::::|h[Tabard of Stormwind]|h|r",EquipLoc="INVTYPE_TABARD"},["Thunderstrike"]={SubType="Polearms",Level=63,id=17223,StackCount=1,Rarity=4,MinLevel=58,SellPrice=97074,Texture=135131,EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:17223::::::::40:::::::|h[Thunderstrike]|h|r",Type="Weapon"},["Bonechewer"]={SubType="Polearms",Level=48,id=13055,StackCount=1,Rarity=3,MinLevel=43,SellPrice=29367,Texture=135129,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13055::::::::40:::::::|h[Bonechewer]|h|r"},["Codex of Renew V"]={SubType="Book",Level=32,id=1101,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=133741,Type="Recipe",Link="|cffffffff|Hitem:1101::::::::40:::::::|h[Codex of Renew V]|h|r",EquipLoc=""},["Battle Chain Gloves"]={SubType="Mail",Level=11,id=3281,StackCount=1,Rarity=1,MinLevel=6,SellPrice=56,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:3281::::::::40:::::::|h[Battle Chain Gloves]|h|r",Type="Armor"},["Ivy Orb"]={SubType="Miscellaneous",Level=29,id=9800,StackCount=1,Rarity=2,MinLevel=24,SellPrice=2027,Texture=134333,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:9800::::::::40:::::::|h[Ivy Orb]|h|r"},["Tyrant's Armguards"]={SubType="Plate",Level=43,id=14834,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2777,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14834::::::::40:::::::|h[Tyrant's Armguards]|h|r"},["Mark of Deflection"]={SubType="Miscellaneous",Level=65,id=17108,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24213,Texture=133364,EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:17108::::::::40:::::::|h[Mark of Deflection]|h|r",Type="Armor"},["[PH] Cloth Boots of the Rising Dawn"]={SubType="Cloth",Level=100,id=13799,StackCount=1,Rarity=1,MinLevel=100,SellPrice=52910,Texture=132579,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:13799::::::::40:::::::|h[[PH] Cloth Boots of the Rising Dawn]|h|r"},["Gryphon Cloak"]={SubType="Cloth",Level=45,id=15624,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4971,Texture=133771,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15624::::::::40:::::::|h[Gryphon Cloak]|h|r",Type="Armor"},["Tactical Task Briefing I"]={SubType="Quest",Level=60,id=21245,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21245::::::::40:::::::|h[Tactical Task Briefing I]|h|r",EquipLoc="",Type="Quest"},["Drake Fang Talisman"]={SubType="Miscellaneous",Level=75,id=19406,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91160,Texture=133723,Link="|cffa335ee|Hitem:19406::::::::40:::::::|h[Drake Fang Talisman]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Cloak of Firemaw"]={SubType="Cloth",Level=75,id=19398,StackCount=1,Rarity=4,MinLevel=60,SellPrice=40003,Texture=133770,Link="|cffa335ee|Hitem:19398::::::::40:::::::|h[Cloak of Firemaw]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Pet Fish"]={SubType="Junk",Level=20,id=13342,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133889,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13342::::::::40:::::::|h[Pet Fish]|h|r"},["Valorous Chestguard"]={SubType="Plate",Level=51,id=8274,StackCount=1,Rarity=2,MinLevel=46,SellPrice=10251,Texture=132646,Link="|cff1eff00|Hitem:8274::::::::40:::::::|h[Valorous Chestguard]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Blackhand's Command"]={SubType="Quest",Level=55,id=18987,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=133473,Type="Quest",Link="|cffffffff|Hitem:18987::::::::40:::::::|h[Blackhand's Command]|h|r",EquipLoc=""},["Case of Blood"]={SubType="Quest",Level=1,id=18591,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132595,Type="Quest",Link="|cffffffff|Hitem:18591::::::::40:::::::|h[Case of Blood]|h|r",EquipLoc=""},["Widowmaker"]={SubType="Daggers",Level=47,id=4091,StackCount=1,Rarity=3,MinLevel=42,SellPrice=22479,Texture=135639,Type="Weapon",Link="|cff0070dd|Hitem:4091::::::::40:::::::|h[Widowmaker]|h|r",EquipLoc="INVTYPE_WEAPON"},["Aboriginal Shoulder Pads"]={SubType="Cloth",Level=21,id=14169,StackCount=1,Rarity=1,MinLevel=16,SellPrice=286,Texture=135037,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:14169::::::::40:::::::|h[Aboriginal Shoulder Pads]|h|r"},["Essence of Xandivious"]={SubType="Quest",Level=1,id=21145,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134711,Link="|cffffffff|Hitem:21145::::::::40:::::::|h[Essence of Xandivious]|h|r",EquipLoc="",Type="Quest"},["Bloated Mackerel"]={SubType="Consumable",Level=5,id=6644,StackCount=20,Rarity=1,MinLevel=1,SellPrice=6,Texture=133910,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6644::::::::40:::::::|h[Bloated Mackerel]|h|r"},["Mantle of Maz'Nadir"]={SubType="Cloth",Level=74,id=21468,StackCount=1,Rarity=3,MinLevel=60,SellPrice=28916,Texture=135056,Link="|cff0070dd|Hitem:21468::::::::40:::::::|h[Mantle of Maz'Nadir]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Grovekeeper's Drape"]={SubType="Cloth",Level=52,id=17739,StackCount=1,Rarity=3,MinLevel=47,SellPrice=9100,Texture=133769,EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:17739::::::::40:::::::|h[Grovekeeper's Drape]|h|r",Type="Armor"},["Bile-Covered Gauntlets"]={SubType="Leather",Level=78,id=21682,StackCount=1,Rarity=4,MinLevel=60,SellPrice=40230,Texture=132955,Link="|cffa335ee|Hitem:21682::::::::40:::::::|h[Bile-Covered Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Wand of Allistarj"]={SubType="Wands",Level=50,id=13065,StackCount=1,Rarity=3,MinLevel=45,SellPrice=20945,Texture=135471,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13065::::::::40:::::::|h[Wand of Allistarj]|h|r"},["Plate of the Shaman King"]={SubType="Plate",Level=60,id=13168,StackCount=1,Rarity=3,MinLevel=55,SellPrice=19085,Texture=132748,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:13168::::::::40:::::::|h[Plate of the Shaman King]|h|r"},["Scorched Cape"]={SubType="Cloth",Level=43,id=9703,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4272,Texture=133774,Link="|cff1eff00|Hitem:9703::::::::40:::::::|h[Scorched Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Claw of the Black Drake"]={SubType="Fist Weapons",Level=75,id=19365,StackCount=1,Rarity=4,MinLevel=60,SellPrice=136928,Texture=135663,Link="|cffa335ee|Hitem:19365::::::::40:::::::|h[Claw of the Black Drake]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Cenarion Gloves"]={SubType="Leather",Level=66,id=16831,StackCount=1,Rarity=4,MinLevel=60,SellPrice=23055,Texture=132941,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16831::::::::40:::::::|h[Cenarion Gloves]|h|r",Type="Armor"},["Tablet of Shock III"]={SubType="Book",Level=20,id=3127,StackCount=1,Rarity=1,MinLevel=20,SellPrice=750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:3127::::::::40:::::::|h[Tablet of Shock III]|h|r"},["Black Night Elf Helm"]={SubType="Mail",Level=1,id=3529,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133072,EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:3529::::::::40:::::::|h[Black Night Elf Helm]|h|r",Type="Armor"},["Gahz'ridian Ornament"]={SubType="Quest",Level=1,id=8443,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133439,Link="|cffffffff|Hitem:8443::::::::40:::::::|h[Gahz'ridian Ornament]|h|r",EquipLoc="",Type="Quest"},["Grizzly Belt"]={SubType="Leather",Level=11,id=15302,StackCount=1,Rarity=1,MinLevel=6,SellPrice=47,Texture=132498,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:15302::::::::40:::::::|h[Grizzly Belt]|h|r",Type="Armor"},["Pattern: Blue Dragonscale Breastplate"]={SubType="Leatherworking",Level=57,id=15751,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15751::::::::40:::::::|h[Pattern: Blue Dragonscale Breastplate]|h|r",Type="Recipe"},["Crested Heater Shield"]={SubType="Shields",Level=50,id=2451,StackCount=1,Rarity=1,MinLevel=45,SellPrice=8725,Texture=134952,Link="|cffffffff|Hitem:2451::::::::40:::::::|h[Crested Heater Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Darkspear Cuffs"]={SubType="Cloth",Level=37,id=4133,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1794,Texture=132609,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:4133::::::::40:::::::|h[Darkspear Cuffs]|h|r"},["Charred Wolf Meat"]={SubType="Consumable",Level=5,id=2679,StackCount=20,Rarity=1,MinLevel=1,SellPrice=5,Texture=133974,Type="Consumable",Link="|cffffffff|Hitem:2679::::::::40:::::::|h[Charred Wolf Meat]|h|r",EquipLoc=""},["Filled Cliffspring Falls Sampler"]={SubType="Quest",Level=1,id=15845,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134743,EquipLoc="",Link="|cffffffff|Hitem:15845::::::::40:::::::|h[Filled Cliffspring Falls Sampler]|h|r",Type="Quest"},["Feathered Breastplate"]={SubType="Leather",Level=50,id=8349,StackCount=1,Rarity=3,MinLevel=45,SellPrice=14478,Texture=132721,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:8349::::::::40:::::::|h[Feathered Breastplate]|h|r"},["Silksand Tunic"]={SubType="Cloth",Level=44,id=14417,StackCount=1,Rarity=2,MinLevel=39,SellPrice=5888,Texture=135007,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14417::::::::40:::::::|h[Silksand Tunic]|h|r"},["Doomcaller's Mantle"]={SubType="Cloth",Level=78,id=21335,StackCount=1,Rarity=4,MinLevel=60,SellPrice=46868,Texture=135034,Link="|cffa335ee|Hitem:21335::::::::40:::::::|h[Doomcaller's Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Monster - Item, Tankard Metal Offhand"]={SubType="Miscellaneous",Level=1,id=13855,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=132800,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13855::::::::40:::::::|h[Monster - Item, Tankard Metal Offhand]|h|r"},["Brutish Boots"]={SubType="Plate",Level=46,id=14911,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5327,Texture=132587,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14911::::::::40:::::::|h[Brutish Boots]|h|r"},["Small Chest"]={SubType="Junk",Level=15,id=6353,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132594,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:6353::::::::40:::::::|h[Small Chest]|h|r"},["Fine Gold Thread"]={SubType="Quest",Level=1,id=12293,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132890,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12293::::::::40:::::::|h[Fine Gold Thread]|h|r"},["Deprecated [PH] Recipe: Zombie Juice"]={SubType="Book",Level=1,id=1599,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:1599::::::::40:::::::|h[Deprecated [PH] Recipe: Zombie Juice]|h|r",Type="Recipe"},["Remote Detonator (Red)"]={SubType="Quest",Level=1,id=5692,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132995,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5692::::::::40:::::::|h[Remote Detonator (Red)]|h|r"},["Pamela's Doll's Head"]={SubType="Consumable",Level=1,id=12886,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134164,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12886::::::::40:::::::|h[Pamela's Doll's Head]|h|r"},["Scuffed Dagger"]={SubType="Daggers",Level=7,id=2502,StackCount=1,Rarity=1,MinLevel=2,SellPrice=59,Texture=135637,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:2502::::::::40:::::::|h[Scuffed Dagger]|h|r"},["Chipped Scale"]={SubType="Junk",Level=1,id=3168,StackCount=5,Rarity=0,MinLevel=0,SellPrice=5,Texture=134304,EquipLoc="",Link="|cff9d9d9d|Hitem:3168::::::::40:::::::|h[Chipped Scale]|h|r",Type="Miscellaneous"},["Timmy's Galoshes"]={SubType="Mail",Level=59,id=13402,StackCount=1,Rarity=3,MinLevel=54,SellPrice=21168,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13402::::::::40:::::::|h[Timmy's Galoshes]|h|r"},["Sandstalker Breastplate"]={SubType="Mail",Level=62,id=20478,StackCount=1,Rarity=3,MinLevel=57,SellPrice=33917,Texture=132742,Link="|cff0070dd|Hitem:20478::::::::40:::::::|h[Sandstalker Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Tracker's Shoulderpads"]={SubType="Leather",Level=45,id=9923,StackCount=1,Rarity=2,MinLevel=40,SellPrice=6095,Texture=135049,Link="|cff1eff00|Hitem:9923::::::::40:::::::|h[Tracker's Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Bloodsail Boots"]={SubType="Miscellaneous",Level=1,id=22744,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132539,Link="|cffffffff|Hitem:22744::::::::40:::::::|h[Bloodsail Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Indomitable Headdress"]={SubType="Leather",Level=63,id=14686,StackCount=1,Rarity=2,MinLevel=58,SellPrice=18327,Texture=133076,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14686::::::::40:::::::|h[Indomitable Headdress]|h|r"},["Scarlet Cannonball"]={SubType="Key",Level=0,id=12973,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132383,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:12973::::::::40:::::::|h[Scarlet Cannonball]|h|r"},["Krazek's Crock Pot"]={SubType="Quest",Level=1,id=4085,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134514,Type="Quest",Link="|cffffffff|Hitem:4085::::::::40:::::::|h[Krazek's Crock Pot]|h|r",EquipLoc=""},["Codex of Mind Soothe III"]={SubType="Book",Level=52,id=9014,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=133741,Link="|cffffffff|Hitem:9014::::::::40:::::::|h[Codex of Mind Soothe III]|h|r",EquipLoc="",Type="Recipe"},["Mind-numbing Poison II"]={SubType="Consumable",Level=38,id=6951,StackCount=20,Rarity=1,MinLevel=38,SellPrice=75,Texture=136066,Type="Consumable",Link="|cffffffff|Hitem:6951::::::::40:::::::|h[Mind-numbing Poison II]|h|r",EquipLoc=""},["Grimoire of Health Funnel IV"]={SubType="Book",Level=36,id=9226,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9226::::::::40:::::::|h[Grimoire of Health Funnel IV]|h|r"},["Herald of Woe"]={SubType="Two-Handed Maces",Level=75,id=19357,StackCount=1,Rarity=4,MinLevel=60,SellPrice=166093,Texture=133480,Link="|cffa335ee|Hitem:19357::::::::40:::::::|h[Herald of Woe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Bristleback Attack Plans"]={SubType="Quest",Level=1,id=4850,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134269,Type="Quest",Link="|cffffffff|Hitem:4850::::::::40:::::::|h[Bristleback Attack Plans]|h|r",EquipLoc=""},["Prestor's Talisman of Connivery"]={SubType="Miscellaneous",Level=83,id=19377,StackCount=1,Rarity=4,MinLevel=60,SellPrice=105328,Texture=133304,Link="|cffa335ee|Hitem:19377::::::::40:::::::|h[Prestor's Talisman of Connivery]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Band of Sulfuras"]={SubType="Miscellaneous",Level=78,id=19138,StackCount=1,Rarity=4,MinLevel=60,SellPrice=79853,Texture=133378,Link="|cffa335ee|Hitem:19138::::::::40:::::::|h[Band of Sulfuras]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Umbral Crystal"]={SubType="Miscellaneous",Level=43,id=13029,StackCount=1,Rarity=3,MinLevel=38,SellPrice=5613,Texture=134336,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:13029::::::::40:::::::|h[Umbral Crystal]|h|r"},["Sage's Gloves"]={SubType="Cloth",Level=29,id=6615,StackCount=1,Rarity=2,MinLevel=24,SellPrice=824,Texture=132950,Type="Armor",Link="|cff1eff00|Hitem:6615::::::::40:::::::|h[Sage's Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Leggings of Apocalypse"]={SubType="Leather",Level=83,id=23071,StackCount=1,Rarity=4,MinLevel=60,SellPrice=102741,Texture=134634,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:23071::::::::40:::::::|h[Leggings of Apocalypse]|h|r"},["Test Potion LockBox (Raid)"]={SubType="Junk",Level=1,id=16081,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16081::::::::40:::::::|h[Test Potion LockBox (Raid)]|h|r",Type="Miscellaneous"},["Tooth of Morphaz"]={SubType="Junk",Level=1,id=20019,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,Link="|cffffffff|Hitem:20019::::::::40:::::::|h[Tooth of Morphaz]|h|r",EquipLoc="",Type="Miscellaneous"},["Supreme Gloves"]={SubType="Leather",Level=63,id=15438,StackCount=1,Rarity=2,MinLevel=58,SellPrice=12264,Texture=132960,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15438::::::::40:::::::|h[Supreme Gloves]|h|r",Type="Armor"},["Berserker Bracers"]={SubType="Plate",Level=65,id=19578,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17699,Texture=132605,Link="|cffa335ee|Hitem:19578::::::::40:::::::|h[Berserker Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Frost Ram"]={SubType="Junk",Level=60,id=13329,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132248,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:13329::::::::40:::::::|h[Frost Ram]|h|r"},["Wicked Leather Gauntlets"]={SubType="Leather",Level=52,id=15083,StackCount=1,Rarity=2,MinLevel=47,SellPrice=6872,Texture=132965,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15083::::::::40:::::::|h[Wicked Leather Gauntlets]|h|r",Type="Armor"},["Arbiter's Blade"]={SubType="One-Handed Swords",Level=53,id=11784,StackCount=1,Rarity=3,MinLevel=48,SellPrice=33835,Texture=135324,Type="Weapon",Link="|cff0070dd|Hitem:11784::::::::40:::::::|h[Arbiter's Blade]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Crudely-written Log"]={SubType="Quest",Level=52,id=12842,StackCount=1,Rarity=1,MinLevel=52,SellPrice=0,Texture=133740,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12842::::::::40:::::::|h[Crudely-written Log]|h|r"},["Totem of Flowing Water"]={SubType="Totems",Level=83,id=23005,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58699,Texture=134918,Link="|cffa335ee|Hitem:23005::::::::40:::::::|h[Totem of Flowing Water]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Icecap"]={SubType="Trade Goods",Level=58,id=13467,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=134212,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:13467::::::::40:::::::|h[Icecap]|h|r"},["Brazier of Invocation"]={SubType="Quest",Level=1,id=22057,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133880,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:22057::::::::40:::::::|h[Brazier of Invocation]|h|r"},["Black Pearl"]={SubType="Trade Goods",Level=40,id=7971,StackCount=20,Rarity=2,MinLevel=0,SellPrice=1000,Texture=134120,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:7971::::::::40:::::::|h[Black Pearl]|h|r"},["Old Skull"]={SubType="Junk",Level=1,id=6297,StackCount=10,Rarity=0,MinLevel=0,SellPrice=7,Texture=133731,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:6297::::::::40:::::::|h[Old Skull]|h|r",EquipLoc=""},["Ironhide Cloak"]={SubType="Cloth",Level=49,id=15643,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6675,Texture=133774,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15643::::::::40:::::::|h[Ironhide Cloak]|h|r",Type="Armor"},["Deprecated Small Scorpid Carapace"]={SubType="Quest",Level=1,id=4884,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=135034,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4884::::::::40:::::::|h[Deprecated Small Scorpid Carapace]|h|r"},["Knight-Captain's Chain Legguards"]={SubType="Mail",Level=68,id=23293,StackCount=1,Rarity=3,MinLevel=60,SellPrice=21915,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:23293::::::::40:::::::|h[Knight-Captain's Chain Legguards]|h|r"},["Knight-Captain's Leather Legguards"]={SubType="Leather",Level=63,id=16419,StackCount=1,Rarity=3,MinLevel=58,SellPrice=14934,Texture=134591,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16419::::::::40:::::::|h[Knight-Captain's Leather Legguards]|h|r",Type="Armor"},["Seasoned Wolf Kabob"]={SubType="Consumable",Level=25,id=1017,StackCount=20,Rarity=1,MinLevel=15,SellPrice=100,Texture=133972,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:1017::::::::40:::::::|h[Seasoned Wolf Kabob]|h|r"},["Righteous Helmet"]={SubType="Leather",Level=52,id=10073,StackCount=1,Rarity=2,MinLevel=47,SellPrice=9858,Texture=133111,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10073::::::::40:::::::|h[Righteous Helmet]|h|r",Type="Armor"},["Jade Breastplate"]={SubType="Plate",Level=53,id=14915,StackCount=1,Rarity=2,MinLevel=48,SellPrice=11569,Texture=132742,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14915::::::::40:::::::|h[Jade Breastplate]|h|r"},["Fragment of the Dragon's Eye"]={SubType="Quest",Level=1,id=16662,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134071,EquipLoc="",Link="|cffffffff|Hitem:16662::::::::40:::::::|h[Fragment of the Dragon's Eye]|h|r",Type="Quest"},["Dwarven Magestaff"]={SubType="Staves",Level=27,id=2072,StackCount=1,Rarity=2,MinLevel=22,SellPrice=4414,Texture=135141,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:2072::::::::40:::::::|h[Dwarven Magestaff]|h|r",Type="Weapon"},["Chillpike"]={SubType="Polearms",Level=61,id=13148,StackCount=1,Rarity=3,MinLevel=56,SellPrice=62629,Texture=135128,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13148::::::::40:::::::|h[Chillpike]|h|r"},["Monster - Staff, Ornate Jeweled Staff - Purple"]={SubType="Staves",Level=1,id=14836,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14836::::::::40:::::::|h[Monster - Staff, Ornate Jeweled Staff - Purple]|h|r"},["Call to Arms Announcement"]={SubType="Junk",Level=1,id=22595,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134328,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22595::::::::40:::::::|h[Call to Arms Announcement]|h|r"},["Gnomeregan Band"]={SubType="Miscellaneous",Level=30,id=10298,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1243,Texture=133352,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:10298::::::::40:::::::|h[Gnomeregan Band]|h|r",Type="Armor"},["Monster - Item, Flower - Long Blue"]={SubType="Miscellaneous",Level=1,id=6234,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133941,Link="|cff9d9d9d|Hitem:6234::::::::40:::::::|h[Monster - Item, Flower - Long Blue]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Champion's Leather Mantle"]={SubType="Leather",Level=63,id=16507,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11002,Texture=135045,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16507::::::::40:::::::|h[Champion's Leather Mantle]|h|r",Type="Armor"},["Combat Shield"]={SubType="Shields",Level=36,id=4065,StackCount=1,Rarity=2,MinLevel=31,SellPrice=5311,Texture=134951,Type="Armor",Link="|cff1eff00|Hitem:4065::::::::40:::::::|h[Combat Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["QAEnchant Gloves +2% Threat"]={SubType="Consumable",Level=1,id=22034,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22034::::::::40:::::::|h[QAEnchant Gloves +2% Threat]|h|r"},["Inscribed Leather Gloves"]={SubType="Leather",Level=19,id=2988,StackCount=1,Rarity=2,MinLevel=14,SellPrice=314,Texture=132952,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:2988::::::::40:::::::|h[Inscribed Leather Gloves]|h|r"},["[PH] Mail Leggings of the Rising Dawn"]={SubType="Mail",Level=100,id=13781,StackCount=1,Rarity=1,MinLevel=100,SellPrice=106609,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:13781::::::::40:::::::|h[[PH] Mail Leggings of the Rising Dawn]|h|r"},["Gnarled Hermit's Staff"]={SubType="Staves",Level=19,id=1539,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1572,Texture=135154,Link="|cff1eff00|Hitem:1539::::::::40:::::::|h[Gnarled Hermit's Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Test Frost Res Shoulder Mail"]={SubType="Mail",Level=35,id=16143,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3118,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16143::::::::40:::::::|h[Test Frost Res Shoulder Mail]|h|r",Type="Armor"},["Thrash Blade"]={SubType="One-Handed Swords",Level=53,id=17705,StackCount=1,Rarity=3,MinLevel=0,SellPrice=32854,Texture=135346,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:17705::::::::40:::::::|h[Thrash Blade]|h|r",Type="Weapon"},["Handstitched Leather Vest"]={SubType="Leather",Level=8,id=5957,StackCount=1,Rarity=1,MinLevel=3,SellPrice=40,Texture=132760,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:5957::::::::40:::::::|h[Handstitched Leather Vest]|h|r",Type="Armor"},["Ruga's Bulwark"]={SubType="Shields",Level=20,id=7120,StackCount=1,Rarity=2,MinLevel=0,SellPrice=895,Texture=134960,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:7120::::::::40:::::::|h[Ruga's Bulwark]|h|r",Type="Armor"},["Chanting Blade"]={SubType="Daggers",Level=18,id=14151,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1055,Texture=135661,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:14151::::::::40:::::::|h[Chanting Blade]|h|r"},["QAEnchant Weapon Crusader"]={SubType="Consumable",Level=1,id=18666,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Type="Consumable",Link="|cffffffff|Hitem:18666::::::::40:::::::|h[QAEnchant Weapon Crusader]|h|r",EquipLoc=""},["Smoked Bear Meat"]={SubType="Consumable",Level=15,id=6890,StackCount=20,Rarity=1,MinLevel=5,SellPrice=6,Texture=133969,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6890::::::::40:::::::|h[Smoked Bear Meat]|h|r"},["Venomshroud Mitts"]={SubType="Cloth",Level=49,id=14442,StackCount=1,Rarity=2,MinLevel=44,SellPrice=4481,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14442::::::::40:::::::|h[Venomshroud Mitts]|h|r"},["Incendicite of Incendius"]={SubType="Quest",Level=1,id=21987,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134577,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:21987::::::::40:::::::|h[Incendicite of Incendius]|h|r"},["Pattern: Living Shoulders"]={SubType="Leatherworking",Level=54,id=15734,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3500,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15734::::::::40:::::::|h[Pattern: Living Shoulders]|h|r",Type="Recipe"},["Windfury Talon"]={SubType="Quest",Level=1,id=4751,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136063,Link="|cffffffff|Hitem:4751::::::::40:::::::|h[Windfury Talon]|h|r",EquipLoc="",Type="Quest"},["Nightbane Staff"]={SubType="Staves",Level=23,id=3227,StackCount=1,Rarity=2,MinLevel=18,SellPrice=2633,Texture=135149,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3227::::::::40:::::::|h[Nightbane Staff]|h|r"},["Ogre Warbeads"]={SubType="Quest",Level=1,id=21982,StackCount=25,Rarity=1,MinLevel=0,SellPrice=0,Texture=133306,Link="|cffffffff|Hitem:21982::::::::40:::::::|h[Ogre Warbeads]|h|r",EquipLoc="",Type="Quest"},["Swashbuckler's Leggings"]={SubType="Leather",Level=56,id=10188,StackCount=1,Rarity=2,MinLevel=51,SellPrice=16717,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10188::::::::40:::::::|h[Swashbuckler's Leggings]|h|r",Type="Armor"},["Monster - Item, Bag - Gray Offhand"]={SubType="Miscellaneous",Level=1,id=12853,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133639,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12853::::::::40:::::::|h[Monster - Item, Bag - Gray Offhand]|h|r"},["Warrior's Pants"]={SubType="Mail",Level=10,id=2966,StackCount=1,Rarity=2,MinLevel=5,SellPrice=146,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:2966::::::::40:::::::|h[Warrior's Pants]|h|r",Type="Armor"},["Permanent Swiftness of Zanza"]={SubType="Consumable",Level=65,id=23796,StackCount=1,Rarity=2,MinLevel=55,SellPrice=0,Texture=134811,Link="|cff1eff00|Hitem:23796::::::::40:::::::|h[Permanent Swiftness of Zanza]|h|r",EquipLoc="",Type="Consumable"},["Control Console Operating Manual"]={SubType="Quest",Level=1,id=5088,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133735,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5088::::::::40:::::::|h[Control Console Operating Manual]|h|r"},["Circle of Hope"]={SubType="Miscellaneous",Level=52,id=20006,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133374,Link="|cff0070dd|Hitem:20006::::::::40:::::::|h[Circle of Hope]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Blasthorn Bow"]={SubType="Bows",Level=61,id=15288,StackCount=1,Rarity=2,MinLevel=56,SellPrice=33743,Texture=135495,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:15288::::::::40:::::::|h[Blasthorn Bow]|h|r",Type="Weapon"},["Durability Belt"]={SubType="Cloth",Level=1,id=14390,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132493,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:14390::::::::40:::::::|h[Durability Belt]|h|r"},["Hunting Gear"]={SubType="Junk",Level=1,id=20367,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=132595,Link="|cff0070dd|Hitem:20367::::::::40:::::::|h[Hunting Gear]|h|r",EquipLoc="",Type="Miscellaneous"},["Amethyst Band"]={SubType="Miscellaneous",Level=37,id=11971,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3969,Texture=133357,Type="Armor",Link="|cff1eff00|Hitem:11971::::::::40:::::::|h[Amethyst Band]|h|r",EquipLoc="INVTYPE_FINGER"},["Permanent Cerebral Cortex Compound"]={SubType="Consumable",Level=1,id=23719,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134812,Link="|cffffffff|Hitem:23719::::::::40:::::::|h[Permanent Cerebral Cortex Compound]|h|r",EquipLoc="",Type="Consumable"},["Cairne's Hoofprint"]={SubType="Quest",Level=1,id=18643,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134332,Type="Quest",Link="|cffffffff|Hitem:18643::::::::40:::::::|h[Cairne's Hoofprint]|h|r",EquipLoc=""},["Volatile Rum"]={SubType="Consumable",Level=1,id=9260,StackCount=10,Rarity=1,MinLevel=0,SellPrice=400,Texture=132788,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9260::::::::40:::::::|h[Volatile Rum]|h|r"},["Deprecated Oslow's Hammer"]={SubType="One-Handed Maces",Level=18,id=1312,StackCount=1,Rarity=0,MinLevel=0,SellPrice=435,Texture=133057,Link="|cff9d9d9d|Hitem:1312::::::::40:::::::|h[Deprecated Oslow's Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Boots of Elements"]={SubType="Mail",Level=59,id=16670,StackCount=1,Rarity=3,MinLevel=54,SellPrice=21027,Texture=132592,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16670::::::::40:::::::|h[Boots of Elements]|h|r",Type="Armor"},["Molten Belt"]={SubType="Leather",Level=70,id=19163,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27931,Texture=132502,Link="|cffa335ee|Hitem:19163::::::::40:::::::|h[Molten Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Brutal Legguards"]={SubType="Mail",Level=29,id=7132,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2338,Texture=134583,Link="|cff1eff00|Hitem:7132::::::::40:::::::|h[Brutal Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Hourglass Sand"]={SubType="Consumable",Level=1,id=19183,StackCount=200,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,Link="|cffffffff|Hitem:19183::::::::40:::::::|h[Hourglass Sand]|h|r",EquipLoc="",Type="Consumable"},["Deprecated Sage Mantle"]={SubType="Cloth",Level=15,id=3221,StackCount=1,Rarity=0,MinLevel=0,SellPrice=82,Texture=135040,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3221::::::::40:::::::|h[Deprecated Sage Mantle]|h|r"},["Rogue Test Dagger"]={SubType="Daggers",Level=39,id=6036,StackCount=1,Rarity=0,MinLevel=34,SellPrice=4215,Texture=135637,Type="Weapon",Link="|cff9d9d9d|Hitem:6036::::::::40:::::::|h[Rogue Test Dagger]|h|r",EquipLoc="INVTYPE_WEAPON"},["Zhovur Axe"]={SubType="Two-Handed Axes",Level=20,id=5318,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1789,Texture=135572,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:5318::::::::40:::::::|h[Zhovur Axe]|h|r",Type="Weapon"},["Mysterious Artifact"]={SubType="Quest",Level=1,id=10442,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134577,EquipLoc="",Link="|cffffffff|Hitem:10442::::::::40:::::::|h[Mysterious Artifact]|h|r",Type="Quest"},["Warden's Mantle"]={SubType="Leather",Level=41,id=14603,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4383,Texture=135056,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14603::::::::40:::::::|h[Warden's Mantle]|h|r"},["Stormpike Insignia Rank 4"]={SubType="Miscellaneous",Level=60,id=17902,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133431,EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:17902::::::::40:::::::|h[Stormpike Insignia Rank 4]|h|r",Type="Armor"},["Field Marshal's Lamellar Faceguard"]={SubType="Plate",Level=74,id=16474,StackCount=1,Rarity=4,MinLevel=60,SellPrice=20063,Texture=133073,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16474::::::::40:::::::|h[Field Marshal's Lamellar Faceguard]|h|r",Type="Armor"},["Outrider Basic Care Package"]={SubType="Consumable",Level=1,id=19154,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134143,Link="|cffffffff|Hitem:19154::::::::40:::::::|h[Outrider Basic Care Package]|h|r",EquipLoc="",Type="Consumable"},["AHNQIRAJ TEST ITEM A CLOTH LEGS"]={SubType="Miscellaneous",Level=1,id=21419,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21419::::::::40:::::::|h[AHNQIRAJ TEST ITEM A CLOTH LEGS]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Small Scorpid Claw"]={SubType="Junk",Level=1,id=19937,StackCount=10,Rarity=0,MinLevel=0,SellPrice=780,Texture=133723,Link="|cff9d9d9d|Hitem:19937::::::::40:::::::|h[Small Scorpid Claw]|h|r",EquipLoc="",Type="Miscellaneous"},["Shadowskin Gloves"]={SubType="Leather",Level=40,id=18238,StackCount=1,Rarity=3,MinLevel=35,SellPrice=3321,Texture=132966,Type="Armor",Link="|cff0070dd|Hitem:18238::::::::40:::::::|h[Shadowskin Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Overlinked Chain Boots"]={SubType="Mail",Level=46,id=4001,StackCount=1,Rarity=0,MinLevel=41,SellPrice=3170,Texture=132535,Link="|cff9d9d9d|Hitem:4001::::::::40:::::::|h[Overlinked Chain Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Lakmaeran's Carcass"]={SubType="Quest",Level=1,id=21027,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133971,Link="|cffffffff|Hitem:21027::::::::40:::::::|h[Lakmaeran's Carcass]|h|r",EquipLoc="",Type="Quest"},["Myrmidon's Cape"]={SubType="Cloth",Level=47,id=8127,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5937,Texture=133766,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:8127::::::::40:::::::|h[Myrmidon's Cape]|h|r"},["Celestial Orb"]={SubType="Miscellaneous",Level=40,id=7515,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5382,Texture=134335,EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:7515::::::::40:::::::|h[Celestial Orb]|h|r",Type="Armor"},["Un'Goro Slime Sample"]={SubType="Quest",Level=1,id=12235,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134859,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12235::::::::40:::::::|h[Un'Goro Slime Sample]|h|r"},["Naxxramas Sword 2H 2 [PH]"]={SubType="Two-Handed Swords",Level=81,id=22814,StackCount=1,Rarity=4,MinLevel=60,SellPrice=220295,Texture=135345,Link="|cffa335ee|Hitem:22814::::::::40:::::::|h[Naxxramas Sword 2H 2 [PH]]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Gemshale Pauldrons"]={SubType="Plate",Level=46,id=9531,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5264,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9531::::::::40:::::::|h[Gemshale Pauldrons]|h|r"},["Red Whelp Gloves"]={SubType="Leather",Level=24,id=7284,StackCount=1,Rarity=2,MinLevel=19,SellPrice=586,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7284::::::::40:::::::|h[Red Whelp Gloves]|h|r"},["Stormcaller's Hauberk"]={SubType="Mail",Level=88,id=21374,StackCount=1,Rarity=4,MinLevel=60,SellPrice=152080,Texture=132635,Link="|cffa335ee|Hitem:21374::::::::40:::::::|h[Stormcaller's Hauberk]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Codex of Psychic Scream III"]={SubType="Book",Level=42,id=8992,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133741,Link="|cffffffff|Hitem:8992::::::::40:::::::|h[Codex of Psychic Scream III]|h|r",EquipLoc="",Type="Recipe"},["Studded Leather Harness"]={SubType="Leather",Level=22,id=6524,StackCount=1,Rarity=1,MinLevel=17,SellPrice=574,Texture=132716,Link="|cffffffff|Hitem:6524::::::::40:::::::|h[Studded Leather Harness]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Potion of Fervor"]={SubType="Consumable",Level=25,id=1450,StackCount=10,Rarity=1,MinLevel=15,SellPrice=10,Texture=134720,Type="Consumable",Link="|cffffffff|Hitem:1450::::::::40:::::::|h[Potion of Fervor]|h|r",EquipLoc=""},["Lieutenant General's Mount"]={SubType="Junk",Level=60,id=16344,StackCount=1,Rarity=1,MinLevel=60,SellPrice=0,Texture=132224,EquipLoc="",Link="|cffffffff|Hitem:16344::::::::40:::::::|h[Lieutenant General's Mount]|h|r",Type="Miscellaneous"},["Inscribed Leather Spaulders"]={SubType="Leather",Level=21,id=4700,StackCount=1,Rarity=1,MinLevel=16,SellPrice=379,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:4700::::::::40:::::::|h[Inscribed Leather Spaulders]|h|r",Type="Armor"},["Copper Chain Vest"]={SubType="Mail",Level=10,id=3471,StackCount=1,Rarity=2,MinLevel=5,SellPrice=142,Texture=132624,Link="|cff1eff00|Hitem:3471::::::::40:::::::|h[Copper Chain Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Grimoire of Life Drain II"]={SubType="Book",Level=22,id=5719,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:5719::::::::40:::::::|h[Grimoire of Life Drain II]|h|r",Type="Recipe"},["Burning Obsidian Band"]={SubType="Miscellaneous",Level=50,id=4988,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3657,Texture=133346,Type="Armor",Link="|cff1eff00|Hitem:4988::::::::40:::::::|h[Burning Obsidian Band]|h|r",EquipLoc="INVTYPE_FINGER"},["Highlander's Lamellar Spaulders"]={SubType="Plate",Level=65,id=20058,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24748,Texture=135032,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:20058::::::::40:::::::|h[Highlander's Lamellar Spaulders]|h|r"},["Sorcerer's Robes"]={SubType="Cloth",Level=60,id=22069,StackCount=1,Rarity=4,MinLevel=0,SellPrice=26269,Texture=132666,Link="|cffa335ee|Hitem:22069::::::::40:::::::|h[Sorcerer's Robes]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Tablet of Healing Wave VI"]={SubType="Book",Level=32,id=9086,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=134459,Link="|cffffffff|Hitem:9086::::::::40:::::::|h[Tablet of Healing Wave VI]|h|r",EquipLoc="",Type="Recipe"},["Tablet of Stoneskin Totem VI"]={SubType="Book",Level=54,id=9161,StackCount=1,Rarity=1,MinLevel=54,SellPrice=8750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9161::::::::40:::::::|h[Tablet of Stoneskin Totem VI]|h|r"},["Clink Shield"]={SubType="Shields",Level=28,id=15466,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2323,Texture=134967,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15466::::::::40:::::::|h[Clink Shield]|h|r",Type="Armor"},["Bloodpetal Zapper"]={SubType="Quest",Level=1,id=11320,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133001,Type="Quest",Link="|cffffffff|Hitem:11320::::::::40:::::::|h[Bloodpetal Zapper]|h|r",EquipLoc=""},["Sleepers' Key"]={SubType="Quest",Level=1,id=5689,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,Link="|cffffffff|Hitem:5689::::::::40:::::::|h[Sleepers' Key]|h|r",EquipLoc="",Type="Quest"},["Ravasaur Scale Boots"]={SubType="Mail",Level=35,id=13124,StackCount=1,Rarity=3,MinLevel=30,SellPrice=3996,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13124::::::::40:::::::|h[Ravasaur Scale Boots]|h|r"},["Dokebi Boots"]={SubType="Leather",Level=31,id=14579,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1791,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14579::::::::40:::::::|h[Dokebi Boots]|h|r"},["Nimbus Boots"]={SubType="Cloth",Level=25,id=6998,StackCount=1,Rarity=2,MinLevel=0,SellPrice=774,Texture=132539,Type="Armor",Link="|cff1eff00|Hitem:6998::::::::40:::::::|h[Nimbus Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Knight-Lieutenant's Silk Boots"]={SubType="Cloth",Level=63,id=16369,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8416,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16369::::::::40:::::::|h[Knight-Lieutenant's Silk Boots]|h|r",Type="Armor"},["Greaves of the People's Militia"]={SubType="Mail",Level=15,id=5944,StackCount=1,Rarity=2,MinLevel=0,SellPrice=331,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:5944::::::::40:::::::|h[Greaves of the People's Militia]|h|r",Type="Armor"},["General's Mail Boots"]={SubType="Mail",Level=71,id=16573,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24795,Texture=132587,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16573::::::::40:::::::|h[General's Mail Boots]|h|r",Type="Armor"},["Knight-Captain's Chain Armguards"]={SubType="Mail",Level=60,id=16402,StackCount=1,Rarity=3,MinLevel=55,SellPrice=7823,Texture=132616,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16402::::::::40:::::::|h[Knight-Captain's Chain Armguards]|h|r",Type="Armor"},["Duskbat Wing"]={SubType="Quest",Level=1,id=3264,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134360,Link="|cffffffff|Hitem:3264::::::::40:::::::|h[Duskbat Wing]|h|r",EquipLoc="",Type="Quest"},["Poobah's Nose Ring"]={SubType="Mail",Level=50,id=4118,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7313,Texture=133345,Link="|cff1eff00|Hitem:4118::::::::40:::::::|h[Poobah's Nose Ring]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Barbaric Cloth Gloves"]={SubType="Cloth",Level=15,id=3308,StackCount=1,Rarity=2,MinLevel=10,SellPrice=144,Texture=132952,Link="|cff1eff00|Hitem:3308::::::::40:::::::|h[Barbaric Cloth Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Libram: Exorcism II"]={SubType="Book",Level=28,id=5673,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133740,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5673::::::::40:::::::|h[Libram: Exorcism II]|h|r"},["Pauldrons of Transcendence"]={SubType="Cloth",Level=76,id=16924,StackCount=1,Rarity=4,MinLevel=60,SellPrice=43918,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16924::::::::40:::::::|h[Pauldrons of Transcendence]|h|r",Type="Armor"},["Bracers of Rock Binding"]={SubType="Quest",Level=1,id=4628,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132601,EquipLoc="",Link="|cffffffff|Hitem:4628::::::::40:::::::|h[Bracers of Rock Binding]|h|r",Type="Quest"},["Test AQ Resource - Linen Bandage"]={SubType="Junk",Level=1,id=21634,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21634::::::::40:::::::|h[Test AQ Resource - Linen Bandage]|h|r",EquipLoc="",Type="Miscellaneous"},["Thorium Headed Arrow"]={SubType="Arrow",Level=57,id=18042,StackCount=200,Rarity=2,MinLevel=52,SellPrice=10,Texture=132382,Type="Projectile",Link="|cff1eff00|Hitem:18042::::::::40:::::::|h[Thorium Headed Arrow]|h|r",EquipLoc="INVTYPE_AMMO"},["Smoldering Wand"]={SubType="Wands",Level=20,id=5208,StackCount=1,Rarity=1,MinLevel=15,SellPrice=668,Texture=135468,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:5208::::::::40:::::::|h[Smoldering Wand]|h|r"},["Master Engineer's Goggles"]={SubType="Cloth",Level=58,id=16008,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11739,Texture=133149,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:16008::::::::40:::::::|h[Master Engineer's Goggles]|h|r",Type="Armor"},["Skittering Blood"]={SubType="Quest",Level=1,id=3254,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,EquipLoc="",Link="|cffffffff|Hitem:3254::::::::40:::::::|h[Skittering Blood]|h|r",Type="Quest"},["Garrison Cloak"]={SubType="Cloth",Level=33,id=9699,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1812,Texture=133754,Link="|cff1eff00|Hitem:9699::::::::40:::::::|h[Garrison Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Wristguards of Renown"]={SubType="Leather",Level=60,id=22204,StackCount=1,Rarity=3,MinLevel=55,SellPrice=12403,Texture=132609,Link="|cff0070dd|Hitem:22204::::::::40:::::::|h[Wristguards of Renown]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Lion-stamped Gloves"]={SubType="Leather",Level=8,id=1359,StackCount=1,Rarity=1,MinLevel=0,SellPrice=19,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:1359::::::::40:::::::|h[Lion-stamped Gloves]|h|r",Type="Armor"},["Templar Girdle"]={SubType="Plate",Level=54,id=10166,StackCount=1,Rarity=2,MinLevel=49,SellPrice=5908,Texture=132521,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10166::::::::40:::::::|h[Templar Girdle]|h|r",Type="Armor"},["Darkwood Staff"]={SubType="Staves",Level=13,id=3446,StackCount=1,Rarity=2,MinLevel=0,SellPrice=592,Texture=135153,Link="|cff1eff00|Hitem:3446::::::::40:::::::|h[Darkwood Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Ornate Spyglass XT"]={SubType="Devices",Level=27,id=20834,StackCount=1,Rarity=2,MinLevel=0,SellPrice=600,Texture=134440,Link="|cff1eff00|Hitem:20834::::::::40:::::::|h[Ornate Spyglass XT]|h|r",EquipLoc="",Type="Trade Goods"},["Modr Fragment"]={SubType="Quest",Level=1,id=2659,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135237,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2659::::::::40:::::::|h[Modr Fragment]|h|r"},["Razor's Edge"]={SubType="One-Handed Axes",Level=23,id=12990,StackCount=1,Rarity=3,MinLevel=18,SellPrice=2589,Texture=135578,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:12990::::::::40:::::::|h[Razor's Edge]|h|r"},["Grimoire of Burning Spirit IV"]={SubType="Book",Level=40,id=4219,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4219::::::::40:::::::|h[Grimoire of Burning Spirit IV]|h|r"},["Staff of Conjuring"]={SubType="Staves",Level=15,id=1933,StackCount=1,Rarity=2,MinLevel=10,SellPrice=905,Texture=135150,Link="|cff1eff00|Hitem:1933::::::::40:::::::|h[Staff of Conjuring]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Caretaker's Cape"]={SubType="Cloth",Level=63,id=19530,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17098,Texture=133765,Link="|cff0070dd|Hitem:19530::::::::40:::::::|h[Caretaker's Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Codex of Mana Burn V"]={SubType="Book",Level=56,id=9021,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=133741,Link="|cffffffff|Hitem:9021::::::::40:::::::|h[Codex of Mana Burn V]|h|r",EquipLoc="",Type="Recipe"},["Schematic: Moonsight Rifle"]={SubType="Engineering",Level=29,id=4412,StackCount=1,Rarity=2,MinLevel=0,SellPrice=375,Texture=134942,Link="|cff1eff00|Hitem:4412::::::::40:::::::|h[Schematic: Moonsight Rifle]|h|r",EquipLoc="",Type="Recipe"},["Blacklash's Bindings"]={SubType="Quest",Level=1,id=4615,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132608,Link="|cffffffff|Hitem:4615::::::::40:::::::|h[Blacklash's Bindings]|h|r",EquipLoc="",Type="Quest"},["Hexed Bracers"]={SubType="Mail",Level=26,id=6665,StackCount=1,Rarity=2,MinLevel=0,SellPrice=895,Texture=132606,Type="Armor",Link="|cff1eff00|Hitem:6665::::::::40:::::::|h[Hexed Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Book of Wrath V"]={SubType="Book",Level=30,id=5156,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:5156::::::::40:::::::|h[Book of Wrath V]|h|r",Type="Recipe"},["Barbaric Iron Breastplate"]={SubType="Mail",Level=32,id=7914,StackCount=1,Rarity=2,MinLevel=27,SellPrice=3330,Texture=132636,Link="|cff1eff00|Hitem:7914::::::::40:::::::|h[Barbaric Iron Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Annals of Darrowshire"]={SubType="Quest",Level=1,id=12900,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133739,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12900::::::::40:::::::|h[Annals of Darrowshire]|h|r"},["Gizlock's Hypertech Buckler"]={SubType="Shields",Level=53,id=17718,StackCount=1,Rarity=3,MinLevel=48,SellPrice=22630,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:17718::::::::40:::::::|h[Gizlock's Hypertech Buckler]|h|r",Type="Armor"},["Wolf Rider's Shoulder Pads"]={SubType="Leather",Level=43,id=15375,StackCount=1,Rarity=2,MinLevel=38,SellPrice=5132,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15375::::::::40:::::::|h[Wolf Rider's Shoulder Pads]|h|r",Type="Armor"},["Ritual Stein"]={SubType="Miscellaneous",Level=24,id=15972,StackCount=1,Rarity=2,MinLevel=19,SellPrice=1171,Texture=132795,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15972::::::::40:::::::|h[Ritual Stein]|h|r",Type="Armor"},["Masterwork Breastplate"]={SubType="Mail",Level=65,id=10266,StackCount=1,Rarity=2,MinLevel=60,SellPrice=32310,Texture=132751,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10266::::::::40:::::::|h[Masterwork Breastplate]|h|r",Type="Armor"},["Marshal's Dreadweave Leggings"]={SubType="Cloth",Level=71,id=17579,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22695,Texture=134603,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:17579::::::::40:::::::|h[Marshal's Dreadweave Leggings]|h|r",Type="Armor"},["High Priestess Boots"]={SubType="Cloth",Level=59,id=12556,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14317,Texture=132592,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:12556::::::::40:::::::|h[High Priestess Boots]|h|r"},["Spellpower Goggles Xtreme"]={SubType="Cloth",Level=43,id=10502,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4088,Texture=133149,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10502::::::::40:::::::|h[Spellpower Goggles Xtreme]|h|r",Type="Armor"},["Sayge's Fortune #24"]={SubType="Junk",Level=10,id=19424,StackCount=1,Rarity=1,MinLevel=10,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19424::::::::40:::::::|h[Sayge's Fortune #24]|h|r",EquipLoc="",Type="Miscellaneous"},["Resurgence Rod"]={SubType="Staves",Level=53,id=17743,StackCount=1,Rarity=3,MinLevel=0,SellPrice=40747,Texture=135225,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:17743::::::::40:::::::|h[Resurgence Rod]|h|r",Type="Weapon"},["Balanced Fighting Stick"]={SubType="Staves",Level=13,id=6215,StackCount=1,Rarity=2,MinLevel=0,SellPrice=601,Texture=135145,Type="Weapon",Link="|cff1eff00|Hitem:6215::::::::40:::::::|h[Balanced Fighting Stick]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Uther's Tribute"]={SubType="Quest",Level=1,id=19850,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133647,Link="|cffffffff|Hitem:19850::::::::40:::::::|h[Uther's Tribute]|h|r",EquipLoc="",Type="Quest"},["Deprecated Rough Pebble"]={SubType="Quest",Level=1,id=6639,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135242,Type="Quest",Link="|cffffffff|Hitem:6639::::::::40:::::::|h[Deprecated Rough Pebble]|h|r",EquipLoc=""},["Stingshot Wand"]={SubType="Wands",Level=28,id=15465,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2713,Texture=135469,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15465::::::::40:::::::|h[Stingshot Wand]|h|r",Type="Weapon"},["[PH] Brilliant Dawn Coif"]={SubType="Mail",Level=100,id=13792,StackCount=1,Rarity=1,MinLevel=100,SellPrice=75151,Texture=133137,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:13792::::::::40:::::::|h[[PH] Brilliant Dawn Coif]|h|r"},["QAEnchant Weapon +15 Strength"]={SubType="Consumable",Level=1,id=22022,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22022::::::::40:::::::|h[QAEnchant Weapon +15 Strength]|h|r",EquipLoc="",Type="Consumable"},["Monster - Trident, Copper"]={SubType="Polearms",Level=1,id=5746,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135575,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5746::::::::40:::::::|h[Monster - Trident, Copper]|h|r",Type="Weapon"},["Marauder's Cloak"]={SubType="Cloth",Level=33,id=15568,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1813,Texture=133759,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15568::::::::40:::::::|h[Marauder's Cloak]|h|r",Type="Armor"},["Gnomish Zapper"]={SubType="Wands",Level=40,id=4547,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8319,Texture=135464,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:4547::::::::40:::::::|h[Gnomish Zapper]|h|r",Type="Weapon"},["Vital Tunic"]={SubType="Cloth",Level=37,id=14215,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3579,Texture=135010,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14215::::::::40:::::::|h[Vital Tunic]|h|r"},["Wool Cloth"]={SubType="Trade Goods",Level=15,id=2592,StackCount=20,Rarity=1,MinLevel=0,SellPrice=33,Texture=132911,Link="|cffffffff|Hitem:2592::::::::40:::::::|h[Wool Cloth]|h|r",EquipLoc="",Type="Trade Goods"},["Champion's Mail Helm"]={SubType="Mail",Level=63,id=16521,StackCount=1,Rarity=3,MinLevel=58,SellPrice=12572,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16521::::::::40:::::::|h[Champion's Mail Helm]|h|r",Type="Armor"},["Long Draping Cape"]={SubType="Cloth",Level=15,id=10638,StackCount=1,Rarity=2,MinLevel=0,SellPrice=210,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10638::::::::40:::::::|h[Long Draping Cape]|h|r",Type="Armor"},["Fervent Helm"]={SubType="Mail",Level=58,id=18319,StackCount=1,Rarity=3,MinLevel=53,SellPrice=20989,Texture=133140,Type="Armor",Link="|cff0070dd|Hitem:18319::::::::40:::::::|h[Fervent Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Embalming Ichor"]={SubType="Quest",Level=1,id=2834,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134717,EquipLoc="",Link="|cffffffff|Hitem:2834::::::::40:::::::|h[Embalming Ichor]|h|r",Type="Quest"},["Formula: Enchant Chest - Lesser Mana"]={SubType="Enchanting",Level=19,id=6346,StackCount=1,Rarity=2,MinLevel=0,SellPrice=100,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:6346::::::::40:::::::|h[Formula: Enchant Chest - Lesser Mana]|h|r",EquipLoc=""},["Staff of Hale Magefire"]={SubType="Staves",Level=62,id=13000,StackCount=1,Rarity=3,MinLevel=57,SellPrice=65225,Texture=135160,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13000::::::::40:::::::|h[Staff of Hale Magefire]|h|r"},["Dawn Treaders"]={SubType="Leather",Level=58,id=19052,StackCount=1,Rarity=3,MinLevel=53,SellPrice=17621,Texture=132565,Link="|cff0070dd|Hitem:19052::::::::40:::::::|h[Dawn Treaders]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Bandit Jerkin"]={SubType="Leather",Level=23,id=9782,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1113,Texture=135015,Link="|cff1eff00|Hitem:9782::::::::40:::::::|h[Bandit Jerkin]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Robe of Crystal Waters"]={SubType="Cloth",Level=40,id=4120,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4192,Texture=132660,Link="|cff1eff00|Hitem:4120::::::::40:::::::|h[Robe of Crystal Waters]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["The Eye of Nerub"]={SubType="Polearms",Level=83,id=23039,StackCount=1,Rarity=4,MinLevel=60,SellPrice=264392,Texture=135574,Link="|cffa335ee|Hitem:23039::::::::40:::::::|h[The Eye of Nerub]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Woven Bracers"]={SubType="Cloth",Level=10,id=3607,StackCount=1,Rarity=1,MinLevel=5,SellPrice=29,Texture=132609,Type="Armor",Link="|cffffffff|Hitem:3607::::::::40:::::::|h[Woven Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Dragonbreath Chili"]={SubType="Consumable",Level=40,id=12217,StackCount=20,Rarity=1,MinLevel=35,SellPrice=300,Texture=132804,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12217::::::::40:::::::|h[Dragonbreath Chili]|h|r"},["Fen Ring"]={SubType="Miscellaneous",Level=37,id=12010,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2469,Texture=133346,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12010::::::::40:::::::|h[Fen Ring]|h|r"},["Dark Edge of Insanity"]={SubType="Two-Handed Axes",Level=84,id=21134,StackCount=1,Rarity=4,MinLevel=60,SellPrice=266569,Texture=132418,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:21134::::::::40:::::::|h[Dark Edge of Insanity]|h|r"},["Codex of Renew III"]={SubType="Book",Level=20,id=1108,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:1108::::::::40:::::::|h[Codex of Renew III]|h|r",Type="Recipe"},["Banded Cloak"]={SubType="Cloth",Level=29,id=9838,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1174,Texture=133758,Link="|cff1eff00|Hitem:9838::::::::40:::::::|h[Banded Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Battleworn Hammer"]={SubType="Two-Handed Maces",Level=2,id=2361,StackCount=1,Rarity=1,MinLevel=1,SellPrice=9,Texture=133052,Link="|cffffffff|Hitem:2361::::::::40:::::::|h[Battleworn Hammer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Gahz'rilla Fang"]={SubType="Daggers",Level=47,id=9467,StackCount=1,Rarity=2,MinLevel=42,SellPrice=18681,Texture=134298,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:9467::::::::40:::::::|h[Gahz'rilla Fang]|h|r"},["Piglet's Collar"]={SubType="Junk",Level=1,id=23007,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132514,Link="|cffffffff|Hitem:23007::::::::40:::::::|h[Piglet's Collar]|h|r",EquipLoc="",Type="Miscellaneous"},["Melenas' Head"]={SubType="Quest",Level=1,id=5221,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134161,EquipLoc="",Link="|cffffffff|Hitem:5221::::::::40:::::::|h[Melenas' Head]|h|r",Type="Quest"},["Legionnaire's Silk Pants"]={SubType="Cloth",Level=63,id=16490,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11560,Texture=134591,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16490::::::::40:::::::|h[Legionnaire's Silk Pants]|h|r",Type="Armor"},["Deprecated Cracked Elemental Bracer"]={SubType="Quest",Level=1,id=5449,StackCount=20,Rarity=1,MinLevel=0,SellPrice=15,Texture=132606,EquipLoc="",Link="|cffffffff|Hitem:5449::::::::40:::::::|h[Deprecated Cracked Elemental Bracer]|h|r",Type="Quest"},["103 Pound Mightfish"]={SubType="Junk",Level=55,id=13917,StackCount=1,Rarity=1,MinLevel=0,SellPrice=200,Texture=134300,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13917::::::::40:::::::|h[103 Pound Mightfish]|h|r"},["Supreme Leggings"]={SubType="Leather",Level=63,id=15440,StackCount=1,Rarity=2,MinLevel=58,SellPrice=24707,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15440::::::::40:::::::|h[Supreme Leggings]|h|r",Type="Armor"},["QAEnchant Weapon Healing Power"]={SubType="Consumable",Level=1,id=18669,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Type="Consumable",Link="|cffffffff|Hitem:18669::::::::40:::::::|h[QAEnchant Weapon Healing Power]|h|r",EquipLoc=""},["Test Nature Res Shoulders Cloth"]={SubType="Cloth",Level=35,id=16122,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2107,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16122::::::::40:::::::|h[Test Nature Res Shoulders Cloth]|h|r",Type="Armor"},["Filled Containment Coffer"]={SubType="Quest",Level=1,id=7292,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132595,EquipLoc="",Link="|cffffffff|Hitem:7292::::::::40:::::::|h[Filled Containment Coffer]|h|r",Type="Quest"},["Deprecated Mountain Spring Water"]={SubType="Consumable",Level=5,id=2071,StackCount=10,Rarity=1,MinLevel=1,SellPrice=2,Texture=132794,EquipLoc="",Link="|cffffffff|Hitem:2071::::::::40:::::::|h[Deprecated Mountain Spring Water]|h|r",Type="Consumable"},["Heaven's Light"]={SubType="One-Handed Maces",Level=45,id=13026,StackCount=1,Rarity=3,MinLevel=40,SellPrice=19441,Texture=133041,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:13026::::::::40:::::::|h[Heaven's Light]|h|r"},["Deprecated Medal of Fortitude"]={SubType="Miscellaneous",Level=40,id=2826,StackCount=1,Rarity=0,MinLevel=0,SellPrice=750,Texture=133282,EquipLoc="INVTYPE_TRINKET",Link="|cff9d9d9d|Hitem:2826::::::::40:::::::|h[Deprecated Medal of Fortitude]|h|r",Type="Armor"},["Smooth Leather Boots"]={SubType="Leather",Level=54,id=3970,StackCount=1,Rarity=0,MinLevel=49,SellPrice=4296,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:3970::::::::40:::::::|h[Smooth Leather Boots]|h|r",Type="Armor"},["Helm of Latent Power"]={SubType="Mail",Level=62,id=18807,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25796,Texture=133126,Type="Armor",Link="|cff0070dd|Hitem:18807::::::::40:::::::|h[Helm of Latent Power]|h|r",EquipLoc="INVTYPE_HEAD"},["Feyscale Cloak"]={SubType="Cloth",Level=20,id=6632,StackCount=1,Rarity=2,MinLevel=15,SellPrice=642,Texture=133754,Type="Armor",Link="|cff1eff00|Hitem:6632::::::::40:::::::|h[Feyscale Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Admiral Proudmoore's Orders"]={SubType="Quest",Level=1,id=4883,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4883::::::::40:::::::|h[Admiral Proudmoore's Orders]|h|r"},["Gothic Plate Leggings"]={SubType="Plate",Level=47,id=10091,StackCount=1,Rarity=2,MinLevel=42,SellPrice=7441,Texture=134589,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10091::::::::40:::::::|h[Gothic Plate Leggings]|h|r",Type="Armor"},["[PH] Plate Leggings of the Rising Dawn"]={SubType="Plate",Level=100,id=13784,StackCount=1,Rarity=1,MinLevel=100,SellPrice=71843,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:13784::::::::40:::::::|h[[PH] Plate Leggings of the Rising Dawn]|h|r"},["White Ravasaur Claw"]={SubType="Quest",Level=1,id=11477,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,Type="Quest",Link="|cffffffff|Hitem:11477::::::::40:::::::|h[White Ravasaur Claw]|h|r",EquipLoc=""},["Marauder's Shoulder Pads"]={SubType="Mail",Level=40,id=15574,StackCount=1,Rarity=2,MinLevel=35,SellPrice=5150,Texture=135058,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15574::::::::40:::::::|h[Marauder's Shoulder Pads]|h|r",Type="Armor"},["Deprecated Glinting Scale Crown"]={SubType="Mail",Level=26,id=3046,StackCount=1,Rarity=0,MinLevel=21,SellPrice=571,Texture=133071,EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:3046::::::::40:::::::|h[Deprecated Glinting Scale Crown]|h|r",Type="Armor"},["Fish Gutter"]={SubType="One-Handed Axes",Level=32,id=3755,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5447,Texture=132416,Link="|cff1eff00|Hitem:3755::::::::40:::::::|h[Fish Gutter]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Marbled Buckler"]={SubType="Shields",Level=36,id=6725,StackCount=1,Rarity=3,MinLevel=0,SellPrice=6105,Texture=134956,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:6725::::::::40:::::::|h[Marbled Buckler]|h|r"},["Gong of Dethmoora"]={SubType="Quest",Level=1,id=18627,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=133061,Type="Quest",Link="|cffffffff|Hitem:18627::::::::40:::::::|h[Gong of Dethmoora]|h|r",EquipLoc=""},["Zulian Slicer"]={SubType="One-Handed Swords",Level=68,id=19901,StackCount=1,Rarity=3,MinLevel=60,SellPrice=70566,Texture=135345,Link="|cff0070dd|Hitem:19901::::::::40:::::::|h[Zulian Slicer]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Copper Claymore"]={SubType="Two-Handed Swords",Level=11,id=7955,StackCount=1,Rarity=1,MinLevel=6,SellPrice=241,Texture=135322,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:7955::::::::40:::::::|h[Copper Claymore]|h|r",Type="Weapon"},["Summoner's Wand"]={SubType="Wands",Level=34,id=5245,StackCount=1,Rarity=2,MinLevel=29,SellPrice=5091,Texture=135144,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5245::::::::40:::::::|h[Summoner's Wand]|h|r",Type="Weapon"},["Ring of the Heavens"]={SubType="Miscellaneous",Level=56,id=12056,StackCount=1,Rarity=2,MinLevel=51,SellPrice=8375,Texture=133352,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12056::::::::40:::::::|h[Ring of the Heavens]|h|r"},["World Enlarger"]={SubType="Devices",Level=50,id=18660,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=133866,Type="Trade Goods",Link="|cff1eff00|Hitem:18660::::::::40:::::::|h[World Enlarger]|h|r",EquipLoc=""},["Deprecated Scroll of Spirit Armor V"]={SubType="Consumable",Level=39,id=4427,StackCount=5,Rarity=1,MinLevel=29,SellPrice=97,Texture=134941,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:4427::::::::40:::::::|h[Deprecated Scroll of Spirit Armor V]|h|r"},["Book of Regrowth V"]={SubType="Book",Level=36,id=8772,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8772::::::::40:::::::|h[Book of Regrowth V]|h|r"},["Pattern: Green Whelp Bracers"]={SubType="Leatherworking",Level=38,id=7451,StackCount=1,Rarity=2,MinLevel=0,SellPrice=700,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:7451::::::::40:::::::|h[Pattern: Green Whelp Bracers]|h|r"},["Scavenger Tunic"]={SubType="Leather",Level=5,id=11851,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=132718,Type="Armor",Link="|cffffffff|Hitem:11851::::::::40:::::::|h[Scavenger Tunic]|h|r",EquipLoc="INVTYPE_CHEST"},["Ghost Dye"]={SubType="Trade Goods",Level=49,id=9210,StackCount=10,Rarity=1,MinLevel=0,SellPrice=750,Texture=134711,Link="|cffffffff|Hitem:9210::::::::40:::::::|h[Ghost Dye]|h|r",EquipLoc="",Type="Trade Goods"},["Cloven Hoof"]={SubType="Quest",Level=1,id=5869,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132368,EquipLoc="",Link="|cffffffff|Hitem:5869::::::::40:::::::|h[Cloven Hoof]|h|r",Type="Quest"},["The Jackhammer"]={SubType="Two-Handed Maces",Level=45,id=9423,StackCount=1,Rarity=3,MinLevel=40,SellPrice=25463,Texture=133044,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9423::::::::40:::::::|h[The Jackhammer]|h|r"},["Arcane Leggings"]={SubType="Cloth",Level=60,id=8289,StackCount=1,Rarity=2,MinLevel=55,SellPrice=16688,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:8289::::::::40:::::::|h[Arcane Leggings]|h|r"},["Jimmied Handcuffs"]={SubType="Mail",Level=26,id=3228,StackCount=1,Rarity=3,MinLevel=21,SellPrice=1098,Texture=132601,Type="Armor",Link="|cff0070dd|Hitem:3228::::::::40:::::::|h[Jimmied Handcuffs]|h|r",EquipLoc="INVTYPE_WRIST"},["Staff of Noh'Orahil"]={SubType="Staves",Level=40,id=15105,StackCount=1,Rarity=2,MinLevel=0,SellPrice=14397,Texture=135151,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15105::::::::40:::::::|h[Staff of Noh'Orahil]|h|r",Type="Weapon"},["Sash of the Windreaver"]={SubType="Mail",Level=61,id=18676,StackCount=1,Rarity=3,MinLevel=56,SellPrice=16080,Texture=132520,Type="Armor",Link="|cff0070dd|Hitem:18676::::::::40:::::::|h[Sash of the Windreaver]|h|r",EquipLoc="INVTYPE_WAIST"},["Stonesplinter Dagger"]={SubType="Daggers",Level=13,id=2266,StackCount=1,Rarity=2,MinLevel=8,SellPrice=479,Texture=135644,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:2266::::::::40:::::::|h[Stonesplinter Dagger]|h|r"},["Duskwoven Sandals"]={SubType="Cloth",Level=50,id=10058,StackCount=1,Rarity=2,MinLevel=45,SellPrice=7083,Texture=132543,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10058::::::::40:::::::|h[Duskwoven Sandals]|h|r",Type="Armor"},["Monster - Shield, Wall Metal Silver"]={SubType="Shields",Level=1,id=12980,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:12980::::::::40:::::::|h[Monster - Shield, Wall Metal Silver]|h|r"},["Monster - Sword2H, Claymore Silver"]={SubType="Two-Handed Swords",Level=1,id=13160,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13160::::::::40:::::::|h[Monster - Sword2H, Claymore Silver]|h|r"},["Zandalar Illusionist's Robe DEPRECATED"]={SubType="Cloth",Level=65,id=19844,StackCount=1,Rarity=4,MinLevel=0,SellPrice=35388,Texture=132653,Link="|cffa335ee|Hitem:19844::::::::40:::::::|h[Zandalar Illusionist's Robe DEPRECATED]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Fire Ruby"]={SubType="Miscellaneous",Level=52,id=20036,StackCount=1,Rarity=3,MinLevel=0,SellPrice=2750,Texture=134085,Link="|cff0070dd|Hitem:20036::::::::40:::::::|h[Fire Ruby]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Mask of the Unforgiven"]={SubType="Leather",Level=57,id=13404,StackCount=1,Rarity=3,MinLevel=52,SellPrice=15895,Texture=133693,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:13404::::::::40:::::::|h[Mask of the Unforgiven]|h|r"},["Crude Throwing Axe"]={SubType="Thrown",Level=3,id=3111,StackCount=200,Rarity=1,MinLevel=1,SellPrice=0,Texture=132410,Type="Weapon",EquipLoc="INVTYPE_THROWN",Link="|cffffffff|Hitem:3111::::::::40:::::::|h[Crude Throwing Axe]|h|r"},["Stormwind Nougat"]={SubType="Quest",Level=1,id=20492,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133983,Link="|cffffffff|Hitem:20492::::::::40:::::::|h[Stormwind Nougat]|h|r",EquipLoc="",Type="Quest"},["Klinfran's Head"]={SubType="Quest",Level=1,id=18953,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136221,Type="Quest",Link="|cffffffff|Hitem:18953::::::::40:::::::|h[Klinfran's Head]|h|r",EquipLoc=""},["Pattern: Red Linen Bag"]={SubType="Tailoring",Level=14,id=5771,StackCount=1,Rarity=1,MinLevel=0,SellPrice=50,Texture=134939,Link="|cffffffff|Hitem:5771::::::::40:::::::|h[Pattern: Red Linen Bag]|h|r",EquipLoc="",Type="Recipe"},["Smoldering Robe"]={SubType="Cloth",Level=26,id=3072,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1207,Texture=132659,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:3072::::::::40:::::::|h[Smoldering Robe]|h|r"},["The Deed to Brill"]={SubType="Quest",Level=1,id=13471,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13471::::::::40:::::::|h[The Deed to Brill]|h|r"},["Libram: Seal of Might"]={SubType="Book",Level=8,id=5658,StackCount=1,Rarity=1,MinLevel=8,SellPrice=87,Texture=133740,Link="|cffffffff|Hitem:5658::::::::40:::::::|h[Libram: Seal of Might]|h|r",EquipLoc="",Type="Recipe"},["Gryphon Mail Crown"]={SubType="Mail",Level=50,id=15623,StackCount=1,Rarity=2,MinLevel=45,SellPrice=10715,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15623::::::::40:::::::|h[Gryphon Mail Crown]|h|r",Type="Armor"},["Overseer's Ring"]={SubType="Miscellaneous",Level=20,id=1189,StackCount=1,Rarity=2,MinLevel=15,SellPrice=625,Texture=133345,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:1189::::::::40:::::::|h[Overseer's Ring]|h|r",Type="Armor"},["Gloves of the Atal'ai Prophet"]={SubType="Cloth",Level=55,id=10808,StackCount=1,Rarity=3,MinLevel=50,SellPrice=7629,Texture=132951,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:10808::::::::40:::::::|h[Gloves of the Atal'ai Prophet]|h|r",Type="Armor"},["Red Dragon Orb"]={SubType="Junk",Level=20,id=19054,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134337,Link="|cffffffff|Hitem:19054::::::::40:::::::|h[Red Dragon Orb]|h|r",EquipLoc="",Type="Miscellaneous"},["White Traditional Hanbok"]={SubType="Miscellaneous",Level=10,id=13897,StackCount=1,Rarity=1,MinLevel=0,SellPrice=595,Texture=132691,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:13897::::::::40:::::::|h[White Traditional Hanbok]|h|r"},["Helm of the Lifegiver"]={SubType="Mail",Level=62,id=18870,StackCount=1,Rarity=4,MinLevel=57,SellPrice=31384,Texture=133120,Type="Armor",Link="|cffa335ee|Hitem:18870::::::::40:::::::|h[Helm of the Lifegiver]|h|r",EquipLoc="INVTYPE_HEAD"},["Plans: Masterwork Stormhammer"]={SubType="Blacksmithing",Level=63,id=12837,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12837::::::::40:::::::|h[Plans: Masterwork Stormhammer]|h|r"},["Thunder Lizard Blood"]={SubType="Quest",Level=1,id=5143,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134719,Link="|cffffffff|Hitem:5143::::::::40:::::::|h[Thunder Lizard Blood]|h|r",EquipLoc="",Type="Quest"},["Gift of Friendship: Ironforge"]={SubType="Consumable",Level=1,id=22168,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135449,Link="|cffffffff|Hitem:22168::::::::40:::::::|h[Gift of Friendship: Ironforge]|h|r",EquipLoc="",Type="Consumable"},["Lupine Buckler"]={SubType="Shields",Level=17,id=15014,StackCount=1,Rarity=2,MinLevel=12,SellPrice=585,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15014::::::::40:::::::|h[Lupine Buckler]|h|r",Type="Armor"},["Venomtail Poison Sac"]={SubType="Quest",Level=1,id=4886,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134343,Type="Quest",Link="|cffffffff|Hitem:4886::::::::40:::::::|h[Venomtail Poison Sac]|h|r",EquipLoc=""},["Knight-Captain's Lamellar Cinch"]={SubType="Plate",Level=60,id=16411,StackCount=1,Rarity=3,MinLevel=55,SellPrice=5013,Texture=132516,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16411::::::::40:::::::|h[Knight-Captain's Lamellar Cinch]|h|r",Type="Armor"},["Mutant Scale Breastplate"]={SubType="Mail",Level=28,id=6627,StackCount=1,Rarity=3,MinLevel=23,SellPrice=2620,Texture=132743,Type="Armor",Link="|cff0070dd|Hitem:6627::::::::40:::::::|h[Mutant Scale Breastplate]|h|r",EquipLoc="INVTYPE_CHEST"},["Militia Dagger"]={SubType="Daggers",Level=5,id=2224,StackCount=1,Rarity=1,MinLevel=0,SellPrice=24,Texture=135641,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:2224::::::::40:::::::|h[Militia Dagger]|h|r"},["20-slot Bag"]={SubType="Bag",Level=1,id=1977,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133628,Type="Container",Link="|cffffffff|Hitem:1977::::::::40:::::::|h[20-slot Bag]|h|r",EquipLoc="INVTYPE_BAG"},["Recovered Tome"]={SubType="Quest",Level=1,id=3658,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=133743,Type="Quest",Link="|cffffffff|Hitem:3658::::::::40:::::::|h[Recovered Tome]|h|r",EquipLoc=""},["Libram: Seal of Righteousness II"]={SubType="Book",Level=26,id=5661,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:5661::::::::40:::::::|h[Libram: Seal of Righteousness II]|h|r",Type="Recipe"},["Grimoire of Siphon Mana II"]={SubType="Book",Level=36,id=5722,StackCount=1,Rarity=1,MinLevel=36,SellPrice=4500,Texture=133738,Link="|cffffffff|Hitem:5722::::::::40:::::::|h[Grimoire of Siphon Mana II]|h|r",EquipLoc="",Type="Recipe"},["Ouro's Intact Hide"]={SubType="Quest",Level=1,id=20927,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=134892,Link="|cffa335ee|Hitem:20927::::::::40:::::::|h[Ouro's Intact Hide]|h|r",EquipLoc="",Type="Quest"},["Runed Copper Gauntlets"]={SubType="Mail",Level=12,id=3472,StackCount=1,Rarity=1,MinLevel=7,SellPrice=71,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:3472::::::::40:::::::|h[Runed Copper Gauntlets]|h|r",Type="Armor"},["[PH] Plate Bracers of the Rising Dawn"]={SubType="Plate",Level=100,id=13744,StackCount=1,Rarity=1,MinLevel=100,SellPrice=35932,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:13744::::::::40:::::::|h[[PH] Plate Bracers of the Rising Dawn]|h|r"},["Heavy Shortbow"]={SubType="Bows",Level=15,id=3036,StackCount=1,Rarity=2,MinLevel=10,SellPrice=515,Texture=135500,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:3036::::::::40:::::::|h[Heavy Shortbow]|h|r"},["Heroic Greaves"]={SubType="Plate",Level=58,id=14932,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11784,Texture=132587,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14932::::::::40:::::::|h[Heroic Greaves]|h|r"},["Flute of Xavaric"]={SubType="Quest",Level=54,id=11668,StackCount=1,Rarity=1,MinLevel=49,SellPrice=0,Texture=133942,Type="Quest",Link="|cffffffff|Hitem:11668::::::::40:::::::|h[Flute of Xavaric]|h|r",EquipLoc=""},["Broken Samophlange"]={SubType="Quest",Level=1,id=11142,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132995,Type="Quest",Link="|cffffffff|Hitem:11142::::::::40:::::::|h[Broken Samophlange]|h|r",EquipLoc=""},["Ironbark Shield"]={SubType="Shields",Level=52,id=20502,StackCount=1,Rarity=3,MinLevel=0,SellPrice=21277,Texture=134957,Link="|cff0070dd|Hitem:20502::::::::40:::::::|h[Ironbark Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Egan's Blaster"]={SubType="Quest",Level=1,id=13289,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135614,Type="Quest",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:13289::::::::40:::::::|h[Egan's Blaster]|h|r"},["Pattern: Dreamscale Breastplate"]={SubType="Leatherworking",Level=68,id=20382,StackCount=1,Rarity=1,MinLevel=0,SellPrice=15000,Texture=134939,Link="|cffffffff|Hitem:20382::::::::40:::::::|h[Pattern: Dreamscale Breastplate]|h|r",EquipLoc="",Type="Recipe"},["Mudskunk Lure"]={SubType="Quest",Level=1,id=19974,StackCount=20,Rarity=1,MinLevel=0,SellPrice=2500,Texture=132620,Link="|cffffffff|Hitem:19974::::::::40:::::::|h[Mudskunk Lure]|h|r",EquipLoc="",Type="Quest"},["Revenant Helmet"]={SubType="Plate",Level=51,id=10132,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7608,Texture=133071,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10132::::::::40:::::::|h[Revenant Helmet]|h|r",Type="Armor"},["Heavy Crossbow"]={SubType="Crossbows",Level=34,id=15809,StackCount=1,Rarity=1,MinLevel=29,SellPrice=2938,Texture=135532,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:15809::::::::40:::::::|h[Heavy Crossbow]|h|r",Type="Weapon"},["Buckled Boots"]={SubType="Leather",Level=21,id=5311,StackCount=1,Rarity=2,MinLevel=0,SellPrice=601,Texture=132537,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:5311::::::::40:::::::|h[Buckled Boots]|h|r",Type="Armor"},["Gloves of Enforcement"]={SubType="Leather",Level=76,id=21672,StackCount=1,Rarity=4,MinLevel=60,SellPrice=35158,Texture=132951,Link="|cffa335ee|Hitem:21672::::::::40:::::::|h[Gloves of Enforcement]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Hallowed Wand - Random"]={SubType="Consumable",Level=1,id=20413,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135474,Link="|cffffffff|Hitem:20413::::::::40:::::::|h[Hallowed Wand - Random]|h|r",EquipLoc="",Type="Consumable"},["A Pretty Rock"]={SubType="Junk",Level=1,id=5429,StackCount=5,Rarity=0,MinLevel=0,SellPrice=137,Texture=134566,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5429::::::::40:::::::|h[A Pretty Rock]|h|r"},["Snowblind Shoes"]={SubType="Cloth",Level=69,id=19131,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29746,Texture=132571,Link="|cffa335ee|Hitem:19131::::::::40:::::::|h[Snowblind Shoes]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Bracers of Heroism"]={SubType="Plate",Level=65,id=21996,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12568,Texture=132617,Link="|cff0070dd|Hitem:21996::::::::40:::::::|h[Bracers of Heroism]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Field Marshal's Plate Armor"]={SubType="Plate",Level=74,id=16477,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25107,Texture=132738,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16477::::::::40:::::::|h[Field Marshal's Plate Armor]|h|r",Type="Armor"},["Schematic: Lovingly Crafted Boomstick"]={SubType="Engineering",Level=24,id=13309,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13309::::::::40:::::::|h[Schematic: Lovingly Crafted Boomstick]|h|r"},["Adventurer's Gloves"]={SubType="Leather",Level=63,id=10260,StackCount=1,Rarity=2,MinLevel=58,SellPrice=11945,Texture=132959,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10260::::::::40:::::::|h[Adventurer's Gloves]|h|r",Type="Armor"},["Sigil of Thoradin"]={SubType="Quest",Level=1,id=4453,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134415,EquipLoc="",Link="|cffffffff|Hitem:4453::::::::40:::::::|h[Sigil of Thoradin]|h|r",Type="Quest"},["Seahorn's Sealed Letter"]={SubType="Quest",Level=1,id=4494,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133466,Link="|cffffffff|Hitem:4494::::::::40:::::::|h[Seahorn's Sealed Letter]|h|r",EquipLoc="",Type="Quest"},["Singed Letter"]={SubType="Quest",Level=48,id=10443,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=133471,EquipLoc="",Link="|cffffffff|Hitem:10443::::::::40:::::::|h[Singed Letter]|h|r",Type="Quest"},["Monster - Shield, Horde A03 Triangle"]={SubType="Shields",Level=1,id=12453,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:12453::::::::40:::::::|h[Monster - Shield, Horde A03 Triangle]|h|r"},["Green Hills of Stranglethorn - Chapter IV"]={SubType="Quest",Level=1,id=2759,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133677,Link="|cffffffff|Hitem:2759::::::::40:::::::|h[Green Hills of Stranglethorn - Chapter IV]|h|r",EquipLoc="",Type="Quest"},["Redemption"]={SubType="Staves",Level=61,id=22406,StackCount=1,Rarity=3,MinLevel=56,SellPrice=62270,Texture=135160,Link="|cff0070dd|Hitem:22406::::::::40:::::::|h[Redemption]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Deprecated Dwarven Squire's Belt"]={SubType="Miscellaneous",Level=1,id=98,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132493,Link="|cffffffff|Hitem:98::::::::40:::::::|h[Deprecated Dwarven Squire's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Nathanos' Chest"]={SubType="Quest",Level=1,id=15876,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132597,EquipLoc="",Link="|cffffffff|Hitem:15876::::::::40:::::::|h[Nathanos' Chest]|h|r",Type="Quest"},["Arena Bracers"]={SubType="Leather",Level=50,id=18710,StackCount=1,Rarity=3,MinLevel=45,SellPrice=7224,Texture=132607,Type="Armor",Link="|cff0070dd|Hitem:18710::::::::40:::::::|h[Arena Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Crescent Key"]={SubType="Key",Level=1,id=18249,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134244,Type="Key",Link="|cffffffff|Hitem:18249::::::::40:::::::|h[Crescent Key]|h|r",EquipLoc=""},["Schematic: Lifelike Mechanical Toad"]={SubType="Engineering",Level=53,id=16044,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:16044::::::::40:::::::|h[Schematic: Lifelike Mechanical Toad]|h|r",Type="Recipe"},["Unearthed Bands"]={SubType="Leather",Level=35,id=9428,StackCount=1,Rarity=3,MinLevel=30,SellPrice=2096,Texture=132605,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:9428::::::::40:::::::|h[Unearthed Bands]|h|r"},["Heavy Stone"]={SubType="Trade Goods",Level=25,id=2838,StackCount=20,Rarity=1,MinLevel=0,SellPrice=60,Texture=135238,Link="|cffffffff|Hitem:2838::::::::40:::::::|h[Heavy Stone]|h|r",EquipLoc="",Type="Trade Goods"},["White Bone Band"]={SubType="Miscellaneous",Level=52,id=11862,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7042,Texture=133722,Type="Armor",Link="|cff1eff00|Hitem:11862::::::::40:::::::|h[White Bone Band]|h|r",EquipLoc="INVTYPE_FINGER"},["Bridgeworker's Gloves"]={SubType="Mail",Level=20,id=1303,StackCount=1,Rarity=2,MinLevel=0,SellPrice=418,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:1303::::::::40:::::::|h[Bridgeworker's Gloves]|h|r"},["Frostwolf Maps"]={SubType="Quest",Level=1,id=17822,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134269,EquipLoc="",Link="|cffffffff|Hitem:17822::::::::40:::::::|h[Frostwolf Maps]|h|r",Type="Quest"},["Monster - Spear, Broad Notched"]={SubType="Spears",Level=1,id=12986,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12986::::::::40:::::::|h[Monster - Spear, Broad Notched]|h|r"},["Marshal Haggard's Badge"]={SubType="Consumable",Level=1,id=6782,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133277,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6782::::::::40:::::::|h[Marshal Haggard's Badge]|h|r"},["Hive'Zora Scout Orders"]={SubType="Quest",Level=60,id=21159,StackCount=1,Rarity=1,MinLevel=58,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:21159::::::::40:::::::|h[Hive'Zora Scout Orders]|h|r",EquipLoc="",Type="Quest"},["Rustler Gloves"]={SubType="Leather",Level=43,id=9704,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3573,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9704::::::::40:::::::|h[Rustler Gloves]|h|r"},["Dried Bat Blood"]={SubType="Junk",Level=1,id=6293,StackCount=10,Rarity=0,MinLevel=0,SellPrice=33,Texture=136168,Link="|cff9d9d9d|Hitem:6293::::::::40:::::::|h[Dried Bat Blood]|h|r",EquipLoc="",Type="Miscellaneous"},["Purple Skeletal Warhorse"]={SubType="Junk",Level=60,id=18791,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132264,Type="Miscellaneous",Link="|cffa335ee|Hitem:18791::::::::40:::::::|h[Purple Skeletal Warhorse]|h|r",EquipLoc=""},["Strength of the Treant"]={SubType="Staves",Level=50,id=9683,StackCount=1,Rarity=2,MinLevel=0,SellPrice=29952,Texture=135162,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:9683::::::::40:::::::|h[Strength of the Treant]|h|r"},["Miscellaneous Goblin Supplies"]={SubType="Quest",Level=1,id=2252,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134070,Type="Quest",Link="|cffffffff|Hitem:2252::::::::40:::::::|h[Miscellaneous Goblin Supplies]|h|r",EquipLoc=""},["Deprecated Impact Shot"]={SubType="Bullet",Level=20,id=3032,StackCount=200,Rarity=1,MinLevel=15,SellPrice=0,Texture=132384,Link="|cffffffff|Hitem:3032::::::::40:::::::|h[Deprecated Impact Shot]|h|r",EquipLoc="INVTYPE_AMMO",Type="Projectile"},["Banded Boots"]={SubType="Mail",Level=32,id=10409,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2409,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10409::::::::40:::::::|h[Banded Boots]|h|r",Type="Armor"},["Encased Fiery Essence"]={SubType="Quest",Level=1,id=11230,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135824,Type="Quest",Link="|cffffffff|Hitem:11230::::::::40:::::::|h[Encased Fiery Essence]|h|r",EquipLoc=""},["Formula: Enchant Boots - Spirit"]={SubType="Enchanting",Level=55,id=16220,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16220::::::::40:::::::|h[Formula: Enchant Boots - Spirit]|h|r",Type="Recipe"},["Lunar Cloak"]={SubType="Cloth",Level=40,id=14251,StackCount=1,Rarity=2,MinLevel=35,SellPrice=3332,Texture=133754,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14251::::::::40:::::::|h[Lunar Cloak]|h|r"},["Cabalist Leggings"]={SubType="Leather",Level=48,id=7528,StackCount=1,Rarity=2,MinLevel=43,SellPrice=9894,Texture=134706,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7528::::::::40:::::::|h[Cabalist Leggings]|h|r"},["Warmaster Legguards"]={SubType="Plate",Level=63,id=12935,StackCount=1,Rarity=3,MinLevel=58,SellPrice=23196,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:12935::::::::40:::::::|h[Warmaster Legguards]|h|r"},["Dense Weightstone"]={SubType="Trade Goods",Level=45,id=12643,StackCount=20,Rarity=1,MinLevel=35,SellPrice=75,Texture=135259,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12643::::::::40:::::::|h[Dense Weightstone]|h|r"},["Libram: Seal of Righteousness"]={SubType="Book",Level=16,id=5660,StackCount=1,Rarity=1,MinLevel=16,SellPrice=325,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:5660::::::::40:::::::|h[Libram: Seal of Righteousness]|h|r",Type="Recipe"},["Frayed Gloves"]={SubType="Cloth",Level=3,id=1377,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=132952,Link="|cff9d9d9d|Hitem:1377::::::::40:::::::|h[Frayed Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["The Deed to Tarren Mill"]={SubType="Quest",Level=1,id=13451,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13451::::::::40:::::::|h[The Deed to Tarren Mill]|h|r"},["Adept's Cloak"]={SubType="Cloth",Level=8,id=3833,StackCount=1,Rarity=1,MinLevel=0,SellPrice=24,Texture=133763,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:3833::::::::40:::::::|h[Adept's Cloak]|h|r"},["Bonecaster's Gloves"]={SubType="Cloth",Level=56,id=14302,StackCount=1,Rarity=2,MinLevel=51,SellPrice=6517,Texture=132943,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14302::::::::40:::::::|h[Bonecaster's Gloves]|h|r"},["Face Smasher"]={SubType="One-Handed Maces",Level=21,id=1483,StackCount=1,Rarity=3,MinLevel=16,SellPrice=2025,Texture=133045,Type="Weapon",Link="|cff0070dd|Hitem:1483::::::::40:::::::|h[Face Smasher]|h|r",EquipLoc="INVTYPE_WEAPON"},["Deprecated Warden Blade"]={SubType="Two-Handed Swords",Level=24,id=3934,StackCount=1,Rarity=3,MinLevel=19,SellPrice=2739,Texture=135574,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:3934::::::::40:::::::|h[Deprecated Warden Blade]|h|r",Type="Weapon"},["Primal Wraps"]={SubType="Leather",Level=11,id=15010,StackCount=1,Rarity=2,MinLevel=6,SellPrice=163,Texture=132719,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15010::::::::40:::::::|h[Primal Wraps]|h|r",Type="Armor"},["Demon Forged Breastplate"]={SubType="Plate",Level=57,id=12628,StackCount=1,Rarity=3,MinLevel=52,SellPrice=16640,Texture=132741,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:12628::::::::40:::::::|h[Demon Forged Breastplate]|h|r"},["Flesh Piercer"]={SubType="Daggers",Level=29,id=3336,StackCount=1,Rarity=2,MinLevel=24,SellPrice=3986,Texture=135646,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:3336::::::::40:::::::|h[Flesh Piercer]|h|r",Type="Weapon"},["Blood Guard's Mount"]={SubType="Junk",Level=40,id=16343,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132224,EquipLoc="",Link="|cffffffff|Hitem:16343::::::::40:::::::|h[Blood Guard's Mount]|h|r",Type="Miscellaneous"},["Wooden Shield"]={SubType="Shields",Level=11,id=2215,StackCount=1,Rarity=0,MinLevel=6,SellPrice=81,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:2215::::::::40:::::::|h[Wooden Shield]|h|r"},["Prismcharm"]={SubType="Miscellaneous",Level=60,id=15867,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7464,Texture=134139,EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:15867::::::::40:::::::|h[Prismcharm]|h|r",Type="Armor"},["Duskwing Mantle"]={SubType="Leather",Level=60,id=16995,StackCount=1,Rarity=2,MinLevel=0,SellPrice=14826,Texture=135050,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16995::::::::40:::::::|h[Duskwing Mantle]|h|r",Type="Armor"},["Monster - Shield, Horde C02"]={SubType="Shields",Level=1,id=13629,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:13629::::::::40:::::::|h[Monster - Shield, Horde C02]|h|r"},["General's Leather Legguards"]={SubType="Leather",Level=71,id=16564,StackCount=1,Rarity=4,MinLevel=60,SellPrice=28576,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16564::::::::40:::::::|h[General's Leather Legguards]|h|r",Type="Armor"},["Patch of Bat Hair"]={SubType="Junk",Level=1,id=6296,StackCount=10,Rarity=0,MinLevel=0,SellPrice=28,Texture=134360,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:6296::::::::40:::::::|h[Patch of Bat Hair]|h|r",EquipLoc=""},["Pattern: Thick Murloc Armor"]={SubType="Leatherworking",Level=34,id=5788,StackCount=1,Rarity=2,MinLevel=0,SellPrice=162,Texture=134939,Link="|cff1eff00|Hitem:5788::::::::40:::::::|h[Pattern: Thick Murloc Armor]|h|r",EquipLoc="",Type="Recipe"},["Judgement Gauntlets"]={SubType="Plate",Level=76,id=16956,StackCount=1,Rarity=4,MinLevel=60,SellPrice=28422,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16956::::::::40:::::::|h[Judgement Gauntlets]|h|r",Type="Armor"},["Graystone Bracers"]={SubType="Mail",Level=8,id=6061,StackCount=1,Rarity=1,MinLevel=0,SellPrice=23,Texture=132606,Link="|cffffffff|Hitem:6061::::::::40:::::::|h[Graystone Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Kim'Jael's Scope"]={SubType="Quest",Level=1,id=10715,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134442,EquipLoc="",Link="|cffffffff|Hitem:10715::::::::40:::::::|h[Kim'Jael's Scope]|h|r",Type="Quest"},["Burning Rock"]={SubType="Quest",Level=1,id=6845,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135227,Type="Quest",Link="|cffffffff|Hitem:6845::::::::40:::::::|h[Burning Rock]|h|r",EquipLoc=""},["Ornate Buckler"]={SubType="Shields",Level=50,id=2444,StackCount=1,Rarity=1,MinLevel=45,SellPrice=9393,Texture=134956,Link="|cffffffff|Hitem:2444::::::::40:::::::|h[Ornate Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Warchief's Orders"]={SubType="Quest",Level=1,id=8463,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133473,Link="|cffffffff|Hitem:8463::::::::40:::::::|h[Warchief's Orders]|h|r",EquipLoc="",Type="Quest"},["Devilsaur Claws"]={SubType="Fist Weapons",Level=52,id=20003,StackCount=1,Rarity=3,MinLevel=0,SellPrice=31596,Texture=134295,Link="|cff0070dd|Hitem:20003::::::::40:::::::|h[Devilsaur Claws]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Grimtoll Wristguards"]={SubType="Mail",Level=28,id=15459,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1142,Texture=132601,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15459::::::::40:::::::|h[Grimtoll Wristguards]|h|r",Type="Armor"},["Rag Doll"]={SubType="Junk",Level=1,id=5433,StackCount=5,Rarity=0,MinLevel=0,SellPrice=138,Texture=134231,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5433::::::::40:::::::|h[Rag Doll]|h|r"},["Monster - Sword, Scimitar Basic"]={SubType="One-Handed Swords",Level=1,id=1897,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135325,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:1897::::::::40:::::::|h[Monster - Sword, Scimitar Basic]|h|r"},["Novice's Pants"]={SubType="Cloth",Level=1,id=6124,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134581,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:6124::::::::40:::::::|h[Novice's Pants]|h|r"},["Shadowcraft Pants"]={SubType="Leather",Level=61,id=16709,StackCount=1,Rarity=3,MinLevel=56,SellPrice=25542,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16709::::::::40:::::::|h[Shadowcraft Pants]|h|r",Type="Armor"},["Pathfinder Belt"]={SubType="Leather",Level=28,id=15347,StackCount=1,Rarity=2,MinLevel=23,SellPrice=955,Texture=132514,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15347::::::::40:::::::|h[Pathfinder Belt]|h|r",Type="Armor"},["Web-covered Boots"]={SubType="Cloth",Level=10,id=6148,StackCount=1,Rarity=1,MinLevel=5,SellPrice=44,Texture=132539,Type="Armor",Link="|cffffffff|Hitem:6148::::::::40:::::::|h[Web-covered Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Chromite Bracers"]={SubType="Plate",Level=43,id=8137,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2807,Texture=132613,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:8137::::::::40:::::::|h[Chromite Bracers]|h|r"},["A Small Container of Gems"]={SubType="Junk",Level=25,id=6755,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",Link="|cffffffff|Hitem:6755::::::::40:::::::|h[A Small Container of Gems]|h|r",EquipLoc=""},["Blue Sapphire"]={SubType="Trade Goods",Level=55,id=12361,StackCount=20,Rarity=2,MinLevel=0,SellPrice=7000,Texture=134132,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:12361::::::::40:::::::|h[Blue Sapphire]|h|r"},["Rosewine Circle"]={SubType="Miscellaneous",Level=60,id=13178,StackCount=1,Rarity=3,MinLevel=55,SellPrice=13782,Texture=133364,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:13178::::::::40:::::::|h[Rosewine Circle]|h|r"},["Test Glaive E"]={SubType="One-Handed Swords",Level=5,id=14887,StackCount=1,Rarity=1,MinLevel=1,SellPrice=25,Texture=135643,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:14887::::::::40:::::::|h[Test Glaive E]|h|r"},["Tattered Cloth Belt"]={SubType="Cloth",Level=5,id=3595,StackCount=1,Rarity=1,MinLevel=1,SellPrice=4,Texture=132513,Link="|cffffffff|Hitem:3595::::::::40:::::::|h[Tattered Cloth Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Hefty Battlehammer"]={SubType="Two-Handed Maces",Level=25,id=15259,StackCount=1,Rarity=2,MinLevel=20,SellPrice=3306,Texture=133053,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15259::::::::40:::::::|h[Hefty Battlehammer]|h|r",Type="Weapon"},["Brown Snake"]={SubType="Junk",Level=30,id=10361,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=136040,EquipLoc="",Link="|cffffffff|Hitem:10361::::::::40:::::::|h[Brown Snake]|h|r",Type="Miscellaneous"},["Belt of Might"]={SubType="Plate",Level=66,id=16864,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17981,Texture=132498,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16864::::::::40:::::::|h[Belt of Might]|h|r",Type="Armor"},["Book of Rejuvenation VI"]={SubType="Book",Level=34,id=8771,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8771::::::::40:::::::|h[Book of Rejuvenation VI]|h|r"},["Trueshot Bow"]={SubType="Bows",Level=41,id=4087,StackCount=1,Rarity=2,MinLevel=36,SellPrice=8722,Texture=135498,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:4087::::::::40:::::::|h[Trueshot Bow]|h|r"},["Gnarlpine Leggings"]={SubType="Leather",Level=7,id=18611,StackCount=1,Rarity=1,MinLevel=2,SellPrice=27,Texture=134582,Type="Armor",Link="|cffffffff|Hitem:18611::::::::40:::::::|h[Gnarlpine Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Monster - Staff, Wooden Handle Spiral Head"]={SubType="Staves",Level=1,id=11424,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135138,Type="Weapon",Link="|cff9d9d9d|Hitem:11424::::::::40:::::::|h[Monster - Staff, Wooden Handle Spiral Head]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Melon Juice"]={SubType="Consumable",Level=25,id=1205,StackCount=20,Rarity=1,MinLevel=15,SellPrice=25,Texture=132796,Link="|cffffffff|Hitem:1205::::::::40:::::::|h[Melon Juice]|h|r",EquipLoc="",Type="Consumable"},["Murloc Scale Breastplate"]={SubType="Leather",Level=19,id=5781,StackCount=1,Rarity=2,MinLevel=14,SellPrice=601,Texture=132634,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:5781::::::::40:::::::|h[Murloc Scale Breastplate]|h|r"},["Console Key"]={SubType="Key",Level=1,id=5089,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134248,Link="|cffffffff|Hitem:5089::::::::40:::::::|h[Console Key]|h|r",EquipLoc="",Type="Key"},["Brightcloth Pants"]={SubType="Cloth",Level=58,id=14104,StackCount=1,Rarity=2,MinLevel=53,SellPrice=15484,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14104::::::::40:::::::|h[Brightcloth Pants]|h|r"},["Atal'ai Haze"]={SubType="Quest",Level=1,id=11318,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134134,Type="Quest",Link="|cffffffff|Hitem:11318::::::::40:::::::|h[Atal'ai Haze]|h|r",EquipLoc=""},["Platemail Helm"]={SubType="Plate",Level=50,id=8092,StackCount=1,Rarity=1,MinLevel=45,SellPrice=4062,Texture=133071,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:8092::::::::40:::::::|h[Platemail Helm]|h|r"},["Talisman of the Naga Lord"]={SubType="Miscellaneous",Level=47,id=5029,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5282,Texture=133296,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:5029::::::::40:::::::|h[Talisman of the Naga Lord]|h|r",Type="Armor"},["Outfitter Gloves"]={SubType="Cloth",Level=5,id=11192,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4,Texture=132939,Type="Armor",Link="|cffffffff|Hitem:11192::::::::40:::::::|h[Outfitter Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["90 Green Warrior Helm"]={SubType="Plate",Level=90,id=20246,StackCount=1,Rarity=2,MinLevel=60,SellPrice=52788,Texture=133077,Link="|cff1eff00|Hitem:20246::::::::40:::::::|h[90 Green Warrior Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Fool's Stout Report"]={SubType="Quest",Level=1,id=5807,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,EquipLoc="",Link="|cffffffff|Hitem:5807::::::::40:::::::|h[Fool's Stout Report]|h|r",Type="Quest"},["Cinder of Cynders"]={SubType="Quest",Level=1,id=21989,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135805,Link="|cffffffff|Hitem:21989::::::::40:::::::|h[Cinder of Cynders]|h|r",EquipLoc="",Type="Quest"},["Test Nature Resist Leather LockBox"]={SubType="Junk",Level=1,id=16178,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16178::::::::40:::::::|h[Test Nature Resist Leather LockBox]|h|r",Type="Miscellaneous"},["Crooked Staff"]={SubType="Staves",Level=3,id=1388,StackCount=1,Rarity=1,MinLevel=1,SellPrice=14,Texture=135159,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:1388::::::::40:::::::|h[Crooked Staff]|h|r"},["Crystal Spire"]={SubType="Quest",Level=55,id=11567,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134134,Type="Quest",Link="|cffffffff|Hitem:11567::::::::40:::::::|h[Crystal Spire]|h|r",EquipLoc=""},["Bag of Candies"]={SubType="Junk",Level=1,id=21813,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135452,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21813::::::::40:::::::|h[Bag of Candies]|h|r"},["Ebony Boneclub"]={SubType="One-Handed Maces",Level=37,id=10571,StackCount=1,Rarity=3,MinLevel=32,SellPrice=10927,Texture=133727,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:10571::::::::40:::::::|h[Ebony Boneclub]|h|r",Type="Weapon"},["Grimoire of Burning Spirit III"]={SubType="Book",Level=28,id=3146,StackCount=1,Rarity=1,MinLevel=28,SellPrice=1750,Texture=133738,Type="Recipe",Link="|cffffffff|Hitem:3146::::::::40:::::::|h[Grimoire of Burning Spirit III]|h|r",EquipLoc=""},["Enchanted Moonstalker Cloak"]={SubType="Cloth",Level=20,id=5387,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133762,Link="|cff1eff00|Hitem:5387::::::::40:::::::|h[Enchanted Moonstalker Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["From the Desk of Lord Victor Nefarius"]={SubType="Junk",Level=1,id=21142,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:21142::::::::40:::::::|h[From the Desk of Lord Victor Nefarius]|h|r",EquipLoc="",Type="Miscellaneous"},["Flask of Stormwind Tawny"]={SubType="Consumable",Level=15,id=2593,StackCount=20,Rarity=1,MinLevel=0,SellPrice=37,Texture=134743,Link="|cffffffff|Hitem:2593::::::::40:::::::|h[Flask of Stormwind Tawny]|h|r",EquipLoc="",Type="Consumable"},["Ivory Band"]={SubType="Miscellaneous",Level=40,id=7497,StackCount=1,Rarity=2,MinLevel=35,SellPrice=1983,Texture=133349,Link="|cff1eff00|Hitem:7497::::::::40:::::::|h[Ivory Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Thornstone Sledgehammer"]={SubType="Two-Handed Maces",Level=42,id=1722,StackCount=1,Rarity=3,MinLevel=37,SellPrice=19407,Texture=133041,Type="Weapon",Link="|cff0070dd|Hitem:1722::::::::40:::::::|h[Thornstone Sledgehammer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Smite's Mighty Hammer"]={SubType="Two-Handed Maces",Level=23,id=7230,StackCount=1,Rarity=3,MinLevel=18,SellPrice=3103,Texture=133046,Link="|cff0070dd|Hitem:7230::::::::40:::::::|h[Smite's Mighty Hammer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Test Frost Res Shoulders Plate"]={SubType="Plate",Level=40,id=16162,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3155,Texture=135059,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16162::::::::40:::::::|h[Test Frost Res Shoulders Plate]|h|r",Type="Armor"},["Recipe: Seasoned Wolf Kabob"]={SubType="Cooking",Level=25,id=2701,StackCount=1,Rarity=1,MinLevel=0,SellPrice=400,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:2701::::::::40:::::::|h[Recipe: Seasoned Wolf Kabob]|h|r",EquipLoc=""},["Stone of Pierce"]={SubType="Miscellaneous",Level=1,id=6698,StackCount=1,Rarity=6,MinLevel=1,SellPrice=837,Texture=133346,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffe6cc80|Hitem:6698::::::::40:::::::|h[Stone of Pierce]|h|r"},["Silver-lined Belt"]={SubType="Leather",Level=27,id=13011,StackCount=1,Rarity=3,MinLevel=22,SellPrice=1031,Texture=132511,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13011::::::::40:::::::|h[Silver-lined Belt]|h|r"},["Axe of the Ebon Drake"]={SubType="One-Handed Axes",Level=51,id=10744,StackCount=1,Rarity=2,MinLevel=0,SellPrice=24159,Texture=132403,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:10744::::::::40:::::::|h[Axe of the Ebon Drake]|h|r",Type="Weapon"},["Azure Silk Pants"]={SubType="Cloth",Level=28,id=7046,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1494,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7046::::::::40:::::::|h[Azure Silk Pants]|h|r",Type="Armor"},["Recipe: Succulent Pork Ribs"]={SubType="Cooking",Level=20,id=2700,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:2700::::::::40:::::::|h[Recipe: Succulent Pork Ribs]|h|r",EquipLoc=""},["Level 60 Test Gear Cloth - Mage/Priest/Warlock"]={SubType="Junk",Level=1,id=13654,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13654::::::::40:::::::|h[Level 60 Test Gear Cloth - Mage/Priest/Warlock]|h|r"},["Brutish Shield"]={SubType="Shields",Level=50,id=14912,StackCount=1,Rarity=2,MinLevel=45,SellPrice=15232,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14912::::::::40:::::::|h[Brutish Shield]|h|r"},["Large Stone Slab"]={SubType="Quest",Level=1,id=4627,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=135234,EquipLoc="",Link="|cffffffff|Hitem:4627::::::::40:::::::|h[Large Stone Slab]|h|r",Type="Quest"},["Bloodforged Helmet"]={SubType="Plate",Level=50,id=14952,StackCount=1,Rarity=2,MinLevel=45,SellPrice=7323,Texture=133101,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14952::::::::40:::::::|h[Bloodforged Helmet]|h|r"},["Archer's Boots"]={SubType="Leather",Level=36,id=9856,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2839,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9856::::::::40:::::::|h[Archer's Boots]|h|r"},["Seapost Girdle"]={SubType="Mail",Level=59,id=15859,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11296,Texture=132512,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15859::::::::40:::::::|h[Seapost Girdle]|h|r",Type="Armor"},["Libram: Holy Strike VIII"]={SubType="Book",Level=56,id=8943,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=133740,Link="|cffffffff|Hitem:8943::::::::40:::::::|h[Libram: Holy Strike VIII]|h|r",EquipLoc="",Type="Recipe"},["Green Iron Bracers"]={SubType="Mail",Level=33,id=3835,StackCount=1,Rarity=1,MinLevel=28,SellPrice=1106,Texture=132605,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3835::::::::40:::::::|h[Green Iron Bracers]|h|r",Type="Armor"},["Balia'mah Trophy"]={SubType="Quest",Level=1,id=3906,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,Type="Quest",Link="|cffffffff|Hitem:3906::::::::40:::::::|h[Balia'mah Trophy]|h|r",EquipLoc=""},["Spaulders of a Lost Age"]={SubType="Mail",Level=45,id=9430,StackCount=1,Rarity=3,MinLevel=40,SellPrice=8553,Texture=135049,Link="|cff0070dd|Hitem:9430::::::::40:::::::|h[Spaulders of a Lost Age]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Bearded Axe"]={SubType="Two-Handed Axes",Level=20,id=2025,StackCount=1,Rarity=1,MinLevel=15,SellPrice=1060,Texture=132394,Link="|cffffffff|Hitem:2025::::::::40:::::::|h[Bearded Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Tough Scorpid Breastplate"]={SubType="Mail",Level=44,id=8203,StackCount=1,Rarity=2,MinLevel=39,SellPrice=8628,Texture=132717,Link="|cff1eff00|Hitem:8203::::::::40:::::::|h[Tough Scorpid Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Dreamer's Belt"]={SubType="Cloth",Level=29,id=4829,StackCount=1,Rarity=2,MinLevel=24,SellPrice=830,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4829::::::::40:::::::|h[Dreamer's Belt]|h|r",Type="Armor"},["Relic Bundle"]={SubType="Quest",Level=1,id=15209,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133639,EquipLoc="",Link="|cffffffff|Hitem:15209::::::::40:::::::|h[Relic Bundle]|h|r",Type="Quest"},["Snapshot of Gammerita"]={SubType="Quest",Level=1,id=9330,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134300,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9330::::::::40:::::::|h[Snapshot of Gammerita]|h|r"},["Runescale Girdle"]={SubType="Mail",Level=20,id=5425,StackCount=1,Rarity=2,MinLevel=15,SellPrice=419,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:5425::::::::40:::::::|h[Runescale Girdle]|h|r",Type="Armor"},["Mithril Tube"]={SubType="Parts",Level=39,id=10559,StackCount=10,Rarity=1,MinLevel=0,SellPrice=750,Texture=134535,EquipLoc="",Link="|cffffffff|Hitem:10559::::::::40:::::::|h[Mithril Tube]|h|r",Type="Trade Goods"},["Knowledge: Syndicate Disguise"]={SubType="Book",Level=22,id=5132,StackCount=1,Rarity=1,MinLevel=22,SellPrice=162,Texture=134941,Link="|cffffffff|Hitem:5132::::::::40:::::::|h[Knowledge: Syndicate Disguise]|h|r",EquipLoc="",Type="Recipe"},["Green Iron Helm"]={SubType="Mail",Level=34,id=3836,StackCount=1,Rarity=2,MinLevel=29,SellPrice=3053,Texture=133071,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:3836::::::::40:::::::|h[Green Iron Helm]|h|r",Type="Armor"},["Test Enchant Bracer Greater Spirit"]={SubType="Consumable",Level=45,id=16107,StackCount=1,Rarity=1,MinLevel=0,SellPrice=650,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:16107::::::::40:::::::|h[Test Enchant Bracer Greater Spirit]|h|r",Type="Consumable"},["Hi-tech Supergun"]={SubType="Guns",Level=29,id=9487,StackCount=1,Rarity=3,MinLevel=24,SellPrice=3632,Texture=135615,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:9487::::::::40:::::::|h[Hi-tech Supergun]|h|r"},["Resonating Skull"]={SubType="Consumable",Level=1,id=13155,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136207,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13155::::::::40:::::::|h[Resonating Skull]|h|r"},["Decoded Twilight Text"]={SubType="Junk",Level=1,id=20541,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134331,Link="|cffffffff|Hitem:20541::::::::40:::::::|h[Decoded Twilight Text]|h|r",EquipLoc="",Type="Miscellaneous"},["Veteran Gloves"]={SubType="Mail",Level=15,id=2980,StackCount=1,Rarity=2,MinLevel=10,SellPrice=209,Texture=132939,Link="|cff1eff00|Hitem:2980::::::::40:::::::|h[Veteran Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Slimy Murloc Scale"]={SubType="Trade Goods",Level=15,id=5784,StackCount=10,Rarity=1,MinLevel=0,SellPrice=75,Texture=134304,EquipLoc="",Link="|cffffffff|Hitem:5784::::::::40:::::::|h[Slimy Murloc Scale]|h|r",Type="Trade Goods"},["Codex of Shadow Word: Pain"]={SubType="Book",Level=4,id=1087,StackCount=1,Rarity=1,MinLevel=4,SellPrice=10,Texture=133741,Link="|cffffffff|Hitem:1087::::::::40:::::::|h[Codex of Shadow Word: Pain]|h|r",EquipLoc="",Type="Recipe"},["Monster - Staff, Ornate Mage Staff"]={SubType="Staves",Level=1,id=2177,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:2177::::::::40:::::::|h[Monster - Staff, Ornate Mage Staff]|h|r"},["Imbued Skeletal Fragments"]={SubType="Quest",Level=1,id=14628,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136092,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14628::::::::40:::::::|h[Imbued Skeletal Fragments]|h|r"},["Level 65 Test Gear Mail - Shaman"]={SubType="Junk",Level=1,id=13697,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13697::::::::40:::::::|h[Level 65 Test Gear Mail - Shaman]|h|r"},["Book of Moonfire VI"]={SubType="Book",Level=34,id=8770,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133743,Link="|cffffffff|Hitem:8770::::::::40:::::::|h[Book of Moonfire VI]|h|r",EquipLoc="",Type="Recipe"},["Armswake Cloak"]={SubType="Cloth",Level=60,id=13203,StackCount=1,Rarity=3,MinLevel=55,SellPrice=15529,Texture=133771,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:13203::::::::40:::::::|h[Armswake Cloak]|h|r"},["Stygian Bone Amulet"]={SubType="Miscellaneous",Level=32,id=6695,StackCount=1,Rarity=3,MinLevel=27,SellPrice=3002,Texture=133291,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:6695::::::::40:::::::|h[Stygian Bone Amulet]|h|r"},["The Restrained Essence of Sapphiron"]={SubType="Miscellaneous",Level=90,id=23046,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91160,Texture=135444,Link="|cffa335ee|Hitem:23046::::::::40:::::::|h[The Restrained Essence of Sapphiron]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["90 Green Rogue Bracers"]={SubType="Leather",Level=90,id=20300,StackCount=1,Rarity=2,MinLevel=60,SellPrice=44174,Texture=132606,Link="|cff1eff00|Hitem:20300::::::::40:::::::|h[90 Green Rogue Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Monster - Mace2H, Wood Handle Spiked Head"]={SubType="Two-Handed Maces",Level=1,id=5293,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7,Texture=133477,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5293::::::::40:::::::|h[Monster - Mace2H, Wood Handle Spiked Head]|h|r",Type="Weapon"},["Windchaser Coronet"]={SubType="Cloth",Level=46,id=14436,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5270,Texture=133111,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14436::::::::40:::::::|h[Windchaser Coronet]|h|r"},["Knight-Lieutenant's Dreadweave Gloves"]={SubType="Cloth",Level=63,id=17564,StackCount=1,Rarity=3,MinLevel=58,SellPrice=5866,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:17564::::::::40:::::::|h[Knight-Lieutenant's Dreadweave Gloves]|h|r",Type="Armor"},["Heavy Leather"]={SubType="Trade Goods",Level=30,id=4234,StackCount=20,Rarity=1,MinLevel=0,SellPrice=150,Texture=134256,Link="|cffffffff|Hitem:4234::::::::40:::::::|h[Heavy Leather]|h|r",EquipLoc="",Type="Trade Goods"},["Robes of Transcendence"]={SubType="Cloth",Level=76,id=16923,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58349,Texture=132644,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:16923::::::::40:::::::|h[Robes of Transcendence]|h|r",Type="Armor"},["Resilient Sinew"]={SubType="Quest",Level=1,id=9591,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134257,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9591::::::::40:::::::|h[Resilient Sinew]|h|r"},["Libram: Divine Shield II"]={SubType="Book",Level=50,id=5683,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133740,Link="|cffffffff|Hitem:5683::::::::40:::::::|h[Libram: Divine Shield II]|h|r",EquipLoc="",Type="Recipe"},["Silk Wizard Hat"]={SubType="Cloth",Level=37,id=3345,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2720,Texture=133117,Type="Armor",Link="|cff1eff00|Hitem:3345::::::::40:::::::|h[Silk Wizard Hat]|h|r",EquipLoc="INVTYPE_HEAD"},["Warsong Gulch Iron Ration"]={SubType="Consumable",Level=45,id=19061,StackCount=20,Rarity=1,MinLevel=35,SellPrice=75,Texture=133950,Link="|cffffffff|Hitem:19061::::::::40:::::::|h[Warsong Gulch Iron Ration]|h|r",EquipLoc="",Type="Consumable"},["Wrangler's Wristbands"]={SubType="Leather",Level=23,id=15331,StackCount=1,Rarity=2,MinLevel=18,SellPrice=555,Texture=132605,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15331::::::::40:::::::|h[Wrangler's Wristbands]|h|r",Type="Armor"},["Crawler Meat"]={SubType="Trade Goods",Level=13,id=2674,StackCount=10,Rarity=1,MinLevel=0,SellPrice=12,Texture=134007,Type="Trade Goods",Link="|cffffffff|Hitem:2674::::::::40:::::::|h[Crawler Meat]|h|r",EquipLoc=""},["Test Nature Res Shoulders Mail"]={SubType="Mail",Level=35,id=16134,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3118,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16134::::::::40:::::::|h[Test Nature Res Shoulders Mail]|h|r",Type="Armor"},["Windreaver Greaves"]={SubType="Mail",Level=61,id=13967,StackCount=1,Rarity=3,MinLevel=56,SellPrice=23338,Texture=132585,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13967::::::::40:::::::|h[Windreaver Greaves]|h|r"},["Thelsamar Axe"]={SubType="One-Handed Axes",Level=18,id=3154,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1094,Texture=132402,Link="|cff1eff00|Hitem:3154::::::::40:::::::|h[Thelsamar Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Stormcloth Headband"]={SubType="Cloth",Level=48,id=10032,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6052,Texture=133132,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10032::::::::40:::::::|h[Stormcloth Headband]|h|r",Type="Armor"},["Plans: Demon Forged Breastplate"]={SubType="Blacksmithing",Level=57,id=12696,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12696::::::::40:::::::|h[Plans: Demon Forged Breastplate]|h|r"},["Tuft of Gnome Hair"]={SubType="Quest",Level=60,id=18143,StackCount=100,Rarity=1,MinLevel=1,SellPrice=0,Texture=134323,Type="Quest",Link="|cffffffff|Hitem:18143::::::::40:::::::|h[Tuft of Gnome Hair]|h|r",EquipLoc=""},["Pattern: Soul Pouch"]={SubType="Tailoring",Level=52,id=21358,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:21358::::::::40:::::::|h[Pattern: Soul Pouch]|h|r"},["Teacher's Sash"]={SubType="Cloth",Level=41,id=10747,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2327,Texture=132500,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10747::::::::40:::::::|h[Teacher's Sash]|h|r",Type="Armor"},["Monster - Spear, Badass"]={SubType="Polearms",Level=1,id=3433,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:3433::::::::40:::::::|h[Monster - Spear, Badass]|h|r",Type="Weapon"},["Raptor Punch"]={SubType="Consumable",Level=18,id=5342,StackCount=10,Rarity=1,MinLevel=0,SellPrice=88,Texture=132791,EquipLoc="",Link="|cffffffff|Hitem:5342::::::::40:::::::|h[Raptor Punch]|h|r",Type="Consumable"},["Cleansing Water"]={SubType="Consumable",Level=24,id=1851,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1785,Texture=134754,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:1851::::::::40:::::::|h[Cleansing Water]|h|r"},["Charstone Dirk"]={SubType="Daggers",Level=54,id=17710,StackCount=1,Rarity=3,MinLevel=49,SellPrice=35483,Texture=135650,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:17710::::::::40:::::::|h[Charstone Dirk]|h|r",Type="Weapon"},["Jael'marin's Studies of the Arcane"]={SubType="Consumable",Level=1,id=13154,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133736,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13154::::::::40:::::::|h[Jael'marin's Studies of the Arcane]|h|r"},["Mindtear Band"]={SubType="Miscellaneous",Level=71,id=20632,StackCount=1,Rarity=4,MinLevel=60,SellPrice=101281,Texture=133346,Link="|cffa335ee|Hitem:20632::::::::40:::::::|h[Mindtear Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Banded Bracers"]={SubType="Mail",Level=30,id=9837,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1287,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9837::::::::40:::::::|h[Banded Bracers]|h|r"},["War Torn Cape"]={SubType="Cloth",Level=10,id=15483,StackCount=1,Rarity=1,MinLevel=5,SellPrice=41,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:15483::::::::40:::::::|h[War Torn Cape]|h|r",Type="Armor"},["Smith's Trousers"]={SubType="Leather",Level=20,id=1310,StackCount=1,Rarity=2,MinLevel=0,SellPrice=715,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:1310::::::::40:::::::|h[Smith's Trousers]|h|r",Type="Armor"},["Hyperion Helm"]={SubType="Plate",Level=63,id=10388,StackCount=1,Rarity=2,MinLevel=58,SellPrice=14068,Texture=133101,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10388::::::::40:::::::|h[Hyperion Helm]|h|r",Type="Armor"},["Monster - Item, Potion Blue"]={SubType="Miscellaneous",Level=1,id=2198,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134714,Type="Weapon",Link="|cff9d9d9d|Hitem:2198::::::::40:::::::|h[Monster - Item, Potion Blue]|h|r",EquipLoc="INVTYPE_WEAPON"},["Scarab Coffer Key"]={SubType="Key",Level=1,id=21761,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134242,Link="|cffffffff|Hitem:21761::::::::40:::::::|h[Scarab Coffer Key]|h|r",EquipLoc="",Type="Key"},["Circlet of the Order"]={SubType="Cloth",Level=38,id=5624,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2926,Texture=132767,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:5624::::::::40:::::::|h[Circlet of the Order]|h|r"},["Abjurer's Tunic"]={SubType="Cloth",Level=53,id=9946,StackCount=1,Rarity=2,MinLevel=48,SellPrice=11396,Texture=135021,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9946::::::::40:::::::|h[Abjurer's Tunic]|h|r"},["Scroll of Intellect III"]={SubType="Consumable",Level=45,id=4419,StackCount=5,Rarity=1,MinLevel=35,SellPrice=112,Texture=134937,Link="|cffffffff|Hitem:4419::::::::40:::::::|h[Scroll of Intellect III]|h|r",EquipLoc="",Type="Consumable"},["Gorewood Bow"]={SubType="Bows",Level=62,id=16996,StackCount=1,Rarity=3,MinLevel=0,SellPrice=41451,Texture=135492,EquipLoc="INVTYPE_RANGED",Link="|cff0070dd|Hitem:16996::::::::40:::::::|h[Gorewood Bow]|h|r",Type="Weapon"},["Dreamweave Circlet"]={SubType="Cloth",Level=50,id=10041,StackCount=1,Rarity=3,MinLevel=45,SellPrice=8593,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:10041::::::::40:::::::|h[Dreamweave Circlet]|h|r",Type="Armor"},["Spellcrafter Wand"]={SubType="Wands",Level=26,id=6677,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2401,Texture=135467,Type="Weapon",Link="|cff1eff00|Hitem:6677::::::::40:::::::|h[Spellcrafter Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["UNUSED Empowered Mojo Bundle"]={SubType="Quest",Level=1,id=19932,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133624,Link="|cffffffff|Hitem:19932::::::::40:::::::|h[UNUSED Empowered Mojo Bundle]|h|r",EquipLoc="",Type="Quest"},["Darkwater Talwar"]={SubType="One-Handed Swords",Level=26,id=11121,StackCount=1,Rarity=2,MinLevel=21,SellPrice=2941,Texture=135346,Type="Weapon",Link="|cff1eff00|Hitem:11121::::::::40:::::::|h[Darkwater Talwar]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Driftwood Club"]={SubType="One-Handed Maces",Level=15,id=1394,StackCount=1,Rarity=2,MinLevel=10,SellPrice=740,Texture=133485,Type="Weapon",Link="|cff1eff00|Hitem:1394::::::::40:::::::|h[Driftwood Club]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Formula: Enchant Chest - Major Health"]={SubType="Enchanting",Level=55,id=16221,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134327,EquipLoc="",Link="|cffffffff|Hitem:16221::::::::40:::::::|h[Formula: Enchant Chest - Major Health]|h|r",Type="Recipe"},["Skeletal Steed Reins"]={SubType="Junk",Level=60,id=23193,StackCount=1,Rarity=4,MinLevel=60,SellPrice=250000,Texture=132264,Link="|cffa335ee|Hitem:23193::::::::40:::::::|h[Skeletal Steed Reins]|h|r",EquipLoc="",Type="Miscellaneous"},["Gamemaster's Robe"]={SubType="Cloth",Level=1,id=2586,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132664,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:2586::::::::40:::::::|h[Gamemaster's Robe]|h|r"},["Deprecated Cat's Paw"]={SubType="Consumable",Level=34,id=1995,StackCount=1,Rarity=1,MinLevel=24,SellPrice=60,Texture=134296,EquipLoc="",Link="|cffffffff|Hitem:1995::::::::40:::::::|h[Deprecated Cat's Paw]|h|r",Type="Consumable"},["Leggings of Transcendence"]={SubType="Cloth",Level=76,id=16922,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58135,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16922::::::::40:::::::|h[Leggings of Transcendence]|h|r",Type="Armor"},["Book of Wrath IV"]={SubType="Book",Level=22,id=5151,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5151::::::::40:::::::|h[Book of Wrath IV]|h|r"},["Deprecated Bloodscalp Vest"]={SubType="Leather",Level=38,id=1535,StackCount=1,Rarity=0,MinLevel=33,SellPrice=1894,Texture=132760,Link="|cff9d9d9d|Hitem:1535::::::::40:::::::|h[Deprecated Bloodscalp Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Bonecaster's Cape"]={SubType="Cloth",Level=52,id=14300,StackCount=1,Rarity=2,MinLevel=47,SellPrice=7685,Texture=133754,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14300::::::::40:::::::|h[Bonecaster's Cape]|h|r"},["Warsong Gulch Mark of Honor"]={SubType="Quest",Level=1,id=20558,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=134420,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:20558::::::::40:::::::|h[Warsong Gulch Mark of Honor]|h|r"},["Beaststalker's Cap"]={SubType="Mail",Level=62,id=16677,StackCount=1,Rarity=3,MinLevel=57,SellPrice=24868,Texture=133126,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16677::::::::40:::::::|h[Beaststalker's Cap]|h|r",Type="Armor"},["The Heart of the Mountain"]={SubType="Quest",Level=1,id=11309,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134085,Type="Quest",Link="|cffffffff|Hitem:11309::::::::40:::::::|h[The Heart of the Mountain]|h|r",EquipLoc=""},["Customer of the Month Coffer Key"]={SubType="Key",Level=1,id=11085,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,Type="Key",Link="|cffffffff|Hitem:11085::::::::40:::::::|h[Customer of the Month Coffer Key]|h|r",EquipLoc=""},["Test AQ Resource - Mithril"]={SubType="Junk",Level=1,id=21653,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21653::::::::40:::::::|h[Test AQ Resource - Mithril]|h|r",EquipLoc="",Type="Miscellaneous"},["Corrupted Kor Gem"]={SubType="Quest",Level=1,id=6995,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134129,Type="Quest",Link="|cffffffff|Hitem:6995::::::::40:::::::|h[Corrupted Kor Gem]|h|r",EquipLoc=""},["Raincaller Cord"]={SubType="Cloth",Level=28,id=14194,StackCount=1,Rarity=2,MinLevel=23,SellPrice=756,Texture=133693,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14194::::::::40:::::::|h[Raincaller Cord]|h|r"},["Cenarion Herb Bag"]={SubType="Herb Bag",Level=55,id=22251,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=133663,Link="|cff1eff00|Hitem:22251::::::::40:::::::|h[Cenarion Herb Bag]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Codex of Renew VIII"]={SubType="Book",Level=50,id=9012,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9012::::::::40:::::::|h[Codex of Renew VIII]|h|r"},["Silken Thread"]={SubType="Trade Goods",Level=30,id=4291,StackCount=20,Rarity=1,MinLevel=0,SellPrice=125,Texture=132906,EquipLoc="",Link="|cffffffff|Hitem:4291::::::::40:::::::|h[Silken Thread]|h|r",Type="Trade Goods"},["Imperial Red Robe"]={SubType="Cloth",Level=56,id=8252,StackCount=1,Rarity=2,MinLevel=51,SellPrice=13622,Texture=132666,Link="|cff1eff00|Hitem:8252::::::::40:::::::|h[Imperial Red Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Wildwood Chain"]={SubType="Mail",Level=24,id=7336,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1509,Texture=132624,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7336::::::::40:::::::|h[Wildwood Chain]|h|r"},["Encrypted Tablet"]={SubType="Quest",Level=1,id=9554,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134455,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9554::::::::40:::::::|h[Encrypted Tablet]|h|r"},["BKP 42 \"Ultra\""]={SubType="Guns",Level=36,id=3025,StackCount=1,Rarity=1,MinLevel=31,SellPrice=3695,Texture=135612,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:3025::::::::40:::::::|h[BKP 42 \"Ultra\"]|h|r",Type="Weapon"},["Grimsteel Cape"]={SubType="Cloth",Level=33,id=4643,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2748,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:4643::::::::40:::::::|h[Grimsteel Cape]|h|r",Type="Armor"},["Worn Shortsword"]={SubType="One-Handed Swords",Level=2,id=25,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:25::::::::40:::::::|h[Worn Shortsword]|h|r"},["Jewel of Kajaro"]={SubType="Miscellaneous",Level=65,id=19601,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=133313,Link="|cffa335ee|Hitem:19601::::::::40:::::::|h[Jewel of Kajaro]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Libram of Rumination"]={SubType="Book",Level=50,id=11732,StackCount=1,Rarity=2,MinLevel=50,SellPrice=0,Texture=133738,Type="Recipe",Link="|cff1eff00|Hitem:11732::::::::40:::::::|h[Libram of Rumination]|h|r",EquipLoc=""},["Deprecated Heavy Net"]={SubType="Consumable",Level=15,id=836,StackCount=1,Rarity=1,MinLevel=5,SellPrice=312,Texture=134325,EquipLoc="",Link="|cffffffff|Hitem:836::::::::40:::::::|h[Deprecated Heavy Net]|h|r",Type="Consumable"},["Broken Tools"]={SubType="Quest",Level=1,id=4703,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134070,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4703::::::::40:::::::|h[Broken Tools]|h|r"},["Tablet of Ryun'eh"]={SubType="Quest",Level=1,id=4631,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134415,Type="Quest",Link="|cffffffff|Hitem:4631::::::::40:::::::|h[Tablet of Ryun'eh]|h|r",EquipLoc=""},["Carapace Spine Crossbow"]={SubType="Crossbows",Level=61,id=18738,StackCount=1,Rarity=3,MinLevel=56,SellPrice=37593,Texture=135533,Type="Weapon",Link="|cff0070dd|Hitem:18738::::::::40:::::::|h[Carapace Spine Crossbow]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Book of Regrowth III"]={SubType="Book",Level=24,id=8759,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133743,Link="|cffffffff|Hitem:8759::::::::40:::::::|h[Book of Regrowth III]|h|r",EquipLoc="",Type="Recipe"},["Ghostweave Vest"]={SubType="Cloth",Level=55,id=14141,StackCount=1,Rarity=2,MinLevel=50,SellPrice=12859,Texture=135012,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14141::::::::40:::::::|h[Ghostweave Vest]|h|r"},["Shadowglen Gift Voucher"]={SubType="Quest",Level=1,id=14648,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134140,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14648::::::::40:::::::|h[Shadowglen Gift Voucher]|h|r"},["Bland Dagger"]={SubType="Daggers",Level=69,id=24071,StackCount=1,Rarity=3,MinLevel=0,SellPrice=78694,Texture=135302,Link="|cff0070dd|Hitem:24071::::::::40:::::::|h[Bland Dagger]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Bloodsoaked Legplates"]={SubType="Plate",Level=68,id=19855,StackCount=1,Rarity=4,MinLevel=60,SellPrice=39665,Texture=134697,Link="|cffa335ee|Hitem:19855::::::::40:::::::|h[Bloodsoaked Legplates]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Tome of Remove Curse"]={SubType="Book",Level=18,id=976,StackCount=1,Rarity=1,MinLevel=18,SellPrice=625,Texture=133739,Link="|cffffffff|Hitem:976::::::::40:::::::|h[Tome of Remove Curse]|h|r",EquipLoc="",Type="Recipe"},["Redridge Machete"]={SubType="One-Handed Swords",Level=16,id=1219,StackCount=1,Rarity=2,MinLevel=11,SellPrice=823,Texture=135314,Link="|cff1eff00|Hitem:1219::::::::40:::::::|h[Redridge Machete]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["63 Green Frost Boots"]={SubType="Cloth",Level=63,id=20353,StackCount=1,Rarity=2,MinLevel=58,SellPrice=13822,Texture=132536,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:20353::::::::40:::::::|h[63 Green Frost Boots]|h|r"},["90 Epic Warrior Sabatons"]={SubType="Plate",Level=90,id=20141,StackCount=1,Rarity=4,MinLevel=60,SellPrice=89269,Texture=132585,Link="|cffa335ee|Hitem:20141::::::::40:::::::|h[90 Epic Warrior Sabatons]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Plainstrider Talon"]={SubType="Quest",Level=1,id=4759,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136063,Type="Quest",Link="|cffffffff|Hitem:4759::::::::40:::::::|h[Plainstrider Talon]|h|r",EquipLoc=""},["Shredder Operating Manual - Page 10"]={SubType="Junk",Level=1,id=16654,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:16654::::::::40:::::::|h[Shredder Operating Manual - Page 10]|h|r",Type="Miscellaneous"},["Deprecated Test Strongbox"]={SubType="Junk",Level=35,id=3746,StackCount=1,Rarity=1,MinLevel=25,SellPrice=5000,Texture=133628,EquipLoc="",Link="|cffffffff|Hitem:3746::::::::40:::::::|h[Deprecated Test Strongbox]|h|r",Type="Miscellaneous"},["Death's Embrace"]={SubType="Junk",Level=60,id=19784,StackCount=1,Rarity=3,MinLevel=60,SellPrice=0,Texture=136191,Link="|cff0070dd|Hitem:19784::::::::40:::::::|h[Death's Embrace]|h|r",EquipLoc="",Type="Miscellaneous"},["Dark Leather Cloak"]={SubType="Cloth",Level=22,id=2316,StackCount=1,Rarity=1,MinLevel=17,SellPrice=408,Texture=133762,Type="Armor",Link="|cffffffff|Hitem:2316::::::::40:::::::|h[Dark Leather Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Skullchipper"]={SubType="Two-Handed Axes",Level=20,id=5626,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1717,Texture=132417,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:5626::::::::40:::::::|h[Skullchipper]|h|r",Type="Weapon"},["Staff of the Blessed Seer"]={SubType="Staves",Level=23,id=2271,StackCount=1,Rarity=3,MinLevel=18,SellPrice=3255,Texture=135168,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:2271::::::::40:::::::|h[Staff of the Blessed Seer]|h|r",Type="Weapon"},["Warlord's Dragonhide Epaulets"]={SubType="Leather",Level=74,id=16551,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25448,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16551::::::::40:::::::|h[Warlord's Dragonhide Epaulets]|h|r",Type="Armor"},["Dry Hardened Barnacle"]={SubType="Junk",Level=1,id=4873,StackCount=5,Rarity=0,MinLevel=0,SellPrice=15,Texture=135232,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:4873::::::::40:::::::|h[Dry Hardened Barnacle]|h|r",EquipLoc=""},["Executor Staff"]={SubType="Staves",Level=5,id=3277,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30,Texture=135150,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:3277::::::::40:::::::|h[Executor Staff]|h|r",Type="Weapon"},["Royal Frostmane Girdle"]={SubType="Mail",Level=11,id=2546,StackCount=1,Rarity=1,MinLevel=6,SellPrice=55,Texture=132498,Type="Armor",Link="|cffffffff|Hitem:2546::::::::40:::::::|h[Royal Frostmane Girdle]|h|r",EquipLoc="INVTYPE_WAIST"},["Sealed Letter to Balthule"]={SubType="Quest",Level=1,id=5381,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133461,Link="|cffffffff|Hitem:5381::::::::40:::::::|h[Sealed Letter to Balthule]|h|r",EquipLoc="",Type="Quest"},["Skullflame Shield"]={SubType="Shields",Level=59,id=1168,StackCount=1,Rarity=4,MinLevel=54,SellPrice=42296,Texture=134947,EquipLoc="INVTYPE_SHIELD",Link="|cffa335ee|Hitem:1168::::::::40:::::::|h[Skullflame Shield]|h|r",Type="Armor"},["Shadoweave Robe"]={SubType="Cloth",Level=43,id=10004,StackCount=1,Rarity=2,MinLevel=38,SellPrice=5738,Texture=132679,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:10004::::::::40:::::::|h[Shadoweave Robe]|h|r",Type="Armor"},["Codex of Holy Protection III"]={SubType="Book",Level=54,id=9017,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9017::::::::40:::::::|h[Codex of Holy Protection III]|h|r"},["Giant Club"]={SubType="One-Handed Maces",Level=37,id=15226,StackCount=1,Rarity=2,MinLevel=32,SellPrice=8755,Texture=133053,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:15226::::::::40:::::::|h[Giant Club]|h|r",Type="Weapon"},["Juggernaut Leggings"]={SubType="Mail",Level=27,id=6671,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2068,Texture=134583,Type="Armor",Link="|cff1eff00|Hitem:6671::::::::40:::::::|h[Juggernaut Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Bloody Bat Fang"]={SubType="Junk",Level=1,id=6298,StackCount=20,Rarity=0,MinLevel=0,SellPrice=130,Texture=134298,Link="|cff9d9d9d|Hitem:6298::::::::40:::::::|h[Bloody Bat Fang]|h|r",EquipLoc="",Type="Miscellaneous"},["PVP Plate Shoulder Alliance"]={SubType="Plate",Level=60,id=16031,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7297,Texture=135051,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:16031::::::::40:::::::|h[PVP Plate Shoulder Alliance]|h|r",Type="Armor"},["Old Blanchy's Feed Pouch"]={SubType="Bag",Level=1,id=1537,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=133639,Type="Container",Link="|cffffffff|Hitem:1537::::::::40:::::::|h[Old Blanchy's Feed Pouch]|h|r",EquipLoc="INVTYPE_BAG"},["Flightblade Throwing Axe"]={SubType="Thrown",Level=60,id=13173,StackCount=200,Rarity=3,MinLevel=55,SellPrice=11,Texture=135424,Type="Weapon",EquipLoc="INVTYPE_THROWN",Link="|cff0070dd|Hitem:13173::::::::40:::::::|h[Flightblade Throwing Axe]|h|r"},["Thistlewood Bow"]={SubType="Bows",Level=5,id=12447,StackCount=1,Rarity=1,MinLevel=0,SellPrice=19,Texture=135490,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cffffffff|Hitem:12447::::::::40:::::::|h[Thistlewood Bow]|h|r"},["Lifelike Mechanical Toad"]={SubType="Devices",Level=53,id=15996,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134301,EquipLoc="",Link="|cffffffff|Hitem:15996::::::::40:::::::|h[Lifelike Mechanical Toad]|h|r",Type="Trade Goods"},["Mana Channeling Wand"]={SubType="Wands",Level=61,id=18483,StackCount=1,Rarity=3,MinLevel=56,SellPrice=37362,Texture=135467,Type="Weapon",Link="|cff0070dd|Hitem:18483::::::::40:::::::|h[Mana Channeling Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Ring of Subtlety"]={SubType="Miscellaneous",Level=48,id=19038,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11145,Texture=133345,Link="|cff1eff00|Hitem:19038::::::::40:::::::|h[Ring of Subtlety]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Grimoire of Demon Armor"]={SubType="Book",Level=22,id=1244,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133738,Link="|cffffffff|Hitem:1244::::::::40:::::::|h[Grimoire of Demon Armor]|h|r",EquipLoc="",Type="Recipe"},["Hardened Stone Band"]={SubType="Miscellaneous",Level=59,id=18674,StackCount=1,Rarity=2,MinLevel=54,SellPrice=22003,Texture=133356,Type="Armor",Link="|cff1eff00|Hitem:18674::::::::40:::::::|h[Hardened Stone Band]|h|r",EquipLoc="INVTYPE_FINGER"},["Crusader's Armor"]={SubType="Mail",Level=55,id=10193,StackCount=1,Rarity=2,MinLevel=50,SellPrice=19775,Texture=132628,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10193::::::::40:::::::|h[Crusader's Armor]|h|r",Type="Armor"},["Pattern: Sylvan Vest"]={SubType="Tailoring",Level=70,id=22774,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:22774::::::::40:::::::|h[Pattern: Sylvan Vest]|h|r",EquipLoc="",Type="Recipe"},["Jangdor's Letter"]={SubType="Quest",Level=0,id=9236,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9236::::::::40:::::::|h[Jangdor's Letter]|h|r"},["Pattern: Argent Boots"]={SubType="Tailoring",Level=58,id=19216,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5500,Texture=134939,Link="|cffffffff|Hitem:19216::::::::40:::::::|h[Pattern: Argent Boots]|h|r",EquipLoc="",Type="Recipe"},["Green Silk Armor"]={SubType="Cloth",Level=33,id=7065,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2398,Texture=132647,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7065::::::::40:::::::|h[Green Silk Armor]|h|r",Type="Armor"},["Ember Wand"]={SubType="Wands",Level=41,id=5215,StackCount=1,Rarity=2,MinLevel=36,SellPrice=8656,Texture=135473,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5215::::::::40:::::::|h[Ember Wand]|h|r"},["Marshal's Plate Girdle"]={SubType="Plate",Level=65,id=16482,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8247,Texture=132516,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16482::::::::40:::::::|h[Marshal's Plate Girdle]|h|r",Type="Armor"},["Kraul Guano"]={SubType="Quest",Level=1,id=5801,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,EquipLoc="",Link="|cffffffff|Hitem:5801::::::::40:::::::|h[Kraul Guano]|h|r",Type="Quest"},["Monster - Sword, Katana 2H"]={SubType="One-Handed Swords",Level=1,id=11025,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",Link="|cff9d9d9d|Hitem:11025::::::::40:::::::|h[Monster - Sword, Katana 2H]|h|r",EquipLoc="INVTYPE_WEAPON"},["Test Frost Res Wrist Cloth"]={SubType="Cloth",Level=35,id=16137,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1379,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:16137::::::::40:::::::|h[Test Frost Res Wrist Cloth]|h|r",Type="Armor"},["Shadowforge Torch"]={SubType="Consumable",Level=60,id=11885,StackCount=1,Rarity=1,MinLevel=0,SellPrice=711,Texture=135432,Type="Consumable",Link="|cffffffff|Hitem:11885::::::::40:::::::|h[Shadowforge Torch]|h|r",EquipLoc=""},["Flaming Band"]={SubType="Miscellaneous",Level=61,id=12926,StackCount=1,Rarity=3,MinLevel=56,SellPrice=14907,Texture=135926,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:12926::::::::40:::::::|h[Flaming Band]|h|r"},["Stoneskin Gargoyle Cape"]={SubType="Cloth",Level=61,id=13397,StackCount=1,Rarity=3,MinLevel=56,SellPrice=15201,Texture=133771,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:13397::::::::40:::::::|h[Stoneskin Gargoyle Cape]|h|r"},["Smotts' Cutlass"]={SubType="One-Handed Swords",Level=25,id=3935,StackCount=1,Rarity=1,MinLevel=20,SellPrice=0,Texture=135325,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:3935::::::::40:::::::|h[Smotts' Cutlass]|h|r",Type="Weapon"},["Cookie's Stirring Rod"]={SubType="Wands",Level=22,id=5198,StackCount=1,Rarity=3,MinLevel=17,SellPrice=1660,Texture=135139,Link="|cff0070dd|Hitem:5198::::::::40:::::::|h[Cookie's Stirring Rod]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Mind Quickening Gem"]={SubType="Miscellaneous",Level=76,id=19339,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72039,Texture=136115,Link="|cffa335ee|Hitem:19339::::::::40:::::::|h[Mind Quickening Gem]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Valorous Gauntlets"]={SubType="Plate",Level=47,id=8276,StackCount=1,Rarity=2,MinLevel=42,SellPrice=3901,Texture=132963,Link="|cff1eff00|Hitem:8276::::::::40:::::::|h[Valorous Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Stormrage Boots"]={SubType="Leather",Level=76,id=16898,StackCount=1,Rarity=4,MinLevel=60,SellPrice=53709,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16898::::::::40:::::::|h[Stormrage Boots]|h|r",Type="Armor"},["Darkspear Troll Mojo"]={SubType="Quest",Level=60,id=18146,StackCount=100,Rarity=1,MinLevel=1,SellPrice=0,Texture=134862,Type="Quest",Link="|cffffffff|Hitem:18146::::::::40:::::::|h[Darkspear Troll Mojo]|h|r",EquipLoc=""},["Strong Flux"]={SubType="Trade Goods",Level=25,id=3466,StackCount=10,Rarity=1,MinLevel=0,SellPrice=500,Texture=133587,Link="|cffffffff|Hitem:3466::::::::40:::::::|h[Strong Flux]|h|r",EquipLoc="",Type="Trade Goods"},["Frostwolf Insignia Rank 1"]={SubType="Miscellaneous",Level=60,id=17690,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133283,EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:17690::::::::40:::::::|h[Frostwolf Insignia Rank 1]|h|r",Type="Armor"},["Witherbark Tusk"]={SubType="Quest",Level=1,id=4503,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133722,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4503::::::::40:::::::|h[Witherbark Tusk]|h|r"},["Shadoweave Boots"]={SubType="Cloth",Level=48,id=10031,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6030,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10031::::::::40:::::::|h[Shadoweave Boots]|h|r",Type="Armor"},["Broken Bat Fang"]={SubType="Junk",Level=1,id=11390,StackCount=20,Rarity=0,MinLevel=0,SellPrice=80,Texture=133725,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11390::::::::40:::::::|h[Broken Bat Fang]|h|r",EquipLoc=""},["Horn of the Swift Timber Wolf"]={SubType="Junk",Level=60,id=18797,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132266,Type="Miscellaneous",Link="|cffa335ee|Hitem:18797::::::::40:::::::|h[Horn of the Swift Timber Wolf]|h|r",EquipLoc=""},["Champion's Armor"]={SubType="Mail",Level=48,id=7538,StackCount=1,Rarity=2,MinLevel=43,SellPrice=12322,Texture=132627,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7538::::::::40:::::::|h[Champion's Armor]|h|r"},["Scorpid Worker Tail"]={SubType="Quest",Level=1,id=4862,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132274,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4862::::::::40:::::::|h[Scorpid Worker Tail]|h|r"},["Pattern: Earthen Silk Belt"]={SubType="Tailoring",Level=39,id=7086,StackCount=1,Rarity=2,MinLevel=0,SellPrice=375,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:7086::::::::40:::::::|h[Pattern: Earthen Silk Belt]|h|r"},["Scaled Leather Leggings"]={SubType="Leather",Level=33,id=9833,StackCount=1,Rarity=2,MinLevel=28,SellPrice=3031,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9833::::::::40:::::::|h[Scaled Leather Leggings]|h|r"},["Solliden's Trousers"]={SubType="Cloth",Level=8,id=4261,StackCount=1,Rarity=1,MinLevel=3,SellPrice=31,Texture=134582,Type="Armor",Link="|cffffffff|Hitem:4261::::::::40:::::::|h[Solliden's Trousers]|h|r",EquipLoc="INVTYPE_LEGS"},["Coarse Weightstone"]={SubType="Trade Goods",Level=15,id=3240,StackCount=20,Rarity=1,MinLevel=5,SellPrice=10,Texture=135256,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:3240::::::::40:::::::|h[Coarse Weightstone]|h|r"},["Primitive Mantle"]={SubType="Miscellaneous",Level=1,id=154,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=133766,Type="Armor",Link="|cffffffff|Hitem:154::::::::40:::::::|h[Primitive Mantle]|h|r",EquipLoc="INVTYPE_BODY"},["Elemental Mage Staff"]={SubType="Staves",Level=61,id=944,StackCount=1,Rarity=4,MinLevel=56,SellPrice=83000,Texture=135144,EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:944::::::::40:::::::|h[Elemental Mage Staff]|h|r",Type="Weapon"},["Monster - Mace, Green"]={SubType="One-Handed Maces",Level=1,id=6334,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133483,Link="|cff9d9d9d|Hitem:6334::::::::40:::::::|h[Monster - Mace, Green]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Intact Silithid Carapace"]={SubType="Quest",Level=1,id=5853,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135035,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5853::::::::40:::::::|h[Intact Silithid Carapace]|h|r"},["Monster - Sword, Horde C02 Purple"]={SubType="One-Handed Swords",Level=1,id=14871,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14871::::::::40:::::::|h[Monster - Sword, Horde C02 Purple]|h|r"},["Monster - Polearm, Black"]={SubType="Polearms",Level=1,id=12403,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135321,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12403::::::::40:::::::|h[Monster - Polearm, Black]|h|r"},["Defiler's Runecloth Bandage"]={SubType="Consumable",Level=55,id=20234,StackCount=20,Rarity=1,MinLevel=45,SellPrice=100,Texture=133682,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20234::::::::40:::::::|h[Defiler's Runecloth Bandage]|h|r"},["Felix's Bucket of Bolts"]={SubType="Quest",Level=1,id=16314,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134068,EquipLoc="",Link="|cffffffff|Hitem:16314::::::::40:::::::|h[Felix's Bucket of Bolts]|h|r",Type="Quest"},["Shimmering Amice"]={SubType="Cloth",Level=24,id=6566,StackCount=1,Rarity=1,MinLevel=19,SellPrice=411,Texture=135044,Link="|cffffffff|Hitem:6566::::::::40:::::::|h[Shimmering Amice]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Unfired Plate Gauntlets"]={SubType="Quest",Level=60,id=12812,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=132963,Type="Quest",EquipLoc="",Link="|cff0070dd|Hitem:12812::::::::40:::::::|h[Unfired Plate Gauntlets]|h|r"},["Forest Cloak"]={SubType="Cloth",Level=22,id=4710,StackCount=1,Rarity=2,MinLevel=17,SellPrice=561,Texture=133761,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:4710::::::::40:::::::|h[Forest Cloak]|h|r"},["Arcanite Reaper"]={SubType="Two-Handed Axes",Level=63,id=12784,StackCount=1,Rarity=3,MinLevel=58,SellPrice=73036,Texture=132400,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12784::::::::40:::::::|h[Arcanite Reaper]|h|r"},["Farmer's Boots"]={SubType="Cloth",Level=10,id=11191,StackCount=1,Rarity=1,MinLevel=0,SellPrice=45,Texture=132537,Type="Armor",Link="|cffffffff|Hitem:11191::::::::40:::::::|h[Farmer's Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Strider Meat"]={SubType="Trade Goods",Level=10,id=5469,StackCount=10,Rarity=1,MinLevel=0,SellPrice=9,Texture=133972,EquipLoc="",Link="|cffffffff|Hitem:5469::::::::40:::::::|h[Strider Meat]|h|r",Type="Trade Goods"},["Bristlebark Buckler"]={SubType="Shields",Level=25,id=15894,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1802,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15894::::::::40:::::::|h[Bristlebark Buckler]|h|r",Type="Armor"},["Blackened Skull"]={SubType="Quest",Level=1,id=3163,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,EquipLoc="",Link="|cffffffff|Hitem:3163::::::::40:::::::|h[Blackened Skull]|h|r",Type="Quest"},["Outfitter Boots"]={SubType="Mail",Level=5,id=2691,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10,Texture=132535,Type="Armor",Link="|cffffffff|Hitem:2691::::::::40:::::::|h[Outfitter Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Wizard's Belt"]={SubType="Cloth",Level=28,id=4827,StackCount=1,Rarity=2,MinLevel=23,SellPrice=749,Texture=132518,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4827::::::::40:::::::|h[Wizard's Belt]|h|r"},["Exalted Legplates"]={SubType="Plate",Level=63,id=14980,StackCount=1,Rarity=2,MinLevel=58,SellPrice=19201,Texture=134592,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14980::::::::40:::::::|h[Exalted Legplates]|h|r"},["Tome of Tranquilizing Shot"]={SubType="Book",Level=60,id=16665,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=133743,EquipLoc="",Link="|cff1eff00|Hitem:16665::::::::40:::::::|h[Tome of Tranquilizing Shot]|h|r",Type="Recipe"},["Simple Linen Boots"]={SubType="Cloth",Level=9,id=10046,StackCount=1,Rarity=1,MinLevel=4,SellPrice=32,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:10046::::::::40:::::::|h[Simple Linen Boots]|h|r",Type="Armor"},["Blazing Emblem"]={SubType="Miscellaneous",Level=43,id=2802,StackCount=1,Rarity=3,MinLevel=38,SellPrice=1625,Texture=133434,Type="Armor",Link="|cff0070dd|Hitem:2802::::::::40:::::::|h[Blazing Emblem]|h|r",EquipLoc="INVTYPE_TRINKET"},["Dreamweave Gloves"]={SubType="Cloth",Level=45,id=10019,StackCount=1,Rarity=3,MinLevel=40,SellPrice=3944,Texture=132952,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:10019::::::::40:::::::|h[Dreamweave Gloves]|h|r",Type="Armor"},["Instant Poison V"]={SubType="Consumable",Level=52,id=8927,StackCount=20,Rarity=1,MinLevel=52,SellPrice=100,Texture=132273,Link="|cffffffff|Hitem:8927::::::::40:::::::|h[Instant Poison V]|h|r",EquipLoc="",Type="Consumable"},["General's Leather Armsplints"]={SubType="Leather",Level=65,id=16559,StackCount=1,Rarity=4,MinLevel=60,SellPrice=10467,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16559::::::::40:::::::|h[General's Leather Armsplints]|h|r",Type="Armor"},["Lost Supplies"]={SubType="Quest",Level=30,id=6172,StackCount=1,Rarity=1,MinLevel=30,SellPrice=0,Texture=132620,Type="Quest",Link="|cffffffff|Hitem:6172::::::::40:::::::|h[Lost Supplies]|h|r",EquipLoc=""},["Elemental Flux"]={SubType="Trade Goods",Level=60,id=18567,StackCount=10,Rarity=1,MinLevel=0,SellPrice=37500,Texture=135839,Type="Trade Goods",Link="|cffffffff|Hitem:18567::::::::40:::::::|h[Elemental Flux]|h|r",EquipLoc=""},["Tablet of Nature Resistance Totem III"]={SubType="Book",Level=60,id=9178,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9178::::::::40:::::::|h[Tablet of Nature Resistance Totem III]|h|r"},["Polar Bracers"]={SubType="Leather",Level=80,id=22663,StackCount=1,Rarity=4,MinLevel=60,SellPrice=46175,Texture=132606,Link="|cffa335ee|Hitem:22663::::::::40:::::::|h[Polar Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Samha Essence"]={SubType="Quest",Level=1,id=9257,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134577,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9257::::::::40:::::::|h[Samha Essence]|h|r"},["Linen Cloak"]={SubType="Cloth",Level=6,id=2570,StackCount=1,Rarity=1,MinLevel=1,SellPrice=11,Texture=133766,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:2570::::::::40:::::::|h[Linen Cloak]|h|r",Type="Armor"},["[PH] Rising Dawn Gloves"]={SubType="Cloth",Level=1,id=13726,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132950,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:13726::::::::40:::::::|h[[PH] Rising Dawn Gloves]|h|r"},["Brashclaw's Chopper"]={SubType="Two-Handed Axes",Level=19,id=2203,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1492,Texture=132417,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:2203::::::::40:::::::|h[Brashclaw's Chopper]|h|r",Type="Weapon"},["Might of Menethil"]={SubType="Two-Handed Maces",Level=89,id=22798,StackCount=1,Rarity=4,MinLevel=60,SellPrice=326465,Texture=133502,Link="|cffa335ee|Hitem:22798::::::::40:::::::|h[Might of Menethil]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Ragged Leather Belt"]={SubType="Leather",Level=5,id=1369,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=132513,Type="Armor",Link="|cff9d9d9d|Hitem:1369::::::::40:::::::|h[Ragged Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Enriched Manna Biscuit"]={SubType="Consumable",Level=55,id=13724,StackCount=20,Rarity=1,MinLevel=45,SellPrice=300,Texture=133989,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13724::::::::40:::::::|h[Enriched Manna Biscuit]|h|r"},["Libram: Blessing of Wisdom VI"]={SubType="Book",Level=60,id=21288,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133740,Link="|cff0070dd|Hitem:21288::::::::40:::::::|h[Libram: Blessing of Wisdom VI]|h|r",EquipLoc="",Type="Recipe"},["Laminated Scale Pants"]={SubType="Mail",Level=56,id=3997,StackCount=1,Rarity=0,MinLevel=51,SellPrice=7929,Texture=134583,Type="Armor",Link="|cff9d9d9d|Hitem:3997::::::::40:::::::|h[Laminated Scale Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Sentinel Boots"]={SubType="Leather",Level=37,id=7444,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3377,Texture=132592,Link="|cff1eff00|Hitem:7444::::::::40:::::::|h[Sentinel Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Anti-Venom"]={SubType="Reagent",Level=16,id=6452,StackCount=20,Rarity=1,MinLevel=0,SellPrice=28,Texture=134437,Type="Reagent",Link="|cffffffff|Hitem:6452::::::::40:::::::|h[Anti-Venom]|h|r",EquipLoc=""},["Apothecary Gloves"]={SubType="Cloth",Level=18,id=10919,StackCount=1,Rarity=2,MinLevel=0,SellPrice=214,Texture=132940,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10919::::::::40:::::::|h[Apothecary Gloves]|h|r",Type="Armor"},["Juju Hex Robes"]={SubType="Cloth",Level=5,id=16606,StackCount=1,Rarity=2,MinLevel=0,SellPrice=17,Texture=132645,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:16606::::::::40:::::::|h[Juju Hex Robes]|h|r",Type="Armor"},["Blade of Cunning"]={SubType="Daggers",Level=13,id=7298,StackCount=1,Rarity=2,MinLevel=0,SellPrice=468,Texture=135662,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:7298::::::::40:::::::|h[Blade of Cunning]|h|r",Type="Weapon"},["Platemail Gloves"]={SubType="Plate",Level=50,id=8091,StackCount=1,Rarity=1,MinLevel=45,SellPrice=2697,Texture=132963,Link="|cffffffff|Hitem:8091::::::::40:::::::|h[Platemail Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Vital Sash"]={SubType="Cloth",Level=33,id=14209,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1196,Texture=132510,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14209::::::::40:::::::|h[Vital Sash]|h|r"},["Golden Rod"]={SubType="Trade Goods",Level=30,id=11128,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=135147,Type="Trade Goods",Link="|cffffffff|Hitem:11128::::::::40:::::::|h[Golden Rod]|h|r",EquipLoc=""},["QAEnchant Cloak -2% Threat"]={SubType="Consumable",Level=1,id=22042,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22042::::::::40:::::::|h[QAEnchant Cloak -2% Threat]|h|r",EquipLoc="",Type="Consumable"},["63 Green Rogue Cloak"]={SubType="Cloth",Level=63,id=20316,StackCount=1,Rarity=2,MinLevel=58,SellPrice=13985,Texture=133757,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:20316::::::::40:::::::|h[63 Green Rogue Cloak]|h|r"},["Magus Ring"]={SubType="Miscellaneous",Level=59,id=13283,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14907,Texture=135926,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:13283::::::::40:::::::|h[Magus Ring]|h|r"},["Fairy's Embrace"]={SubType="Miscellaneous",Level=47,id=7549,StackCount=1,Rarity=2,MinLevel=42,SellPrice=6420,Texture=132520,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:7549::::::::40:::::::|h[Fairy's Embrace]|h|r"},["Curiously Tasty Omelet"]={SubType="Consumable",Level=25,id=3665,StackCount=20,Rarity=1,MinLevel=15,SellPrice=150,Texture=132835,Link="|cffffffff|Hitem:3665::::::::40:::::::|h[Curiously Tasty Omelet]|h|r",EquipLoc="",Type="Consumable"},["Darkmist Mantle"]={SubType="Cloth",Level=43,id=14243,StackCount=1,Rarity=2,MinLevel=38,SellPrice=4075,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14243::::::::40:::::::|h[Darkmist Mantle]|h|r"},["Fractured Elemental Bracer"]={SubType="Junk",Level=1,id=5448,StackCount=20,Rarity=0,MinLevel=0,SellPrice=17,Texture=132606,EquipLoc="",Link="|cff9d9d9d|Hitem:5448::::::::40:::::::|h[Fractured Elemental Bracer]|h|r",Type="Miscellaneous"},["Grace of Earth"]={SubType="Miscellaneous",Level=66,id=21181,StackCount=1,Rarity=3,MinLevel=0,SellPrice=21612,Texture=134182,Link="|cff0070dd|Hitem:21181::::::::40:::::::|h[Grace of Earth]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Tribal Belt"]={SubType="Leather",Level=10,id=4675,StackCount=1,Rarity=1,MinLevel=5,SellPrice=35,Texture=132493,Link="|cffffffff|Hitem:4675::::::::40:::::::|h[Tribal Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Commander's Vambraces"]={SubType="Plate",Level=59,id=10377,StackCount=1,Rarity=2,MinLevel=54,SellPrice=7978,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10377::::::::40:::::::|h[Commander's Vambraces]|h|r",Type="Armor"},["Guerrilla Cleaver"]={SubType="One-Handed Axes",Level=34,id=4126,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6396,Texture=132415,Type="Weapon",Link="|cff1eff00|Hitem:4126::::::::40:::::::|h[Guerrilla Cleaver]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Tome of Shadow Force"]={SubType="Miscellaneous",Level=65,id=19309,StackCount=1,Rarity=4,MinLevel=60,SellPrice=125000,Texture=133738,Link="|cffa335ee|Hitem:19309::::::::40:::::::|h[Tome of Shadow Force]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Deprecated Straight Copper Lockpick"]={SubType="Lockpick",Level=10,id=2790,StackCount=10,Rarity=1,MinLevel=1,SellPrice=12,Texture=134065,Link="|cffffffff|Hitem:2790::::::::40:::::::|h[Deprecated Straight Copper Lockpick]|h|r",EquipLoc="",Type="Key"},["Deprecated Old Skull"]={SubType="Quest",Level=1,id=877,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=133728,EquipLoc="",Link="|cffffffff|Hitem:877::::::::40:::::::|h[Deprecated Old Skull]|h|r",Type="Quest"},["[PH] Shining Dawn Cap"]={SubType="Leather",Level=100,id=13791,StackCount=1,Rarity=1,MinLevel=100,SellPrice=64214,Texture=133117,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:13791::::::::40:::::::|h[[PH] Shining Dawn Cap]|h|r"},["R.O.I.D.S."]={SubType="Consumable",Level=1,id=8410,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135241,Link="|cffffffff|Hitem:8410::::::::40:::::::|h[R.O.I.D.S.]|h|r",EquipLoc="",Type="Consumable"},["Studded Doublet"]={SubType="Leather",Level=37,id=2463,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2739,Texture=132725,Link="|cffffffff|Hitem:2463::::::::40:::::::|h[Studded Doublet]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Nocturnal Tunic"]={SubType="Leather",Level=42,id=15159,StackCount=1,Rarity=2,MinLevel=37,SellPrice=6743,Texture=132720,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15159::::::::40:::::::|h[Nocturnal Tunic]|h|r",Type="Armor"},["Bonesnapper"]={SubType="One-Handed Maces",Level=53,id=13027,StackCount=1,Rarity=3,MinLevel=48,SellPrice=33832,Texture=133057,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:13027::::::::40:::::::|h[Bonesnapper]|h|r"},["Deadly Poison III"]={SubType="Consumable",Level=46,id=8984,StackCount=20,Rarity=1,MinLevel=46,SellPrice=100,Texture=132290,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8984::::::::40:::::::|h[Deadly Poison III]|h|r"},["Bloodforged Belt"]={SubType="Plate",Level=46,id=14950,StackCount=1,Rarity=2,MinLevel=41,SellPrice=3630,Texture=132502,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14950::::::::40:::::::|h[Bloodforged Belt]|h|r"},["Silver Dawning's Lockbox"]={SubType="Quest",Level=1,id=12191,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132596,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12191::::::::40:::::::|h[Silver Dawning's Lockbox]|h|r"},["Firestarter"]={SubType="Wands",Level=29,id=8184,StackCount=1,Rarity=2,MinLevel=24,SellPrice=2947,Texture=135473,Link="|cff1eff00|Hitem:8184::::::::40:::::::|h[Firestarter]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Plans: Radiant Boots"]={SubType="Blacksmithing",Level=58,id=12697,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12697::::::::40:::::::|h[Plans: Radiant Boots]|h|r"},["Monster - Wand, Horde Purple Orb"]={SubType="Wands",Level=1,id=13290,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135463,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:13290::::::::40:::::::|h[Monster - Wand, Horde Purple Orb]|h|r"},["Cold Forged Blade"]={SubType="One-Handed Swords",Level=63,id=19110,StackCount=1,Rarity=3,MinLevel=58,SellPrice=54922,Texture=135357,Link="|cff0070dd|Hitem:19110::::::::40:::::::|h[Cold Forged Blade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Ancient Cloak"]={SubType="Cloth",Level=41,id=15603,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3546,Texture=133763,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15603::::::::40:::::::|h[Ancient Cloak]|h|r",Type="Armor"},["Akiris Reed"]={SubType="Quest",Level=1,id=4029,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134186,Link="|cffffffff|Hitem:4029::::::::40:::::::|h[Akiris Reed]|h|r",EquipLoc="",Type="Quest"},["Pattern: Deviate Scale Cloak"]={SubType="Leatherworking",Level=18,id=6474,StackCount=1,Rarity=1,MinLevel=0,SellPrice=137,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:6474::::::::40:::::::|h[Pattern: Deviate Scale Cloak]|h|r",EquipLoc=""},["Raincaster Drape"]={SubType="Cloth",Level=58,id=12110,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11610,Texture=133768,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:12110::::::::40:::::::|h[Raincaster Drape]|h|r"},["Deprecated Deep Pocket Pouch"]={SubType="Bag",Level=25,id=930,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133629,Link="|cffffffff|Hitem:930::::::::40:::::::|h[Deprecated Deep Pocket Pouch]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Shadoweave Gloves"]={SubType="Cloth",Level=45,id=10023,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3334,Texture=132943,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10023::::::::40:::::::|h[Shadoweave Gloves]|h|r",Type="Armor"},["Nightscape Cloak"]={SubType="Cloth",Level=46,id=8195,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5263,Texture=133755,Link="|cff1eff00|Hitem:8195::::::::40:::::::|h[Nightscape Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Fine Sand"]={SubType="Junk",Level=1,id=3010,StackCount=5,Rarity=0,MinLevel=0,SellPrice=101,Texture=133849,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:3010::::::::40:::::::|h[Fine Sand]|h|r",EquipLoc=""},["Formula: Enchant Weapon - Minor Beastslayer"]={SubType="Enchanting",Level=20,id=6348,StackCount=1,Rarity=2,MinLevel=0,SellPrice=125,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:6348::::::::40:::::::|h[Formula: Enchant Weapon - Minor Beastslayer]|h|r",EquipLoc=""},["Grand Boots"]={SubType="Leather",Level=60,id=15189,StackCount=1,Rarity=2,MinLevel=55,SellPrice=15722,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15189::::::::40:::::::|h[Grand Boots]|h|r",Type="Armor"},["Bluffwatcher's Card"]={SubType="Consumable",Level=1,id=22144,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135454,Link="|cffffffff|Hitem:22144::::::::40:::::::|h[Bluffwatcher's Card]|h|r",EquipLoc="",Type="Consumable"},["Gooey Spider Leg"]={SubType="Trade Goods",Level=25,id=2251,StackCount=10,Rarity=1,MinLevel=0,SellPrice=12,Texture=134321,EquipLoc="",Link="|cffffffff|Hitem:2251::::::::40:::::::|h[Gooey Spider Leg]|h|r",Type="Trade Goods"},["Chromatically Tempered Sword"]={SubType="One-Handed Swords",Level=77,id=19352,StackCount=1,Rarity=4,MinLevel=60,SellPrice=158929,Texture=135361,Link="|cffa335ee|Hitem:19352::::::::40:::::::|h[Chromatically Tempered Sword]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Observer's Shield"]={SubType="Shields",Level=61,id=18485,StackCount=1,Rarity=3,MinLevel=56,SellPrice=34569,Texture=134959,Type="Armor",Link="|cff0070dd|Hitem:18485::::::::40:::::::|h[Observer's Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Greenroot Mail"]={SubType="Mail",Level=58,id=18304,StackCount=1,Rarity=2,MinLevel=53,SellPrice=21480,Texture=132742,Type="Armor",Link="|cff1eff00|Hitem:18304::::::::40:::::::|h[Greenroot Mail]|h|r",EquipLoc="INVTYPE_CHEST"},["Twisted Chanter's Staff"]={SubType="Staves",Level=24,id=890,StackCount=1,Rarity=3,MinLevel=19,SellPrice=3517,Texture=135141,Type="Weapon",Link="|cff0070dd|Hitem:890::::::::40:::::::|h[Twisted Chanter's Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Soldier's Boots"]={SubType="Mail",Level=17,id=6551,StackCount=1,Rarity=2,MinLevel=12,SellPrice=409,Texture=132535,Link="|cff1eff00|Hitem:6551::::::::40:::::::|h[Soldier's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Blackforge Cowl"]={SubType="Mail",Level=45,id=4080,StackCount=1,Rarity=2,MinLevel=40,SellPrice=7469,Texture=133118,Link="|cff1eff00|Hitem:4080::::::::40:::::::|h[Blackforge Cowl]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Knight-Captain's Dreadweave Tunic"]={SubType="Cloth",Level=68,id=23297,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14826,Texture=132716,Link="|cff0070dd|Hitem:23297::::::::40:::::::|h[Knight-Captain's Dreadweave Tunic]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Durable Gloves"]={SubType="Cloth",Level=31,id=9823,StackCount=1,Rarity=2,MinLevel=26,SellPrice=965,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9823::::::::40:::::::|h[Durable Gloves]|h|r"},["Fury Visor"]={SubType="Plate",Level=52,id=20521,StackCount=1,Rarity=3,MinLevel=0,SellPrice=9937,Texture=133069,Link="|cff0070dd|Hitem:20521::::::::40:::::::|h[Fury Visor]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Acrobatic Staff"]={SubType="Staves",Level=34,id=3185,StackCount=1,Rarity=2,MinLevel=29,SellPrice=8088,Texture=135147,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3185::::::::40:::::::|h[Acrobatic Staff]|h|r"},["Imperial Plate Boots"]={SubType="Plate",Level=59,id=12426,StackCount=1,Rarity=2,MinLevel=54,SellPrice=12062,Texture=132582,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:12426::::::::40:::::::|h[Imperial Plate Boots]|h|r"},["Deathdealer's Spaulders"]={SubType="Leather",Level=78,id=21361,StackCount=1,Rarity=4,MinLevel=60,SellPrice=61483,Texture=135034,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:21361::::::::40:::::::|h[Deathdealer's Spaulders]|h|r"},["Manna-Enriched Horse Feed"]={SubType="Quest",Level=1,id=18775,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134058,Type="Quest",Link="|cffffffff|Hitem:18775::::::::40:::::::|h[Manna-Enriched Horse Feed]|h|r",EquipLoc=""},["Netherwind Pants"]={SubType="Cloth",Level=76,id=16915,StackCount=1,Rarity=4,MinLevel=60,SellPrice=56647,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16915::::::::40:::::::|h[Netherwind Pants]|h|r",Type="Armor"},["Gaea's Slippers"]={SubType="Cloth",Level=47,id=14269,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5669,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14269::::::::40:::::::|h[Gaea's Slippers]|h|r"},["Red Leather C03 Boots"]={SubType="Leather",Level=1,id=3533,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:3533::::::::40:::::::|h[Red Leather C03 Boots]|h|r",Type="Armor"},["Rituals of Power"]={SubType="Quest",Level=1,id=7274,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133733,EquipLoc="",Link="|cffffffff|Hitem:7274::::::::40:::::::|h[Rituals of Power]|h|r",Type="Quest"},["Savory Deviate Delight"]={SubType="Consumable",Level=18,id=6657,StackCount=20,Rarity=1,MinLevel=0,SellPrice=5,Texture=134302,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6657::::::::40:::::::|h[Savory Deviate Delight]|h|r"},["Bogling Root"]={SubType="Consumable",Level=12,id=5206,StackCount=10,Rarity=1,MinLevel=0,SellPrice=37,Texture=134187,EquipLoc="",Link="|cffffffff|Hitem:5206::::::::40:::::::|h[Bogling Root]|h|r",Type="Consumable"},["Wall Shield"]={SubType="Shields",Level=17,id=1202,StackCount=1,Rarity=1,MinLevel=12,SellPrice=367,Texture=134949,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:1202::::::::40:::::::|h[Wall Shield]|h|r"},["Amulet of the Fallen God"]={SubType="Miscellaneous",Level=88,id=21712,StackCount=1,Rarity=4,MinLevel=60,SellPrice=115200,Texture=133340,Link="|cffa335ee|Hitem:21712::::::::40:::::::|h[Amulet of the Fallen God]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Prospector's Cuffs"]={SubType="Leather",Level=17,id=14561,StackCount=1,Rarity=2,MinLevel=12,SellPrice=245,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14561::::::::40:::::::|h[Prospector's Cuffs]|h|r"},["Durotar Tiger Fur"]={SubType="Quest",Level=1,id=4892,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134354,Link="|cffffffff|Hitem:4892::::::::40:::::::|h[Durotar Tiger Fur]|h|r",EquipLoc="",Type="Quest"},["Enchanted Gold Bloodrobe"]={SubType="Cloth",Level=38,id=6900,StackCount=1,Rarity=3,MinLevel=0,SellPrice=4685,Texture=132666,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:6900::::::::40:::::::|h[Enchanted Gold Bloodrobe]|h|r"},["Pattern: Big Voodoo Pants"]={SubType="Leatherworking",Level=48,id=8389,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:8389::::::::40:::::::|h[Pattern: Big Voodoo Pants]|h|r"},["Francisca"]={SubType="One-Handed Axes",Level=46,id=2530,StackCount=1,Rarity=1,MinLevel=41,SellPrice=10443,Texture=132392,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2530::::::::40:::::::|h[Francisca]|h|r",Type="Weapon"},["Centipaar Insect Parts"]={SubType="Quest",Level=1,id=8587,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134365,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:8587::::::::40:::::::|h[Centipaar Insect Parts]|h|r"},["Wise Man's Belt"]={SubType="Cloth",Level=20,id=4786,StackCount=1,Rarity=2,MinLevel=15,SellPrice=278,Texture=132491,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4786::::::::40:::::::|h[Wise Man's Belt]|h|r"},["Slimescale Bracers"]={SubType="Mail",Level=49,id=10632,StackCount=1,Rarity=3,MinLevel=44,SellPrice=7624,Texture=133345,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:10632::::::::40:::::::|h[Slimescale Bracers]|h|r",Type="Armor"},["Resilient Boots"]={SubType="Cloth",Level=31,id=14399,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1465,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14399::::::::40:::::::|h[Resilient Boots]|h|r"},["Brutish Belt"]={SubType="Plate",Level=44,id=14906,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2989,Texture=132513,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14906::::::::40:::::::|h[Brutish Belt]|h|r"},["Goblin Sapper Charge"]={SubType="Explosives",Level=41,id=10646,StackCount=10,Rarity=1,MinLevel=0,SellPrice=500,Texture=135826,EquipLoc="",Link="|cffffffff|Hitem:10646::::::::40:::::::|h[Goblin Sapper Charge]|h|r",Type="Trade Goods"},["Codex of Flash Heal V"]={SubType="Book",Level=44,id=8999,StackCount=1,Rarity=1,MinLevel=44,SellPrice=6250,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8999::::::::40:::::::|h[Codex of Flash Heal V]|h|r"},["Bloodmail Belt"]={SubType="Mail",Level=61,id=14614,StackCount=1,Rarity=3,MinLevel=56,SellPrice=16427,Texture=132512,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:14614::::::::40:::::::|h[Bloodmail Belt]|h|r"},["Leggings of Elemental Fury"]={SubType="Mail",Level=85,id=23665,StackCount=1,Rarity=4,MinLevel=60,SellPrice=128529,Texture=134666,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:23665::::::::40:::::::|h[Leggings of Elemental Fury]|h|r"},["Left-Handed Claw"]={SubType="Fist Weapons",Level=25,id=15907,StackCount=1,Rarity=1,MinLevel=20,SellPrice=1647,Texture=132941,EquipLoc="INVTYPE_WEAPONOFFHAND",Link="|cffffffff|Hitem:15907::::::::40:::::::|h[Left-Handed Claw]|h|r",Type="Weapon"},["Thresher Eye"]={SubType="Quest",Level=1,id=5412,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133884,EquipLoc="",Link="|cffffffff|Hitem:5412::::::::40:::::::|h[Thresher Eye]|h|r",Type="Quest"},["Three of Beasts"]={SubType="Junk",Level=1,id=19231,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134482,Link="|cff0070dd|Hitem:19231::::::::40:::::::|h[Three of Beasts]|h|r",EquipLoc="",Type="Miscellaneous"},["Shadowhide Leggings"]={SubType="Leather",Level=52,id=20524,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15146,Texture=134599,Link="|cff0070dd|Hitem:20524::::::::40:::::::|h[Shadowhide Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Templar Shield"]={SubType="Shields",Level=58,id=10364,StackCount=1,Rarity=2,MinLevel=53,SellPrice=24938,Texture=134951,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:10364::::::::40:::::::|h[Templar Shield]|h|r",Type="Armor"},["Sable Wand"]={SubType="Wands",Level=22,id=7607,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1399,Texture=135139,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:7607::::::::40:::::::|h[Sable Wand]|h|r",Type="Weapon"},["Imperial Red Circlet"]={SubType="Cloth",Level=53,id=8254,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8639,Texture=132767,Link="|cff1eff00|Hitem:8254::::::::40:::::::|h[Imperial Red Circlet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Furen's Instructions"]={SubType="Consumable",Level=1,id=6842,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:6842::::::::40:::::::|h[Furen's Instructions]|h|r",EquipLoc="",Type="Consumable"},["Briarsteel Shortsword"]={SubType="One-Handed Swords",Level=14,id=15335,StackCount=1,Rarity=2,MinLevel=0,SellPrice=580,Texture=135321,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15335::::::::40:::::::|h[Briarsteel Shortsword]|h|r",Type="Weapon"},["Essence of Fire"]={SubType="Reagent",Level=55,id=7078,StackCount=10,Rarity=2,MinLevel=0,SellPrice=400,Texture=135830,EquipLoc="",Link="|cff1eff00|Hitem:7078::::::::40:::::::|h[Essence of Fire]|h|r",Type="Reagent"},["Monster - Sword2H, Blackblade of Shahram"]={SubType="Two-Handed Swords",Level=1,id=12755,StackCount=1,Rarity=1,MinLevel=1,SellPrice=4,Texture=135330,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:12755::::::::40:::::::|h[Monster - Sword2H, Blackblade of Shahram]|h|r"},["Feralheart Spaulders"]={SubType="Leather",Level=65,id=22112,StackCount=1,Rarity=3,MinLevel=0,SellPrice=23830,Texture=135032,Link="|cff0070dd|Hitem:22112::::::::40:::::::|h[Feralheart Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Double Mail Coif"]={SubType="Mail",Level=30,id=8748,StackCount=1,Rarity=0,MinLevel=25,SellPrice=774,Texture=133141,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:8748::::::::40:::::::|h[Double Mail Coif]|h|r"},["Onin's Report"]={SubType="Quest",Level=1,id=7715,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133461,EquipLoc="",Link="|cffffffff|Hitem:7715::::::::40:::::::|h[Onin's Report]|h|r",Type="Quest"},["Regal Leggings"]={SubType="Cloth",Level=44,id=7469,StackCount=1,Rarity=2,MinLevel=39,SellPrice=6284,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7469::::::::40:::::::|h[Regal Leggings]|h|r"},["Pattern: Runed Stygian Boots"]={SubType="Tailoring",Level=62,id=20547,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10000,Texture=134941,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:20547::::::::40:::::::|h[Pattern: Runed Stygian Boots]|h|r"},["Hammer of Bestial Fury"]={SubType="One-Handed Maces",Level=71,id=20580,StackCount=1,Rarity=4,MinLevel=60,SellPrice=109327,Texture=133497,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffa335ee|Hitem:20580::::::::40:::::::|h[Hammer of Bestial Fury]|h|r"},["Recipe: Elixir of Lesser Agility"]={SubType="Alchemy",Level=28,id=3396,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=134939,Type="Recipe",Link="|cff1eff00|Hitem:3396::::::::40:::::::|h[Recipe: Elixir of Lesser Agility]|h|r",EquipLoc=""},["Battlehard Cape"]={SubType="Cloth",Level=45,id=11858,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4768,Texture=133760,Type="Armor",Link="|cff1eff00|Hitem:11858::::::::40:::::::|h[Battlehard Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Tome of Fire Ward IV"]={SubType="Book",Level=50,id=8869,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133739,Link="|cffffffff|Hitem:8869::::::::40:::::::|h[Tome of Fire Ward IV]|h|r",EquipLoc="",Type="Recipe"},["Frostmane Chain Vest"]={SubType="Mail",Level=5,id=2109,StackCount=1,Rarity=1,MinLevel=1,SellPrice=14,Texture=132624,Type="Armor",Link="|cffffffff|Hitem:2109::::::::40:::::::|h[Frostmane Chain Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Heavy Silithid Carapace"]={SubType="Junk",Level=55,id=20501,StackCount=20,Rarity=1,MinLevel=0,SellPrice=2000,Texture=134307,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:20501::::::::40:::::::|h[Heavy Silithid Carapace]|h|r"},["Egg of Hakkar"]={SubType="Quest",Level=50,id=10465,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132834,EquipLoc="",Link="|cffffffff|Hitem:10465::::::::40:::::::|h[Egg of Hakkar]|h|r",Type="Quest"},["Deprecated Creeper Cakes"]={SubType="Consumable",Level=45,id=4418,StackCount=10,Rarity=1,MinLevel=35,SellPrice=130,Texture=133952,Type="Consumable",Link="|cffffffff|Hitem:4418::::::::40:::::::|h[Deprecated Creeper Cakes]|h|r",EquipLoc=""},["Cracked Arcane Focusing Crystal"]={SubType="Quest",Level=1,id=10651,StackCount=20,Rarity=0,MinLevel=0,SellPrice=257,Texture=134085,EquipLoc="",Link="|cff9d9d9d|Hitem:10651::::::::40:::::::|h[Cracked Arcane Focusing Crystal]|h|r",Type="Quest"},["Green Dye"]={SubType="Trade Goods",Level=15,id=2605,StackCount=10,Rarity=1,MinLevel=0,SellPrice=25,Texture=134743,Link="|cffffffff|Hitem:2605::::::::40:::::::|h[Green Dye]|h|r",EquipLoc="",Type="Trade Goods"},["Tablet of Serpent Totem II"]={SubType="Book",Level=10,id=3125,StackCount=1,Rarity=1,MinLevel=10,SellPrice=187,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:3125::::::::40:::::::|h[Tablet of Serpent Totem II]|h|r"},["Green Power Crystal"]={SubType="Junk",Level=1,id=11185,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=134105,Type="Miscellaneous",Link="|cffffffff|Hitem:11185::::::::40:::::::|h[Green Power Crystal]|h|r",EquipLoc=""},["Libram: Holy Light IX"]={SubType="Book",Level=60,id=21290,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133740,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:21290::::::::40:::::::|h[Libram: Holy Light IX]|h|r"},["Steel Arrowhead"]={SubType="Junk",Level=1,id=5123,StackCount=5,Rarity=0,MinLevel=0,SellPrice=117,Texture=132381,EquipLoc="",Link="|cff9d9d9d|Hitem:5123::::::::40:::::::|h[Steel Arrowhead]|h|r",Type="Miscellaneous"},["Watcher's Boots"]={SubType="Cloth",Level=26,id=14176,StackCount=1,Rarity=2,MinLevel=21,SellPrice=920,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14176::::::::40:::::::|h[Watcher's Boots]|h|r"},["Deprecated Winter Mail Gloves"]={SubType="Mail",Level=25,id=3051,StackCount=1,Rarity=0,MinLevel=20,SellPrice=310,Texture=132939,Link="|cff9d9d9d|Hitem:3051::::::::40:::::::|h[Deprecated Winter Mail Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Heavy Linen Bandage"]={SubType="Consumable",Level=1,id=2581,StackCount=20,Rarity=1,MinLevel=0,SellPrice=20,Texture=133688,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2581::::::::40:::::::|h[Heavy Linen Bandage]|h|r"},["Deprecated Dwarven Recruit's Belt"]={SubType="Miscellaneous",Level=1,id=102,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132494,Type="Armor",Link="|cffffffff|Hitem:102::::::::40:::::::|h[Deprecated Dwarven Recruit's Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Iverron's Antidote"]={SubType="Quest",Level=1,id=10642,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134814,EquipLoc="",Link="|cffffffff|Hitem:10642::::::::40:::::::|h[Iverron's Antidote]|h|r",Type="Quest"},["Essence of Water"]={SubType="Reagent",Level=55,id=7080,StackCount=10,Rarity=2,MinLevel=0,SellPrice=400,Texture=136007,EquipLoc="",Link="|cff1eff00|Hitem:7080::::::::40:::::::|h[Essence of Water]|h|r",Type="Reagent"},["Pattern: Raptor Hide Belt"]={SubType="Leatherworking",Level=33,id=13288,StackCount=1,Rarity=2,MinLevel=0,SellPrice=625,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13288::::::::40:::::::|h[Pattern: Raptor Hide Belt]|h|r"},["QAEnchant Gloves +5 Herbalism"]={SubType="Consumable",Level=1,id=22586,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22586::::::::40:::::::|h[QAEnchant Gloves +5 Herbalism]|h|r"},["Steadfast Girdle"]={SubType="Mail",Level=38,id=15598,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2763,Texture=132519,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15598::::::::40:::::::|h[Steadfast Girdle]|h|r",Type="Armor"},["Native Vest"]={SubType="Cloth",Level=16,id=14096,StackCount=1,Rarity=2,MinLevel=11,SellPrice=325,Texture=135009,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14096::::::::40:::::::|h[Native Vest]|h|r"},["Sparkling Crystal Wand"]={SubType="Wands",Level=62,id=20672,StackCount=1,Rarity=3,MinLevel=57,SellPrice=39497,Texture=135474,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:20672::::::::40:::::::|h[Sparkling Crystal Wand]|h|r"},["Stemleaf Bracers"]={SubType="Cloth",Level=5,id=11187,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5,Texture=132611,Type="Armor",Link="|cffffffff|Hitem:11187::::::::40:::::::|h[Stemleaf Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Sorcerer's Boots"]={SubType="Cloth",Level=60,id=22064,StackCount=1,Rarity=4,MinLevel=0,SellPrice=20800,Texture=132536,Link="|cffa335ee|Hitem:22064::::::::40:::::::|h[Sorcerer's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Staff of Westfall"]={SubType="Staves",Level=24,id=2042,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3639,Texture=135147,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:2042::::::::40:::::::|h[Staff of Westfall]|h|r",Type="Weapon"},["Dokebi Cape"]={SubType="Cloth",Level=28,id=14582,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1088,Texture=133762,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14582::::::::40:::::::|h[Dokebi Cape]|h|r"},["Beasts Deck"]={SubType="Junk",Level=1,id=19228,StackCount=1,Rarity=4,MinLevel=0,SellPrice=100000,Texture=134493,Link="|cffa335ee|Hitem:19228::::::::40:::::::|h[Beasts Deck]|h|r",EquipLoc="",Type="Miscellaneous"},["Dreadmist Leggings"]={SubType="Cloth",Level=61,id=16699,StackCount=1,Rarity=3,MinLevel=56,SellPrice=21202,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16699::::::::40:::::::|h[Dreadmist Leggings]|h|r",Type="Armor"},["Grimoire of Detect Lesser Invisibility"]={SubType="Book",Level=26,id=1250,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1250::::::::40:::::::|h[Grimoire of Detect Lesser Invisibility]|h|r"},["Superior Gloves"]={SubType="Leather",Level=27,id=9806,StackCount=1,Rarity=2,MinLevel=22,SellPrice=833,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9806::::::::40:::::::|h[Superior Gloves]|h|r"},["Broken Sprite Darter Egg"]={SubType="Quest",Level=37,id=11111,StackCount=1,Rarity=1,MinLevel=0,SellPrice=134,Texture=132833,Type="Quest",Link="|cffffffff|Hitem:11111::::::::40:::::::|h[Broken Sprite Darter Egg]|h|r",EquipLoc=""},["Field Marshal's Dragonhide Spaulders"]={SubType="Leather",Level=74,id=16449,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24631,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16449::::::::40:::::::|h[Field Marshal's Dragonhide Spaulders]|h|r",Type="Armor"},["Mesh Mantle"]={SubType="Cloth",Level=69,id=3958,StackCount=1,Rarity=0,MinLevel=64,SellPrice=7649,Texture=135037,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3958::::::::40:::::::|h[Mesh Mantle]|h|r",Type="Armor"},["Test Nature Res Hands Plate"]={SubType="Plate",Level=40,id=16172,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2279,Texture=132957,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:16172::::::::40:::::::|h[Test Nature Res Hands Plate]|h|r",Type="Armor"},["Highborne Pants"]={SubType="Cloth",Level=56,id=15119,StackCount=1,Rarity=2,MinLevel=51,SellPrice=13683,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15119::::::::40:::::::|h[Highborne Pants]|h|r",Type="Armor"},["Hardened Leather Gloves"]={SubType="Leather",Level=36,id=3804,StackCount=1,Rarity=0,MinLevel=31,SellPrice=765,Texture=132952,Link="|cff9d9d9d|Hitem:3804::::::::40:::::::|h[Hardened Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Belt of the Trickster"]={SubType="Leather",Level=61,id=22325,StackCount=1,Rarity=3,MinLevel=56,SellPrice=12446,Texture=132515,Link="|cff0070dd|Hitem:22325::::::::40:::::::|h[Belt of the Trickster]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Blood Guard's Silk Walkers"]={SubType="Cloth",Level=66,id=22860,StackCount=1,Rarity=3,MinLevel=60,SellPrice=9900,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:22860::::::::40:::::::|h[Blood Guard's Silk Walkers]|h|r"},["Pattern: Bramblewood Helm"]={SubType="Leatherworking",Level=70,id=22771,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:22771::::::::40:::::::|h[Pattern: Bramblewood Helm]|h|r",EquipLoc="",Type="Recipe"},["Nightwind Belt"]={SubType="Cloth",Level=27,id=4828,StackCount=1,Rarity=2,MinLevel=22,SellPrice=684,Texture=132515,Type="Armor",Link="|cff1eff00|Hitem:4828::::::::40:::::::|h[Nightwind Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Whirlwind Sword"]={SubType="Two-Handed Swords",Level=40,id=6977,StackCount=1,Rarity=3,MinLevel=0,SellPrice=17325,Texture=135313,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:6977::::::::40:::::::|h[Whirlwind Sword]|h|r"},["Blackforge Cape"]={SubType="Cloth",Level=42,id=6424,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3825,Texture=133772,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:6424::::::::40:::::::|h[Blackforge Cape]|h|r"},["Flimsy Chain Boots"]={SubType="Mail",Level=3,id=2650,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=132535,Link="|cff9d9d9d|Hitem:2650::::::::40:::::::|h[Flimsy Chain Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Refined Scale of Onyxia"]={SubType="Trade Goods",Level=60,id=17967,StackCount=20,Rarity=3,MinLevel=0,SellPrice=5000,Texture=134309,EquipLoc="",Link="|cff0070dd|Hitem:17967::::::::40:::::::|h[Refined Scale of Onyxia]|h|r",Type="Trade Goods"},["Soul Shard"]={SubType="Reagent",Level=10,id=6265,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134075,Type="Reagent",Link="|cffffffff|Hitem:6265::::::::40:::::::|h[Soul Shard]|h|r",EquipLoc=""},["Netherwind Mantle"]={SubType="Cloth",Level=76,id=16917,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42802,Texture=135063,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16917::::::::40:::::::|h[Netherwind Mantle]|h|r",Type="Armor"},["Rockscale Cod"]={SubType="Consumable",Level=35,id=4594,StackCount=20,Rarity=1,MinLevel=25,SellPrice=6,Texture=133890,Link="|cffffffff|Hitem:4594::::::::40:::::::|h[Rockscale Cod]|h|r",EquipLoc="",Type="Consumable"},["Book of Starfire VII"]={SubType="Book",Level=60,id=21295,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133743,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:21295::::::::40:::::::|h[Book of Starfire VII]|h|r"},["Scorched Ectoplasm"]={SubType="Quest",Level=1,id=21937,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134813,Link="|cffffffff|Hitem:21937::::::::40:::::::|h[Scorched Ectoplasm]|h|r",EquipLoc="",Type="Quest"},["Scorched Rocket Boots"]={SubType="Junk",Level=26,id=7190,StackCount=1,Rarity=0,MinLevel=0,SellPrice=0,Texture=133030,EquipLoc="",Link="|cff9d9d9d|Hitem:7190::::::::40:::::::|h[Scorched Rocket Boots]|h|r",Type="Miscellaneous"},["Spidersilk Boots"]={SubType="Cloth",Level=25,id=4320,StackCount=1,Rarity=3,MinLevel=20,SellPrice=979,Texture=132539,Type="Armor",Link="|cff0070dd|Hitem:4320::::::::40:::::::|h[Spidersilk Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Formula: Enchant Bracer - Greater Stamina"]={SubType="Enchanting",Level=49,id=11225,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1550,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11225::::::::40:::::::|h[Formula: Enchant Bracer - Greater Stamina]|h|r",EquipLoc=""},["Supply Crate"]={SubType="Quest",Level=1,id=4629,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4629::::::::40:::::::|h[Supply Crate]|h|r"},["Or'Kalar's Head"]={SubType="Quest",Level=1,id=4551,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Type="Quest",Link="|cffffffff|Hitem:4551::::::::40:::::::|h[Or'Kalar's Head]|h|r",EquipLoc=""},["Flawless Fel Essence (Dark Portal)"]={SubType="Quest",Level=1,id=18623,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135228,Type="Quest",Link="|cffffffff|Hitem:18623::::::::40:::::::|h[Flawless Fel Essence (Dark Portal)]|h|r",EquipLoc=""},["AHNQIRAJ TEST ITEM B LEATHER BELT"]={SubType="Miscellaneous",Level=1,id=21425,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:21425::::::::40:::::::|h[AHNQIRAJ TEST ITEM B LEATHER BELT]|h|r"},["Juju Might"]={SubType="Quest",Level=60,id=12460,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1500,Texture=134309,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12460::::::::40:::::::|h[Juju Might]|h|r"},["Circle of Applied Force"]={SubType="Miscellaneous",Level=75,id=19432,StackCount=1,Rarity=4,MinLevel=60,SellPrice=147286,Texture=133379,Link="|cffa335ee|Hitem:19432::::::::40:::::::|h[Circle of Applied Force]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Eye of Kajal"]={SubType="Quest",Level=1,id=11753,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136155,Type="Quest",Link="|cffffffff|Hitem:11753::::::::40:::::::|h[Eye of Kajal]|h|r",EquipLoc=""},["Crown of Will"]={SubType="Quest",Level=1,id=3554,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132768,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3554::::::::40:::::::|h[Crown of Will]|h|r"},["Zandalar Predator's Belt"]={SubType="Mail",Level=61,id=19832,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132508,Link="|cffa335ee|Hitem:19832::::::::40:::::::|h[Zandalar Predator's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Note from Neeru"]={SubType="Quest",Level=1,id=5174,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133473,Link="|cffffffff|Hitem:5174::::::::40:::::::|h[Note from Neeru]|h|r",EquipLoc="",Type="Quest"},["Heart of Hakkar"]={SubType="Quest",Level=58,id=19802,StackCount=1,Rarity=4,MinLevel=58,SellPrice=0,Texture=134085,Link="|cffa335ee|Hitem:19802::::::::40:::::::|h[Heart of Hakkar]|h|r",EquipLoc="",Type="Quest"},["[PH] Leather Chestguard of the Shining Dawn"]={SubType="Leather",Level=100,id=13766,StackCount=1,Rarity=1,MinLevel=100,SellPrice=90460,Texture=132722,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13766::::::::40:::::::|h[[PH] Leather Chestguard of the Shining Dawn]|h|r"},["Energized Chestplate"]={SubType="Plate",Level=59,id=18312,StackCount=1,Rarity=3,MinLevel=54,SellPrice=18073,Texture=132746,Type="Armor",Link="|cff0070dd|Hitem:18312::::::::40:::::::|h[Energized Chestplate]|h|r",EquipLoc="INVTYPE_CHEST"},["PVP TEST Alliance Ear"]={SubType="Consumable",Level=1,id=18105,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133854,Type="Consumable",Link="|cffffffff|Hitem:18105::::::::40:::::::|h[PVP TEST Alliance Ear]|h|r",EquipLoc=""},["D'Sak's Sacktastic"]={SubType="Soul Bag",Level=62,id=21195,StackCount=1,Rarity=3,MinLevel=0,SellPrice=40000,Texture=133646,Link="|cff0070dd|Hitem:21195::::::::40:::::::|h[D'Sak's Sacktastic]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Witherbark Medicine Pouch"]={SubType="Quest",Level=1,id=4522,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133633,Link="|cffffffff|Hitem:4522::::::::40:::::::|h[Witherbark Medicine Pouch]|h|r",EquipLoc="",Type="Quest"},["Pattern: Flarecore Mantle"]={SubType="Tailoring",Level=61,id=17017,StackCount=1,Rarity=1,MinLevel=0,SellPrice=45000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:17017::::::::40:::::::|h[Pattern: Flarecore Mantle]|h|r",Type="Recipe"},["Monster - Item, Holy Symbol Offhand"]={SubType="Miscellaneous",Level=1,id=13219,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134754,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13219::::::::40:::::::|h[Monster - Item, Holy Symbol Offhand]|h|r"},["Bronze Greatsword"]={SubType="Two-Handed Swords",Level=26,id=7957,StackCount=1,Rarity=1,MinLevel=21,SellPrice=2205,Texture=135321,Link="|cffffffff|Hitem:7957::::::::40:::::::|h[Bronze Greatsword]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Ring of Forlorn Spirits"]={SubType="Miscellaneous",Level=35,id=2043,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1500,Texture=133343,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:2043::::::::40:::::::|h[Ring of Forlorn Spirits]|h|r",Type="Armor"},["Jinxed Hoodoo Skin"]={SubType="Leather",Level=49,id=9473,StackCount=1,Rarity=3,MinLevel=44,SellPrice=13241,Texture=132720,Link="|cff0070dd|Hitem:9473::::::::40:::::::|h[Jinxed Hoodoo Skin]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Leather Helmet D (Test)"]={SubType="Leather",Level=1,id=1020,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133072,Link="|cffffffff|Hitem:1020::::::::40:::::::|h[Leather Helmet D (Test)]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Cutthroat Pauldrons"]={SubType="Mail",Level=25,id=3231,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1266,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:3231::::::::40:::::::|h[Cutthroat Pauldrons]|h|r",Type="Armor"},["Acidproof Cloak"]={SubType="Cloth",Level=18,id=3582,StackCount=1,Rarity=2,MinLevel=0,SellPrice=474,Texture=133753,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:3582::::::::40:::::::|h[Acidproof Cloak]|h|r",Type="Armor"},["Ruffian Belt"]={SubType="Leather",Level=23,id=5975,StackCount=1,Rarity=2,MinLevel=18,SellPrice=532,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:5975::::::::40:::::::|h[Ruffian Belt]|h|r",Type="Armor"},["Rubbing: Rune of Beth'Amara"]={SubType="Quest",Level=0,id=10563,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:10563::::::::40:::::::|h[Rubbing: Rune of Beth'Amara]|h|r",Type="Quest"},["Opulent Gloves"]={SubType="Cloth",Level=50,id=14282,StackCount=1,Rarity=2,MinLevel=45,SellPrice=4552,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14282::::::::40:::::::|h[Opulent Gloves]|h|r"},["Aegis of Battle"]={SubType="Shields",Level=55,id=10686,StackCount=1,Rarity=2,MinLevel=0,SellPrice=21163,Texture=134948,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:10686::::::::40:::::::|h[Aegis of Battle]|h|r",Type="Armor"},["The Silencer"]={SubType="Guns",Level=42,id=13138,StackCount=1,Rarity=3,MinLevel=37,SellPrice=11532,Texture=135617,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13138::::::::40:::::::|h[The Silencer]|h|r"},["Tablet of Lightning Storm II"]={SubType="Book",Level=30,id=1619,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2000,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:1619::::::::40:::::::|h[Tablet of Lightning Storm II]|h|r",Type="Recipe"},["Polished Scale Vest"]={SubType="Mail",Level=27,id=2153,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1185,Texture=132631,Type="Armor",Link="|cffffffff|Hitem:2153::::::::40:::::::|h[Polished Scale Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Pattern: Gray Woolen Robe"]={SubType="Tailoring",Level=21,id=2601,StackCount=1,Rarity=2,MinLevel=0,SellPrice=100,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:2601::::::::40:::::::|h[Pattern: Gray Woolen Robe]|h|r"},["Robe of the Void"]={SubType="Cloth",Level=62,id=14153,StackCount=1,Rarity=4,MinLevel=57,SellPrice=28920,Texture=132692,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:14153::::::::40:::::::|h[Robe of the Void]|h|r"},["The Emerald Dream"]={SubType="Junk",Level=60,id=18364,StackCount=1,Rarity=3,MinLevel=54,SellPrice=0,Texture=133742,Type="Miscellaneous",Link="|cff0070dd|Hitem:18364::::::::40:::::::|h[The Emerald Dream]|h|r",EquipLoc=""},["Tablet of Serpent Totem IV"]={SubType="Book",Level=30,id=5712,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2000,Texture=134459,Link="|cffffffff|Hitem:5712::::::::40:::::::|h[Tablet of Serpent Totem IV]|h|r",EquipLoc="",Type="Recipe"},["Obsidian Scaled Leggings"]={SubType="Mail",Level=74,id=21476,StackCount=1,Rarity=3,MinLevel=60,SellPrice=61136,Texture=134667,Link="|cff0070dd|Hitem:21476::::::::40:::::::|h[Obsidian Scaled Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Mercurial Gauntlets"]={SubType="Mail",Level=61,id=10161,StackCount=1,Rarity=2,MinLevel=56,SellPrice=12713,Texture=132960,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10161::::::::40:::::::|h[Mercurial Gauntlets]|h|r",Type="Armor"},["Green Kodo"]={SubType="Junk",Level=60,id=15292,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132244,EquipLoc="",Link="|cffa335ee|Hitem:15292::::::::40:::::::|h[Green Kodo]|h|r",Type="Miscellaneous"},["Plans: Barbaric Iron Gloves"]={SubType="Blacksmithing",Level=37,id=7982,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1100,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7982::::::::40:::::::|h[Plans: Barbaric Iron Gloves]|h|r",Type="Recipe"},["Pattern: Dark Leather Shoulders"]={SubType="Leatherworking",Level=28,id=4296,StackCount=1,Rarity=2,MinLevel=0,SellPrice=525,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:4296::::::::40:::::::|h[Pattern: Dark Leather Shoulders]|h|r"},["Defias Rapier"]={SubType="One-Handed Swords",Level=16,id=1925,StackCount=1,Rarity=2,MinLevel=11,SellPrice=787,Texture=135340,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:1925::::::::40:::::::|h[Defias Rapier]|h|r"},["Russet Bracers"]={SubType="Cloth",Level=37,id=3594,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1099,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3594::::::::40:::::::|h[Russet Bracers]|h|r"},["Guillotine Axe"]={SubType="One-Handed Axes",Level=23,id=2807,StackCount=1,Rarity=3,MinLevel=18,SellPrice=2452,Texture=132418,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:2807::::::::40:::::::|h[Guillotine Axe]|h|r"},["Bonefingers"]={SubType="Leather",Level=43,id=10765,StackCount=1,Rarity=2,MinLevel=38,SellPrice=3367,Texture=132943,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10765::::::::40:::::::|h[Bonefingers]|h|r",Type="Armor"},["[PH] Leather Bracers of the Brilliant Dawn"]={SubType="Leather",Level=100,id=13741,StackCount=1,Rarity=1,MinLevel=100,SellPrice=43273,Texture=132603,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:13741::::::::40:::::::|h[[PH] Leather Bracers of the Brilliant Dawn]|h|r"},["Greater Soulstone"]={SubType="Consumable",Level=50,id=16895,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134336,EquipLoc="",Link="|cffffffff|Hitem:16895::::::::40:::::::|h[Greater Soulstone]|h|r",Type="Consumable"},["Pattern: Wild Leather Helmet"]={SubType="Leatherworking",Level=45,id=8405,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:8405::::::::40:::::::|h[Pattern: Wild Leather Helmet]|h|r",EquipLoc="",Type="Recipe"},["Solomon's Plea to Bolvar"]={SubType="Quest",Level=1,id=11367,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133460,Type="Quest",Link="|cffffffff|Hitem:11367::::::::40:::::::|h[Solomon's Plea to Bolvar]|h|r",EquipLoc=""},["Test Arrow"]={SubType="Arrow",Level=1,id=2103,StackCount=200,Rarity=1,MinLevel=1,SellPrice=1,Texture=132381,Type="Projectile",EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:2103::::::::40:::::::|h[Test Arrow]|h|r"},["Marshal's Satin Gloves"]={SubType="Cloth",Level=71,id=17608,StackCount=1,Rarity=4,MinLevel=60,SellPrice=10886,Texture=132948,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:17608::::::::40:::::::|h[Marshal's Satin Gloves]|h|r",Type="Armor"},["Glowing Crystal Prison"]={SubType="Quest",Level=1,id=18601,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134075,Type="Quest",Link="|cffffffff|Hitem:18601::::::::40:::::::|h[Glowing Crystal Prison]|h|r",EquipLoc=""},["Pugilist Bracers"]={SubType="Mail",Level=30,id=4438,StackCount=1,Rarity=3,MinLevel=25,SellPrice=1692,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:4438::::::::40:::::::|h[Pugilist Bracers]|h|r",Type="Armor"},["Insignia Bracers"]={SubType="Leather",Level=33,id=6410,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1514,Texture=132603,Type="Armor",Link="|cff1eff00|Hitem:6410::::::::40:::::::|h[Insignia Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Long Soft Tail"]={SubType="Junk",Level=1,id=1688,StackCount=5,Rarity=0,MinLevel=0,SellPrice=806,Texture=134322,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:1688::::::::40:::::::|h[Long Soft Tail]|h|r",EquipLoc=""},["Hammer of the Twisting Nether"]={SubType="One-Handed Maces",Level=89,id=23056,StackCount=1,Rarity=4,MinLevel=60,SellPrice=280418,Texture=133504,Link="|cffa335ee|Hitem:23056::::::::40:::::::|h[Hammer of the Twisting Nether]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Ragged Leather Gloves"]={SubType="Leather",Level=4,id=1368,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132952,Link="|cff9d9d9d|Hitem:1368::::::::40:::::::|h[Ragged Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Winter Veil Loaf"]={SubType="Consumable",Level=55,id=21236,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133968,Link="|cffffffff|Hitem:21236::::::::40:::::::|h[Winter Veil Loaf]|h|r",EquipLoc="",Type="Consumable"},["Gem of the Fifth Khan"]={SubType="Quest",Level=1,id=17765,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134116,EquipLoc="",Link="|cffffffff|Hitem:17765::::::::40:::::::|h[Gem of the Fifth Khan]|h|r",Type="Quest"},["Mistscape Wizard Hat"]={SubType="Cloth",Level=44,id=6429,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4544,Texture=133090,Type="Armor",Link="|cff1eff00|Hitem:6429::::::::40:::::::|h[Mistscape Wizard Hat]|h|r",EquipLoc="INVTYPE_HEAD"},["Elixir of Demonslaying"]={SubType="Consumable",Level=50,id=9224,StackCount=5,Rarity=1,MinLevel=40,SellPrice=700,Texture=134807,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9224::::::::40:::::::|h[Elixir of Demonslaying]|h|r"},["Darkmantle Bracers"]={SubType="Leather",Level=65,id=22004,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16598,Texture=132606,Link="|cff0070dd|Hitem:22004::::::::40:::::::|h[Darkmantle Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Edge of Winter"]={SubType="One-Handed Axes",Level=38,id=17704,StackCount=1,Rarity=2,MinLevel=33,SellPrice=9178,Texture=132397,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:17704::::::::40:::::::|h[Edge of Winter]|h|r",Type="Weapon"},["Codex of Holy Word: Shield V"]={SubType="Book",Level=30,id=3119,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:3119::::::::40:::::::|h[Codex of Holy Word: Shield V]|h|r"},["Blackwood Grain Sample"]={SubType="Quest",Level=1,id=12342,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134059,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12342::::::::40:::::::|h[Blackwood Grain Sample]|h|r"},["Deprecated Thick Cloth Hat"]={SubType="Cloth",Level=22,id=3883,StackCount=1,Rarity=1,MinLevel=17,SellPrice=333,Texture=133072,Link="|cffffffff|Hitem:3883::::::::40:::::::|h[Deprecated Thick Cloth Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Test Nature Res Neck"]={SubType="Miscellaneous",Level=35,id=16123,StackCount=1,Rarity=2,MinLevel=30,SellPrice=5395,Texture=133288,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:16123::::::::40:::::::|h[Test Nature Res Neck]|h|r",Type="Armor"},["Scroll of Strength II"]={SubType="Consumable",Level=35,id=2289,StackCount=5,Rarity=1,MinLevel=25,SellPrice=87,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:2289::::::::40:::::::|h[Scroll of Strength II]|h|r",Type="Consumable"},["Beaten Battle Axe"]={SubType="Two-Handed Axes",Level=8,id=1417,StackCount=1,Rarity=0,MinLevel=3,SellPrice=65,Texture=135424,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1417::::::::40:::::::|h[Beaten Battle Axe]|h|r"},["Book of Aquor"]={SubType="Quest",Level=1,id=11169,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133742,Type="Quest",Link="|cffffffff|Hitem:11169::::::::40:::::::|h[Book of Aquor]|h|r",EquipLoc=""},["Thun'grim's Sword"]={SubType="One-Handed Swords",Level=15,id=7329,StackCount=1,Rarity=2,MinLevel=0,SellPrice=703,Texture=135274,Link="|cff1eff00|Hitem:7329::::::::40:::::::|h[Thun'grim's Sword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Star Wood"]={SubType="Reagent",Level=30,id=11291,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1125,Texture=135437,Type="Reagent",Link="|cffffffff|Hitem:11291::::::::40:::::::|h[Star Wood]|h|r",EquipLoc=""},["Firemaw's Clutch"]={SubType="Cloth",Level=75,id=19400,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27603,Texture=132499,Link="|cffa335ee|Hitem:19400::::::::40:::::::|h[Firemaw's Clutch]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Mist Veil's Lockbox"]={SubType="Quest",Level=1,id=12192,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132597,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12192::::::::40:::::::|h[Mist Veil's Lockbox]|h|r"},["Plans: Enchanted Battlehammer"]={SubType="Blacksmithing",Level=56,id=12824,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12824::::::::40:::::::|h[Plans: Enchanted Battlehammer]|h|r"},["Sacred Cord"]={SubType="Quest",Level=1,id=19883,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133682,Link="|cffffffff|Hitem:19883::::::::40:::::::|h[Sacred Cord]|h|r",EquipLoc="",Type="Quest"},["Talvash's Gold Ring"]={SubType="Miscellaneous",Level=35,id=9538,StackCount=1,Rarity=3,MinLevel=0,SellPrice=6463,Texture=133345,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:9538::::::::40:::::::|h[Talvash's Gold Ring]|h|r"},["Ceranium Rod"]={SubType="Staves",Level=22,id=3452,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2322,Texture=135144,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3452::::::::40:::::::|h[Ceranium Rod]|h|r",Type="Weapon"},["Lambent Scale Shield"]={SubType="Shields",Level=27,id=3656,StackCount=1,Rarity=2,MinLevel=22,SellPrice=2116,Texture=134949,Type="Armor",Link="|cff1eff00|Hitem:3656::::::::40:::::::|h[Lambent Scale Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Oil Covered Fish"]={SubType="Consumable",Level=15,id=6458,StackCount=20,Rarity=1,MinLevel=5,SellPrice=1,Texture=134300,Type="Consumable",Link="|cffffffff|Hitem:6458::::::::40:::::::|h[Oil Covered Fish]|h|r",EquipLoc=""},["Monster - Item, Mutton with Bite"]={SubType="One-Handed Maces",Level=1,id=2202,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133974,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2202::::::::40:::::::|h[Monster - Item, Mutton with Bite]|h|r",Type="Weapon"},["Cat Figurine"]={SubType="Junk",Level=1,id=5329,StackCount=20,Rarity=0,MinLevel=0,SellPrice=15,Texture=134176,Link="|cff9d9d9d|Hitem:5329::::::::40:::::::|h[Cat Figurine]|h|r",EquipLoc="",Type="Miscellaneous"},["Smooth Pebble"]={SubType="Bullet",Level=18,id=5568,StackCount=200,Rarity=1,MinLevel=13,SellPrice=4,Texture=132384,Type="Projectile",EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:5568::::::::40:::::::|h[Smooth Pebble]|h|r"},["TEST SWORD"]={SubType="One-Handed Swords",Level=60,id=5953,StackCount=1,Rarity=1,MinLevel=0,SellPrice=24751,Texture=133069,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:5953::::::::40:::::::|h[TEST SWORD]|h|r",Type="Weapon"},["Obsidian Idol"]={SubType="Quest",Level=61,id=20871,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134904,Link="|cff0070dd|Hitem:20871::::::::40:::::::|h[Obsidian Idol]|h|r",EquipLoc="",Type="Quest"},["Monster - Gun, Tauren Blade Silver"]={SubType="Guns",Level=1,id=13923,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135612,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:13923::::::::40:::::::|h[Monster - Gun, Tauren Blade Silver]|h|r"},["Sturdy Female Human Mask"]={SubType="Miscellaneous",Level=45,id=20585,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4774,Texture=134167,Link="|cff1eff00|Hitem:20585::::::::40:::::::|h[Sturdy Female Human Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Truesilver Skeleton Key"]={SubType="Trade Goods",Level=40,id=15871,StackCount=20,Rarity=2,MinLevel=0,SellPrice=625,Texture=134245,EquipLoc="",Link="|cff1eff00|Hitem:15871::::::::40:::::::|h[Truesilver Skeleton Key]|h|r",Type="Trade Goods"},["Rockfury Bracers"]={SubType="Cloth",Level=62,id=21186,StackCount=1,Rarity=4,MinLevel=0,SellPrice=14533,Texture=132611,Link="|cffa335ee|Hitem:21186::::::::40:::::::|h[Rockfury Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Tome of Frostbolt X"]={SubType="Book",Level=56,id=8884,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=133739,Link="|cffffffff|Hitem:8884::::::::40:::::::|h[Tome of Frostbolt X]|h|r",EquipLoc="",Type="Recipe"},["Cloak of Warding"]={SubType="Cloth",Level=62,id=18413,StackCount=1,Rarity=3,MinLevel=57,SellPrice=17070,Texture=133758,Type="Armor",Link="|cff0070dd|Hitem:18413::::::::40:::::::|h[Cloak of Warding]|h|r",EquipLoc="INVTYPE_CLOAK"},["Arcane Gloves"]={SubType="Cloth",Level=57,id=8287,StackCount=1,Rarity=2,MinLevel=52,SellPrice=7087,Texture=132940,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:8287::::::::40:::::::|h[Arcane Gloves]|h|r"},["Skilled Handling Gloves"]={SubType="Cloth",Level=46,id=9634,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3381,Texture=132956,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9634::::::::40:::::::|h[Skilled Handling Gloves]|h|r"},["Jazeraint Bracers"]={SubType="Mail",Level=39,id=9896,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2913,Texture=132616,Link="|cff1eff00|Hitem:9896::::::::40:::::::|h[Jazeraint Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Plans: Barbaric Iron Helm"]={SubType="Blacksmithing",Level=35,id=7980,StackCount=1,Rarity=2,MinLevel=0,SellPrice=850,Texture=134942,Link="|cff1eff00|Hitem:7980::::::::40:::::::|h[Plans: Barbaric Iron Helm]|h|r",EquipLoc="",Type="Recipe"},["Staff of Lore"]={SubType="Staves",Level=48,id=10826,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25501,Texture=135164,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:10826::::::::40:::::::|h[Staff of Lore]|h|r",Type="Weapon"},["Balanced War Axe"]={SubType="Two-Handed Axes",Level=59,id=13819,StackCount=1,Rarity=0,MinLevel=54,SellPrice=19880,Texture=135424,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13819::::::::40:::::::|h[Balanced War Axe]|h|r"},["Undercity Pledge Collection"]={SubType="Consumable",Level=1,id=22300,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133473,Link="|cffffffff|Hitem:22300::::::::40:::::::|h[Undercity Pledge Collection]|h|r",EquipLoc="",Type="Consumable"},["Prismstone Ring"]={SubType="Miscellaneous",Level=40,id=5743,StackCount=1,Rarity=2,MinLevel=35,SellPrice=1803,Texture=133353,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:5743::::::::40:::::::|h[Prismstone Ring]|h|r",Type="Armor"},["Wild Growth Spaulders"]={SubType="Leather",Level=71,id=18810,StackCount=1,Rarity=4,MinLevel=60,SellPrice=40678,Texture=135049,Type="Armor",Link="|cffa335ee|Hitem:18810::::::::40:::::::|h[Wild Growth Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Sword of Zeal"]={SubType="One-Handed Swords",Level=63,id=6622,StackCount=1,Rarity=3,MinLevel=58,SellPrice=55400,Texture=135349,Link="|cff0070dd|Hitem:6622::::::::40:::::::|h[Sword of Zeal]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Elura's Medallion"]={SubType="Quest",Level=1,id=6809,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133276,Type="Quest",Link="|cffffffff|Hitem:6809::::::::40:::::::|h[Elura's Medallion]|h|r",EquipLoc=""},["Kezan's Taint"]={SubType="Miscellaneous",Level=60,id=19602,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133310,Link="|cff1eff00|Hitem:19602::::::::40:::::::|h[Kezan's Taint]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Blunting Mace"]={SubType="One-Handed Maces",Level=46,id=4021,StackCount=1,Rarity=0,MinLevel=41,SellPrice=7198,Texture=133476,Link="|cff9d9d9d|Hitem:4021::::::::40:::::::|h[Blunting Mace]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["General's Ceremonial Plate"]={SubType="Plate",Level=63,id=12970,StackCount=1,Rarity=3,MinLevel=58,SellPrice=22768,Texture=132745,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:12970::::::::40:::::::|h[General's Ceremonial Plate]|h|r"},["Essence of Nightlash"]={SubType="Quest",Level=1,id=3622,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,Type="Quest",Link="|cffffffff|Hitem:3622::::::::40:::::::|h[Essence of Nightlash]|h|r",EquipLoc=""},["Cryptstalker Boots"]={SubType="Mail",Level=86,id=22440,StackCount=1,Rarity=4,MinLevel=60,SellPrice=102391,Texture=132548,Link="|cffa335ee|Hitem:22440::::::::40:::::::|h[Cryptstalker Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Lord Blackwood's Blade"]={SubType="One-Handed Swords",Level=62,id=23132,StackCount=1,Rarity=3,MinLevel=57,SellPrice=56951,Texture=135275,Link="|cff0070dd|Hitem:23132::::::::40:::::::|h[Lord Blackwood's Blade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Schematic: Flawless Arcanite Rifle"]={SubType="Engineering",Level=61,id=16056,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:16056::::::::40:::::::|h[Schematic: Flawless Arcanite Rifle]|h|r",Type="Recipe"},["Tusken Helm"]={SubType="Mail",Level=33,id=6686,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2627,Texture=133077,Type="Armor",Link="|cff1eff00|Hitem:6686::::::::40:::::::|h[Tusken Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Ogre Toothpick Shooter"]={SubType="Bows",Level=60,id=18482,StackCount=1,Rarity=2,MinLevel=55,SellPrice=30986,Texture=135493,Type="Weapon",Link="|cff1eff00|Hitem:18482::::::::40:::::::|h[Ogre Toothpick Shooter]|h|r",EquipLoc="INVTYPE_RANGED"},["Gloom Weed"]={SubType="Quest",Level=1,id=12737,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134185,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12737::::::::40:::::::|h[Gloom Weed]|h|r"},["Scarlet Crusade Documents"]={SubType="Quest",Level=1,id=2885,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133458,EquipLoc="",Link="|cffffffff|Hitem:2885::::::::40:::::::|h[Scarlet Crusade Documents]|h|r",Type="Quest"},["Great Horned Owl"]={SubType="Junk",Level=30,id=8500,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=132150,Link="|cffffffff|Hitem:8500::::::::40:::::::|h[Great Horned Owl]|h|r",EquipLoc="",Type="Miscellaneous"},["Worn Mail Bracers"]={SubType="Mail",Level=14,id=1732,StackCount=1,Rarity=0,MinLevel=9,SellPrice=73,Texture=132602,Link="|cff9d9d9d|Hitem:1732::::::::40:::::::|h[Worn Mail Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Pendant of Shadow"]={SubType="Quest",Level=1,id=3617,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133281,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3617::::::::40:::::::|h[Pendant of Shadow]|h|r"},["Cracked Bill"]={SubType="Junk",Level=1,id=4775,StackCount=5,Rarity=0,MinLevel=0,SellPrice=28,Texture=133707,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:4775:::::::::::::::|h[Cracked Bill]|h|r",EquipLoc=""},["Gaea's Cloak"]={SubType="Cloth",Level=45,id=14270,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4877,Texture=132655,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14270::::::::40:::::::|h[Gaea's Cloak]|h|r"},["Tablet of Restoration VI"]={SubType="Book",Level=40,id=5716,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5716::::::::40:::::::|h[Tablet of Restoration VI]|h|r"},["Knowledge: Dark Iron Dwarf Disguise"]={SubType="Book",Level=22,id=5129,StackCount=1,Rarity=1,MinLevel=22,SellPrice=162,Texture=134941,Link="|cffffffff|Hitem:5129::::::::40:::::::|h[Knowledge: Dark Iron Dwarf Disguise]|h|r",EquipLoc="",Type="Recipe"},["Bracers of Prosperity"]={SubType="Leather",Level=63,id=18525,StackCount=1,Rarity=3,MinLevel=58,SellPrice=13730,Texture=132611,Type="Armor",Link="|cff0070dd|Hitem:18525::::::::40:::::::|h[Bracers of Prosperity]|h|r",EquipLoc="INVTYPE_WRIST"},["Plagueheart Shoulderpads"]={SubType="Cloth",Level=86,id=22507,StackCount=1,Rarity=4,MinLevel=60,SellPrice=71623,Texture=135056,Link="|cffa335ee|Hitem:22507::::::::40:::::::|h[Plagueheart Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Maul of the Redeemed Crusader"]={SubType="Two-Handed Maces",Level=83,id=22809,StackCount=1,Rarity=4,MinLevel=60,SellPrice=260674,Texture=133503,Link="|cffa335ee|Hitem:22809::::::::40:::::::|h[Maul of the Redeemed Crusader]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Crimson Silk Robe"]={SubType="Cloth",Level=41,id=7063,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4741,Texture=132666,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:7063::::::::40:::::::|h[Crimson Silk Robe]|h|r",Type="Armor"},["Codex of Mana Burn"]={SubType="Book",Level=24,id=8968,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8968::::::::40:::::::|h[Codex of Mana Burn]|h|r"},["Plans: Radiant Leggings"]={SubType="Blacksmithing",Level=61,id=12713,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12713::::::::40:::::::|h[Plans: Radiant Leggings]|h|r"},["Champion's Satin Mantle"]={SubType="Cloth",Level=71,id=23262,StackCount=1,Rarity=3,MinLevel=60,SellPrice=13109,Texture=135032,Link="|cff0070dd|Hitem:23262::::::::40:::::::|h[Champion's Satin Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Syndicate Missive"]={SubType="Quest",Level=1,id=3601,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133472,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3601::::::::40:::::::|h[Syndicate Missive]|h|r"},["Darkmist Pants"]={SubType="Cloth",Level=43,id=14242,StackCount=1,Rarity=2,MinLevel=38,SellPrice=5413,Texture=134588,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14242::::::::40:::::::|h[Darkmist Pants]|h|r"},["[PH] Greater Arcane Amalgamation (INT/FR)"]={SubType="Quest",Level=50,id=11673,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=134094,Type="Quest",Link="|cff0070dd|Hitem:11673::::::::40:::::::|h[[PH] Greater Arcane Amalgamation (INT/FR)]|h|r",EquipLoc=""},["Dwarven Leather Pants"]={SubType="Leather",Level=5,id=61,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=134706,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:61::::::::40:::::::|h[Dwarven Leather Pants]|h|r"},["Spiced Chili Crab"]={SubType="Consumable",Level=45,id=12216,StackCount=20,Rarity=1,MinLevel=40,SellPrice=300,Texture=134004,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12216::::::::40:::::::|h[Spiced Chili Crab]|h|r"},["Scroll of Strength III"]={SubType="Consumable",Level=50,id=4426,StackCount=5,Rarity=1,MinLevel=40,SellPrice=125,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:4426::::::::40:::::::|h[Scroll of Strength III]|h|r",Type="Consumable"},["Lucky Red Envelope"]={SubType="Consumable",Level=1,id=21746,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134268,Link="|cffffffff|Hitem:21746::::::::40:::::::|h[Lucky Red Envelope]|h|r",EquipLoc="",Type="Consumable"},["Hunting Boots"]={SubType="Leather",Level=14,id=2975,StackCount=1,Rarity=1,MinLevel=9,SellPrice=128,Texture=132592,Link="|cffffffff|Hitem:2975::::::::40:::::::|h[Hunting Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Lescovar's Head"]={SubType="Quest",Level=1,id=3516,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Link="|cffffffff|Hitem:3516::::::::40:::::::|h[Lescovar's Head]|h|r",EquipLoc="",Type="Quest"},["Deprecated Watchman Pauldrons"]={SubType="Mail",Level=12,id=3226,StackCount=1,Rarity=0,MinLevel=7,SellPrice=70,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3226::::::::40:::::::|h[Deprecated Watchman Pauldrons]|h|r"},["Blackbone Wand"]={SubType="Wands",Level=46,id=5239,StackCount=1,Rarity=1,MinLevel=41,SellPrice=7746,Texture=133718,Link="|cffffffff|Hitem:5239::::::::40:::::::|h[Blackbone Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Blackwood Recurve Bow"]={SubType="Bows",Level=9,id=4763,StackCount=1,Rarity=2,MinLevel=4,SellPrice=135,Texture=135500,Link="|cff1eff00|Hitem:4763::::::::40:::::::|h[Blackwood Recurve Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Heavy Lamellar Chestpiece"]={SubType="Plate",Level=55,id=10240,StackCount=1,Rarity=2,MinLevel=50,SellPrice=12576,Texture=132723,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10240::::::::40:::::::|h[Heavy Lamellar Chestpiece]|h|r",Type="Armor"},["Small Brass Key"]={SubType="Key",Level=1,id=2719,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134238,Type="Key",Link="|cffffffff|Hitem:2719::::::::40:::::::|h[Small Brass Key]|h|r",EquipLoc=""},["Greaves of Ten Storms"]={SubType="Mail",Level=76,id=16949,StackCount=1,Rarity=4,MinLevel=60,SellPrice=62552,Texture=132587,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16949::::::::40:::::::|h[Greaves of Ten Storms]|h|r",Type="Armor"},["Bloodscalp Coin"]={SubType="Quest",Level=1,id=19706,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=133794,Link="|cff1eff00|Hitem:19706::::::::40:::::::|h[Bloodscalp Coin]|h|r",EquipLoc="",Type="Quest"},["Ritual Blade"]={SubType="Daggers",Level=15,id=5112,StackCount=1,Rarity=2,MinLevel=10,SellPrice=730,Texture=135638,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:5112::::::::40:::::::|h[Ritual Blade]|h|r",Type="Weapon"},["Solid Grinding Stone"]={SubType="Trade Goods",Level=35,id=7966,StackCount=20,Rarity=1,MinLevel=0,SellPrice=200,Texture=135246,Link="|cffffffff|Hitem:7966::::::::40:::::::|h[Solid Grinding Stone]|h|r",EquipLoc="",Type="Trade Goods"},["Bonelink Gauntlets"]={SubType="Mail",Level=44,id=15612,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4285,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15612::::::::40:::::::|h[Bonelink Gauntlets]|h|r",Type="Armor"},["Massive Longbow"]={SubType="Bows",Level=47,id=11307,StackCount=1,Rarity=2,MinLevel=42,SellPrice=13590,Texture=135489,Type="Weapon",Link="|cff1eff00|Hitem:11307::::::::40:::::::|h[Massive Longbow]|h|r",EquipLoc="INVTYPE_RANGED"},["Champion's Silk Mantle"]={SubType="Cloth",Level=71,id=23264,StackCount=1,Rarity=3,MinLevel=60,SellPrice=13204,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:23264::::::::40:::::::|h[Champion's Silk Mantle]|h|r"},["Whistle of the Mottled Red Raptor"]={SubType="Junk",Level=60,id=8586,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132253,Link="|cffa335ee|Hitem:8586::::::::40:::::::|h[Whistle of the Mottled Red Raptor]|h|r",EquipLoc="",Type="Miscellaneous"},["Gold Militia Boots"]={SubType="Mail",Level=25,id=2910,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1257,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:2910::::::::40:::::::|h[Gold Militia Boots]|h|r",Type="Armor"},["Huntsman's Belt"]={SubType="Leather",Level=39,id=9891,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2636,Texture=132506,Link="|cff1eff00|Hitem:9891::::::::40:::::::|h[Huntsman's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Warlord's Dragonhide Helmet"]={SubType="Leather",Level=74,id=16550,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25357,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16550::::::::40:::::::|h[Warlord's Dragonhide Helmet]|h|r",Type="Armor"},["Detailed Parchment"]={SubType="Quest",Level=1,id=6496,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:6496::::::::40:::::::|h[Detailed Parchment]|h|r",EquipLoc="",Type="Quest"},["Three of Elementals"]={SubType="Junk",Level=1,id=19270,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134486,Link="|cff0070dd|Hitem:19270::::::::40:::::::|h[Three of Elementals]|h|r",EquipLoc="",Type="Miscellaneous"},["Plans: Mithril Scale Gloves"]={SubType="Blacksmithing",Level=44,id=7977,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2000,Texture=134939,Link="|cff1eff00|Hitem:7977::::::::40:::::::|h[Plans: Mithril Scale Gloves]|h|r",EquipLoc="",Type="Recipe"},["Platemail Leggings"]={SubType="Plate",Level=50,id=8093,StackCount=1,Rarity=1,MinLevel=45,SellPrice=5437,Texture=134584,Link="|cffffffff|Hitem:8093::::::::40:::::::|h[Platemail Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Rakzur Club"]={SubType="Two-Handed Maces",Level=21,id=12983,StackCount=1,Rarity=3,MinLevel=16,SellPrice=2362,Texture=133046,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12983::::::::40:::::::|h[Rakzur Club]|h|r"},["Gingerbread Cookie"]={SubType="Consumable",Level=7,id=17197,StackCount=20,Rarity=1,MinLevel=1,SellPrice=10,Texture=134018,EquipLoc="",Link="|cffffffff|Hitem:17197::::::::40:::::::|h[Gingerbread Cookie]|h|r",Type="Consumable"},["Triad Girdle"]={SubType="Plate",Level=75,id=21692,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26784,Texture=132507,Link="|cffa335ee|Hitem:21692::::::::40:::::::|h[Triad Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Cenarion Circle Cache"]={SubType="Junk",Level=1,id=11887,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133653,Type="Miscellaneous",Link="|cffffffff|Hitem:11887::::::::40:::::::|h[Cenarion Circle Cache]|h|r",EquipLoc=""},["Heart of Anub'Rekhan"]={SubType="Quest",Level=1,id=22387,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134131,Link="|cffffffff|Hitem:22387::::::::40:::::::|h[Heart of Anub'Rekhan]|h|r",EquipLoc="",Type="Quest"},["Cap of the Scarlet Savant"]={SubType="Cloth",Level=62,id=12752,StackCount=1,Rarity=4,MinLevel=0,SellPrice=22907,Texture=133161,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:12752::::::::40:::::::|h[Cap of the Scarlet Savant]|h|r"},["Deprecated Busted Elemental Bracer"]={SubType="Quest",Level=1,id=5450,StackCount=20,Rarity=1,MinLevel=0,SellPrice=21,Texture=132606,EquipLoc="",Link="|cffffffff|Hitem:5450::::::::40:::::::|h[Deprecated Busted Elemental Bracer]|h|r",Type="Quest"},["Knight-Lieutenant's Leather Boots"]={SubType="Leather",Level=63,id=16392,StackCount=1,Rarity=3,MinLevel=58,SellPrice=10638,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16392::::::::40:::::::|h[Knight-Lieutenant's Leather Boots]|h|r",Type="Armor"},["Warrior's Girdle"]={SubType="Mail",Level=8,id=4659,StackCount=1,Rarity=1,MinLevel=3,SellPrice=23,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:4659::::::::40:::::::|h[Warrior's Girdle]|h|r"},["Meadow Ring"]={SubType="Miscellaneous",Level=22,id=12006,StackCount=1,Rarity=2,MinLevel=17,SellPrice=1064,Texture=133354,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12006::::::::40:::::::|h[Meadow Ring]|h|r"},["Tome of Scorch"]={SubType="Book",Level=22,id=8811,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133739,Link="|cffffffff|Hitem:8811::::::::40:::::::|h[Tome of Scorch]|h|r",EquipLoc="",Type="Recipe"},["Greater Mana Potion"]={SubType="Consumable",Level=41,id=6149,StackCount=5,Rarity=1,MinLevel=31,SellPrice=120,Texture=134853,Type="Consumable",Link="|cffffffff|Hitem:6149::::::::40:::::::|h[Greater Mana Potion]|h|r",EquipLoc=""},["Rigid Belt"]={SubType="Leather",Level=20,id=15110,StackCount=1,Rarity=2,MinLevel=15,SellPrice=351,Texture=132494,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15110::::::::40:::::::|h[Rigid Belt]|h|r",Type="Armor"},["Hydrospawn Essence"]={SubType="Quest",Level=1,id=18299,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134808,Type="Quest",Link="|cffffffff|Hitem:18299::::::::40:::::::|h[Hydrospawn Essence]|h|r",EquipLoc=""},["Forsaken Bastard Sword"]={SubType="Two-Handed Swords",Level=5,id=5779,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30,Texture=135276,Link="|cffffffff|Hitem:5779::::::::40:::::::|h[Forsaken Bastard Sword]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Crushing Maul"]={SubType="Two-Handed Maces",Level=50,id=4022,StackCount=1,Rarity=0,MinLevel=45,SellPrice=12059,Texture=133053,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:4022::::::::40:::::::|h[Crushing Maul]|h|r"},["Test Glaive J"]={SubType="One-Handed Swords",Level=5,id=14892,StackCount=1,Rarity=1,MinLevel=1,SellPrice=25,Texture=135643,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:14892::::::::40:::::::|h[Test Glaive J]|h|r"},["Fast Test Ammo"]={SubType="Bullet",Level=45,id=19286,StackCount=200,Rarity=0,MinLevel=1,SellPrice=10,Texture=132385,Link="|cff9d9d9d|Hitem:19286::::::::40:::::::|h[Fast Test Ammo]|h|r",EquipLoc="INVTYPE_AMMO",Type="Projectile"},["Monster - Mace2H, Alliance PvP"]={SubType="Two-Handed Maces",Level=1,id=21555,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,Link="|cff9d9d9d|Hitem:21555::::::::40:::::::|h[Monster - Mace2H, Alliance PvP]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Lucius's Lockbox"]={SubType="Junk",Level=16,id=7869,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132597,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:7869::::::::40:::::::|h[Lucius's Lockbox]|h|r"},["Giantslayer Bracers"]={SubType="Plate",Level=48,id=13076,StackCount=1,Rarity=3,MinLevel=43,SellPrice=4715,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13076::::::::40:::::::|h[Giantslayer Bracers]|h|r"},["Legionnaire's Dreadweave Belt"]={SubType="Cloth",Level=60,id=17574,StackCount=1,Rarity=3,MinLevel=55,SellPrice=4744,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:17574::::::::40:::::::|h[Legionnaire's Dreadweave Belt]|h|r",Type="Armor"},["Rumbleshot's Ammo"]={SubType="Quest",Level=1,id=13850,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132384,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13850::::::::40:::::::|h[Rumbleshot's Ammo]|h|r"},["Angelista's Grasp"]={SubType="Cloth",Level=77,id=19388,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31329,Texture=132502,Link="|cffa335ee|Hitem:19388::::::::40:::::::|h[Angelista's Grasp]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Tome of Chains of Ice"]={SubType="Book",Level=10,id=975,StackCount=1,Rarity=1,MinLevel=10,SellPrice=187,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:975::::::::40:::::::|h[Tome of Chains of Ice]|h|r",EquipLoc=""},["Arcanist Gloves"]={SubType="Cloth",Level=66,id=16801,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17322,Texture=132948,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16801::::::::40:::::::|h[Arcanist Gloves]|h|r",Type="Armor"},["Runic Leather Gauntlets"]={SubType="Leather",Level=54,id=15091,StackCount=1,Rarity=2,MinLevel=49,SellPrice=7195,Texture=132965,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15091::::::::40:::::::|h[Runic Leather Gauntlets]|h|r",Type="Armor"},["90 Green Rogue Cloak"]={SubType="Cloth",Level=90,id=20302,StackCount=1,Rarity=2,MinLevel=60,SellPrice=53401,Texture=133757,Link="|cff1eff00|Hitem:20302::::::::40:::::::|h[90 Green Rogue Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Girdle of the Fallen Crusader"]={SubType="Plate",Level=77,id=19392,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31776,Texture=132500,Link="|cffa335ee|Hitem:19392::::::::40:::::::|h[Girdle of the Fallen Crusader]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Huntsman's Gloves"]={SubType="Leather",Level=40,id=9892,StackCount=1,Rarity=2,MinLevel=35,SellPrice=2857,Texture=132949,Link="|cff1eff00|Hitem:9892::::::::40:::::::|h[Huntsman's Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Tarnished Chain Leggings"]={SubType="Mail",Level=5,id=2381,StackCount=1,Rarity=1,MinLevel=1,SellPrice=15,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:2381::::::::40:::::::|h[Tarnished Chain Leggings]|h|r",Type="Armor"},["Nimboya's Pike"]={SubType="Quest",Level=1,id=15002,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135128,EquipLoc="",Link="|cffffffff|Hitem:15002::::::::40:::::::|h[Nimboya's Pike]|h|r",Type="Quest"},["Infiltrator Armor"]={SubType="Leather",Level=35,id=7407,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3666,Texture=132718,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7407::::::::40:::::::|h[Infiltrator Armor]|h|r",Type="Armor"},["Sunscale Helmet"]={SubType="Plate",Level=53,id=14849,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8271,Texture=133124,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14849::::::::40:::::::|h[Sunscale Helmet]|h|r"},["Troll-hide Bag"]={SubType="Bag",Level=45,id=1685,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6250,Texture=133644,Link="|cffffffff|Hitem:1685::::::::40:::::::|h[Troll-hide Bag]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Basilisk Hide Pants"]={SubType="Leather",Level=43,id=1718,StackCount=1,Rarity=3,MinLevel=38,SellPrice=8040,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:1718::::::::40:::::::|h[Basilisk Hide Pants]|h|r",Type="Armor"},["Monster - Staff, Wooden Handle Spiral Head White"]={SubType="Staves",Level=1,id=13721,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135138,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13721::::::::40:::::::|h[Monster - Staff, Wooden Handle Spiral Head White]|h|r"},["Entrenching Boots"]={SubType="Plate",Level=55,id=22270,StackCount=1,Rarity=3,MinLevel=50,SellPrice=11882,Texture=132583,Link="|cff0070dd|Hitem:22270::::::::40:::::::|h[Entrenching Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Tome of Frostbolt VIII"]={SubType="Book",Level=44,id=8856,StackCount=1,Rarity=1,MinLevel=44,SellPrice=6250,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8856::::::::40:::::::|h[Tome of Frostbolt VIII]|h|r"},["Recipe: Thistle Tea"]={SubType="Cooking",Level=15,id=7678,StackCount=1,Rarity=1,MinLevel=0,SellPrice=50,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:7678::::::::40:::::::|h[Recipe: Thistle Tea]|h|r",Type="Recipe"},["Schematic: Biznicks 247x128 Accurascope"]={SubType="Engineering",Level=60,id=18290,StackCount=1,Rarity=3,MinLevel=0,SellPrice=30000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18290::::::::40:::::::|h[Schematic: Biznicks 247x128 Accurascope]|h|r",EquipLoc=""},["Encrypted Rune"]={SubType="Quest",Level=1,id=9550,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134419,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9550::::::::40:::::::|h[Encrypted Rune]|h|r"},["Major Healing Potion"]={SubType="Consumable",Level=55,id=13446,StackCount=5,Rarity=1,MinLevel=45,SellPrice=1000,Texture=134834,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13446::::::::40:::::::|h[Major Healing Potion]|h|r"},["Durability Boots"]={SubType="Cloth",Level=1,id=14384,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:14384::::::::40:::::::|h[Durability Boots]|h|r"},["Ultra-Flash Shadow Reflector"]={SubType="Devices",Level=60,id=18639,StackCount=1,Rarity=3,MinLevel=55,SellPrice=12500,Texture=133874,Type="Trade Goods",Link="|cff0070dd|Hitem:18639::::::::40:::::::|h[Ultra-Flash Shadow Reflector]|h|r",EquipLoc="INVTYPE_TRINKET"},["Ruined Tome"]={SubType="Quest",Level=1,id=15696,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133735,EquipLoc="",Link="|cffffffff|Hitem:15696::::::::40:::::::|h[Ruined Tome]|h|r",Type="Quest"},["Willow Belt"]={SubType="Cloth",Level=16,id=6539,StackCount=1,Rarity=2,MinLevel=11,SellPrice=162,Texture=132494,Type="Armor",Link="|cff1eff00|Hitem:6539::::::::40:::::::|h[Willow Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Podrig's Order"]={SubType="Quest",Level=1,id=16209,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,EquipLoc="",Link="|cffffffff|Hitem:16209::::::::40:::::::|h[Podrig's Order]|h|r",Type="Quest"},["Trelane's Phylactery"]={SubType="Quest",Level=1,id=4530,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133280,Type="Quest",Link="|cffffffff|Hitem:4530::::::::40:::::::|h[Trelane's Phylactery]|h|r",EquipLoc=""},["Monster - Item, Flower - Rose (White)"]={SubType="Miscellaneous",Level=1,id=6236,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133941,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:6236::::::::40:::::::|h[Monster - Item, Flower - Rose (White)]|h|r"},["Arcane Infused Gem"]={SubType="Miscellaneous",Level=76,id=19336,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72039,Texture=136116,Link="|cffa335ee|Hitem:19336::::::::40:::::::|h[Arcane Infused Gem]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["General's Leather Treads"]={SubType="Leather",Level=71,id=16558,StackCount=1,Rarity=4,MinLevel=60,SellPrice=20964,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16558::::::::40:::::::|h[General's Leather Treads]|h|r",Type="Armor"},["Champion's Helmet"]={SubType="Mail",Level=47,id=7540,StackCount=1,Rarity=2,MinLevel=42,SellPrice=8845,Texture=133070,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7540::::::::40:::::::|h[Champion's Helmet]|h|r",Type="Armor"},["Imprisoned Infernal Spirit"]={SubType="Quest",Level=1,id=12649,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134104,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12649::::::::40:::::::|h[Imprisoned Infernal Spirit]|h|r"},["Sentinel Advanced Care Package"]={SubType="Consumable",Level=1,id=19152,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134144,Link="|cffffffff|Hitem:19152::::::::40:::::::|h[Sentinel Advanced Care Package]|h|r",EquipLoc="",Type="Consumable"},["Flamescarred Girdle"]={SubType="Leather",Level=62,id=13526,StackCount=1,Rarity=2,MinLevel=57,SellPrice=10897,Texture=132498,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:13526::::::::40:::::::|h[Flamescarred Girdle]|h|r"},["Tome of Arcane Missiles"]={SubType="Book",Level=8,id=4159,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:4159::::::::40:::::::|h[Tome of Arcane Missiles]|h|r",EquipLoc=""},["Silver Piffeny Band"]={SubType="Miscellaneous",Level=30,id=7342,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25000,Texture=132522,EquipLoc="INVTYPE_FINGER",Link="|cffffffff|Hitem:7342::::::::40:::::::|h[Silver Piffeny Band]|h|r",Type="Armor"},["Shard of the Green Flame"]={SubType="Miscellaneous",Level=54,id=18762,StackCount=1,Rarity=3,MinLevel=0,SellPrice=27631,Texture=134430,Type="Armor",Link="|cff0070dd|Hitem:18762::::::::40:::::::|h[Shard of the Green Flame]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Champion's Dragonhide Spaulders"]={SubType="Leather",Level=63,id=16501,StackCount=1,Rarity=3,MinLevel=58,SellPrice=10479,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16501::::::::40:::::::|h[Champion's Dragonhide Spaulders]|h|r",Type="Armor"},["Jaina's Firestarter"]={SubType="Wands",Level=42,id=13064,StackCount=1,Rarity=3,MinLevel=37,SellPrice=11487,Texture=135471,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13064::::::::40:::::::|h[Jaina's Firestarter]|h|r"},["A Shrunken Head"]={SubType="Quest",Level=1,id=9629,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134150,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9629::::::::40:::::::|h[A Shrunken Head]|h|r"},["Hawkeye Bow"]={SubType="Bows",Level=63,id=15296,StackCount=1,Rarity=2,MinLevel=58,SellPrice=34657,Texture=135500,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:15296::::::::40:::::::|h[Hawkeye Bow]|h|r",Type="Weapon"},["Ghamoo-ra's Bind"]={SubType="Cloth",Level=25,id=6908,StackCount=1,Rarity=2,MinLevel=20,SellPrice=522,Texture=132513,Link="|cff1eff00|Hitem:6908::::::::40:::::::|h[Ghamoo-ra's Bind]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Smooth Cloak"]={SubType="Cloth",Level=56,id=3972,StackCount=1,Rarity=0,MinLevel=51,SellPrice=3891,Texture=133764,Link="|cff9d9d9d|Hitem:3972::::::::40:::::::|h[Smooth Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Deprecated Hollowed Wooden Tube"]={SubType="Quest",Level=1,id=1924,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133942,Link="|cffffffff|Hitem:1924::::::::40:::::::|h[Deprecated Hollowed Wooden Tube]|h|r",EquipLoc="",Type="Quest"},["Light Shot"]={SubType="Bullet",Level=5,id=2516,StackCount=200,Rarity=1,MinLevel=1,SellPrice=0,Texture=132384,EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:2516::::::::40:::::::|h[Light Shot]|h|r",Type="Projectile"},["Bristlebark Boots"]={SubType="Leather",Level=23,id=14568,StackCount=1,Rarity=2,MinLevel=18,SellPrice=797,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14568::::::::40:::::::|h[Bristlebark Boots]|h|r"},["Flayed Demon Skin (old)"]={SubType="Quest",Level=25,id=6437,StackCount=1,Rarity=1,MinLevel=1,SellPrice=149,Texture=134257,Type="Quest",Link="|cffffffff|Hitem:6437::::::::40:::::::|h[Flayed Demon Skin (old)]|h|r",EquipLoc=""},["Keller's Girdle"]={SubType="Cloth",Level=23,id=2911,StackCount=1,Rarity=3,MinLevel=18,SellPrice=524,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:2911::::::::40:::::::|h[Keller's Girdle]|h|r",Type="Armor"},["Bloodkelp Elixir of Resistance"]={SubType="Consumable",Level=60,id=22193,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134801,Link="|cffffffff|Hitem:22193::::::::40:::::::|h[Bloodkelp Elixir of Resistance]|h|r",EquipLoc="",Type="Consumable"},["Recipe: Egg Nog"]={SubType="Cooking",Level=10,id=17201,StackCount=1,Rarity=1,MinLevel=0,SellPrice=60,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:17201::::::::40:::::::|h[Recipe: Egg Nog]|h|r",Type="Recipe"},["Gluth's Missing Collar"]={SubType="Miscellaneous",Level=83,id=22981,StackCount=1,Rarity=4,MinLevel=60,SellPrice=128862,Texture=133315,Link="|cffa335ee|Hitem:22981::::::::40:::::::|h[Gluth's Missing Collar]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Black Ogre Kickers"]={SubType="Mail",Level=37,id=1678,StackCount=1,Rarity=3,MinLevel=32,SellPrice=4581,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:1678::::::::40:::::::|h[Black Ogre Kickers]|h|r",Type="Armor"},["Thornroot Club"]={SubType="One-Handed Maces",Level=13,id=5587,StackCount=1,Rarity=2,MinLevel=0,SellPrice=512,Texture=133490,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:5587::::::::40:::::::|h[Thornroot Club]|h|r",Type="Weapon"},["Plans: Shadow Crescent Axe"]={SubType="Blacksmithing",Level=40,id=3869,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:3869::::::::40:::::::|h[Plans: Shadow Crescent Axe]|h|r"},["Codex of Mind Blast V"]={SubType="Book",Level=34,id=8980,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8980::::::::40:::::::|h[Codex of Mind Blast V]|h|r"},["Mesh Gloves"]={SubType="Cloth",Level=63,id=3956,StackCount=1,Rarity=0,MinLevel=58,SellPrice=3776,Texture=132958,Link="|cff9d9d9d|Hitem:3956::::::::40:::::::|h[Mesh Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Ley Orb"]={SubType="Miscellaneous",Level=10,id=7508,StackCount=1,Rarity=2,MinLevel=0,SellPrice=400,Texture=134333,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:7508::::::::40:::::::|h[Ley Orb]|h|r",Type="Armor"},["Forest Hoop"]={SubType="Miscellaneous",Level=41,id=12011,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4649,Texture=133354,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12011::::::::40:::::::|h[Forest Hoop]|h|r"},["Mail Combat Armguards"]={SubType="Mail",Level=33,id=6403,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1771,Texture=132603,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:6403::::::::40:::::::|h[Mail Combat Armguards]|h|r"},["Nightshade Gloves"]={SubType="Leather",Level=59,id=10225,StackCount=1,Rarity=2,MinLevel=54,SellPrice=10012,Texture=132949,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10225::::::::40:::::::|h[Nightshade Gloves]|h|r",Type="Armor"},["Styleen's Impeding Scarab"]={SubType="Miscellaneous",Level=75,id=19431,StackCount=1,Rarity=4,MinLevel=60,SellPrice=103117,Texture=133605,Link="|cffa335ee|Hitem:19431::::::::40:::::::|h[Styleen's Impeding Scarab]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Duskwoven Amice"]={SubType="Cloth",Level=51,id=10063,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7165,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10063::::::::40:::::::|h[Duskwoven Amice]|h|r",Type="Armor"},["Snowy Robe"]={SubType="Cloth",Level=8,id=2114,StackCount=1,Rarity=1,MinLevel=3,SellPrice=31,Texture=132674,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:2114::::::::40:::::::|h[Snowy Robe]|h|r"},["Watcher's Handwraps"]={SubType="Cloth",Level=28,id=14181,StackCount=1,Rarity=2,MinLevel=23,SellPrice=775,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14181::::::::40:::::::|h[Watcher's Handwraps]|h|r"},["Reinforced Leather Pants"]={SubType="Leather",Level=50,id=2472,StackCount=1,Rarity=1,MinLevel=45,SellPrice=6842,Texture=134589,Type="Armor",Link="|cffffffff|Hitem:2472::::::::40:::::::|h[Reinforced Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Tome of Conjure Food IV"]={SubType="Book",Level=32,id=4152,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:4152::::::::40:::::::|h[Tome of Conjure Food IV]|h|r",EquipLoc=""},["Monster - Sword, Katana 2H Gold"]={SubType="One-Handed Swords",Level=1,id=14524,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14524::::::::40:::::::|h[Monster - Sword, Katana 2H Gold]|h|r"},["Magic Dust"]={SubType="Consumable",Level=20,id=2091,StackCount=10,Rarity=1,MinLevel=10,SellPrice=213,Texture=133849,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2091::::::::40:::::::|h[Magic Dust]|h|r"},["Colossal Great Axe"]={SubType="Two-Handed Axes",Level=56,id=15271,StackCount=1,Rarity=2,MinLevel=51,SellPrice=43701,Texture=132403,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15271::::::::40:::::::|h[Colossal Great Axe]|h|r",Type="Weapon"},["Riding Gloves"]={SubType="Cloth",Level=20,id=1304,StackCount=1,Rarity=2,MinLevel=0,SellPrice=279,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:1304::::::::40:::::::|h[Riding Gloves]|h|r",Type="Armor"},["90 Green Warrior Sabatons"]={SubType="Plate",Level=90,id=20251,StackCount=1,Rarity=2,MinLevel=60,SellPrice=53777,Texture=132585,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:20251::::::::40:::::::|h[90 Green Warrior Sabatons]|h|r"},["Formula: Enchant Boots - Minor Agility"]={SubType="Enchanting",Level=25,id=6377,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:6377::::::::40:::::::|h[Formula: Enchant Boots - Minor Agility]|h|r",EquipLoc=""},["Chew Toy"]={SubType="Junk",Level=1,id=5362,StackCount=5,Rarity=0,MinLevel=0,SellPrice=18,Texture=133884,EquipLoc="",Link="|cff9d9d9d|Hitem:5362::::::::40:::::::|h[Chew Toy]|h|r",Type="Miscellaneous"},["Coif of Elements"]={SubType="Mail",Level=62,id=16667,StackCount=1,Rarity=3,MinLevel=57,SellPrice=25778,Texture=133072,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16667::::::::40:::::::|h[Coif of Elements]|h|r",Type="Armor"},["Sharptalon's Claw"]={SubType="Quest",Level=20,id=16305,StackCount=1,Rarity=2,MinLevel=20,SellPrice=0,Texture=136063,EquipLoc="",Link="|cff1eff00|Hitem:16305::::::::40:::::::|h[Sharptalon's Claw]|h|r",Type="Quest"},["Ahn'Qiraj War Effort Supplies"]={SubType="Junk",Level=10,id=21509,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,Link="|cffffffff|Hitem:21509::::::::40:::::::|h[Ahn'Qiraj War Effort Supplies]|h|r",EquipLoc="",Type="Miscellaneous"},["Libram: Exorcism III"]={SubType="Book",Level=36,id=5674,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133740,Link="|cffffffff|Hitem:5674::::::::40:::::::|h[Libram: Exorcism III]|h|r",EquipLoc="",Type="Recipe"},["Monster - Sword, Horde Jagged Blue"]={SubType="One-Handed Swords",Level=1,id=13627,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13627::::::::40:::::::|h[Monster - Sword, Horde Jagged Blue]|h|r"},["Brittle Dragon Bone"]={SubType="Junk",Level=1,id=4459,StackCount=10,Rarity=0,MinLevel=0,SellPrice=150,Texture=133727,EquipLoc="",Link="|cff9d9d9d|Hitem:4459::::::::40:::::::|h[Brittle Dragon Bone]|h|r",Type="Miscellaneous"},["Stone of the Tides"]={SubType="Quest",Level=1,id=4034,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134333,EquipLoc="",Link="|cffffffff|Hitem:4034::::::::40:::::::|h[Stone of the Tides]|h|r",Type="Quest"},["Darkspinner Claws"]={SubType="Mail",Level=61,id=13532,StackCount=1,Rarity=2,MinLevel=56,SellPrice=12762,Texture=132965,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:13532::::::::40:::::::|h[Darkspinner Claws]|h|r"},["Nightsky Wristbands"]={SubType="Cloth",Level=33,id=6407,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1198,Texture=132606,Link="|cff1eff00|Hitem:6407::::::::40:::::::|h[Nightsky Wristbands]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Burnside Rifle"]={SubType="Guns",Level=56,id=15324,StackCount=1,Rarity=2,MinLevel=51,SellPrice=25565,Texture=135610,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15324::::::::40:::::::|h[Burnside Rifle]|h|r",Type="Weapon"},["Serenity"]={SubType="One-Handed Maces",Level=57,id=12781,StackCount=1,Rarity=3,MinLevel=52,SellPrice=42721,Texture=133477,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:12781::::::::40:::::::|h[Serenity]|h|r"},["Hyperion Shield"]={SubType="Shields",Level=65,id=10367,StackCount=1,Rarity=2,MinLevel=60,SellPrice=32971,Texture=135940,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:10367::::::::40:::::::|h[Hyperion Shield]|h|r",Type="Armor"},["Wolf Handler Gloves"]={SubType="Leather",Level=5,id=6171,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=132939,Type="Armor",Link="|cffffffff|Hitem:6171::::::::40:::::::|h[Wolf Handler Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Skul's Fingerbone Claws"]={SubType="Leather",Level=59,id=13395,StackCount=1,Rarity=3,MinLevel=54,SellPrice=11403,Texture=132961,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13395::::::::40:::::::|h[Skul's Fingerbone Claws]|h|r"},["Guardian Talisman"]={SubType="Miscellaneous",Level=50,id=1490,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8910,Texture=133438,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:1490::::::::40:::::::|h[Guardian Talisman]|h|r"},["Pattern: Boots of Darkness"]={SubType="Tailoring",Level=28,id=7093,StackCount=1,Rarity=2,MinLevel=0,SellPrice=200,Texture=134942,Link="|cff1eff00|Hitem:7093::::::::40:::::::|h[Pattern: Boots of Darkness]|h|r",EquipLoc="",Type="Recipe"},["Winna's Kitten Carrier"]={SubType="Junk",Level=5,id=12565,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132599,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:12565::::::::40:::::::|h[Winna's Kitten Carrier]|h|r"},["High Chief's Gauntlets"]={SubType="Plate",Level=52,id=14959,StackCount=1,Rarity=2,MinLevel=47,SellPrice=5143,Texture=132940,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14959::::::::40:::::::|h[High Chief's Gauntlets]|h|r"},["[PH] Valentine Quest Item, UncommonStormwind"]={SubType="Consumable",Level=1,id=21962,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134121,Link="|cffffffff|Hitem:21962::::::::40:::::::|h[[PH] Valentine Quest Item, UncommonStormwind]|h|r",EquipLoc="",Type="Consumable"},["Thorium Widget"]={SubType="Parts",Level=52,id=15994,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2500,Texture=132998,EquipLoc="",Link="|cffffffff|Hitem:15994::::::::40:::::::|h[Thorium Widget]|h|r",Type="Trade Goods"},["Feral Staff"]={SubType="Staves",Level=52,id=20522,StackCount=1,Rarity=3,MinLevel=0,SellPrice=41554,Texture=135157,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:20522::::::::40:::::::|h[Feral Staff]|h|r"},["Chief Sharptusk Thornmantle's Head"]={SubType="Quest",Level=0,id=10459,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134172,EquipLoc="",Link="|cffffffff|Hitem:10459::::::::40:::::::|h[Chief Sharptusk Thornmantle's Head]|h|r",Type="Quest"},["Monster - Item, 2H Alliance Wood Axe"]={SubType="One-Handed Axes",Level=1,id=19015,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Link="|cff9d9d9d|Hitem:19015::::::::40:::::::|h[Monster - Item, 2H Alliance Wood Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Ensorcelled Parchment"]={SubType="Quest",Level=30,id=3706,StackCount=1,Rarity=1,MinLevel=30,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:3706::::::::40:::::::|h[Ensorcelled Parchment]|h|r",EquipLoc="",Type="Quest"},["Bundle of Charred Oak"]={SubType="Quest",Level=1,id=743,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135437,Type="Quest",Link="|cffffffff|Hitem:743::::::::40:::::::|h[Bundle of Charred Oak]|h|r",EquipLoc=""},["Red Ribboned Wrapping Paper"]={SubType="Consumable",Level=5,id=5042,StackCount=10,Rarity=1,MinLevel=0,SellPrice=12,Texture=134146,EquipLoc="",Link="|cffffffff|Hitem:5042::::::::40:::::::|h[Red Ribboned Wrapping Paper]|h|r",Type="Consumable"},["Tome of Polymorph: Cow"]={SubType="Book",Level=60,id=4144,StackCount=1,Rarity=3,MinLevel=60,SellPrice=2000,Texture=133739,Link="|cff0070dd|Hitem:4144::::::::40:::::::|h[Tome of Polymorph: Cow]|h|r",EquipLoc="",Type="Recipe"},["Seven of Beasts"]={SubType="Junk",Level=1,id=19235,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134482,Link="|cff0070dd|Hitem:19235::::::::40:::::::|h[Seven of Beasts]|h|r",EquipLoc="",Type="Miscellaneous"},["Draconian Deflector"]={SubType="Shields",Level=63,id=12602,StackCount=1,Rarity=3,MinLevel=58,SellPrice=35212,Texture=134966,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:12602::::::::40:::::::|h[Draconian Deflector]|h|r"},["Tablet of Flame Shock VI"]={SubType="Book",Level=60,id=23320,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=134465,Link="|cff0070dd|Hitem:23320::::::::40:::::::|h[Tablet of Flame Shock VI]|h|r",EquipLoc="",Type="Recipe"},["Pitchfork of Madness"]={SubType="Polearms",Level=68,id=19963,StackCount=1,Rarity=3,MinLevel=60,SellPrice=91276,Texture=135126,Link="|cff0070dd|Hitem:19963::::::::40:::::::|h[Pitchfork of Madness]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Doomrigger's Clasp"]={SubType="Quest",Level=1,id=12352,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133276,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12352::::::::40:::::::|h[Doomrigger's Clasp]|h|r"},["Khan's Chestpiece"]={SubType="Mail",Level=49,id=14779,StackCount=1,Rarity=2,MinLevel=44,SellPrice=13347,Texture=132643,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14779::::::::40:::::::|h[Khan's Chestpiece]|h|r"},["Lambent Scale Boots"]={SubType="Mail",Level=27,id=3045,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1573,Texture=132588,Type="Armor",Link="|cff1eff00|Hitem:3045::::::::40:::::::|h[Lambent Scale Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Combat Task Briefing IV"]={SubType="Quest",Level=60,id=21248,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21248::::::::40:::::::|h[Combat Task Briefing IV]|h|r",EquipLoc="",Type="Quest"},["Master's Gloves"]={SubType="Cloth",Level=63,id=10251,StackCount=1,Rarity=2,MinLevel=58,SellPrice=9946,Texture=132961,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10251::::::::40:::::::|h[Master's Gloves]|h|r",Type="Armor"},["Black Mail Shoulderpads of might (Test)"]={SubType="Mail",Level=1,id=907,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:907::::::::40:::::::|h[Black Mail Shoulderpads of might (Test)]|h|r",Type="Armor"},["Devilsaur Leggings"]={SubType="Leather",Level=60,id=15062,StackCount=1,Rarity=3,MinLevel=55,SellPrice=25709,Texture=134706,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:15062::::::::40:::::::|h[Devilsaur Leggings]|h|r",Type="Armor"},["Ivy-weave Bracers"]={SubType="Cloth",Level=10,id=2326,StackCount=1,Rarity=1,MinLevel=0,SellPrice=29,Texture=132611,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:2326::::::::40:::::::|h[Ivy-weave Bracers]|h|r"},["Cloak of the Shrouded Mists"]={SubType="Cloth",Level=74,id=17102,StackCount=1,Rarity=4,MinLevel=60,SellPrice=38689,Texture=133769,EquipLoc="INVTYPE_CLOAK",Link="|cffa335ee|Hitem:17102::::::::40:::::::|h[Cloak of the Shrouded Mists]|h|r",Type="Armor"},["Raincaller Scepter"]={SubType="Miscellaneous",Level=31,id=15975,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2421,Texture=135467,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15975::::::::40:::::::|h[Raincaller Scepter]|h|r",Type="Armor"},["Marshal's Chain Legguards"]={SubType="Mail",Level=71,id=16467,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33788,Texture=134669,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16467::::::::40:::::::|h[Marshal's Chain Legguards]|h|r",Type="Armor"},["Basilisk Venom"]={SubType="Junk",Level=1,id=11388,StackCount=5,Rarity=0,MinLevel=0,SellPrice=1563,Texture=134437,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11388::::::::40:::::::|h[Basilisk Venom]|h|r",EquipLoc=""},["Serpentskin Helm"]={SubType="Leather",Level=54,id=8261,StackCount=1,Rarity=2,MinLevel=49,SellPrice=10617,Texture=133076,Link="|cff1eff00|Hitem:8261::::::::40:::::::|h[Serpentskin Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["The Black Knight"]={SubType="One-Handed Swords",Level=31,id=12974,StackCount=1,Rarity=3,MinLevel=26,SellPrice=6105,Texture=135311,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:12974::::::::40:::::::|h[The Black Knight]|h|r"},["Imperial Plate Belt"]={SubType="Plate",Level=53,id=12424,StackCount=1,Rarity=2,MinLevel=47,SellPrice=5533,Texture=132490,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:12424::::::::40:::::::|h[Imperial Plate Belt]|h|r"},["Codex of Remove Curse"]={SubType="Book",Level=22,id=1093,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1000,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:1093::::::::40:::::::|h[Codex of Remove Curse]|h|r",Type="Recipe"},["Worn Mail Vest"]={SubType="Mail",Level=14,id=1737,StackCount=1,Rarity=0,MinLevel=9,SellPrice=139,Texture=132624,Type="Armor",Link="|cff9d9d9d|Hitem:1737::::::::40:::::::|h[Worn Mail Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Soulstring"]={SubType="Bows",Level=83,id=22811,StackCount=1,Rarity=4,MinLevel=60,SellPrice=157520,Texture=135501,Link="|cffa335ee|Hitem:22811::::::::40:::::::|h[Soulstring]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Hulking Gauntlets"]={SubType="Mail",Level=23,id=14747,StackCount=1,Rarity=2,MinLevel=18,SellPrice=668,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14747::::::::40:::::::|h[Hulking Gauntlets]|h|r"},["Spirit Hunter Headdress"]={SubType="Leather",Level=37,id=6720,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3218,Texture=133119,Type="Armor",Link="|cff1eff00|Hitem:6720::::::::40:::::::|h[Spirit Hunter Headdress]|h|r",EquipLoc="INVTYPE_HEAD"},["Sacrificial Kris"]={SubType="Daggers",Level=44,id=3187,StackCount=1,Rarity=2,MinLevel=39,SellPrice=14870,Texture=135639,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:3187::::::::40:::::::|h[Sacrificial Kris]|h|r"},["Earthshatter Girdle"]={SubType="Mail",Level=88,id=22470,StackCount=1,Rarity=4,MinLevel=60,SellPrice=79846,Texture=132511,Link="|cffa335ee|Hitem:22470::::::::40:::::::|h[Earthshatter Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Watcher's Star"]={SubType="Miscellaneous",Level=30,id=15973,StackCount=1,Rarity=2,MinLevel=25,SellPrice=2313,Texture=135464,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15973::::::::40:::::::|h[Watcher's Star]|h|r",Type="Armor"},["Pristine Yeti Hide"]={SubType="Quest",Level=40,id=18969,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=134362,Type="Quest",Link="|cffffffff|Hitem:18969::::::::40:::::::|h[Pristine Yeti Hide]|h|r",EquipLoc=""},["Level 15 Test Gear Leather - Druid/Shaman"]={SubType="Junk",Level=1,id=13643,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13643::::::::40:::::::|h[Level 15 Test Gear Leather - Druid/Shaman]|h|r"},["Frostwolf Insignia Rank 5"]={SubType="Miscellaneous",Level=60,id=17908,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133286,EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:17908::::::::40:::::::|h[Frostwolf Insignia Rank 5]|h|r",Type="Armor"},["Gloves of Rapid Evolution"]={SubType="Cloth",Level=73,id=19369,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25870,Texture=132940,Link="|cffa335ee|Hitem:19369::::::::40:::::::|h[Gloves of Rapid Evolution]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Branding Rod"]={SubType="Wands",Level=27,id=5356,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2594,Texture=135124,Link="|cff1eff00|Hitem:5356::::::::40:::::::|h[Branding Rod]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Wooly Mittens"]={SubType="Cloth",Level=12,id=10550,StackCount=1,Rarity=1,MinLevel=0,SellPrice=48,Texture=132936,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:10550::::::::40:::::::|h[Wooly Mittens]|h|r",Type="Armor"},["90 Epic Warrior Neck"]={SubType="Miscellaneous",Level=90,id=20143,StackCount=1,Rarity=4,MinLevel=0,SellPrice=7108,Texture=133278,Link="|cffa335ee|Hitem:20143::::::::40:::::::|h[90 Epic Warrior Neck]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Monster - Item, Bottle - Black Offhand"]={SubType="Miscellaneous",Level=1,id=3756,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134754,EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:3756::::::::40:::::::|h[Monster - Item, Bottle - Black Offhand]|h|r",Type="Armor"},["Bloated Mud Snapper"]={SubType="Consumable",Level=15,id=6645,StackCount=1,Rarity=1,MinLevel=5,SellPrice=25,Texture=133917,Link="|cffffffff|Hitem:6645::::::::40:::::::|h[Bloated Mud Snapper]|h|r",EquipLoc="",Type="Consumable"},["Key to Searing Gorge"]={SubType="Key",Level=0,id=5396,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134248,EquipLoc="",Link="|cffffffff|Hitem:5396::::::::40:::::::|h[Key to Searing Gorge]|h|r",Type="Key"},["Talonstrike"]={SubType="One-Handed Swords",Level=24,id=3462,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2283,Texture=135302,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:3462::::::::40:::::::|h[Talonstrike]|h|r"},["Empowered Leggings"]={SubType="Cloth",Level=77,id=19385,StackCount=1,Rarity=4,MinLevel=60,SellPrice=61990,Texture=134613,Link="|cffa335ee|Hitem:19385::::::::40:::::::|h[Empowered Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Chains of Hematus"]={SubType="Quest",Level=1,id=4645,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132608,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4645::::::::40:::::::|h[Chains of Hematus]|h|r"},["Buccaneer's Boots"]={SubType="Cloth",Level=19,id=14174,StackCount=1,Rarity=2,MinLevel=14,SellPrice=368,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14174::::::::40:::::::|h[Buccaneer's Boots]|h|r"},["Master Dragonslayer's Ring"]={SubType="Miscellaneous",Level=83,id=19384,StackCount=1,Rarity=4,MinLevel=60,SellPrice=130616,Texture=133383,Link="|cffa335ee|Hitem:19384::::::::40:::::::|h[Master Dragonslayer's Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Codex of Shadow Protection III"]={SubType="Book",Level=56,id=9023,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9023::::::::40:::::::|h[Codex of Shadow Protection III]|h|r"},["Silithid Carapace Fragment"]={SubType="Quest",Level=1,id=20384,StackCount=200,Rarity=1,MinLevel=0,SellPrice=0,Texture=134315,Link="|cffffffff|Hitem:20384::::::::40:::::::|h[Silithid Carapace Fragment]|h|r",EquipLoc="",Type="Quest"},["Emerald Sabatons"]={SubType="Plate",Level=56,id=10276,StackCount=1,Rarity=2,MinLevel=51,SellPrice=9847,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10276::::::::40:::::::|h[Emerald Sabatons]|h|r",Type="Armor"},["Enchanted Azsharite Felbane Dagger"]={SubType="Daggers",Level=60,id=10697,StackCount=1,Rarity=2,MinLevel=0,SellPrice=42044,Texture=135341,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:10697::::::::40:::::::|h[Enchanted Azsharite Felbane Dagger]|h|r",Type="Weapon"},["Infernal Stone"]={SubType="Reagent",Level=55,id=5565,StackCount=5,Rarity=1,MinLevel=0,SellPrice=1250,Texture=135231,Link="|cffffffff|Hitem:5565::::::::40:::::::|h[Infernal Stone]|h|r",EquipLoc="",Type="Reagent"},["The Horde's Hellscream"]={SubType="Junk",Level=1,id=20010,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133738,Link="|cffffffff|Hitem:20010::::::::40:::::::|h[The Horde's Hellscream]|h|r",EquipLoc="",Type="Miscellaneous"},["Strong Anti-Venom"]={SubType="Reagent",Level=26,id=6453,StackCount=20,Rarity=1,MinLevel=0,SellPrice=62,Texture=134437,Link="|cffffffff|Hitem:6453::::::::40:::::::|h[Strong Anti-Venom]|h|r",EquipLoc="",Type="Reagent"},["Deprecated Jungle Stalker Pelt"]={SubType="Trade Goods",Level=40,id=1695,StackCount=10,Rarity=1,MinLevel=0,SellPrice=75,Texture=134367,EquipLoc="",Link="|cffffffff|Hitem:1695::::::::40:::::::|h[Deprecated Jungle Stalker Pelt]|h|r",Type="Trade Goods"},["Boulder Pads"]={SubType="Leather",Level=37,id=4810,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3351,Texture=135039,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:4810::::::::40:::::::|h[Boulder Pads]|h|r"},["Deprecated Tauren Recruit's Belt"]={SubType="Miscellaneous",Level=1,id=155,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132494,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:155::::::::40:::::::|h[Deprecated Tauren Recruit's Belt]|h|r",Type="Armor"},["Blump Family Fishing Pole"]={SubType="Fishing Pole",Level=10,id=12225,StackCount=1,Rarity=1,MinLevel=0,SellPrice=187,Texture=132932,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:12225::::::::40:::::::|h[Blump Family Fishing Pole]|h|r"},["Reinforced Leather Vest"]={SubType="Leather",Level=50,id=2470,StackCount=1,Rarity=1,MinLevel=45,SellPrice=6790,Texture=132646,Link="|cffffffff|Hitem:2470::::::::40:::::::|h[Reinforced Leather Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Vorpal Dagger"]={SubType="Daggers",Level=50,id=15245,StackCount=1,Rarity=2,MinLevel=45,SellPrice=23284,Texture=135639,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15245::::::::40:::::::|h[Vorpal Dagger]|h|r",Type="Weapon"},["Flame of Ironforge"]={SubType="Quest",Level=1,id=23183,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135819,Link="|cffffffff|Hitem:23183::::::::40:::::::|h[Flame of Ironforge]|h|r",EquipLoc="",Type="Quest"},["Warlord's Dragonhide Hauberk"]={SubType="Leather",Level=74,id=16549,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33688,Texture=132638,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16549::::::::40:::::::|h[Warlord's Dragonhide Hauberk]|h|r",Type="Armor"},["An'Alleum Power Stone"]={SubType="Quest",Level=1,id=8052,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132488,Link="|cffffffff|Hitem:8052::::::::40:::::::|h[An'Alleum Power Stone]|h|r",EquipLoc="",Type="Quest"},["Magiskull Cuffs"]={SubType="Cloth",Level=62,id=13107,StackCount=1,Rarity=3,MinLevel=57,SellPrice=11291,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13107::::::::40:::::::|h[Magiskull Cuffs]|h|r"},["Native Pants"]={SubType="Cloth",Level=14,id=14097,StackCount=1,Rarity=2,MinLevel=9,SellPrice=236,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14097::::::::40:::::::|h[Native Pants]|h|r"},["Rough Bronze Bracers"]={SubType="Mail",Level=23,id=2867,StackCount=1,Rarity=2,MinLevel=18,SellPrice=629,Texture=132604,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:2867::::::::40:::::::|h[Rough Bronze Bracers]|h|r",Type="Armor"},["Knitted Pants"]={SubType="Cloth",Level=10,id=794,StackCount=1,Rarity=1,MinLevel=5,SellPrice=55,Texture=134591,Link="|cffffffff|Hitem:794::::::::40:::::::|h[Knitted Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Obsidian Cleaver"]={SubType="Two-Handed Axes",Level=40,id=9383,StackCount=1,Rarity=3,MinLevel=35,SellPrice=16895,Texture=132405,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9383::::::::40:::::::|h[Obsidian Cleaver]|h|r"},["Animist's Leggings"]={SubType="Leather",Level=71,id=19877,StackCount=1,Rarity=3,MinLevel=60,SellPrice=43354,Texture=134666,Link="|cff0070dd|Hitem:19877::::::::40:::::::|h[Animist's Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Warsong Gulch Enriched Ration"]={SubType="Consumable",Level=55,id=19060,StackCount=20,Rarity=1,MinLevel=45,SellPrice=100,Texture=133989,Link="|cffffffff|Hitem:19060::::::::40:::::::|h[Warsong Gulch Enriched Ration]|h|r",EquipLoc="",Type="Consumable"},["Monster - Item, Bag - Green"]={SubType="Miscellaneous",Level=1,id=12854,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133639,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12854::::::::40:::::::|h[Monster - Item, Bag - Green]|h|r"},["Oak Mallet"]={SubType="Two-Handed Maces",Level=21,id=3193,StackCount=1,Rarity=2,MinLevel=16,SellPrice=2072,Texture=133052,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3193::::::::40:::::::|h[Oak Mallet]|h|r",Type="Weapon"},["Ebon Shiv"]={SubType="Daggers",Level=51,id=7947,StackCount=1,Rarity=2,MinLevel=46,SellPrice=24892,Texture=135650,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:7947::::::::40:::::::|h[Ebon Shiv]|h|r",Type="Weapon"},["Codex of Flash Heal VII"]={SubType="Book",Level=56,id=9022,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9022::::::::40:::::::|h[Codex of Flash Heal VII]|h|r"},["Longbow"]={SubType="Bows",Level=34,id=3028,StackCount=1,Rarity=1,MinLevel=29,SellPrice=3086,Texture=135495,Type="Weapon",Link="|cffffffff|Hitem:3028::::::::40:::::::|h[Longbow]|h|r",EquipLoc="INVTYPE_RANGED"},["Circle of Flame"]={SubType="Cloth",Level=59,id=11808,StackCount=1,Rarity=4,MinLevel=54,SellPrice=19292,Texture=135805,Type="Armor",Link="|cffa335ee|Hitem:11808::::::::40:::::::|h[Circle of Flame]|h|r",EquipLoc="INVTYPE_HEAD"},["Lupine Axe"]={SubType="Two-Handed Axes",Level=20,id=1220,StackCount=1,Rarity=2,MinLevel=15,SellPrice=1807,Texture=132405,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1220::::::::40:::::::|h[Lupine Axe]|h|r"},["Raider's Shield"]={SubType="Shields",Level=19,id=9790,StackCount=1,Rarity=2,MinLevel=14,SellPrice=794,Texture=134955,Link="|cff1eff00|Hitem:9790::::::::40:::::::|h[Raider's Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Raincaller Vest"]={SubType="Cloth",Level=31,id=14190,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1932,Texture=135014,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14190::::::::40:::::::|h[Raincaller Vest]|h|r"},["Shadowy Belt"]={SubType="Cloth",Level=47,id=10462,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3608,Texture=132515,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10462::::::::40:::::::|h[Shadowy Belt]|h|r",Type="Armor"},["Grave Scepter"]={SubType="One-Handed Maces",Level=54,id=15863,StackCount=1,Rarity=2,MinLevel=0,SellPrice=28896,Texture=133482,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:15863::::::::40:::::::|h[Grave Scepter]|h|r",Type="Weapon"},["Owlsight Rifle"]={SubType="Guns",Level=20,id=15205,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1063,Texture=135613,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15205::::::::40:::::::|h[Owlsight Rifle]|h|r",Type="Weapon"},["Blackrock Boots"]={SubType="Mail",Level=19,id=1446,StackCount=1,Rarity=2,MinLevel=14,SellPrice=568,Texture=132535,Link="|cff1eff00|Hitem:1446::::::::40:::::::|h[Blackrock Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Shadowcraft Tunic"]={SubType="Leather",Level=63,id=16721,StackCount=1,Rarity=3,MinLevel=58,SellPrice=30190,Texture=132722,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16721::::::::40:::::::|h[Shadowcraft Tunic]|h|r",Type="Armor"},["Symbolic Pauldrons"]={SubType="Plate",Level=42,id=14830,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3801,Texture=135042,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14830::::::::40:::::::|h[Symbolic Pauldrons]|h|r"},["Oakthrush Staff"]={SubType="Staves",Level=14,id=15397,StackCount=1,Rarity=2,MinLevel=0,SellPrice=731,Texture=135145,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15397::::::::40:::::::|h[Oakthrush Staff]|h|r",Type="Weapon"},["Sayge's Fortune #23"]={SubType="Junk",Level=10,id=19423,StackCount=1,Rarity=1,MinLevel=10,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19423::::::::40:::::::|h[Sayge's Fortune #23]|h|r",EquipLoc="",Type="Miscellaneous"},["Hameya's Key"]={SubType="Quest",Level=1,id=15767,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134245,EquipLoc="",Link="|cffffffff|Hitem:15767::::::::40:::::::|h[Hameya's Key]|h|r",Type="Quest"},["Algae Fists"]={SubType="Mail",Level=28,id=6906,StackCount=1,Rarity=3,MinLevel=23,SellPrice=1275,Texture=132944,Type="Armor",Link="|cff0070dd|Hitem:6906::::::::40:::::::|h[Algae Fists]|h|r",EquipLoc="INVTYPE_HAND"},["Darnassus Pledge Collection"]={SubType="Consumable",Level=1,id=22290,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133460,Link="|cffffffff|Hitem:22290::::::::40:::::::|h[Darnassus Pledge Collection]|h|r",EquipLoc="",Type="Consumable"},["Battlecaller Gauntlets"]={SubType="Mail",Level=53,id=13126,StackCount=1,Rarity=3,MinLevel=48,SellPrice=10374,Texture=132944,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13126::::::::40:::::::|h[Battlecaller Gauntlets]|h|r"},["Mercenary Leggings"]={SubType="Mail",Level=30,id=3751,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2661,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:3751::::::::40:::::::|h[Mercenary Leggings]|h|r"},["Shiny Seashell"]={SubType="Junk",Level=1,id=779,StackCount=5,Rarity=0,MinLevel=0,SellPrice=18,Texture=134431,Link="|cff9d9d9d|Hitem:779::::::::40:::::::|h[Shiny Seashell]|h|r",EquipLoc="",Type="Miscellaneous"},["Pillager's Crown"]={SubType="Mail",Level=37,id=15558,StackCount=1,Rarity=2,MinLevel=32,SellPrice=4128,Texture=132768,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15558::::::::40:::::::|h[Pillager's Crown]|h|r",Type="Armor"},["Buccaneer's Cord"]={SubType="Cloth",Level=20,id=14173,StackCount=1,Rarity=2,MinLevel=15,SellPrice=281,Texture=132511,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14173::::::::40:::::::|h[Buccaneer's Cord]|h|r"},["Tough Wolf Meat"]={SubType="Quest",Level=1,id=750,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133972,Link="|cffffffff|Hitem:750::::::::40:::::::|h[Tough Wolf Meat]|h|r",EquipLoc="",Type="Quest"},["Leaden Mace"]={SubType="One-Handed Maces",Level=31,id=865,StackCount=1,Rarity=2,MinLevel=26,SellPrice=5096,Texture=133478,Type="Weapon",Link="|cff1eff00|Hitem:865::::::::40:::::::|h[Leaden Mace]|h|r",EquipLoc="INVTYPE_WEAPON"},["Cuergo's Treasure Map"]={SubType="Quest",Level=40,id=9254,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=134269,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9254::::::::40:::::::|h[Cuergo's Treasure Map]|h|r"},["Widow's Remorse"]={SubType="One-Handed Swords",Level=81,id=22806,StackCount=1,Rarity=4,MinLevel=60,SellPrice=182204,Texture=135370,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:22806::::::::40:::::::|h[Widow's Remorse]|h|r"},["Battlesmasher"]={SubType="One-Handed Maces",Level=25,id=15224,StackCount=1,Rarity=2,MinLevel=20,SellPrice=2695,Texture=133045,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15224::::::::40:::::::|h[Battlesmasher]|h|r",Type="Weapon"},["TWAIN TEST ITEM VISUAL SWORD"]={SubType="One-Handed Swords",Level=1,id=7171,StackCount=1,Rarity=1,MinLevel=1,SellPrice=3,Texture=133069,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:7171::::::::40:::::::|h[TWAIN TEST ITEM VISUAL SWORD]|h|r",Type="Weapon"},["Crimson Silk Gloves"]={SubType="Cloth",Level=42,id=7064,StackCount=1,Rarity=2,MinLevel=37,SellPrice=2569,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7064::::::::40:::::::|h[Crimson Silk Gloves]|h|r",Type="Armor"},["Pads of the Dread Wolf"]={SubType="Leather",Level=60,id=13210,StackCount=1,Rarity=3,MinLevel=55,SellPrice=18024,Texture=132592,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13210::::::::40:::::::|h[Pads of the Dread Wolf]|h|r"},["High Chief's Pauldrons"]={SubType="Plate",Level=53,id=14963,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8301,Texture=135036,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14963::::::::40:::::::|h[High Chief's Pauldrons]|h|r"},["Overlord's Onyx Band"]={SubType="Miscellaneous",Level=68,id=19912,StackCount=1,Rarity=3,MinLevel=60,SellPrice=43548,Texture=133381,Link="|cff0070dd|Hitem:19912::::::::40:::::::|h[Overlord's Onyx Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Herbalist's Gloves"]={SubType="Leather",Level=27,id=7349,StackCount=1,Rarity=2,MinLevel=22,SellPrice=861,Texture=132952,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7349::::::::40:::::::|h[Herbalist's Gloves]|h|r"},["Elixir of Frost Power"]={SubType="Consumable",Level=38,id=17708,StackCount=5,Rarity=1,MinLevel=28,SellPrice=35,Texture=134714,EquipLoc="",Link="|cffffffff|Hitem:17708::::::::40:::::::|h[Elixir of Frost Power]|h|r",Type="Consumable"},["Patterned Bronze Bracers"]={SubType="Mail",Level=25,id=2868,StackCount=1,Rarity=2,MinLevel=20,SellPrice=807,Texture=132606,Type="Armor",Link="|cff1eff00|Hitem:2868::::::::40:::::::|h[Patterned Bronze Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Icy Scale Coif"]={SubType="Mail",Level=83,id=23033,StackCount=1,Rarity=4,MinLevel=60,SellPrice=93164,Texture=133122,Link="|cffa335ee|Hitem:23033::::::::40:::::::|h[Icy Scale Coif]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Stonecloth Cape"]={SubType="Cloth",Level=33,id=14409,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1707,Texture=133763,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14409::::::::40:::::::|h[Stonecloth Cape]|h|r"},["Bonecaster's Vest"]={SubType="Cloth",Level=60,id=14306,StackCount=1,Rarity=2,MinLevel=55,SellPrice=16830,Texture=132658,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14306::::::::40:::::::|h[Bonecaster's Vest]|h|r"},["Farmer's Shovel"]={SubType="Two-Handed Maces",Level=7,id=3334,StackCount=1,Rarity=1,MinLevel=2,SellPrice=68,Texture=134435,Link="|cffffffff|Hitem:3334::::::::40:::::::|h[Farmer's Shovel]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Yeti Fur"]={SubType="Quest",Level=1,id=3720,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134366,EquipLoc="",Link="|cffffffff|Hitem:3720::::::::40:::::::|h[Yeti Fur]|h|r",Type="Quest"},["Pattern: Primal Batskin Gloves"]={SubType="Leatherworking",Level=65,id=19770,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19770::::::::40:::::::|h[Pattern: Primal Batskin Gloves]|h|r",EquipLoc="",Type="Recipe"},["Amulet of Allistarj"]={SubType="Quest",Level=1,id=10755,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133282,EquipLoc="",Link="|cffffffff|Hitem:10755::::::::40:::::::|h[Amulet of Allistarj]|h|r",Type="Quest"},["Infiltrator Boots"]={SubType="Leather",Level=33,id=7409,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2289,Texture=132539,Link="|cff1eff00|Hitem:7409::::::::40:::::::|h[Infiltrator Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Adventurer's Tunic"]={SubType="Leather",Level=65,id=10264,StackCount=1,Rarity=2,MinLevel=60,SellPrice=26729,Texture=132722,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10264::::::::40:::::::|h[Adventurer's Tunic]|h|r",Type="Armor"},["Brutish Riverpaw Axe"]={SubType="One-Handed Axes",Level=15,id=826,StackCount=1,Rarity=2,MinLevel=10,SellPrice=732,Texture=132392,Type="Weapon",Link="|cff1eff00|Hitem:826::::::::40:::::::|h[Brutish Riverpaw Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Souldarite"]={SubType="Trade Goods",Level=50,id=19774,StackCount=20,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134071,Link="|cff1eff00|Hitem:19774::::::::40:::::::|h[Souldarite]|h|r",EquipLoc="",Type="Trade Goods"},["Plans: Enchanted Thorium Breastplate"]={SubType="Blacksmithing",Level=63,id=12727,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134941,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12727::::::::40:::::::|h[Plans: Enchanted Thorium Breastplate]|h|r"},["Eldritch Shackles"]={SubType="Quest",Level=1,id=4473,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132612,Link="|cffffffff|Hitem:4473::::::::40:::::::|h[Eldritch Shackles]|h|r",EquipLoc="",Type="Quest"},["Sealed Note to Advisor Belgrum"]={SubType="Quest",Level=1,id=4622,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,Link="|cffffffff|Hitem:4622::::::::40:::::::|h[Sealed Note to Advisor Belgrum]|h|r",EquipLoc="",Type="Quest"},["63 Green Warrior Breastplate"]={SubType="Plate",Level=63,id=20282,StackCount=1,Rarity=2,MinLevel=58,SellPrice=18566,Texture=132751,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:20282::::::::40:::::::|h[63 Green Warrior Breastplate]|h|r"},["Coppercloth Gloves"]={SubType="Cloth",Level=15,id=4767,StackCount=1,Rarity=2,MinLevel=10,SellPrice=139,Texture=132939,Link="|cff1eff00|Hitem:4767::::::::40:::::::|h[Coppercloth Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Spellbinder Bracers"]={SubType="Cloth",Level=14,id=3643,StackCount=1,Rarity=1,MinLevel=9,SellPrice=71,Texture=132605,Type="Armor",Link="|cffffffff|Hitem:3643::::::::40:::::::|h[Spellbinder Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Yellow Qiraji Resonating Crystal"]={SubType="Junk",Level=60,id=21324,StackCount=1,Rarity=3,MinLevel=60,SellPrice=0,Texture=134395,Link="|cff0070dd|Hitem:21324::::::::40:::::::|h[Yellow Qiraji Resonating Crystal]|h|r",EquipLoc="",Type="Miscellaneous"},["Medallion of Steadfast Might"]={SubType="Miscellaneous",Level=68,id=17065,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33381,Texture=133278,EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:17065::::::::40:::::::|h[Medallion of Steadfast Might]|h|r",Type="Armor"},["Crown of the Council"]={SubType="Quest",Level=1,id=20489,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132767,Link="|cffffffff|Hitem:20489::::::::40:::::::|h[Crown of the Council]|h|r",EquipLoc="",Type="Quest"},["Nature's Breath"]={SubType="Wands",Level=50,id=19118,StackCount=1,Rarity=2,MinLevel=0,SellPrice=17344,Texture=135474,Link="|cff1eff00|Hitem:19118::::::::40:::::::|h[Nature's Breath]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Stone Guard's Herald"]={SubType="Miscellaneous",Level=40,id=15199,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134475,EquipLoc="INVTYPE_TABARD",Link="|cffffffff|Hitem:15199::::::::40:::::::|h[Stone Guard's Herald]|h|r",Type="Armor"},["Untranslated Journal"]={SubType="Quest",Level=1,id=7886,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133736,Link="|cffffffff|Hitem:7886::::::::40:::::::|h[Untranslated Journal]|h|r",EquipLoc="",Type="Quest"},["Crossbow of Imminent Doom"]={SubType="Crossbows",Level=72,id=21459,StackCount=1,Rarity=4,MinLevel=60,SellPrice=93411,Texture=135535,Link="|cffa335ee|Hitem:21459::::::::40:::::::|h[Crossbow of Imminent Doom]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Recipe: Greater Frost Protection Potion"]={SubType="Alchemy",Level=58,id=13495,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13495::::::::40:::::::|h[Recipe: Greater Frost Protection Potion]|h|r"},["Gnarlpine Necklace"]={SubType="Quest",Level=1,id=8049,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133288,Link="|cffffffff|Hitem:8049::::::::40:::::::|h[Gnarlpine Necklace]|h|r",EquipLoc="",Type="Quest"},["MacKreel's Moonshine"]={SubType="Quest",Level=1,id=4441,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132796,EquipLoc="",Link="|cffffffff|Hitem:4441::::::::40:::::::|h[MacKreel's Moonshine]|h|r",Type="Quest"},["Tattered Hakkari Cape"]={SubType="Cloth",Level=59,id=20219,StackCount=1,Rarity=3,MinLevel=0,SellPrice=14641,Texture=133766,Link="|cff0070dd|Hitem:20219::::::::40:::::::|h[Tattered Hakkari Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Scorn's Icy Choker"]={SubType="Miscellaneous",Level=35,id=23169,StackCount=1,Rarity=3,MinLevel=30,SellPrice=3482,Texture=133290,Link="|cff0070dd|Hitem:23169::::::::40:::::::|h[Scorn's Icy Choker]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Dreamsinger Legguards"]={SubType="Mail",Level=26,id=13010,StackCount=1,Rarity=3,MinLevel=21,SellPrice=2241,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:13010::::::::40:::::::|h[Dreamsinger Legguards]|h|r"},["90 Green Frost Leggings"]={SubType="Cloth",Level=90,id=20343,StackCount=1,Rarity=2,MinLevel=60,SellPrice=71445,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:20343::::::::40:::::::|h[90 Green Frost Leggings]|h|r"},["Pattern: Green Silk Armor"]={SubType="Tailoring",Level=33,id=7090,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7090::::::::40:::::::|h[Pattern: Green Silk Armor]|h|r",Type="Recipe"},["Tome of Fire Ward"]={SubType="Book",Level=20,id=1574,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133739,Link="|cffffffff|Hitem:1574::::::::40:::::::|h[Tome of Fire Ward]|h|r",EquipLoc="",Type="Recipe"},["Monster - Sword, Broadsword Silver Hilt"]={SubType="One-Handed Swords",Level=1,id=5305,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135321,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:5305::::::::40:::::::|h[Monster - Sword, Broadsword Silver Hilt]|h|r"},["Umbral Mace"]={SubType="One-Handed Maces",Level=15,id=6982,StackCount=1,Rarity=2,MinLevel=0,SellPrice=683,Texture=133487,Link="|cff1eff00|Hitem:6982::::::::40:::::::|h[Umbral Mace]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Red Skeletal Horse"]={SubType="Junk",Level=40,id=13331,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132264,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:13331::::::::40:::::::|h[Red Skeletal Horse]|h|r"},["Small Scroll"]={SubType="Junk",Level=28,id=17008,StackCount=1,Rarity=1,MinLevel=28,SellPrice=0,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:17008::::::::40:::::::|h[Small Scroll]|h|r",Type="Miscellaneous"},["Ichman's Beacon"]={SubType="Quest",Level=1,id=17505,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135148,EquipLoc="",Link="|cffffffff|Hitem:17505::::::::40:::::::|h[Ichman's Beacon]|h|r",Type="Quest"},["Mistscape Mantle"]={SubType="Cloth",Level=43,id=4734,StackCount=1,Rarity=2,MinLevel=38,SellPrice=4208,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:4734::::::::40:::::::|h[Mistscape Mantle]|h|r"},["Charged Scale"]={SubType="Junk",Level=1,id=5125,StackCount=5,Rarity=0,MinLevel=0,SellPrice=155,Texture=134304,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5125::::::::40:::::::|h[Charged Scale]|h|r"},["Jouster's Pauldrons"]={SubType="Plate",Level=41,id=8163,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3688,Texture=135043,Link="|cff1eff00|Hitem:8163::::::::40:::::::|h[Jouster's Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Granite Grips"]={SubType="Plate",Level=49,id=9656,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4251,Texture=132963,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9656::::::::40:::::::|h[Granite Grips]|h|r"},["Foreman Pants"]={SubType="Cloth",Level=11,id=10554,StackCount=1,Rarity=2,MinLevel=6,SellPrice=119,Texture=134587,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10554::::::::40:::::::|h[Foreman Pants]|h|r",Type="Armor"},["Inscribed Leather Breastplate"]={SubType="Leather",Level=21,id=2985,StackCount=1,Rarity=2,MinLevel=16,SellPrice=822,Texture=132724,Type="Armor",Link="|cff1eff00|Hitem:2985::::::::40:::::::|h[Inscribed Leather Breastplate]|h|r",EquipLoc="INVTYPE_CHEST"},["12 Pound Lobster"]={SubType="Junk",Level=55,id=13909,StackCount=1,Rarity=1,MinLevel=0,SellPrice=55,Texture=133900,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13909::::::::40:::::::|h[12 Pound Lobster]|h|r"},["Desecrated Sabatons"]={SubType="Junk",Level=60,id=22358,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133829,Link="|cffa335ee|Hitem:22358::::::::40:::::::|h[Desecrated Sabatons]|h|r",EquipLoc="",Type="Miscellaneous"},["Loose Chain Vest"]={SubType="Mail",Level=10,id=2648,StackCount=1,Rarity=0,MinLevel=5,SellPrice=58,Texture=132624,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:2648::::::::40:::::::|h[Loose Chain Vest]|h|r"},["Geomancer's Rod"]={SubType="Miscellaneous",Level=41,id=15978,StackCount=1,Rarity=2,MinLevel=36,SellPrice=5385,Texture=135169,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15978::::::::40:::::::|h[Geomancer's Rod]|h|r",Type="Armor"},["Stonesplinter Rags"]={SubType="Cloth",Level=17,id=5109,StackCount=1,Rarity=1,MinLevel=12,SellPrice=223,Texture=135009,Link="|cffffffff|Hitem:5109::::::::40:::::::|h[Stonesplinter Rags]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Seafury Gauntlets"]={SubType="Mail",Level=68,id=20257,StackCount=1,Rarity=4,MinLevel=60,SellPrice=30840,Texture=132964,Link="|cffa335ee|Hitem:20257::::::::40:::::::|h[Seafury Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Ring of Iron Will"]={SubType="Miscellaneous",Level=25,id=1319,StackCount=1,Rarity=2,MinLevel=0,SellPrice=462,Texture=132520,Type="Armor",Link="|cff1eff00|Hitem:1319::::::::40:::::::|h[Ring of Iron Will]|h|r",EquipLoc="INVTYPE_FINGER"},["Beastmaster's Bindings"]={SubType="Mail",Level=65,id=22011,StackCount=1,Rarity=3,MinLevel=0,SellPrice=18500,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:22011::::::::40:::::::|h[Beastmaster's Bindings]|h|r"},["Moonlit Amice"]={SubType="Cloth",Level=33,id=11884,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1846,Texture=135033,Type="Armor",Link="|cff1eff00|Hitem:11884::::::::40:::::::|h[Moonlit Amice]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Nomadic Gloves"]={SubType="Leather",Level=5,id=10636,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:10636::::::::40:::::::|h[Nomadic Gloves]|h|r",Type="Armor"},["Warm Cloak"]={SubType="Cloth",Level=11,id=4772,StackCount=1,Rarity=1,MinLevel=6,SellPrice=70,Texture=133764,Link="|cffffffff|Hitem:4772::::::::40:::::::|h[Warm Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Frostfire Bindings"]={SubType="Cloth",Level=88,id=22503,StackCount=1,Rarity=4,MinLevel=60,SellPrice=51879,Texture=132612,Link="|cffa335ee|Hitem:22503::::::::40:::::::|h[Frostfire Bindings]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Swiftthistle"]={SubType="Trade Goods",Level=15,id=2452,StackCount=20,Rarity=1,MinLevel=0,SellPrice=15,Texture=134184,Link="|cffffffff|Hitem:2452::::::::40:::::::|h[Swiftthistle]|h|r",EquipLoc="",Type="Trade Goods"},["Easter Dress"]={SubType="Miscellaneous",Level=30,id=7809,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1024,Texture=132645,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:7809::::::::40:::::::|h[Easter Dress]|h|r"},["Lord's Breastplate"]={SubType="Mail",Level=53,id=10077,StackCount=1,Rarity=2,MinLevel=48,SellPrice=16968,Texture=132750,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10077::::::::40:::::::|h[Lord's Breastplate]|h|r",Type="Armor"},["Lieutenant Commander's Chain Helm"]={SubType="Mail",Level=71,id=23306,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18533,Texture=133123,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:23306::::::::40:::::::|h[Lieutenant Commander's Chain Helm]|h|r"},["21 Pound Lobster"]={SubType="Junk",Level=55,id=13912,StackCount=1,Rarity=1,MinLevel=0,SellPrice=90,Texture=133900,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13912::::::::40:::::::|h[21 Pound Lobster]|h|r"},["Fang of the Mystics"]={SubType="Daggers",Level=70,id=17070,StackCount=1,Rarity=4,MinLevel=60,SellPrice=109307,Texture=135642,EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:17070::::::::40:::::::|h[Fang of the Mystics]|h|r",Type="Weapon"},["Laminated Scale Bracers"]={SubType="Mail",Level=58,id=3994,StackCount=1,Rarity=0,MinLevel=53,SellPrice=4404,Texture=132602,Type="Armor",Link="|cff9d9d9d|Hitem:3994::::::::40:::::::|h[Laminated Scale Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Stormfire Gauntlets"]={SubType="Leather",Level=40,id=6794,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2641,Texture=132960,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:6794::::::::40:::::::|h[Stormfire Gauntlets]|h|r"},["Night Dragon's Breath"]={SubType="Consumable",Level=55,id=11952,StackCount=20,Rarity=1,MinLevel=45,SellPrice=0,Texture=134001,Type="Consumable",Link="|cffffffff|Hitem:11952::::::::40:::::::|h[Night Dragon's Breath]|h|r",EquipLoc=""},["Petrified Scarab"]={SubType="Miscellaneous",Level=76,id=21685,StackCount=1,Rarity=4,MinLevel=60,SellPrice=87120,Texture=133570,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:21685::::::::40:::::::|h[Petrified Scarab]|h|r"},["Thunderhawk Wings"]={SubType="Quest",Level=1,id=5164,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134303,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5164::::::::40:::::::|h[Thunderhawk Wings]|h|r"},["Legal Documents"]={SubType="Junk",Level=1,id=11942,StackCount=10,Rarity=0,MinLevel=0,SellPrice=5303,Texture=134332,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11942::::::::40:::::::|h[Legal Documents]|h|r",EquipLoc=""},["Dim Torch"]={SubType="Miscellaneous",Level=10,id=6182,StackCount=1,Rarity=1,MinLevel=5,SellPrice=0,Texture=135432,Link="|cffffffff|Hitem:6182::::::::40:::::::|h[Dim Torch]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Magatha's Note"]={SubType="Quest",Level=0,id=10678,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133464,EquipLoc="",Link="|cffffffff|Hitem:10678::::::::40:::::::|h[Magatha's Note]|h|r",Type="Quest"},["Violet Powder"]={SubType="Quest",Level=1,id=8528,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134798,Link="|cffffffff|Hitem:8528::::::::40:::::::|h[Violet Powder]|h|r",EquipLoc="",Type="Quest"},["Ancient Hero's Skull"]={SubType="Junk",Level=60,id=21227,StackCount=10,Rarity=0,MinLevel=0,SellPrice=7500,Texture=133731,Link="|cff9d9d9d|Hitem:21227::::::::40:::::::|h[Ancient Hero's Skull]|h|r",EquipLoc="",Type="Miscellaneous"},["Pattern: Green Holiday Shirt"]={SubType="Tailoring",Level=38,id=17724,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:17724::::::::40:::::::|h[Pattern: Green Holiday Shirt]|h|r",Type="Recipe"},["Clayridge Helm"]={SubType="Mail",Level=55,id=11913,StackCount=1,Rarity=2,MinLevel=0,SellPrice=14044,Texture=133158,Type="Armor",Link="|cff1eff00|Hitem:11913::::::::40:::::::|h[Clayridge Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Underbelly Whelp Scale"]={SubType="Quest",Level=1,id=1221,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134305,EquipLoc="",Link="|cffffffff|Hitem:1221::::::::40:::::::|h[Underbelly Whelp Scale]|h|r",Type="Quest"},["Daring Dirk"]={SubType="Daggers",Level=34,id=12248,StackCount=1,Rarity=2,MinLevel=29,SellPrice=6405,Texture=135651,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:12248::::::::40:::::::|h[Daring Dirk]|h|r"},["Woodseed Hoop"]={SubType="Miscellaneous",Level=47,id=17768,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7891,Texture=133360,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:17768::::::::40:::::::|h[Woodseed Hoop]|h|r",Type="Armor"},["Thermotastic Egg Timer"]={SubType="Miscellaneous",Level=51,id=9644,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9885,Texture=133711,Link="|cff1eff00|Hitem:9644::::::::40:::::::|h[Thermotastic Egg Timer]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Heavy Iron Lotterybox"]={SubType="Junk",Level=35,id=8505,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=132596,Link="|cff1eff00|Hitem:8505::::::::40:::::::|h[Heavy Iron Lotterybox]|h|r",EquipLoc="",Type="Miscellaneous"},["Councillor's Robes"]={SubType="Cloth",Level=59,id=10102,StackCount=1,Rarity=2,MinLevel=54,SellPrice=15020,Texture=132680,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:10102::::::::40:::::::|h[Councillor's Robes]|h|r",Type="Armor"},["Mulgore Spice Bread"]={SubType="Consumable",Level=35,id=4544,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=133964,EquipLoc="",Link="|cffffffff|Hitem:4544::::::::40:::::::|h[Mulgore Spice Bread]|h|r",Type="Consumable"},["Slayer's Slippers"]={SubType="Mail",Level=29,id=14756,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1860,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14756::::::::40:::::::|h[Slayer's Slippers]|h|r"},["Coagulated Rot"]={SubType="Quest",Level=1,id=15448,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134005,EquipLoc="",Link="|cffffffff|Hitem:15448::::::::40:::::::|h[Coagulated Rot]|h|r",Type="Quest"},["Acolyte's Sacrificial Robes"]={SubType="Cloth",Level=5,id=16607,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16,Texture=132660,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:16607::::::::40:::::::|h[Acolyte's Sacrificial Robes]|h|r",Type="Armor"},["Grim Guzzler Boar"]={SubType="Consumable",Level=55,id=11444,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=133969,Type="Consumable",Link="|cffffffff|Hitem:11444::::::::40:::::::|h[Grim Guzzler Boar]|h|r",EquipLoc=""},["Ticking Present"]={SubType="Junk",Level=1,id=21327,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133202,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21327::::::::40:::::::|h[Ticking Present]|h|r"},["Faerie Dragon Muisek Vessel"]={SubType="Quest",Level=1,id=9620,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133841,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9620::::::::40:::::::|h[Faerie Dragon Muisek Vessel]|h|r"},["Dawnrider's Chestpiece"]={SubType="Mail",Level=45,id=9663,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9969,Texture=132638,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9663::::::::40:::::::|h[Dawnrider's Chestpiece]|h|r"},["Master's Belt"]={SubType="Cloth",Level=62,id=10255,StackCount=1,Rarity=2,MinLevel=57,SellPrice=8934,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10255::::::::40:::::::|h[Master's Belt]|h|r",Type="Armor"},["Chesterfall Musket"]={SubType="Guns",Level=33,id=7729,StackCount=1,Rarity=3,MinLevel=28,SellPrice=5514,Texture=135615,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:7729::::::::40:::::::|h[Chesterfall Musket]|h|r",Type="Weapon"},["Monster - Mace, Basic Metal Hammer"]={SubType="One-Handed Maces",Level=1,id=1903,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133040,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:1903::::::::40:::::::|h[Monster - Mace, Basic Metal Hammer]|h|r"},["Singing Blue Crystal"]={SubType="Quest",Level=1,id=3917,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134132,EquipLoc="",Link="|cffffffff|Hitem:3917::::::::40:::::::|h[Singing Blue Crystal]|h|r",Type="Quest"},["Frostwolf Hide"]={SubType="Quest",Level=1,id=17643,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=134354,EquipLoc="",Link="|cffffffff|Hitem:17643::::::::40:::::::|h[Frostwolf Hide]|h|r",Type="Quest"},["Tome of Fire Blast"]={SubType="Book",Level=6,id=968,StackCount=1,Rarity=1,MinLevel=6,SellPrice=20,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:968::::::::40:::::::|h[Tome of Fire Blast]|h|r",EquipLoc=""},["Grimoire of Immolate II"]={SubType="Book",Level=10,id=1245,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:1245::::::::40:::::::|h[Grimoire of Immolate II]|h|r",Type="Recipe"},["Linken's Tempered Sword"]={SubType="Quest",Level=1,id=11136,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135324,Type="Quest",Link="|cffffffff|Hitem:11136::::::::40:::::::|h[Linken's Tempered Sword]|h|r",EquipLoc=""},["Broken Bloodstained Bow"]={SubType="Junk",Level=1,id=4878,StackCount=1,Rarity=0,MinLevel=0,SellPrice=56,Texture=135493,Link="|cff9d9d9d|Hitem:4878::::::::40:::::::|h[Broken Bloodstained Bow]|h|r",EquipLoc="",Type="Miscellaneous"},["Forsaken Heart"]={SubType="Quest",Level=60,id=18147,StackCount=100,Rarity=1,MinLevel=1,SellPrice=0,Texture=134338,Type="Quest",Link="|cffffffff|Hitem:18147::::::::40:::::::|h[Forsaken Heart]|h|r",EquipLoc=""},["Gahrron's Withering Cauldron Key"]={SubType="Quest",Level=1,id=13196,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134247,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13196::::::::40:::::::|h[Gahrron's Withering Cauldron Key]|h|r"},["Lesser Mark of the Dawn"]={SubType="Consumable",Level=60,id=23194,StackCount=3,Rarity=1,MinLevel=1,SellPrice=0,Texture=134499,Link="|cffffffff|Hitem:23194::::::::40:::::::|h[Lesser Mark of the Dawn]|h|r",EquipLoc="",Type="Consumable"},["Monster - Wand, Horde Demon Skull"]={SubType="Wands",Level=1,id=13292,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135463,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:13292::::::::40:::::::|h[Monster - Wand, Horde Demon Skull]|h|r"},["Knight-Lieutenant's Dragonhide Gloves"]={SubType="Leather",Level=63,id=16397,StackCount=1,Rarity=3,MinLevel=58,SellPrice=7414,Texture=132960,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16397::::::::40:::::::|h[Knight-Lieutenant's Dragonhide Gloves]|h|r",Type="Armor"},["Test Glaive B"]={SubType="One-Handed Swords",Level=5,id=14884,StackCount=1,Rarity=1,MinLevel=1,SellPrice=24,Texture=135643,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:14884::::::::40:::::::|h[Test Glaive B]|h|r"},["Deprecated Minor Bloodstone"]={SubType="Miscellaneous",Level=1,id=5408,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135230,EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:5408::::::::40:::::::|h[Deprecated Minor Bloodstone]|h|r",Type="Armor"},["Robe of Faith"]={SubType="Cloth",Level=92,id=22512,StackCount=1,Rarity=4,MinLevel=60,SellPrice=130290,Texture=132684,Link="|cffa335ee|Hitem:22512::::::::40:::::::|h[Robe of Faith]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Pattern: Wisdom of the Timbermaw"]={SubType="Tailoring",Level=58,id=19215,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5500,Texture=134939,Link="|cffffffff|Hitem:19215::::::::40:::::::|h[Pattern: Wisdom of the Timbermaw]|h|r",EquipLoc="",Type="Recipe"},["Aegis of the Scarlet Commander"]={SubType="Shields",Level=44,id=7726,StackCount=1,Rarity=3,MinLevel=39,SellPrice=11681,Texture=134951,Link="|cff0070dd|Hitem:7726::::::::40:::::::|h[Aegis of the Scarlet Commander]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Hoard of the Black Dragonflight"]={SubType="Junk",Level=50,id=10569,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132595,EquipLoc="",Link="|cffffffff|Hitem:10569::::::::40:::::::|h[Hoard of the Black Dragonflight]|h|r",Type="Miscellaneous"},["Frostweave Pants"]={SubType="Cloth",Level=56,id=13871,StackCount=1,Rarity=2,MinLevel=51,SellPrice=13436,Texture=134588,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:13871::::::::40:::::::|h[Frostweave Pants]|h|r"},["Marshal's Leather Leggings"]={SubType="Leather",Level=71,id=16456,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29098,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16456::::::::40:::::::|h[Marshal's Leather Leggings]|h|r",Type="Armor"},["Marshal's Leather Cinch"]={SubType="Leather",Level=65,id=16458,StackCount=1,Rarity=4,MinLevel=60,SellPrice=10934,Texture=132512,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16458::::::::40:::::::|h[Marshal's Leather Cinch]|h|r",Type="Armor"},["Rough Leather Boots"]={SubType="Leather",Level=10,id=796,StackCount=1,Rarity=1,MinLevel=5,SellPrice=52,Texture=132543,Type="Armor",Link="|cffffffff|Hitem:796::::::::40:::::::|h[Rough Leather Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Tough Leather Boots"]={SubType="Leather",Level=26,id=1804,StackCount=1,Rarity=0,MinLevel=21,SellPrice=478,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:1804::::::::40:::::::|h[Tough Leather Boots]|h|r"},["Tablet of Earth Shock VII"]={SubType="Book",Level=60,id=9177,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9177::::::::40:::::::|h[Tablet of Earth Shock VII]|h|r"},["Six of Portals"]={SubType="Junk",Level=1,id=19282,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134492,Link="|cff0070dd|Hitem:19282::::::::40:::::::|h[Six of Portals]|h|r",EquipLoc="",Type="Miscellaneous"},["Spiked Chain Gauntlets"]={SubType="Mail",Level=26,id=15520,StackCount=1,Rarity=2,MinLevel=21,SellPrice=879,Texture=132956,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15520::::::::40:::::::|h[Spiked Chain Gauntlets]|h|r",Type="Armor"},["Flimsy Female Gnome Mask"]={SubType="Miscellaneous",Level=1,id=20392,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134165,Link="|cffffffff|Hitem:20392::::::::40:::::::|h[Flimsy Female Gnome Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Tome of Blizzard II"]={SubType="Book",Level=28,id=3100,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:3100::::::::40:::::::|h[Tome of Blizzard II]|h|r",Type="Recipe"},["15 Pound Lobster"]={SubType="Junk",Level=55,id=13910,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=133900,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13910::::::::40:::::::|h[15 Pound Lobster]|h|r"},["Arcane Crystal"]={SubType="Trade Goods",Level=60,id=12363,StackCount=20,Rarity=2,MinLevel=0,SellPrice=2000,Texture=134135,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:12363::::::::40:::::::|h[Arcane Crystal]|h|r"},["Knight-Captain's Lamellar Breastplate"]={SubType="Plate",Level=63,id=16433,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11691,Texture=132738,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16433::::::::40:::::::|h[Knight-Captain's Lamellar Breastplate]|h|r",Type="Armor"},["Frostwolf Soldier's Medal"]={SubType="Quest",Level=1,id=17502,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=133439,EquipLoc="",Link="|cffffffff|Hitem:17502::::::::40:::::::|h[Frostwolf Soldier's Medal]|h|r",Type="Quest"},["Handmade Woodcraft"]={SubType="Consumable",Level=1,id=21960,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134227,Link="|cffffffff|Hitem:21960::::::::40:::::::|h[Handmade Woodcraft]|h|r",EquipLoc="",Type="Consumable"},["Helendis Riverhorn's Letter"]={SubType="Quest",Level=1,id=11366,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,Type="Quest",Link="|cffffffff|Hitem:11366::::::::40:::::::|h[Helendis Riverhorn's Letter]|h|r",EquipLoc=""},["Tarnished Silver Necklace"]={SubType="Miscellaneous",Level=1,id=9333,StackCount=20,Rarity=0,MinLevel=0,SellPrice=73,Texture=132507,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff9d9d9d|Hitem:9333::::::::40:::::::|h[Tarnished Silver Necklace]|h|r"},["Ancient Greaves"]={SubType="Mail",Level=44,id=15599,StackCount=1,Rarity=2,MinLevel=39,SellPrice=6631,Texture=132585,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15599::::::::40:::::::|h[Ancient Greaves]|h|r",Type="Armor"},["Formula: Enchant Gloves - Skinning"]={SubType="Enchanting",Level=40,id=11166,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1000,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11166::::::::40:::::::|h[Formula: Enchant Gloves - Skinning]|h|r",EquipLoc=""},["Tome of Khadgar's Unlocking III"]={SubType="Book",Level=42,id=4158,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:4158::::::::40:::::::|h[Tome of Khadgar's Unlocking III]|h|r",Type="Recipe"},["General's Dragonhide Gloves"]={SubType="Leather",Level=71,id=16555,StackCount=1,Rarity=4,MinLevel=60,SellPrice=13819,Texture=132959,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16555::::::::40:::::::|h[General's Dragonhide Gloves]|h|r",Type="Armor"},["Lieutenant Commander's Crown"]={SubType="Cloth",Level=63,id=16416,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8864,Texture=133126,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16416::::::::40:::::::|h[Lieutenant Commander's Crown]|h|r",Type="Armor"},["Monster - Dagger, Curvey Blue Hilt"]={SubType="Daggers",Level=1,id=5285,StackCount=1,Rarity=0,MinLevel=1,SellPrice=6,Texture=135637,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:5285::::::::40:::::::|h[Monster - Dagger, Curvey Blue Hilt]|h|r",Type="Weapon"},["Scorched Spider Fang"]={SubType="Quest",Level=1,id=6838,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,Link="|cffffffff|Hitem:6838::::::::40:::::::|h[Scorched Spider Fang]|h|r",EquipLoc="",Type="Quest"},["Deprecated Broken Razormane War Shield"]={SubType="Quest",Level=1,id=5653,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134955,EquipLoc="",Link="|cffffffff|Hitem:5653::::::::40:::::::|h[Deprecated Broken Razormane War Shield]|h|r",Type="Quest"},["Raptor Egg"]={SubType="Trade Goods",Level=22,id=3685,StackCount=10,Rarity=1,MinLevel=0,SellPrice=71,Texture=132834,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:3685::::::::40:::::::|h[Raptor Egg]|h|r"},["Ancient Legguards"]={SubType="Mail",Level=44,id=15607,StackCount=1,Rarity=2,MinLevel=39,SellPrice=9305,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15607::::::::40:::::::|h[Ancient Legguards]|h|r",Type="Armor"},["Broken Mirror"]={SubType="Junk",Level=1,id=5376,StackCount=5,Rarity=0,MinLevel=0,SellPrice=66,Texture=134442,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5376::::::::40:::::::|h[Broken Mirror]|h|r"},["Raincaller Robes"]={SubType="Cloth",Level=31,id=14192,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1946,Texture=132660,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14192::::::::40:::::::|h[Raincaller Robes]|h|r"},["Brightscale Girdle"]={SubType="Mail",Level=32,id=11229,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1696,Texture=132495,Type="Armor",Link="|cff1eff00|Hitem:11229::::::::40:::::::|h[Brightscale Girdle]|h|r",EquipLoc="INVTYPE_WAIST"},["Pattern: Stormshroud Gloves"]={SubType="Leatherworking",Level=62,id=21548,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134939,Link="|cff0070dd|Hitem:21548::::::::40:::::::|h[Pattern: Stormshroud Gloves]|h|r",EquipLoc="",Type="Recipe"},["Encarmine Boots"]={SubType="Cloth",Level=45,id=10700,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4983,Texture=132536,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10700::::::::40:::::::|h[Encarmine Boots]|h|r",Type="Armor"},["Diamond-Tip Bludgeon"]={SubType="One-Handed Maces",Level=49,id=15227,StackCount=1,Rarity=2,MinLevel=44,SellPrice=21925,Texture=133490,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15227::::::::40:::::::|h[Diamond-Tip Bludgeon]|h|r",Type="Weapon"},["Masterwork Circlet"]={SubType="Mail",Level=63,id=10272,StackCount=1,Rarity=2,MinLevel=58,SellPrice=20865,Texture=133345,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10272::::::::40:::::::|h[Masterwork Circlet]|h|r",Type="Armor"},["Argent Dawn Valor Token"]={SubType="Quest",Level=1,id=12844,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=133441,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:12844::::::::40:::::::|h[Argent Dawn Valor Token]|h|r"},["Shroud of Dominion"]={SubType="Cloth",Level=90,id=23045,StackCount=1,Rarity=4,MinLevel=60,SellPrice=82578,Texture=133777,Link="|cffa335ee|Hitem:23045::::::::40:::::::|h[Shroud of Dominion]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Resilient Leggings"]={SubType="Cloth",Level=33,id=14404,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2471,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14404::::::::40:::::::|h[Resilient Leggings]|h|r"},["Rusted Chain Belt"]={SubType="Mail",Level=5,id=2387,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=132495,Type="Armor",Link="|cffffffff|Hitem:2387::::::::40:::::::|h[Rusted Chain Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Cloak of Night"]={SubType="Cloth",Level=26,id=4447,StackCount=1,Rarity=2,MinLevel=21,SellPrice=901,Texture=133756,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:4447::::::::40:::::::|h[Cloak of Night]|h|r"},["Mercurial Cloak"]={SubType="Cloth",Level=59,id=10159,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11444,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10159::::::::40:::::::|h[Mercurial Cloak]|h|r",Type="Armor"},["Vilerend Slicer"]={SubType="Fist Weapons",Level=51,id=11603,StackCount=1,Rarity=3,MinLevel=46,SellPrice=30656,Texture=132369,Type="Weapon",Link="|cff0070dd|Hitem:11603::::::::40:::::::|h[Vilerend Slicer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Enchanted Agate"]={SubType="Quest",Level=1,id=4529,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134094,Link="|cffffffff|Hitem:4529::::::::40:::::::|h[Enchanted Agate]|h|r",EquipLoc="",Type="Quest"},["Blessed Prayer Beads"]={SubType="Miscellaneous",Level=52,id=19990,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133298,Link="|cff0070dd|Hitem:19990::::::::40:::::::|h[Blessed Prayer Beads]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Forest Leather Boots"]={SubType="Leather",Level=24,id=3057,StackCount=1,Rarity=2,MinLevel=19,SellPrice=903,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:3057::::::::40:::::::|h[Forest Leather Boots]|h|r"},["Twilight Battle Orders"]={SubType="Quest",Level=0,id=20803,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133473,Link="|cffffffff|Hitem:20803::::::::40:::::::|h[Twilight Battle Orders]|h|r",EquipLoc="",Type="Quest"},["Junglewalker Sandals"]={SubType="Cloth",Level=37,id=4139,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2749,Texture=132579,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:4139::::::::40:::::::|h[Junglewalker Sandals]|h|r",Type="Armor"},["Red Linen Robe"]={SubType="Cloth",Level=10,id=2572,StackCount=1,Rarity=2,MinLevel=5,SellPrice=99,Texture=132659,Type="Armor",Link="|cff1eff00|Hitem:2572::::::::40:::::::|h[Red Linen Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Serpentskin Bracers"]={SubType="Leather",Level=50,id=8257,StackCount=1,Rarity=2,MinLevel=45,SellPrice=6053,Texture=132602,Link="|cff1eff00|Hitem:8257::::::::40:::::::|h[Serpentskin Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Shadoweave Mask"]={SubType="Cloth",Level=49,id=10025,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6790,Texture=133129,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10025::::::::40:::::::|h[Shadoweave Mask]|h|r",Type="Armor"},["Bramblewood Belt"]={SubType="Leather",Level=70,id=22761,StackCount=1,Rarity=3,MinLevel=60,SellPrice=19607,Texture=132506,Link="|cff0070dd|Hitem:22761::::::::40:::::::|h[Bramblewood Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Level 65 Test Gear Cloth - Mage"]={SubType="Junk",Level=1,id=13655,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13655::::::::40:::::::|h[Level 65 Test Gear Cloth - Mage]|h|r"},["Cenarion Moondust"]={SubType="Quest",Level=1,id=15208,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132857,EquipLoc="",Link="|cffffffff|Hitem:15208::::::::40:::::::|h[Cenarion Moondust]|h|r",Type="Quest"},["Mark of the Chosen"]={SubType="Miscellaneous",Level=48,id=17774,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6133,Texture=133441,EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:17774::::::::40:::::::|h[Mark of the Chosen]|h|r",Type="Armor"},["Radiant Circlet"]={SubType="Mail",Level=59,id=12417,StackCount=1,Rarity=2,MinLevel=54,SellPrice=17034,Texture=132767,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:12417::::::::40:::::::|h[Radiant Circlet]|h|r"},["Whistle of the Ivory Raptor"]={SubType="Junk",Level=60,id=13317,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132253,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:13317::::::::40:::::::|h[Whistle of the Ivory Raptor]|h|r"},["Chows Blade of DOOM! (Test)"]={SubType="One-Handed Swords",Level=1,id=1018,StackCount=1,Rarity=1,MinLevel=1,SellPrice=3,Texture=135274,EquipLoc="INVTYPE_WEAPONOFFHAND",Link="|cffffffff|Hitem:1018::::::::40:::::::|h[Chows Blade of DOOM! (Test)]|h|r",Type="Weapon"},["The Phylactery of Kel'Thuzad"]={SubType="Junk",Level=60,id=22520,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=134514,Link="|cffa335ee|Hitem:22520::::::::40:::::::|h[The Phylactery of Kel'Thuzad]|h|r",EquipLoc="",Type="Miscellaneous"},["Intact Elemental Bracer"]={SubType="Quest",Level=1,id=12220,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132608,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12220::::::::40:::::::|h[Intact Elemental Bracer]|h|r"},["Arcane Runed Bracers"]={SubType="Cloth",Level=39,id=4744,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1986,Texture=132617,Link="|cff1eff00|Hitem:4744::::::::40:::::::|h[Arcane Runed Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Westfall Deed"]={SubType="Quest",Level=8,id=1972,StackCount=1,Rarity=1,MinLevel=8,SellPrice=0,Texture=134939,Type="Quest",Link="|cffffffff|Hitem:1972::::::::40:::::::|h[Westfall Deed]|h|r",EquipLoc=""},["Striker's Hauberk"]={SubType="Mail",Level=88,id=21370,StackCount=1,Rarity=4,MinLevel=60,SellPrice=149787,Texture=132626,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:21370::::::::40:::::::|h[Striker's Hauberk]|h|r"},["Large Purple Rocket"]={SubType="Consumable",Level=1,id=21591,StackCount=20,Rarity=1,MinLevel=0,SellPrice=12,Texture=134272,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:21591::::::::40:::::::|h[Large Purple Rocket]|h|r"},["Defiler's Plate Spaulders"]={SubType="Plate",Level=65,id=20212,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25508,Texture=135032,Link="|cffa335ee|Hitem:20212::::::::40:::::::|h[Defiler's Plate Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Mystical Belt"]={SubType="Cloth",Level=52,id=10180,StackCount=1,Rarity=2,MinLevel=47,SellPrice=5141,Texture=132491,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10180::::::::40:::::::|h[Mystical Belt]|h|r",Type="Armor"},["Ragged Cloak"]={SubType="Cloth",Level=3,id=1372,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133762,EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:1372::::::::40:::::::|h[Ragged Cloak]|h|r",Type="Armor"},["QAEnchant Cloak +15 Nature Resistance"]={SubType="Consumable",Level=1,id=22040,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22040::::::::40:::::::|h[QAEnchant Cloak +15 Nature Resistance]|h|r"},["Fadeleaf"]={SubType="Trade Goods",Level=32,id=3818,StackCount=20,Rarity=1,MinLevel=0,SellPrice=125,Texture=134193,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:3818::::::::40:::::::|h[Fadeleaf]|h|r"},["Monster - Trident, Ornate"]={SubType="Polearms",Level=1,id=5747,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135575,Link="|cff9d9d9d|Hitem:5747::::::::40:::::::|h[Monster - Trident, Ornate]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Grimoire of Torment (Rank 3)"]={SubType="Book",Level=30,id=16347,StackCount=1,Rarity=1,MinLevel=30,SellPrice=1500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16347::::::::40:::::::|h[Grimoire of Torment (Rank 3)]|h|r",Type="Recipe"},["Dokebi Gloves"]={SubType="Leather",Level=32,id=14583,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1333,Texture=132958,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14583::::::::40:::::::|h[Dokebi Gloves]|h|r"},["Champion's Leggings"]={SubType="Mail",Level=48,id=7539,StackCount=1,Rarity=2,MinLevel=43,SellPrice=12692,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7539::::::::40:::::::|h[Champion's Leggings]|h|r",Type="Armor"},["Miniature Cannon Balls"]={SubType="Bullet",Level=61,id=13377,StackCount=200,Rarity=3,MinLevel=56,SellPrice=7,Texture=132384,Type="Projectile",EquipLoc="INVTYPE_AMMO",Link="|cff0070dd|Hitem:13377::::::::40:::::::|h[Miniature Cannon Balls]|h|r"},["Frost Bracers"]={SubType="Cloth",Level=33,id=1216,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1197,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:1216::::::::40:::::::|h[Frost Bracers]|h|r"},["Wicked Chain Boots"]={SubType="Mail",Level=31,id=15534,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2308,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15534::::::::40:::::::|h[Wicked Chain Boots]|h|r",Type="Armor"},["Small Pocket Watch"]={SubType="Junk",Level=1,id=5374,StackCount=5,Rarity=0,MinLevel=0,SellPrice=87,Texture=134377,Link="|cff9d9d9d|Hitem:5374::::::::40:::::::|h[Small Pocket Watch]|h|r",EquipLoc="",Type="Miscellaneous"},["Book of Tranquility II"]={SubType="Book",Level=40,id=8775,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133743,Link="|cffffffff|Hitem:8775::::::::40:::::::|h[Book of Tranquility II]|h|r",EquipLoc="",Type="Recipe"},["Zandalar Predator's Bracers"]={SubType="Mail",Level=61,id=19833,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132617,Link="|cffa335ee|Hitem:19833::::::::40:::::::|h[Zandalar Predator's Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Lieutenant Commander's Dragonhide Headguard"]={SubType="Leather",Level=71,id=23308,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15560,Texture=133077,Link="|cff0070dd|Hitem:23308::::::::40:::::::|h[Lieutenant Commander's Dragonhide Headguard]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Advanced Target Dummy"]={SubType="Devices",Level=37,id=4392,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2500,Texture=132765,EquipLoc="",Link="|cffffffff|Hitem:4392::::::::40:::::::|h[Advanced Target Dummy]|h|r",Type="Trade Goods"},["Bloodstone Choker"]={SubType="Quest",Level=1,id=6928,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133292,Type="Quest",Link="|cffffffff|Hitem:6928::::::::40:::::::|h[Bloodstone Choker]|h|r",EquipLoc=""},["Resplendent Tunic"]={SubType="Cloth",Level=63,id=14318,StackCount=1,Rarity=2,MinLevel=58,SellPrice=18408,Texture=132659,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14318::::::::40:::::::|h[Resplendent Tunic]|h|r"},["Whetted Claymore"]={SubType="Two-Handed Swords",Level=42,id=4018,StackCount=1,Rarity=0,MinLevel=37,SellPrice=6372,Texture=135349,Link="|cff9d9d9d|Hitem:4018::::::::40:::::::|h[Whetted Claymore]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Rockslicer"]={SubType="Two-Handed Axes",Level=21,id=872,StackCount=1,Rarity=2,MinLevel=16,SellPrice=2011,Texture=135419,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:872::::::::40:::::::|h[Rockslicer]|h|r"},["Purple Ribboned Wrapping Paper"]={SubType="Consumable",Level=5,id=17307,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2,Texture=133206,EquipLoc="",Link="|cffffffff|Hitem:17307::::::::40:::::::|h[Purple Ribboned Wrapping Paper]|h|r",Type="Consumable"},["Journal Page"]={SubType="Junk",Level=1,id=5839,StackCount=1,Rarity=0,MinLevel=0,SellPrice=1,Texture=134327,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5839::::::::40:::::::|h[Journal Page]|h|r"},["White Punch Card"]={SubType="Quest",Level=1,id=9279,StackCount=1,Rarity=1,MinLevel=0,SellPrice=45,Texture=133215,Link="|cffffffff|Hitem:9279::::::::40:::::::|h[White Punch Card]|h|r",EquipLoc="",Type="Quest"},["Royal Seal of Alexis"]={SubType="Miscellaneous",Level=59,id=16999,StackCount=1,Rarity=3,MinLevel=54,SellPrice=10709,Texture=133372,EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:16999::::::::40:::::::|h[Royal Seal of Alexis]|h|r",Type="Armor"},["Blueleaf Tuber"]={SubType="Quest",Level=1,id=5876,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134187,EquipLoc="",Link="|cffffffff|Hitem:5876::::::::40:::::::|h[Blueleaf Tuber]|h|r",Type="Quest"},["Gordok Bracers of Power"]={SubType="Plate",Level=63,id=18533,StackCount=1,Rarity=3,MinLevel=58,SellPrice=10984,Texture=132613,Type="Armor",Link="|cff0070dd|Hitem:18533::::::::40:::::::|h[Gordok Bracers of Power]|h|r",EquipLoc="INVTYPE_WRIST"},["Coral Band"]={SubType="Miscellaneous",Level=26,id=5000,StackCount=1,Rarity=2,MinLevel=21,SellPrice=962,Texture=133349,Link="|cff1eff00|Hitem:5000::::::::40:::::::|h[Coral Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Apprentice's Pants"]={SubType="Cloth",Level=1,id=1395,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134581,Link="|cff9d9d9d|Hitem:1395::::::::40:::::::|h[Apprentice's Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["63 Green Frost Leggings"]={SubType="Cloth",Level=63,id=20356,StackCount=1,Rarity=2,MinLevel=58,SellPrice=18641,Texture=134586,Link="|cff1eff00|Hitem:20356::::::::40:::::::|h[63 Green Frost Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Superior Healing Potion"]={SubType="Consumable",Level=45,id=3928,StackCount=5,Rarity=1,MinLevel=35,SellPrice=250,Texture=134833,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:3928::::::::40:::::::|h[Superior Healing Potion]|h|r"},["False Documents"]={SubType="Junk",Level=1,id=11941,StackCount=10,Rarity=0,MinLevel=0,SellPrice=5896,Texture=134327,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11941::::::::40:::::::|h[False Documents]|h|r",EquipLoc=""},["Silvery Spinnerets"]={SubType="Quest",Level=0,id=8344,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135652,Link="|cffffffff|Hitem:8344::::::::40:::::::|h[Silvery Spinnerets]|h|r",EquipLoc="",Type="Quest"},["Scrap of Paper"]={SubType="Quest",Level=1,id=5949,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,EquipLoc="",Link="|cffffffff|Hitem:5949::::::::40:::::::|h[Scrap of Paper]|h|r",Type="Quest"},["Libram of Hope"]={SubType="Librams",Level=62,id=22401,StackCount=1,Rarity=3,MinLevel=57,SellPrice=17078,Texture=134916,Type="Armor",EquipLoc="INVTYPE_RELIC",Link="|cff0070dd|Hitem:22401::::::::40:::::::|h[Libram of Hope]|h|r"},["Gloves of Dark Wisdom"]={SubType="Cloth",Level=72,id=21462,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22787,Texture=132953,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:21462::::::::40:::::::|h[Gloves of Dark Wisdom]|h|r"},["White Night Elf Breastplate"]={SubType="Mail",Level=1,id=3527,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=132715,Type="Armor",Link="|cffffffff|Hitem:3527::::::::40:::::::|h[White Night Elf Breastplate]|h|r",EquipLoc="INVTYPE_CHEST"},["Deadmire's Tooth"]={SubType="Quest",Level=1,id=5945,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,Link="|cffffffff|Hitem:5945::::::::40:::::::|h[Deadmire's Tooth]|h|r",EquipLoc="",Type="Quest"},["Nightstalker Bow"]={SubType="Bows",Level=32,id=6696,StackCount=1,Rarity=3,MinLevel=27,SellPrice=5086,Texture=135500,Link="|cff0070dd|Hitem:6696::::::::40:::::::|h[Nightstalker Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Staff of Jordan"]={SubType="Staves",Level=40,id=873,StackCount=1,Rarity=4,MinLevel=35,SellPrice=21770,Texture=135150,EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:873::::::::40:::::::|h[Staff of Jordan]|h|r",Type="Weapon"},["Marshal's Silk Bracers"]={SubType="Cloth",Level=65,id=16438,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8749,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16438::::::::40:::::::|h[Marshal's Silk Bracers]|h|r",Type="Armor"},["Stormshroud Armor"]={SubType="Leather",Level=57,id=15056,StackCount=1,Rarity=3,MinLevel=52,SellPrice=20966,Texture=132723,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:15056::::::::40:::::::|h[Stormshroud Armor]|h|r",Type="Armor"},["Archstrike Bow"]={SubType="Bows",Level=65,id=15289,StackCount=1,Rarity=2,MinLevel=60,SellPrice=41161,Texture=135494,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:15289::::::::40:::::::|h[Archstrike Bow]|h|r",Type="Weapon"},["Deathmist Bracers"]={SubType="Cloth",Level=65,id=22071,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12666,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:22071::::::::40:::::::|h[Deathmist Bracers]|h|r"},["Shrapnel Blaster"]={SubType="Guns",Level=40,id=4127,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8073,Texture=135611,Type="Weapon",Link="|cff1eff00|Hitem:4127::::::::40:::::::|h[Shrapnel Blaster]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Big Black Mace"]={SubType="One-Handed Maces",Level=46,id=7945,StackCount=1,Rarity=2,MinLevel=41,SellPrice=17291,Texture=133490,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:7945::::::::40:::::::|h[Big Black Mace]|h|r",Type="Weapon"},["Tome of Mana Shield VI"]={SubType="Book",Level=60,id=8896,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133739,Link="|cffffffff|Hitem:8896::::::::40:::::::|h[Tome of Mana Shield VI]|h|r",EquipLoc="",Type="Recipe"},["Giant Tarantula Fang"]={SubType="Daggers",Level=15,id=1287,StackCount=1,Rarity=2,MinLevel=10,SellPrice=703,Texture=134298,Link="|cff1eff00|Hitem:1287::::::::40:::::::|h[Giant Tarantula Fang]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Nat Pagle's Fish Terminator"]={SubType="Staves",Level=65,id=19944,StackCount=1,Rarity=4,MinLevel=60,SellPrice=102729,Texture=132932,Link="|cffa335ee|Hitem:19944::::::::40:::::::|h[Nat Pagle's Fish Terminator]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Mantle of Doan"]={SubType="Cloth",Level=38,id=7712,StackCount=1,Rarity=2,MinLevel=33,SellPrice=881,Texture=135036,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7712::::::::40:::::::|h[Mantle of Doan]|h|r"},["Imperial Leather Bracers"]={SubType="Leather",Level=42,id=4061,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3306,Texture=132602,Link="|cff1eff00|Hitem:4061::::::::40:::::::|h[Imperial Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Elixir of Shadow Power"]={SubType="Consumable",Level=50,id=9264,StackCount=5,Rarity=1,MinLevel=40,SellPrice=35,Texture=134826,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9264::::::::40:::::::|h[Elixir of Shadow Power]|h|r"},["Tooth of Eranikus"]={SubType="One-Handed Axes",Level=56,id=10837,StackCount=1,Rarity=3,MinLevel=51,SellPrice=38801,Texture=132398,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:10837::::::::40:::::::|h[Tooth of Eranikus]|h|r",Type="Weapon"},["Pattern: Azure Shoulders"]={SubType="Tailoring",Level=38,id=7085,StackCount=1,Rarity=2,MinLevel=0,SellPrice=350,Texture=134942,Link="|cff1eff00|Hitem:7085::::::::40:::::::|h[Pattern: Azure Shoulders]|h|r",EquipLoc="",Type="Recipe"},["Deprecated Ironband's Powder Approval"]={SubType="Quest",Level=1,id=2638,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:2638::::::::40:::::::|h[Deprecated Ironband's Powder Approval]|h|r",EquipLoc="",Type="Quest"},["Chelonian Cuffs"]={SubType="Mail",Level=50,id=9638,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6875,Texture=132605,Link="|cff1eff00|Hitem:9638::::::::40:::::::|h[Chelonian Cuffs]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Krakle's Thermometer"]={SubType="Quest",Level=1,id=12472,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132995,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12472::::::::40:::::::|h[Krakle's Thermometer]|h|r"},["Codex of Lesser Heal II"]={SubType="Book",Level=4,id=1092,StackCount=1,Rarity=1,MinLevel=4,SellPrice=10,Texture=133741,Type="Recipe",Link="|cffffffff|Hitem:1092::::::::40:::::::|h[Codex of Lesser Heal II]|h|r",EquipLoc=""},["Lordly Armguards"]={SubType="Mail",Level=59,id=13135,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14001,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13135::::::::40:::::::|h[Lordly Armguards]|h|r"},["Pattern: Sylvan Crown"]={SubType="Tailoring",Level=70,id=22773,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:22773::::::::40:::::::|h[Pattern: Sylvan Crown]|h|r"},["Deprecated Orc Apprentice Shirt"]={SubType="Miscellaneous",Level=1,id=123,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,Link="|cffffffff|Hitem:123::::::::40:::::::|h[Deprecated Orc Apprentice Shirt]|h|r",EquipLoc="INVTYPE_BODY",Type="Armor"},["Stormpike Mail Girdle"]={SubType="Mail",Level=60,id=19092,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14233,Texture=132507,Link="|cff0070dd|Hitem:19092::::::::40:::::::|h[Stormpike Mail Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Superior Leggings"]={SubType="Leather",Level=28,id=9808,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1848,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9808::::::::40:::::::|h[Superior Leggings]|h|r"},["Gauntlet of Gordok Might"]={SubType="Quest",Level=1,id=18336,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132956,Type="Quest",Link="|cffffffff|Hitem:18336::::::::40:::::::|h[Gauntlet of Gordok Might]|h|r",EquipLoc=""},["Grimoire of Corruption III"]={SubType="Book",Level=28,id=9216,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9216::::::::40:::::::|h[Grimoire of Corruption III]|h|r"},["Tattered Cloth Vest"]={SubType="Cloth",Level=5,id=193,StackCount=1,Rarity=1,MinLevel=1,SellPrice=9,Texture=135022,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:193::::::::40:::::::|h[Tattered Cloth Vest]|h|r"},["Enchanted Azsharite Felbane Staff"]={SubType="Staves",Level=60,id=10698,StackCount=1,Rarity=2,MinLevel=0,SellPrice=52747,Texture=135150,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:10698::::::::40:::::::|h[Enchanted Azsharite Felbane Staff]|h|r",Type="Weapon"},["Helm of Domination"]={SubType="Plate",Level=72,id=21460,StackCount=1,Rarity=4,MinLevel=60,SellPrice=37496,Texture=133077,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:21460::::::::40:::::::|h[Helm of Domination]|h|r"},["Uncracked Chillwind Horn"]={SubType="Quest",Level=1,id=12444,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134228,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12444::::::::40:::::::|h[Uncracked Chillwind Horn]|h|r"},["Tablet of Healing Wave II"]={SubType="Book",Level=6,id=9040,StackCount=1,Rarity=1,MinLevel=6,SellPrice=20,Texture=134459,Link="|cffffffff|Hitem:9040::::::::40:::::::|h[Tablet of Healing Wave II]|h|r",EquipLoc="",Type="Recipe"},["Corrupted Brain Stem"]={SubType="Quest",Level=1,id=5952,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134340,Link="|cffffffff|Hitem:5952::::::::40:::::::|h[Corrupted Brain Stem]|h|r",EquipLoc="",Type="Quest"},["Extended Annals of Darrowshire"]={SubType="Quest",Level=1,id=13202,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133739,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13202::::::::40:::::::|h[Extended Annals of Darrowshire]|h|r"},["Formula: Enchant 2H Weapon - Superior Impact"]={SubType="Enchanting",Level=59,id=16247,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16247::::::::40:::::::|h[Formula: Enchant 2H Weapon - Superior Impact]|h|r",Type="Recipe"},["Death Grips"]={SubType="Plate",Level=62,id=18722,StackCount=1,Rarity=3,MinLevel=57,SellPrice=10688,Texture=132947,Type="Armor",Link="|cff0070dd|Hitem:18722::::::::40:::::::|h[Death Grips]|h|r",EquipLoc="INVTYPE_HAND"},["Tablet of Agitating Totem III"]={SubType="Book",Level=28,id=4171,StackCount=1,Rarity=1,MinLevel=28,SellPrice=1750,Texture=134459,Link="|cffffffff|Hitem:4171::::::::40:::::::|h[Tablet of Agitating Totem III]|h|r",EquipLoc="",Type="Recipe"},["Highlander's Leather Girdle"]={SubType="Leather",Level=63,id=20045,StackCount=1,Rarity=3,MinLevel=58,SellPrice=14784,Texture=132506,Link="|cff0070dd|Hitem:20045::::::::40:::::::|h[Highlander's Leather Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Mystic's Bracelets"]={SubType="Cloth",Level=17,id=14366,StackCount=1,Rarity=2,MinLevel=12,SellPrice=189,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14366::::::::40:::::::|h[Mystic's Bracelets]|h|r"},["Ingenious Toy"]={SubType="Junk",Level=1,id=13366,StackCount=20,Rarity=0,MinLevel=0,SellPrice=3000,Texture=132998,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:13366::::::::40:::::::|h[Ingenious Toy]|h|r"},["Enormous Ogre Boots"]={SubType="Leather",Level=43,id=10702,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5379,Texture=132592,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10702::::::::40:::::::|h[Enormous Ogre Boots]|h|r",Type="Armor"},["90 Epic Warrior Gun"]={SubType="Guns",Level=90,id=20146,StackCount=1,Rarity=4,MinLevel=60,SellPrice=205608,Texture=135614,Link="|cffa335ee|Hitem:20146::::::::40:::::::|h[90 Epic Warrior Gun]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Wizard's Hand"]={SubType="Wands",Level=53,id=15280,StackCount=1,Rarity=2,MinLevel=48,SellPrice=20603,Texture=135468,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15280::::::::40:::::::|h[Wizard's Hand]|h|r",Type="Weapon"},["Reinforced Bow"]={SubType="Bows",Level=21,id=3026,StackCount=1,Rarity=1,MinLevel=16,SellPrice=762,Texture=135490,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cffffffff|Hitem:3026::::::::40:::::::|h[Reinforced Bow]|h|r"},["Velinde's Key"]={SubType="Quest",Level=1,id=5521,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134236,Link="|cffffffff|Hitem:5521::::::::40:::::::|h[Velinde's Key]|h|r",EquipLoc="",Type="Quest"},["Hoodoo Hex"]={SubType="Junk",Level=60,id=19788,StackCount=1,Rarity=3,MinLevel=60,SellPrice=0,Texture=136164,Link="|cff0070dd|Hitem:19788::::::::40:::::::|h[Hoodoo Hex]|h|r",EquipLoc="",Type="Miscellaneous"},["Head of Overseer Maltorius"]={SubType="Quest",Level=1,id=18946,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134159,Type="Quest",Link="|cffffffff|Hitem:18946::::::::40:::::::|h[Head of Overseer Maltorius]|h|r",EquipLoc=""},["Cryptwalker Boots"]={SubType="Mail",Level=8,id=3447,StackCount=1,Rarity=1,MinLevel=0,SellPrice=34,Texture=132535,Type="Armor",Link="|cffffffff|Hitem:3447::::::::40:::::::|h[Cryptwalker Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Gloves of Shadowy Mist"]={SubType="Cloth",Level=58,id=18306,StackCount=1,Rarity=2,MinLevel=53,SellPrice=7215,Texture=132956,Type="Armor",Link="|cff1eff00|Hitem:18306::::::::40:::::::|h[Gloves of Shadowy Mist]|h|r",EquipLoc="INVTYPE_HAND"},["2200 Test sword 63 blue"]={SubType="One-Handed Swords",Level=63,id=19502,StackCount=1,Rarity=3,MinLevel=58,SellPrice=54922,Texture=135637,Link="|cff0070dd|Hitem:19502::::::::40:::::::|h[2200 Test sword 63 blue]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Fine Leather Gloves"]={SubType="Leather",Level=15,id=2312,StackCount=1,Rarity=2,MinLevel=10,SellPrice=181,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:2312::::::::40:::::::|h[Fine Leather Gloves]|h|r"},["Plated Armorfish"]={SubType="Reagent",Level=55,id=13890,StackCount=20,Rarity=1,MinLevel=0,SellPrice=70,Texture=133890,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:13890::::::::40:::::::|h[Plated Armorfish]|h|r"},["Embossed Plate Bracers"]={SubType="Plate",Level=42,id=9972,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2475,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9972::::::::40:::::::|h[Embossed Plate Bracers]|h|r"},["Unused Cloth Shoulder B01 Silver"]={SubType="Cloth",Level=35,id=4857,StackCount=1,Rarity=0,MinLevel=30,SellPrice=844,Texture=135036,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:4857::::::::40:::::::|h[Unused Cloth Shoulder B01 Silver]|h|r",Type="Armor"},["Mor'Ladim's Skull"]={SubType="Quest",Level=1,id=3514,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3514::::::::40:::::::|h[Mor'Ladim's Skull]|h|r"},["Blackforge Girdle"]={SubType="Mail",Level=44,id=6425,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4478,Texture=132515,Link="|cff1eff00|Hitem:6425::::::::40:::::::|h[Blackforge Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Glistening Frenzy Scale"]={SubType="Junk",Level=1,id=4860,StackCount=5,Rarity=0,MinLevel=0,SellPrice=741,Texture=134303,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:4860::::::::40:::::::|h[Glistening Frenzy Scale]|h|r",EquipLoc=""},["Augustus' Receipt Book"]={SubType="Quest",Level=1,id=15884,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133737,EquipLoc="",Link="|cffffffff|Hitem:15884::::::::40:::::::|h[Augustus' Receipt Book]|h|r",Type="Quest"},["Cured Leather Boots"]={SubType="Leather",Level=22,id=238,StackCount=1,Rarity=1,MinLevel=17,SellPrice=422,Texture=132537,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:238::::::::40:::::::|h[Cured Leather Boots]|h|r",Type="Armor"},["Ironweave Cowl"]={SubType="Cloth",Level=63,id=22302,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17549,Texture=133132,Link="|cff0070dd|Hitem:22302::::::::40:::::::|h[Ironweave Cowl]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Azure Sash"]={SubType="Leather",Level=29,id=6740,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1000,Texture=132499,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:6740::::::::40:::::::|h[Azure Sash]|h|r"},["Ancient Armor Fragment"]={SubType="Junk",Level=60,id=21224,StackCount=10,Rarity=0,MinLevel=0,SellPrice=3000,Texture=133601,Link="|cff9d9d9d|Hitem:21224::::::::40:::::::|h[Ancient Armor Fragment]|h|r",EquipLoc="",Type="Miscellaneous"},["Cliffrunner's Aim"]={SubType="Bows",Level=29,id=6739,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2991,Texture=135496,Type="Weapon",Link="|cff1eff00|Hitem:6739::::::::40:::::::|h[Cliffrunner's Aim]|h|r",EquipLoc="INVTYPE_RANGED"},["Warbringer's Sabatons "]={SubType="Plate",Level=43,id=14940,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4059,Texture=132590,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14940::::::::40:::::::|h[Warbringer's Sabatons ]|h|r"},["Gamemaster Hood"]={SubType="Cloth",Level=1,id=12064,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=133131,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:12064::::::::40:::::::|h[Gamemaster Hood]|h|r"},["Stonebark Gauntlets"]={SubType="Leather",Level=59,id=18344,StackCount=1,Rarity=3,MinLevel=54,SellPrice=11587,Texture=132957,Type="Armor",Link="|cff0070dd|Hitem:18344::::::::40:::::::|h[Stonebark Gauntlets]|h|r",EquipLoc="INVTYPE_HAND"},["Sarltooth's Talon"]={SubType="Quest",Level=1,id=3638,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,Type="Quest",Link="|cffffffff|Hitem:3638::::::::40:::::::|h[Sarltooth's Talon]|h|r",EquipLoc=""},["Rageclaw Bracers"]={SubType="Leather",Level=46,id=15380,StackCount=1,Rarity=2,MinLevel=41,SellPrice=4390,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15380::::::::40:::::::|h[Rageclaw Bracers]|h|r",Type="Armor"},["Burial Shawl"]={SubType="Cloth",Level=61,id=18681,StackCount=1,Rarity=3,MinLevel=56,SellPrice=15215,Texture=135036,Type="Armor",Link="|cff0070dd|Hitem:18681::::::::40:::::::|h[Burial Shawl]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Schematic: Parachute Cloak"]={SubType="Engineering",Level=45,id=10606,StackCount=1,Rarity=2,MinLevel=0,SellPrice=875,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10606::::::::40:::::::|h[Schematic: Parachute Cloak]|h|r",Type="Recipe"},["Reconnaissance Boots"]={SubType="Cloth",Level=14,id=3454,StackCount=1,Rarity=1,MinLevel=0,SellPrice=105,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:3454::::::::40:::::::|h[Reconnaissance Boots]|h|r",Type="Armor"},["Libram: Seal of Wrath III"]={SubType="Book",Level=50,id=8936,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133740,Link="|cffffffff|Hitem:8936::::::::40:::::::|h[Libram: Seal of Wrath III]|h|r",EquipLoc="",Type="Recipe"},["Stormpike's Request"]={SubType="Quest",Level=1,id=5998,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,Link="|cffffffff|Hitem:5998::::::::40:::::::|h[Stormpike's Request]|h|r",EquipLoc="",Type="Quest"},["Big Iron Fishing Pole"]={SubType="Fishing Pole",Level=30,id=6367,StackCount=1,Rarity=1,MinLevel=25,SellPrice=3378,Texture=132931,Type="Weapon",Link="|cffffffff|Hitem:6367::::::::40:::::::|h[Big Iron Fishing Pole]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Mail Combat Armor"]={SubType="Mail",Level=36,id=4074,StackCount=1,Rarity=2,MinLevel=31,SellPrice=4785,Texture=132635,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:4074::::::::40:::::::|h[Mail Combat Armor]|h|r",Type="Armor"},["Cold Steel Gauntlets"]={SubType="Mail",Level=8,id=6063,StackCount=1,Rarity=1,MinLevel=0,SellPrice=23,Texture=132938,Type="Armor",Link="|cffffffff|Hitem:6063::::::::40:::::::|h[Cold Steel Gauntlets]|h|r",EquipLoc="INVTYPE_HAND"},["Illusionary Rod"]={SubType="Staves",Level=39,id=7713,StackCount=1,Rarity=3,MinLevel=34,SellPrice=4777,Texture=135466,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:7713::::::::40:::::::|h[Illusionary Rod]|h|r",Type="Weapon"},["Small Locked Chest"]={SubType="Junk",Level=20,id=6354,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132596,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:6354::::::::40:::::::|h[Small Locked Chest]|h|r"},["Talbar Mantle"]={SubType="Cloth",Level=26,id=10657,StackCount=1,Rarity=2,MinLevel=0,SellPrice=933,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10657::::::::40:::::::|h[Talbar Mantle]|h|r",Type="Armor"},["Plans: Iridescent Hammer"]={SubType="Blacksmithing",Level=28,id=5543,StackCount=1,Rarity=2,MinLevel=0,SellPrice=450,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:5543::::::::40:::::::|h[Plans: Iridescent Hammer]|h|r",Type="Recipe"},["Libram: Lay on Hands"]={SubType="Book",Level=10,id=8910,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133740,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8910::::::::40:::::::|h[Libram: Lay on Hands]|h|r"},["Robe of Winter Night"]={SubType="Cloth",Level=57,id=14136,StackCount=1,Rarity=3,MinLevel=52,SellPrice=17025,Texture=132690,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:14136::::::::40:::::::|h[Robe of Winter Night]|h|r"},["Plans: Dark Iron Gauntlets"]={SubType="Blacksmithing",Level=70,id=19207,StackCount=1,Rarity=1,MinLevel=0,SellPrice=20000,Texture=134939,Link="|cffffffff|Hitem:19207::::::::40:::::::|h[Plans: Dark Iron Gauntlets]|h|r",EquipLoc="",Type="Recipe"},["Battleforge Girdle"]={SubType="Mail",Level=28,id=6594,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1120,Texture=132500,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:6594::::::::40:::::::|h[Battleforge Girdle]|h|r"},["Skullplate Bracers"]={SubType="Plate",Level=42,id=9432,StackCount=1,Rarity=3,MinLevel=40,SellPrice=3027,Texture=132613,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:9432::::::::40:::::::|h[Skullplate Bracers]|h|r"},["Bent Large Shield"]={SubType="Shields",Level=4,id=2211,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7,Texture=134955,Link="|cff9d9d9d|Hitem:2211::::::::40:::::::|h[Bent Large Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Tyrant's Legplates"]={SubType="Plate",Level=47,id=14840,StackCount=1,Rarity=2,MinLevel=42,SellPrice=7925,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14840::::::::40:::::::|h[Tyrant's Legplates]|h|r"},["Priest's Mace"]={SubType="One-Handed Maces",Level=12,id=2075,StackCount=1,Rarity=2,MinLevel=7,SellPrice=386,Texture=133481,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:2075::::::::40:::::::|h[Priest's Mace]|h|r"},["Grasp of the Old God"]={SubType="Cloth",Level=88,id=21582,StackCount=1,Rarity=4,MinLevel=60,SellPrice=51078,Texture=132520,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:21582::::::::40:::::::|h[Grasp of the Old God]|h|r"},["Opulent Mantle"]={SubType="Cloth",Level=50,id=14278,StackCount=1,Rarity=2,MinLevel=45,SellPrice=6725,Texture=135056,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14278::::::::40:::::::|h[Opulent Mantle]|h|r"},["Strong Troll's Blood Potion"]={SubType="Consumable",Level=25,id=3388,StackCount=5,Rarity=1,MinLevel=15,SellPrice=40,Texture=134858,EquipLoc="",Link="|cffffffff|Hitem:3388::::::::40:::::::|h[Strong Troll's Blood Potion]|h|r",Type="Consumable"},["War Torn Girdle"]={SubType="Mail",Level=13,id=15480,StackCount=1,Rarity=1,MinLevel=8,SellPrice=84,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:15480::::::::40:::::::|h[War Torn Girdle]|h|r",Type="Armor"},["Bounty of the Harvest"]={SubType="Miscellaneous",Level=1,id=19697,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134229,Link="|cffffffff|Hitem:19697::::::::40:::::::|h[Bounty of the Harvest]|h|r",EquipLoc="",Type="Armor"},["Gnomish Mind Control Cap"]={SubType="Cloth",Level=47,id=10726,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5520,Texture=133151,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10726::::::::40:::::::|h[Gnomish Mind Control Cap]|h|r",Type="Armor"},["Tharil'zun's Head"]={SubType="Quest",Level=1,id=1260,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,EquipLoc="",Link="|cffffffff|Hitem:1260::::::::40:::::::|h[Tharil'zun's Head]|h|r",Type="Quest"},["Grell Earring"]={SubType="Quest",Level=1,id=5336,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133348,EquipLoc="",Link="|cffffffff|Hitem:5336::::::::40:::::::|h[Grell Earring]|h|r",Type="Quest"},["Star of Xil'yeh"]={SubType="Quest",Level=1,id=4646,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134095,Link="|cffffffff|Hitem:4646::::::::40:::::::|h[Star of Xil'yeh]|h|r",EquipLoc="",Type="Quest"},["Belt of Faith"]={SubType="Cloth",Level=88,id=22518,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50917,Texture=132497,Link="|cffa335ee|Hitem:22518::::::::40:::::::|h[Belt of Faith]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Zandalarian Hero Badge"]={SubType="Miscellaneous",Level=68,id=19948,StackCount=1,Rarity=4,MinLevel=0,SellPrice=111303,Texture=133300,Link="|cffa335ee|Hitem:19948::::::::40:::::::|h[Zandalarian Hero Badge]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Chromite Girdle"]={SubType="Plate",Level=43,id=8140,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2837,Texture=132503,Link="|cff1eff00|Hitem:8140::::::::40:::::::|h[Chromite Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Harvest Fruit"]={SubType="Consumable",Level=55,id=19994,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133997,Link="|cffffffff|Hitem:19994::::::::40:::::::|h[Harvest Fruit]|h|r",EquipLoc="",Type="Consumable"},["Dull Kodo Tooth"]={SubType="Junk",Level=1,id=4779,StackCount=10,Rarity=0,MinLevel=0,SellPrice=13,Texture=135240,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:4779::::::::40:::::::|h[Dull Kodo Tooth]|h|r"},["Interlaced Pants"]={SubType="Cloth",Level=39,id=3797,StackCount=1,Rarity=0,MinLevel=34,SellPrice=1692,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:3797::::::::40:::::::|h[Interlaced Pants]|h|r"},["Pattern: Black Dragonscale Shoulders"]={SubType="Leatherworking",Level=60,id=15770,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7500,Texture=134939,EquipLoc="",Link="|cff0070dd|Hitem:15770::::::::40:::::::|h[Pattern: Black Dragonscale Shoulders]|h|r",Type="Recipe"},["Flameguard Gauntlets"]={SubType="Plate",Level=69,id=19143,StackCount=1,Rarity=4,MinLevel=60,SellPrice=21283,Texture=132960,Link="|cffa335ee|Hitem:19143::::::::40:::::::|h[Flameguard Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Leggings of the Black Blizzard"]={SubType="Cloth",Level=72,id=21461,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45403,Texture=134600,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:21461::::::::40:::::::|h[Leggings of the Black Blizzard]|h|r"},["Monster - Sword2H, Horde Massive Green"]={SubType="Two-Handed Swords",Level=1,id=12331,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12331::::::::40:::::::|h[Monster - Sword2H, Horde Massive Green]|h|r"},["Omega Orb"]={SubType="Miscellaneous",Level=41,id=7749,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4885,Texture=134335,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:7749::::::::40:::::::|h[Omega Orb]|h|r",Type="Armor"},["Wyvern Tailspike"]={SubType="Daggers",Level=26,id=5752,StackCount=1,Rarity=2,MinLevel=21,SellPrice=3109,Texture=135652,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:5752::::::::40:::::::|h[Wyvern Tailspike]|h|r",Type="Weapon"},["Twilight Lexicon - Chapter 2"]={SubType="Quest",Level=0,id=20395,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133733,Link="|cffffffff|Hitem:20395::::::::40:::::::|h[Twilight Lexicon - Chapter 2]|h|r",EquipLoc="",Type="Quest"},["Skystriker Bow"]={SubType="Bows",Level=39,id=13020,StackCount=1,Rarity=3,MinLevel=34,SellPrice=8985,Texture=135499,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff0070dd|Hitem:13020::::::::40:::::::|h[Skystriker Bow]|h|r"},["Templar Legplates"]={SubType="Plate",Level=57,id=10169,StackCount=1,Rarity=2,MinLevel=52,SellPrice=14230,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10169::::::::40:::::::|h[Templar Legplates]|h|r",Type="Armor"},["Grimoire of Curse of Archimonde"]={SubType="Book",Level=30,id=4207,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:4207::::::::40:::::::|h[Grimoire of Curse of Archimonde]|h|r",Type="Recipe"},["Ironfoe"]={SubType="One-Handed Maces",Level=60,id=11684,StackCount=1,Rarity=4,MinLevel=55,SellPrice=63086,Texture=135847,Type="Weapon",Link="|cffa335ee|Hitem:11684::::::::40:::::::|h[Ironfoe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Deprecated Book of Cyclone II"]={SubType="Book",Level=34,id=5157,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3000,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:5157::::::::40:::::::|h[Deprecated Book of Cyclone II]|h|r",Type="Recipe"},["Deadman Blade"]={SubType="One-Handed Swords",Level=3,id=3295,StackCount=1,Rarity=1,MinLevel=1,SellPrice=10,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:3295::::::::40:::::::|h[Deadman Blade]|h|r"},["Bonefist Gauntlets"]={SubType="Mail",Level=32,id=4465,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1585,Texture=132943,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:4465::::::::40:::::::|h[Bonefist Gauntlets]|h|r",Type="Armor"},["Lovingly Crafted Boomstick"]={SubType="Guns",Level=24,id=4372,StackCount=1,Rarity=2,MinLevel=19,SellPrice=1800,Texture=135616,Type="Weapon",Link="|cff1eff00|Hitem:4372::::::::40:::::::|h[Lovingly Crafted Boomstick]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Wanderer's Gloves"]={SubType="Leather",Level=55,id=10110,StackCount=1,Rarity=2,MinLevel=50,SellPrice=7947,Texture=132958,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10110::::::::40:::::::|h[Wanderer's Gloves]|h|r",Type="Armor"},["Brann's Trusty Pick"]={SubType="One-Handed Axes",Level=62,id=20723,StackCount=1,Rarity=2,MinLevel=0,SellPrice=46934,Texture=134709,Link="|cff1eff00|Hitem:20723::::::::40:::::::|h[Brann's Trusty Pick]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Mechanical Squirrel Box"]={SubType="Devices",Level=15,id=4401,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=132761,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4401::::::::40:::::::|h[Mechanical Squirrel Box]|h|r"},["Monster - Staff, Feathered Invert"]={SubType="Staves",Level=1,id=13338,StackCount=1,Rarity=0,MinLevel=0,SellPrice=2,Texture=135225,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13338::::::::40:::::::|h[Monster - Staff, Feathered Invert]|h|r"},["Reins of the Swift Frostsaber"]={SubType="Junk",Level=60,id=18766,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132267,Type="Miscellaneous",Link="|cffa335ee|Hitem:18766::::::::40:::::::|h[Reins of the Swift Frostsaber]|h|r",EquipLoc=""},["Intact Elemental Core"]={SubType="Quest",Level=1,id=11269,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=135231,Type="Quest",Link="|cffffffff|Hitem:11269::::::::40:::::::|h[Intact Elemental Core]|h|r",EquipLoc=""},["QAEnchant 2H Weapon +9 Damage"]={SubType="Consumable",Level=1,id=17887,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17887::::::::40:::::::|h[QAEnchant 2H Weapon +9 Damage]|h|r",Type="Consumable"},["Malgen's Long Bow"]={SubType="Bows",Level=61,id=22318,StackCount=1,Rarity=3,MinLevel=56,SellPrice=37362,Texture=135500,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff0070dd|Hitem:22318::::::::40:::::::|h[Malgen's Long Bow]|h|r"},["Starsight Tunic"]={SubType="Leather",Level=22,id=12988,StackCount=1,Rarity=3,MinLevel=17,SellPrice=1137,Texture=132725,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:12988::::::::40:::::::|h[Starsight Tunic]|h|r"},["Formula: Enchant Weapon - Icy Chill"]={SubType="Enchanting",Level=57,id=16223,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16223::::::::40:::::::|h[Formula: Enchant Weapon - Icy Chill]|h|r",Type="Recipe"},["Warleader's Bracers"]={SubType="Plate",Level=58,id=14869,StackCount=1,Rarity=2,MinLevel=53,SellPrice=7577,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14869::::::::40:::::::|h[Warleader's Bracers]|h|r"},["Counterattack Lodestone"]={SubType="Miscellaneous",Level=63,id=18537,StackCount=1,Rarity=3,MinLevel=58,SellPrice=66135,Texture=135228,Type="Armor",Link="|cff0070dd|Hitem:18537::::::::40:::::::|h[Counterattack Lodestone]|h|r",EquipLoc="INVTYPE_TRINKET"},["Flash Pellet"]={SubType="Bullet",Level=7,id=4960,StackCount=200,Rarity=1,MinLevel=0,SellPrice=12,Texture=132384,Type="Projectile",EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:4960::::::::40:::::::|h[Flash Pellet]|h|r"},["Engineer's Cloak"]={SubType="Cloth",Level=27,id=6667,StackCount=1,Rarity=2,MinLevel=0,SellPrice=992,Texture=133765,Link="|cff1eff00|Hitem:6667::::::::40:::::::|h[Engineer's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Symbolic Crown"]={SubType="Plate",Level=43,id=14831,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4120,Texture=132768,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14831::::::::40:::::::|h[Symbolic Crown]|h|r"},["Zircon Band"]={SubType="Miscellaneous",Level=23,id=11967,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1087,Texture=133349,Type="Armor",Link="|cff1eff00|Hitem:11967::::::::40:::::::|h[Zircon Band]|h|r",EquipLoc="INVTYPE_FINGER"},["OLDMonster - Mace, Standard Basic Offhand"]={SubType="One-Handed Maces",Level=1,id=3044,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133476,Type="Weapon",Link="|cff9d9d9d|Hitem:3044::::::::40:::::::|h[OLDMonster - Mace, Standard Basic Offhand]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND"},["Razor Blade"]={SubType="Daggers",Level=42,id=15244,StackCount=1,Rarity=2,MinLevel=37,SellPrice=12769,Texture=135637,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15244::::::::40:::::::|h[Razor Blade]|h|r",Type="Weapon"},["Bouquet of Red Roses"]={SubType="Miscellaneous",Level=1,id=22206,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134927,Link="|cff1eff00|Hitem:22206::::::::40:::::::|h[Bouquet of Red Roses]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Gift of Arthas"]={SubType="Consumable",Level=48,id=9088,StackCount=5,Rarity=1,MinLevel=38,SellPrice=250,Texture=134808,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9088::::::::40:::::::|h[Gift of Arthas]|h|r"},["Emerald Peak Spaulders"]={SubType="Plate",Level=48,id=19037,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5877,Texture=135057,Link="|cff1eff00|Hitem:19037::::::::40:::::::|h[Emerald Peak Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Wand of Qiraji Nobility"]={SubType="Wands",Level=78,id=21603,StackCount=1,Rarity=4,MinLevel=60,SellPrice=121194,Texture=135468,Link="|cffa335ee|Hitem:21603::::::::40:::::::|h[Wand of Qiraji Nobility]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Pristine Tigress Fang"]={SubType="Quest",Level=1,id=3839,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133725,Type="Quest",Link="|cffffffff|Hitem:3839::::::::40:::::::|h[Pristine Tigress Fang]|h|r",EquipLoc=""},["Studded Gloves"]={SubType="Leather",Level=37,id=2469,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1266,Texture=132959,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2469::::::::40:::::::|h[Studded Gloves]|h|r",Type="Armor"},["Deprecated Light Blunderbuss"]={SubType="Guns",Level=1,id=1046,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=134537,Type="Weapon",Link="|cffffffff|Hitem:1046::::::::40:::::::|h[Deprecated Light Blunderbuss]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Stormwind Guard Shield"]={SubType="Shields",Level=24,id=7188,StackCount=1,Rarity=2,MinLevel=19,SellPrice=1485,Texture=134950,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:7188::::::::40:::::::|h[Stormwind Guard Shield]|h|r",Type="Armor"},["Felcloth"]={SubType="Trade Goods",Level=50,id=14256,StackCount=20,Rarity=1,MinLevel=0,SellPrice=2000,Texture=132888,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:14256::::::::40:::::::|h[Felcloth]|h|r"},["Ghostwalker Crown"]={SubType="Leather",Level=39,id=15146,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3730,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15146::::::::40:::::::|h[Ghostwalker Crown]|h|r",Type="Armor"},["Techbot's Memory Core"]={SubType="Quest",Level=1,id=9277,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132488,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9277::::::::40:::::::|h[Techbot's Memory Core]|h|r"},["Bloodsoul Shoulders"]={SubType="Mail",Level=65,id=19691,StackCount=1,Rarity=3,MinLevel=60,SellPrice=30000,Texture=135046,Link="|cff0070dd|Hitem:19691::::::::40:::::::|h[Bloodsoul Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Stone of Kurtz"]={SubType="Miscellaneous",Level=1,id=6711,StackCount=1,Rarity=6,MinLevel=1,SellPrice=837,Texture=133346,Type="Armor",Link="|cffe6cc80|Hitem:6711::::::::40:::::::|h[Stone of Kurtz]|h|r",EquipLoc="INVTYPE_FINGER"},["Zephyr Cloak"]={SubType="Cloth",Level=61,id=18677,StackCount=1,Rarity=2,MinLevel=56,SellPrice=12487,Texture=133765,Type="Armor",Link="|cff1eff00|Hitem:18677::::::::40:::::::|h[Zephyr Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Jungle Boots"]={SubType="Plate",Level=40,id=17688,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3155,Texture=132582,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:17688::::::::40:::::::|h[Jungle Boots]|h|r",Type="Armor"},["Red Moro'gai Gem"]={SubType="Quest",Level=1,id=18153,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133367,Type="Quest",Link="|cff1eff00|Hitem:18153::::::::40:::::::|h[Red Moro'gai Gem]|h|r",EquipLoc=""},["Formula: Enchant Bracer - Minor Spirit"]={SubType="Enchanting",Level=17,id=6344,StackCount=1,Rarity=2,MinLevel=0,SellPrice=100,Texture=134327,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:6344::::::::40:::::::|h[Formula: Enchant Bracer - Minor Spirit]|h|r"},["Digging Claw"]={SubType="Quest",Level=1,id=5059,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132938,EquipLoc="",Link="|cffffffff|Hitem:5059::::::::40:::::::|h[Digging Claw]|h|r",Type="Quest"},["Deprecated Replenishing Font"]={SubType="Miscellaneous",Level=40,id=2478,StackCount=1,Rarity=1,MinLevel=35,SellPrice=1527,Texture=134712,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:2478::::::::40:::::::|h[Deprecated Replenishing Font]|h|r",Type="Armor"},["Glyphed Cloak"]={SubType="Cloth",Level=37,id=4732,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2632,Texture=132655,Type="Armor",Link="|cff1eff00|Hitem:4732::::::::40:::::::|h[Glyphed Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Slime-encrusted Pads"]={SubType="Cloth",Level=27,id=6461,StackCount=1,Rarity=3,MinLevel=22,SellPrice=1190,Texture=135036,Link="|cff0070dd|Hitem:6461::::::::40:::::::|h[Slime-encrusted Pads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Feralsurge Girdle"]={SubType="Mail",Level=63,id=18104,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17285,Texture=132492,Type="Armor",Link="|cff0070dd|Hitem:18104::::::::40:::::::|h[Feralsurge Girdle]|h|r",EquipLoc="INVTYPE_WAIST"},["Tender Wolf Steak"]={SubType="Consumable",Level=45,id=18045,StackCount=20,Rarity=1,MinLevel=40,SellPrice=300,Texture=134003,Type="Consumable",Link="|cffffffff|Hitem:18045::::::::40:::::::|h[Tender Wolf Steak]|h|r",EquipLoc=""},["Powerful Mojo"]={SubType="Trade Goods",Level=55,id=12804,StackCount=20,Rarity=1,MinLevel=0,SellPrice=2000,Texture=136011,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12804::::::::40:::::::|h[Powerful Mojo]|h|r"},["Pattern: Barbaric Leggings"]={SubType="Leatherworking",Level=34,id=5973,StackCount=1,Rarity=1,MinLevel=0,SellPrice=162,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:5973::::::::40:::::::|h[Pattern: Barbaric Leggings]|h|r",Type="Recipe"},["Lionfur Armor"]={SubType="Leather",Level=10,id=17922,StackCount=1,Rarity=2,MinLevel=5,SellPrice=115,Texture=132715,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:17922::::::::40:::::::|h[Lionfur Armor]|h|r",Type="Armor"},["Sanguine Pauldrons"]={SubType="Mail",Level=40,id=6792,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4738,Texture=135060,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:6792::::::::40:::::::|h[Sanguine Pauldrons]|h|r"},["Harnessing Shadows"]={SubType="Junk",Level=60,id=18360,StackCount=1,Rarity=3,MinLevel=54,SellPrice=0,Texture=133737,Type="Miscellaneous",Link="|cff0070dd|Hitem:18360::::::::40:::::::|h[Harnessing Shadows]|h|r",EquipLoc=""},["Cured Medium Hide"]={SubType="Trade Goods",Level=20,id=4233,StackCount=20,Rarity=1,MinLevel=0,SellPrice=200,Texture=134354,Type="Trade Goods",Link="|cffffffff|Hitem:4233::::::::40:::::::|h[Cured Medium Hide]|h|r",EquipLoc=""},["Dusksteel Throwing Knife"]={SubType="Thrown",Level=52,id=20086,StackCount=200,Rarity=2,MinLevel=0,SellPrice=1,Texture=135427,Link="|cff1eff00|Hitem:20086::::::::40:::::::|h[Dusksteel Throwing Knife]|h|r",EquipLoc="INVTYPE_THROWN",Type="Weapon"},["Hailstone Band"]={SubType="Miscellaneous",Level=83,id=23028,StackCount=1,Rarity=4,MinLevel=60,SellPrice=98660,Texture=133377,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:23028::::::::40:::::::|h[Hailstone Band]|h|r"},["Jouster's Wristguards"]={SubType="Plate",Level=40,id=8156,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2219,Texture=132606,Link="|cff1eff00|Hitem:8156::::::::40:::::::|h[Jouster's Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Tomb Dust"]={SubType="Reagent",Level=30,id=5529,StackCount=20,Rarity=0,MinLevel=0,SellPrice=125,Texture=133849,Type="Reagent",EquipLoc="",Link="|cff9d9d9d|Hitem:5529::::::::40:::::::|h[Tomb Dust]|h|r"},["Highlander's Mageweave Bandage"]={SubType="Consumable",Level=45,id=20237,StackCount=20,Rarity=1,MinLevel=35,SellPrice=75,Texture=133690,Link="|cffffffff|Hitem:20237::::::::40:::::::|h[Highlander's Mageweave Bandage]|h|r",EquipLoc="",Type="Consumable"},["Volcanic Rock Ring"]={SubType="Miscellaneous",Level=21,id=12053,StackCount=1,Rarity=2,MinLevel=16,SellPrice=837,Texture=133343,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12053::::::::40:::::::|h[Volcanic Rock Ring]|h|r"},["Test AQ Resource - Light Leather"]={SubType="Junk",Level=1,id=21631,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21631::::::::40:::::::|h[Test AQ Resource - Light Leather]|h|r",EquipLoc="",Type="Miscellaneous"},["Grime-Encrusted Ring"]={SubType="Quest",Level=28,id=9326,StackCount=1,Rarity=1,MinLevel=28,SellPrice=0,Texture=135230,Link="|cffffffff|Hitem:9326::::::::40:::::::|h[Grime-Encrusted Ring]|h|r",EquipLoc="",Type="Quest"},["Monster - Sword, Horde Sword Red"]={SubType="One-Handed Swords",Level=1,id=10615,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:10615::::::::40:::::::|h[Monster - Sword, Horde Sword Red]|h|r",Type="Weapon"},["Shredder Operating Manual - Page 1"]={SubType="Junk",Level=1,id=16645,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:16645::::::::40:::::::|h[Shredder Operating Manual - Page 1]|h|r",Type="Miscellaneous"},["Redbeard Crest"]={SubType="Shields",Level=24,id=12997,StackCount=1,Rarity=3,MinLevel=19,SellPrice=1920,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:12997::::::::40:::::::|h[Redbeard Crest]|h|r"},["Green Iron Leggings"]={SubType="Mail",Level=31,id=3842,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2906,Texture=134585,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:3842::::::::40:::::::|h[Green Iron Leggings]|h|r",Type="Armor"},["Codex of Flash Heal III"]={SubType="Book",Level=32,id=8978,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8978::::::::40:::::::|h[Codex of Flash Heal III]|h|r"},["Sturdy Male Undead Mask"]={SubType="Miscellaneous",Level=45,id=20598,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4649,Texture=134179,Link="|cff1eff00|Hitem:20598::::::::40:::::::|h[Sturdy Male Undead Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Righteous Leggings"]={SubType="Leather",Level=53,id=10074,StackCount=1,Rarity=2,MinLevel=48,SellPrice=13985,Texture=134591,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10074::::::::40:::::::|h[Righteous Leggings]|h|r",Type="Armor"},["Imperial Leather Boots"]={SubType="Leather",Level=43,id=6431,StackCount=1,Rarity=2,MinLevel=38,SellPrice=5436,Texture=132535,Type="Armor",Link="|cff1eff00|Hitem:6431::::::::40:::::::|h[Imperial Leather Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Hammertoe's Amulet"]={SubType="Quest",Level=1,id=4635,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133278,EquipLoc="",Link="|cffffffff|Hitem:4635::::::::40:::::::|h[Hammertoe's Amulet]|h|r",Type="Quest"},["Elegant Belt"]={SubType="Cloth",Level=58,id=10216,StackCount=1,Rarity=2,MinLevel=53,SellPrice=7180,Texture=132518,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10216::::::::40:::::::|h[Elegant Belt]|h|r",Type="Armor"},["Red Wolf Meat"]={SubType="Trade Goods",Level=30,id=12203,StackCount=10,Rarity=1,MinLevel=0,SellPrice=87,Texture=134027,Link="|cffffffff|Hitem:12203::::::::40:::::::|h[Red Wolf Meat]|h|r",EquipLoc="",Type="Trade Goods"},["Core of Elements"]={SubType="Junk",Level=1,id=22527,StackCount=250,Rarity=1,MinLevel=0,SellPrice=0,Texture=134139,Link="|cffffffff|Hitem:22527::::::::40:::::::|h[Core of Elements]|h|r",EquipLoc="",Type="Miscellaneous"},["Infantry Boots"]={SubType="Mail",Level=11,id=6506,StackCount=1,Rarity=1,MinLevel=6,SellPrice=87,Texture=132582,Type="Armor",Link="|cffffffff|Hitem:6506::::::::40:::::::|h[Infantry Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Grimoire of Siphon Mana"]={SubType="Book",Level=26,id=1239,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1239::::::::40:::::::|h[Grimoire of Siphon Mana]|h|r"},["Monster - Staff, Ornate Jeweled Staff - Blue High Blue Glow"]={SubType="Staves",Level=1,id=18122,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",Link="|cff9d9d9d|Hitem:18122::::::::40:::::::|h[Monster - Staff, Ornate Jeweled Staff - Blue High Blue Glow]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Vanguard Pauldrons"]={SubType="Plate",Level=56,id=14860,StackCount=1,Rarity=2,MinLevel=51,SellPrice=10523,Texture=135058,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14860::::::::40:::::::|h[Vanguard Pauldrons]|h|r"},["Cerebral Cortex Compound"]={SubType="Consumable",Level=1,id=8423,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134812,Link="|cffffffff|Hitem:8423::::::::40:::::::|h[Cerebral Cortex Compound]|h|r",EquipLoc="",Type="Consumable"},["Mark of Cenarius"]={SubType="Quest",Level=1,id=21508,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=133299,Link="|cff1eff00|Hitem:21508::::::::40:::::::|h[Mark of Cenarius]|h|r",EquipLoc="",Type="Quest"},["Stonecloth Circlet"]={SubType="Cloth",Level=38,id=14410,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2709,Texture=132515,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14410::::::::40:::::::|h[Stonecloth Circlet]|h|r"},["Champion's Silk Shoulderpads"]={SubType="Cloth",Level=63,id=16492,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8962,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16492::::::::40:::::::|h[Champion's Silk Shoulderpads]|h|r",Type="Armor"},["Rusted Engineering Parts"]={SubType="Junk",Level=1,id=6457,StackCount=5,Rarity=0,MinLevel=0,SellPrice=4,Texture=134064,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:6457::::::::40:::::::|h[Rusted Engineering Parts]|h|r",EquipLoc=""},["Bindings of Elements"]={SubType="Mail",Level=57,id=16671,StackCount=1,Rarity=3,MinLevel=52,SellPrice=12586,Texture=132601,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16671::::::::40:::::::|h[Bindings of Elements]|h|r",Type="Armor"},["Pattern: Runic Leather Belt"]={SubType="Leatherworking",Level=56,id=15745,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15745::::::::40:::::::|h[Pattern: Runic Leather Belt]|h|r",Type="Recipe"},["Seed Voucher"]={SubType="Quest",Level=1,id=11103,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Type="Quest",Link="|cffffffff|Hitem:11103::::::::40:::::::|h[Seed Voucher]|h|r",EquipLoc=""},["Marshal's Dragonhide Legguards"]={SubType="Leather",Level=71,id=16450,StackCount=1,Rarity=4,MinLevel=60,SellPrice=28472,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16450::::::::40:::::::|h[Marshal's Dragonhide Legguards]|h|r",Type="Armor"},["Runic Stone Shoulders"]={SubType="Mail",Level=72,id=21454,StackCount=1,Rarity=4,MinLevel=60,SellPrice=53878,Texture=135049,Link="|cffa335ee|Hitem:21454::::::::40:::::::|h[Runic Stone Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Shadowmaw Claw"]={SubType="Quest",Level=1,id=3838,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,EquipLoc="",Link="|cffffffff|Hitem:3838::::::::40:::::::|h[Shadowmaw Claw]|h|r",Type="Quest"},["Dwarf Spine"]={SubType="Quest",Level=0,id=18206,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=133720,Type="Quest",Link="|cffffffff|Hitem:18206::::::::40:::::::|h[Dwarf Spine]|h|r",EquipLoc=""},["[PH] Valentine Quest Item, UncommonIronforge"]={SubType="Consumable",Level=1,id=21963,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134121,Link="|cffffffff|Hitem:21963::::::::40:::::::|h[[PH] Valentine Quest Item, UncommonIronforge]|h|r",EquipLoc="",Type="Consumable"},["Head of the Broodlord Lashlayer"]={SubType="Quest",Level=1,id=20383,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=136140,Link="|cffa335ee|Hitem:20383::::::::40:::::::|h[Head of the Broodlord Lashlayer]|h|r",EquipLoc="",Type="Quest"},["Brackwater Girdle"]={SubType="Mail",Level=14,id=4681,StackCount=1,Rarity=1,MinLevel=9,SellPrice=109,Texture=132514,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:4681::::::::40:::::::|h[Brackwater Girdle]|h|r",Type="Armor"},["Golem Skull Helm"]={SubType="Plate",Level=56,id=11746,StackCount=1,Rarity=3,MinLevel=51,SellPrice=11861,Texture=133125,Type="Armor",Link="|cff0070dd|Hitem:11746::::::::40:::::::|h[Golem Skull Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Formula: Enchant Gloves - Advanced Herbalism"]={SubType="Enchanting",Level=45,id=11205,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11205::::::::40:::::::|h[Formula: Enchant Gloves - Advanced Herbalism]|h|r",EquipLoc=""},["Cuirboulli Vest"]={SubType="Leather",Level=27,id=2141,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1044,Texture=132724,Type="Armor",Link="|cffffffff|Hitem:2141::::::::40:::::::|h[Cuirboulli Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Healing Potion"]={SubType="Consumable",Level=22,id=929,StackCount=5,Rarity=1,MinLevel=12,SellPrice=75,Texture=134831,EquipLoc="",Link="|cffffffff|Hitem:929::::::::40:::::::|h[Healing Potion]|h|r",Type="Consumable"},["Black Widow Band"]={SubType="Miscellaneous",Level=24,id=6199,StackCount=1,Rarity=2,MinLevel=19,SellPrice=650,Texture=134321,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:6199::::::::40:::::::|h[Black Widow Band]|h|r"},["Patchwork Bracers"]={SubType="Cloth",Level=9,id=3373,StackCount=1,Rarity=0,MinLevel=4,SellPrice=14,Texture=132606,Type="Armor",Link="|cff9d9d9d|Hitem:3373::::::::40:::::::|h[Patchwork Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Formula: Enchant Shield - Greater Stamina"]={SubType="Enchanting",Level=53,id=16217,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134327,EquipLoc="",Link="|cffffffff|Hitem:16217::::::::40:::::::|h[Formula: Enchant Shield - Greater Stamina]|h|r",Type="Recipe"},["Boots of Ferocity"]={SubType="Leather",Level=61,id=22472,StackCount=1,Rarity=3,MinLevel=56,SellPrice=20193,Texture=132542,Link="|cff0070dd|Hitem:22472::::::::40:::::::|h[Boots of Ferocity]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Moldy Tome"]={SubType="Quest",Level=1,id=6931,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133740,Link="|cffffffff|Hitem:6931::::::::40:::::::|h[Moldy Tome]|h|r",EquipLoc="",Type="Quest"},["QAEnchant Cloak +70 Armor"]={SubType="Consumable",Level=1,id=17885,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17885::::::::40:::::::|h[QAEnchant Cloak +70 Armor]|h|r",Type="Consumable"},["Unmarred Vision of Voodress"]={SubType="Miscellaneous",Level=65,id=19609,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=133313,Link="|cffa335ee|Hitem:19609::::::::40:::::::|h[Unmarred Vision of Voodress]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Flask of the Titans"]={SubType="Consumable",Level=60,id=13510,StackCount=5,Rarity=1,MinLevel=50,SellPrice=5000,Texture=134842,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13510::::::::40:::::::|h[Flask of the Titans]|h|r"},["Deprecated Frayed Shoulderpads"]={SubType="Cloth",Level=3,id=1379,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135037,Type="Armor",Link="|cff9d9d9d|Hitem:1379::::::::40:::::::|h[Deprecated Frayed Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER"},["A Thoroughly Read Copy of \"Nat Pagle's Extreme' Anglin.\""]={SubType="Junk",Level=1,id=18365,StackCount=1,Rarity=0,MinLevel=0,SellPrice=0,Texture=133735,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18365::::::::40:::::::|h[A Thoroughly Read Copy of \"Nat Pagle's Extreme' Anglin.\"]|h|r",EquipLoc=""},["Empty Hip Flask"]={SubType="Junk",Level=1,id=5431,StackCount=5,Rarity=0,MinLevel=0,SellPrice=155,Texture=132788,Link="|cff9d9d9d|Hitem:5431::::::::40:::::::|h[Empty Hip Flask]|h|r",EquipLoc="",Type="Miscellaneous"},["Bloodspattered Sash"]={SubType="Mail",Level=15,id=15492,StackCount=1,Rarity=2,MinLevel=10,SellPrice=212,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15492::::::::40:::::::|h[Bloodspattered Sash]|h|r",Type="Armor"},["Defiler's Enriched Ration"]={SubType="Consumable",Level=55,id=20222,StackCount=20,Rarity=1,MinLevel=45,SellPrice=100,Texture=133989,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20222::::::::40:::::::|h[Defiler's Enriched Ration]|h|r"},["Wristguards of Stability"]={SubType="Leather",Level=65,id=19146,StackCount=1,Rarity=4,MinLevel=60,SellPrice=20183,Texture=132603,Link="|cffa335ee|Hitem:19146::::::::40:::::::|h[Wristguards of Stability]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Raw Sunscale Salmon"]={SubType="Consumable",Level=45,id=13760,StackCount=20,Rarity=1,MinLevel=35,SellPrice=10,Texture=133905,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13760::::::::40:::::::|h[Raw Sunscale Salmon]|h|r"},["Runed Silver Rod"]={SubType="Trade Goods",Level=20,id=6339,StackCount=1,Rarity=1,MinLevel=1,SellPrice=24,Texture=135138,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:6339::::::::40:::::::|h[Runed Silver Rod]|h|r"},["Silksand Girdle"]={SubType="Cloth",Level=39,id=14426,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2125,Texture=132495,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14426::::::::40:::::::|h[Silksand Girdle]|h|r"},["Alterac Swiss"]={SubType="Consumable",Level=55,id=8932,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=133993,Link="|cffffffff|Hitem:8932::::::::40:::::::|h[Alterac Swiss]|h|r",EquipLoc="",Type="Consumable"},["Book of Wrath III"]={SubType="Book",Level=14,id=5149,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133743,Link="|cffffffff|Hitem:5149::::::::40:::::::|h[Book of Wrath III]|h|r",EquipLoc="",Type="Recipe"},["Ukko's Ring of Darkness"]={SubType="Miscellaneous",Level=76,id=21687,StackCount=1,Rarity=4,MinLevel=60,SellPrice=102995,Texture=133366,Link="|cffa335ee|Hitem:21687::::::::40:::::::|h[Ukko's Ring of Darkness]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Burning Wand"]={SubType="Wands",Level=25,id=5210,StackCount=1,Rarity=1,MinLevel=20,SellPrice=1161,Texture=135139,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:5210::::::::40:::::::|h[Burning Wand]|h|r",Type="Weapon"},["Heavy Scorpid Scale"]={SubType="Junk",Level=55,id=15408,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134305,EquipLoc="",Link="|cffffffff|Hitem:15408::::::::40:::::::|h[Heavy Scorpid Scale]|h|r",Type="Miscellaneous"},["Maury's Clubbed Foot"]={SubType="Quest",Level=1,id=3924,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133476,Link="|cffffffff|Hitem:3924::::::::40:::::::|h[Maury's Clubbed Foot]|h|r",EquipLoc="",Type="Quest"},["Bloodspattered Shield"]={SubType="Shields",Level=18,id=15494,StackCount=1,Rarity=2,MinLevel=13,SellPrice=693,Texture=134960,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15494::::::::40:::::::|h[Bloodspattered Shield]|h|r",Type="Armor"},["Four of Beasts"]={SubType="Junk",Level=1,id=19232,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134482,Link="|cff0070dd|Hitem:19232::::::::40:::::::|h[Four of Beasts]|h|r",EquipLoc="",Type="Miscellaneous"},["Light Armor Kit"]={SubType="Consumable",Level=5,id=2304,StackCount=10,Rarity=1,MinLevel=1,SellPrice=15,Texture=133611,Link="|cffffffff|Hitem:2304::::::::40:::::::|h[Light Armor Kit]|h|r",EquipLoc="",Type="Consumable"},["Grimoire of Sacrifice (Rank 4)"]={SubType="Book",Level=40,id=16354,StackCount=1,Rarity=1,MinLevel=40,SellPrice=2750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16354::::::::40:::::::|h[Grimoire of Sacrifice (Rank 4)]|h|r",Type="Recipe"},["Dark Iron Bar"]={SubType="Trade Goods",Level=50,id=11371,StackCount=20,Rarity=1,MinLevel=0,SellPrice=600,Texture=133233,Type="Trade Goods",Link="|cffffffff|Hitem:11371::::::::40:::::::|h[Dark Iron Bar]|h|r",EquipLoc=""},["Dark Iron Gauntlets"]={SubType="Plate",Level=70,id=19164,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22425,Texture=132956,Link="|cffa335ee|Hitem:19164::::::::40:::::::|h[Dark Iron Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Ghostwalker Buckler"]={SubType="Shields",Level=36,id=15145,StackCount=1,Rarity=2,MinLevel=31,SellPrice=4943,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15145::::::::40:::::::|h[Ghostwalker Buckler]|h|r",Type="Armor"},["Fine Scimitar"]={SubType="One-Handed Swords",Level=6,id=4560,StackCount=1,Rarity=1,MinLevel=1,SellPrice=37,Texture=135325,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:4560::::::::40:::::::|h[Fine Scimitar]|h|r",Type="Weapon"},["Sharp Canine"]={SubType="Junk",Level=1,id=3301,StackCount=10,Rarity=0,MinLevel=0,SellPrice=102,Texture=133725,EquipLoc="",Link="|cff9d9d9d|Hitem:3301::::::::40:::::::|h[Sharp Canine]|h|r",Type="Miscellaneous"},["Cindercloth Boots"]={SubType="Cloth",Level=49,id=10044,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6765,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10044::::::::40:::::::|h[Cindercloth Boots]|h|r",Type="Armor"},["Simple Dagger"]={SubType="Daggers",Level=6,id=4565,StackCount=1,Rarity=1,MinLevel=1,SellPrice=38,Texture=135637,Type="Weapon",Link="|cffffffff|Hitem:4565::::::::40:::::::|h[Simple Dagger]|h|r",EquipLoc="INVTYPE_WEAPON"},["Glyphed Leggings"]={SubType="Leather",Level=40,id=4060,StackCount=1,Rarity=2,MinLevel=35,SellPrice=5648,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:4060::::::::40:::::::|h[Glyphed Leggings]|h|r"},["Savage Axe"]={SubType="One-Handed Axes",Level=39,id=15233,StackCount=1,Rarity=2,MinLevel=34,SellPrice=10476,Texture=132399,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:15233::::::::40:::::::|h[Savage Axe]|h|r",Type="Weapon"},["Crested Scepter"]={SubType="One-Handed Maces",Level=27,id=3414,StackCount=1,Rarity=3,MinLevel=22,SellPrice=4028,Texture=133483,Link="|cff0070dd|Hitem:3414::::::::40:::::::|h[Crested Scepter]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Blood Shard"]={SubType="Quest",Level=1,id=5075,StackCount=10,Rarity=1,MinLevel=0,SellPrice=25,Texture=134128,EquipLoc="",Link="|cffffffff|Hitem:5075::::::::40:::::::|h[Blood Shard]|h|r",Type="Quest"},["Dirt-stained Map"]={SubType="Quest",Level=1,id=4851,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134269,Type="Quest",Link="|cffffffff|Hitem:4851::::::::40:::::::|h[Dirt-stained Map]|h|r",EquipLoc=""},["Level 35 Test Gear Leather - Hunter/Rogue"]={SubType="Junk",Level=1,id=13667,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13667::::::::40:::::::|h[Level 35 Test Gear Leather - Hunter/Rogue]|h|r"},["Shimmering Silk Robes"]={SubType="Cloth",Level=23,id=2616,StackCount=1,Rarity=1,MinLevel=18,SellPrice=531,Texture=132645,EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:2616::::::::40:::::::|h[Shimmering Silk Robes]|h|r",Type="Armor"},["Boots of Zua'tec"]={SubType="Mail",Level=45,id=10701,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7536,Texture=132588,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10701::::::::40:::::::|h[Boots of Zua'tec]|h|r",Type="Armor"},["Mar'li's Eye"]={SubType="Miscellaneous",Level=68,id=19930,StackCount=1,Rarity=3,MinLevel=60,SellPrice=73852,Texture=135723,Link="|cff0070dd|Hitem:19930::::::::40:::::::|h[Mar'li's Eye]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Book: Gift of the Wild"]={SubType="Book",Level=50,id=17682,StackCount=1,Rarity=3,MinLevel=50,SellPrice=8750,Texture=133743,EquipLoc="",Link="|cff0070dd|Hitem:17682::::::::40:::::::|h[Book: Gift of the Wild]|h|r",Type="Recipe"},["Greater Astral Essence"]={SubType="Trade Goods",Level=25,id=11082,StackCount=10,Rarity=2,MinLevel=0,SellPrice=0,Texture=132862,Type="Trade Goods",Link="|cff1eff00|Hitem:11082::::::::40:::::::|h[Greater Astral Essence]|h|r",EquipLoc=""},["Lillith's Remains"]={SubType="Quest",Level=1,id=3620,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3620::::::::40:::::::|h[Lillith's Remains]|h|r"},["Belt of Preserved Heads"]={SubType="Leather",Level=70,id=20216,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20645,Texture=132503,Link="|cff0070dd|Hitem:20216::::::::40:::::::|h[Belt of Preserved Heads]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Un'Goro Ash"]={SubType="Quest",Level=1,id=11829,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,Type="Quest",Link="|cffffffff|Hitem:11829::::::::40:::::::|h[Un'Goro Ash]|h|r",EquipLoc=""},["Royal Tribunal Cloak"]={SubType="Cloth",Level=59,id=13376,StackCount=1,Rarity=3,MinLevel=54,SellPrice=13738,Texture=133766,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:13376::::::::40:::::::|h[Royal Tribunal Cloak]|h|r"},["[PH] Nature Resist Potion [DEP]"]={SubType="Consumable",Level=60,id=23698,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134809,Link="|cffffffff|Hitem:23698::::::::40:::::::|h[[PH] Nature Resist Potion [DEP]]|h|r",EquipLoc="",Type="Consumable"},["[UNUSED] Abom Stoone"]={SubType="Quest",Level=1,id=22933,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134576,Link="|cffffffff|Hitem:22933::::::::40:::::::|h[[UNUSED] Abom Stoone]|h|r",EquipLoc="",Type="Quest"},["Sentinel's Card"]={SubType="Consumable",Level=1,id=22140,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135454,Link="|cffffffff|Hitem:22140::::::::40:::::::|h[Sentinel's Card]|h|r",EquipLoc="",Type="Consumable"},["Commendation - Elwynn Forest"]={SubType="Quest",Level=1,id=1356,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:1356::::::::40:::::::|h[Commendation - Elwynn Forest]|h|r",EquipLoc="",Type="Quest"},["Marshal's Lamellar Gloves"]={SubType="Plate",Level=71,id=16471,StackCount=1,Rarity=4,MinLevel=60,SellPrice=11429,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16471::::::::40:::::::|h[Marshal's Lamellar Gloves]|h|r",Type="Armor"},["Horn of Vorlus"]={SubType="Quest",Level=1,id=6805,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134227,Type="Quest",Link="|cffffffff|Hitem:6805::::::::40:::::::|h[Horn of Vorlus]|h|r",EquipLoc=""},["Pattern: Red Mageweave Vest"]={SubType="Tailoring",Level=43,id=10300,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10300::::::::40:::::::|h[Pattern: Red Mageweave Vest]|h|r",Type="Recipe"},["Boots of Pure Thought"]={SubType="Cloth",Level=70,id=19437,StackCount=1,Rarity=4,MinLevel=60,SellPrice=32075,Texture=132560,Link="|cffa335ee|Hitem:19437::::::::40:::::::|h[Boots of Pure Thought]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Hero's Breastplate"]={SubType="Mail",Level=62,id=8303,StackCount=1,Rarity=2,MinLevel=57,SellPrice=26989,Texture=132749,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:8303::::::::40:::::::|h[Hero's Breastplate]|h|r"},["Smooth Leather Pants"]={SubType="Leather",Level=53,id=3974,StackCount=1,Rarity=0,MinLevel=48,SellPrice=5486,Texture=134592,Type="Armor",Link="|cff9d9d9d|Hitem:3974::::::::40:::::::|h[Smooth Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Gauntlets of Heroism"]={SubType="Plate",Level=55,id=21998,StackCount=1,Rarity=4,MinLevel=0,SellPrice=10074,Texture=132960,Link="|cffa335ee|Hitem:21998::::::::40:::::::|h[Gauntlets of Heroism]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Aboriginal Gloves"]={SubType="Cloth",Level=16,id=14117,StackCount=1,Rarity=2,MinLevel=11,SellPrice=163,Texture=132952,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14117::::::::40:::::::|h[Aboriginal Gloves]|h|r"},["Aboriginal Footwraps"]={SubType="Cloth",Level=16,id=14114,StackCount=1,Rarity=2,MinLevel=11,SellPrice=242,Texture=132592,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14114::::::::40:::::::|h[Aboriginal Footwraps]|h|r"},["Hallowed Wand - Skeleton"]={SubType="Consumable",Level=1,id=20411,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135474,Link="|cffffffff|Hitem:20411::::::::40:::::::|h[Hallowed Wand - Skeleton]|h|r",EquipLoc="",Type="Consumable"},["90 Epic Warrior Waistband"]={SubType="Plate",Level=90,id=20142,StackCount=1,Rarity=4,MinLevel=60,SellPrice=59724,Texture=132498,Link="|cffa335ee|Hitem:20142::::::::40:::::::|h[90 Epic Warrior Waistband]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Bloodsail Pants"]={SubType="Miscellaneous",Level=1,id=22745,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134596,Link="|cffffffff|Hitem:22745::::::::40:::::::|h[Bloodsail Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Squire's Pants"]={SubType="Cloth",Level=1,id=44,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Link="|cff9d9d9d|Hitem:44::::::::40:::::::|h[Squire's Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Sanguine Cape"]={SubType="Cloth",Level=22,id=14376,StackCount=1,Rarity=2,MinLevel=17,SellPrice=551,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14376::::::::40:::::::|h[Sanguine Cape]|h|r"},["Chilled Basilisk Haunch"]={SubType="Quest",Level=1,id=2476,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133969,Link="|cffffffff|Hitem:2476::::::::40:::::::|h[Chilled Basilisk Haunch]|h|r",EquipLoc="",Type="Quest"},["Schematic: Steam Tonk Controller"]={SubType="Engineering",Level=55,id=22729,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2000,Texture=134939,Link="|cffffffff|Hitem:22729::::::::40:::::::|h[Schematic: Steam Tonk Controller]|h|r",EquipLoc="",Type="Recipe"},["Flimsy Chain Belt"]={SubType="Mail",Level=2,id=2649,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:2649::::::::40:::::::|h[Flimsy Chain Belt]|h|r",Type="Armor"},["Councillor's Boots"]={SubType="Cloth",Level=56,id=10095,StackCount=1,Rarity=2,MinLevel=51,SellPrice=10295,Texture=132543,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10095::::::::40:::::::|h[Councillor's Boots]|h|r",Type="Armor"},["Keeper's Wreath"]={SubType="Leather",Level=53,id=14667,StackCount=1,Rarity=2,MinLevel=48,SellPrice=10770,Texture=133127,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14667::::::::40:::::::|h[Keeper's Wreath]|h|r"},["Hero's Gauntlets"]={SubType="Mail",Level=59,id=8305,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11743,Texture=132943,Link="|cff1eff00|Hitem:8305::::::::40:::::::|h[Hero's Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Plans: Thorium Boots"]={SubType="Blacksmithing",Level=56,id=12693,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12693::::::::40:::::::|h[Plans: Thorium Boots]|h|r"},["Monster - Axe, Horde C01 Gold"]={SubType="One-Handed Axes",Level=1,id=14893,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14893::::::::40:::::::|h[Monster - Axe, Horde C01 Gold]|h|r"},["Royal Decorated Armor"]={SubType="Mail",Level=58,id=11820,StackCount=1,Rarity=3,MinLevel=53,SellPrice=26761,Texture=132739,Type="Armor",Link="|cff0070dd|Hitem:11820::::::::40:::::::|h[Royal Decorated Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Tablet of Spirit Armor II"]={SubType="Book",Level=14,id=1052,StackCount=1,Rarity=1,MinLevel=14,SellPrice=325,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:1052::::::::40:::::::|h[Tablet of Spirit Armor II]|h|r",Type="Recipe"},["Monster - Staff, Jeweled Green Staff"]={SubType="Staves",Level=1,id=13753,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13753::::::::40:::::::|h[Monster - Staff, Jeweled Green Staff]|h|r"},["Gift of Friendship: Stormwind"]={SubType="Consumable",Level=1,id=22170,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135449,Link="|cffffffff|Hitem:22170::::::::40:::::::|h[Gift of Friendship: Stormwind]|h|r",EquipLoc="",Type="Consumable"},["Nightblade"]={SubType="Two-Handed Swords",Level=44,id=1982,StackCount=1,Rarity=4,MinLevel=39,SellPrice=29513,Texture=135272,Type="Weapon",Link="|cffa335ee|Hitem:1982::::::::40:::::::|h[Nightblade]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Hi-Explosive Bomb"]={SubType="Explosives",Level=47,id=10562,StackCount=10,Rarity=1,MinLevel=0,SellPrice=750,Texture=133715,EquipLoc="",Link="|cffffffff|Hitem:10562::::::::40:::::::|h[Hi-Explosive Bomb]|h|r",Type="Trade Goods"},["Devilsaur Leather"]={SubType="Trade Goods",Level=50,id=15417,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134347,EquipLoc="",Link="|cffffffff|Hitem:15417::::::::40:::::::|h[Devilsaur Leather]|h|r",Type="Trade Goods"},["Troll's Bane Leggings"]={SubType="Leather",Level=30,id=13114,StackCount=1,Rarity=3,MinLevel=25,SellPrice=2574,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:13114::::::::40:::::::|h[Troll's Bane Leggings]|h|r"},["Elunarian Handgrips"]={SubType="Cloth",Level=62,id=14461,StackCount=1,Rarity=2,MinLevel=57,SellPrice=9342,Texture=132944,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14461::::::::40:::::::|h[Elunarian Handgrips]|h|r"},["Aquarius Belt"]={SubType="Leather",Level=16,id=16608,StackCount=1,Rarity=2,MinLevel=0,SellPrice=193,Texture=132515,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16608::::::::40:::::::|h[Aquarius Belt]|h|r",Type="Armor"},["Cleverly Encrypted Letter"]={SubType="Quest",Level=1,id=3521,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:3521::::::::40:::::::|h[Cleverly Encrypted Letter]|h|r",EquipLoc="",Type="Quest"},["Monster - Shield, Stromgarde B03"]={SubType="Shields",Level=1,id=13814,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:13814::::::::40:::::::|h[Monster - Shield, Stromgarde B03]|h|r"},["Gargoyle Slashers"]={SubType="Leather",Level=61,id=13957,StackCount=1,Rarity=3,MinLevel=56,SellPrice=12427,Texture=132943,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13957::::::::40:::::::|h[Gargoyle Slashers]|h|r"},["Heirloom Hammer"]={SubType="One-Handed Maces",Level=15,id=7117,StackCount=1,Rarity=2,MinLevel=0,SellPrice=688,Texture=133049,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:7117::::::::40:::::::|h[Heirloom Hammer]|h|r",Type="Weapon"},["Relic of the Eye"]={SubType="Miscellaneous",Level=10,id=3003,StackCount=1,Rarity=1,MinLevel=5,SellPrice=50,Texture=133884,Type="Armor",Link="|cffffffff|Hitem:3003::::::::40:::::::|h[Relic of the Eye]|h|r",EquipLoc="INVTYPE_TRINKET"},["Tome of Amplify Magic"]={SubType="Book",Level=18,id=8807,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=133739,Link="|cffffffff|Hitem:8807::::::::40:::::::|h[Tome of Amplify Magic]|h|r",EquipLoc="",Type="Recipe"},["Grand Marshal's Battle Hammer"]={SubType="Two-Handed Maces",Level=78,id=18867,StackCount=1,Rarity=4,MinLevel=60,SellPrice=62542,Texture=133040,Type="Weapon",Link="|cffa335ee|Hitem:18867::::::::40:::::::|h[Grand Marshal's Battle Hammer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Deprecated Silver Ingot"]={SubType="Trade Goods",Level=15,id=2050,StackCount=5,Rarity=0,MinLevel=0,SellPrice=75,Texture=133215,EquipLoc="",Link="|cff9d9d9d|Hitem:2050::::::::40:::::::|h[Deprecated Silver Ingot]|h|r",Type="Trade Goods"},["A Treatise on Military Ranks"]={SubType="Junk",Level=0,id=18664,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=133740,Type="Miscellaneous",Link="|cffffffff|Hitem:18664::::::::40:::::::|h[A Treatise on Military Ranks]|h|r",EquipLoc=""},["Unforged Rune Covered Breastplate"]={SubType="Quest",Level=60,id=12806,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=132739,Type="Quest",EquipLoc="",Link="|cff0070dd|Hitem:12806::::::::40:::::::|h[Unforged Rune Covered Breastplate]|h|r"},["Netherwind Robes"]={SubType="Cloth",Level=76,id=16916,StackCount=1,Rarity=4,MinLevel=60,SellPrice=56861,Texture=132644,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:16916::::::::40:::::::|h[Netherwind Robes]|h|r",Type="Armor"},["Small Ammo Pouch"]={SubType="Ammo Pouch",Level=1,id=2102,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133581,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:2102::::::::40:::::::|h[Small Ammo Pouch]|h|r",Type="Quiver"},["Imperial Red Scepter"]={SubType="Miscellaneous",Level=56,id=15930,StackCount=1,Rarity=2,MinLevel=51,SellPrice=9146,Texture=135468,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15930::::::::40:::::::|h[Imperial Red Scepter]|h|r",Type="Armor"},["Gallant Flamberge"]={SubType="Two-Handed Swords",Level=57,id=15255,StackCount=1,Rarity=2,MinLevel=52,SellPrice=42545,Texture=135278,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15255::::::::40:::::::|h[Gallant Flamberge]|h|r",Type="Weapon"},["Darkshade Gloves"]={SubType="Cloth",Level=62,id=14543,StackCount=1,Rarity=3,MinLevel=57,SellPrice=10478,Texture=132949,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:14543::::::::40:::::::|h[Darkshade Gloves]|h|r"},["Xavian Water Sample"]={SubType="Quest",Level=1,id=7268,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132788,EquipLoc="",Link="|cffffffff|Hitem:7268::::::::40:::::::|h[Xavian Water Sample]|h|r",Type="Quest"},["Tablet of Windfury Totem"]={SubType="Book",Level=32,id=9084,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9084::::::::40:::::::|h[Tablet of Windfury Totem]|h|r"},["Brightcloth Robe"]={SubType="Cloth",Level=54,id=14100,StackCount=1,Rarity=2,MinLevel=49,SellPrice=12089,Texture=132667,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14100::::::::40:::::::|h[Brightcloth Robe]|h|r"},["Crag Boar Rib"]={SubType="Trade Goods",Level=5,id=2886,StackCount=10,Rarity=1,MinLevel=0,SellPrice=5,Texture=133972,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:2886::::::::40:::::::|h[Crag Boar Rib]|h|r"},["Eternal Chestguard"]={SubType="Cloth",Level=65,id=14328,StackCount=1,Rarity=2,MinLevel=60,SellPrice=21633,Texture=135021,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14328::::::::40:::::::|h[Eternal Chestguard]|h|r"},["Monster - Wand, Horde Demon Skull Red"]={SubType="Wands",Level=1,id=19983,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135463,Link="|cff9d9d9d|Hitem:19983::::::::40:::::::|h[Monster - Wand, Horde Demon Skull Red]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Flimsy Female Human Mask"]={SubType="Miscellaneous",Level=1,id=20565,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134167,Link="|cffffffff|Hitem:20565::::::::40:::::::|h[Flimsy Female Human Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Bent Spoon"]={SubType="Junk",Level=1,id=5370,StackCount=5,Rarity=0,MinLevel=0,SellPrice=37,Texture=134435,EquipLoc="",Link="|cff9d9d9d|Hitem:5370::::::::40:::::::|h[Bent Spoon]|h|r",Type="Miscellaneous"},["Glimmering Flamberge"]={SubType="Two-Handed Swords",Level=32,id=15250,StackCount=1,Rarity=2,MinLevel=27,SellPrice=6894,Texture=135321,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15250::::::::40:::::::|h[Glimmering Flamberge]|h|r",Type="Weapon"},["Executioner's Sword"]={SubType="Two-Handed Swords",Level=24,id=4818,StackCount=1,Rarity=2,MinLevel=19,SellPrice=2854,Texture=135329,Type="Weapon",Link="|cff1eff00|Hitem:4818::::::::40:::::::|h[Executioner's Sword]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Patch of Fine Fur"]={SubType="Junk",Level=1,id=4581,StackCount=5,Rarity=0,MinLevel=0,SellPrice=862,Texture=134353,Link="|cff9d9d9d|Hitem:4581::::::::40:::::::|h[Patch of Fine Fur]|h|r",EquipLoc="",Type="Miscellaneous"},["Devilsaur Barb"]={SubType="Quest",Level=1,id=22432,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135125,Link="|cffffffff|Hitem:22432::::::::40:::::::|h[Devilsaur Barb]|h|r",EquipLoc="",Type="Quest"},["Zandalar Signet of Serenity"]={SubType="Quest",Level=60,id=20078,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=135940,Link="|cff0070dd|Hitem:20078::::::::40:::::::|h[Zandalar Signet of Serenity]|h|r",EquipLoc="",Type="Quest"},["Inscribed Bark"]={SubType="Quest",Level=1,id=5219,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134413,Link="|cffffffff|Hitem:5219::::::::40:::::::|h[Inscribed Bark]|h|r",EquipLoc="",Type="Quest"},["Gold Ore"]={SubType="Trade Goods",Level=25,id=2776,StackCount=10,Rarity=2,MinLevel=0,SellPrice=500,Texture=134566,EquipLoc="",Link="|cff1eff00|Hitem:2776::::::::40:::::::|h[Gold Ore]|h|r",Type="Trade Goods"},["Araj's Scarab"]={SubType="Quest",Level=1,id=14610,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136162,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14610::::::::40:::::::|h[Araj's Scarab]|h|r"},["Unused Gray Leather D02 Pants"]={SubType="Leather",Level=1,id=3540,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134582,Link="|cffffffff|Hitem:3540::::::::40:::::::|h[Unused Gray Leather D02 Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Putrid Wooden Hammer"]={SubType="One-Handed Maces",Level=3,id=3262,StackCount=1,Rarity=1,MinLevel=1,SellPrice=10,Texture=133052,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:3262::::::::40:::::::|h[Putrid Wooden Hammer]|h|r",Type="Weapon"},["Toughened Leather Armor"]={SubType="Leather",Level=24,id=2314,StackCount=1,Rarity=1,MinLevel=19,SellPrice=743,Texture=132725,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:2314::::::::40:::::::|h[Toughened Leather Armor]|h|r"},["Thun'grim's Mace"]={SubType="One-Handed Maces",Level=15,id=7328,StackCount=1,Rarity=2,MinLevel=0,SellPrice=701,Texture=133487,Link="|cff1eff00|Hitem:7328::::::::40:::::::|h[Thun'grim's Mace]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Warlord's Chain Shoulders"]={SubType="Mail",Level=74,id=16568,StackCount=1,Rarity=4,MinLevel=60,SellPrice=30341,Texture=135060,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16568::::::::40:::::::|h[Warlord's Chain Shoulders]|h|r",Type="Armor"},["Venture Co. Engineering Plans"]={SubType="Quest",Level=1,id=5718,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5718::::::::40:::::::|h[Venture Co. Engineering Plans]|h|r"},["Embersilk Cord"]={SubType="Cloth",Level=37,id=14235,StackCount=1,Rarity=2,MinLevel=32,SellPrice=1789,Texture=132500,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14235::::::::40:::::::|h[Embersilk Cord]|h|r"},["Sha'ni's Nose-Ring"]={SubType="Quest",Level=1,id=11058,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133356,Type="Quest",Link="|cffffffff|Hitem:11058::::::::40:::::::|h[Sha'ni's Nose-Ring]|h|r",EquipLoc=""},["Sentry's Sash"]={SubType="Mail",Level=26,id=15528,StackCount=1,Rarity=2,MinLevel=21,SellPrice=930,Texture=132516,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15528::::::::40:::::::|h[Sentry's Sash]|h|r",Type="Armor"},["Deprecated Quiver (TEST)"]={SubType="Quiver",Level=1,id=1281,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133628,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:1281::::::::40:::::::|h[Deprecated Quiver (TEST)]|h|r",Type="Quiver"},["Sanguine Mantle"]={SubType="Cloth",Level=27,id=14378,StackCount=1,Rarity=2,MinLevel=22,SellPrice=997,Texture=135040,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14378::::::::40:::::::|h[Sanguine Mantle]|h|r"},["Schematic: Red Rocket Cluster"]={SubType="Engineering",Level=45,id=21732,StackCount=1,Rarity=2,MinLevel=0,SellPrice=875,Texture=134942,Link="|cff1eff00|Hitem:21732::::::::40:::::::|h[Schematic: Red Rocket Cluster]|h|r",EquipLoc="",Type="Recipe"},["Band of Earthen Wrath"]={SubType="Miscellaneous",Level=62,id=21179,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10709,Texture=133360,Link="|cff0070dd|Hitem:21179::::::::40:::::::|h[Band of Earthen Wrath]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Deprecated Magister's Mantle"]={SubType="Cloth",Level=17,id=4682,StackCount=1,Rarity=0,MinLevel=12,SellPrice=116,Texture=135040,Type="Armor",Link="|cff9d9d9d|Hitem:4682::::::::40:::::::|h[Deprecated Magister's Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Heavy War Staff"]={SubType="Staves",Level=47,id=4024,StackCount=1,Rarity=0,MinLevel=42,SellPrice=9821,Texture=135155,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:4024::::::::40:::::::|h[Heavy War Staff]|h|r"},["Soft Leather Tunic"]={SubType="Leather",Level=12,id=2817,StackCount=1,Rarity=2,MinLevel=0,SellPrice=201,Texture=135014,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:2817::::::::40:::::::|h[Soft Leather Tunic]|h|r",Type="Armor"},["Bluegill Sandals"]={SubType="Cloth",Level=21,id=1560,StackCount=1,Rarity=2,MinLevel=16,SellPrice=513,Texture=132579,Link="|cff1eff00|Hitem:1560::::::::40:::::::|h[Bluegill Sandals]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Plainstrider Scale"]={SubType="Quest",Level=1,id=4806,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134305,EquipLoc="",Link="|cffffffff|Hitem:4806::::::::40:::::::|h[Plainstrider Scale]|h|r",Type="Quest"},["Monster - Torch, Ranged"]={SubType="Thrown",Level=1,id=6088,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135279,Type="Weapon",EquipLoc="INVTYPE_THROWN",Link="|cff9d9d9d|Hitem:6088::::::::40:::::::|h[Monster - Torch, Ranged]|h|r"},["Nightshade Girdle"]={SubType="Leather",Level=58,id=10221,StackCount=1,Rarity=2,MinLevel=53,SellPrice=9148,Texture=132501,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10221::::::::40:::::::|h[Nightshade Girdle]|h|r",Type="Armor"},["Chainmail Armor"]={SubType="Mail",Level=17,id=847,StackCount=1,Rarity=1,MinLevel=12,SellPrice=349,Texture=132624,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:847::::::::40:::::::|h[Chainmail Armor]|h|r"},["Ravager's Skull"]={SubType="Quest",Level=1,id=2477,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133729,Type="Quest",Link="|cffffffff|Hitem:2477::::::::40:::::::|h[Ravager's Skull]|h|r",EquipLoc=""},["63 Green Warrior Legplates"]={SubType="Plate",Level=63,id=20287,StackCount=1,Rarity=2,MinLevel=58,SellPrice=19426,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:20287::::::::40:::::::|h[63 Green Warrior Legplates]|h|r"},["Red Mageweave Vest"]={SubType="Cloth",Level=43,id=10007,StackCount=1,Rarity=2,MinLevel=38,SellPrice=5799,Texture=135013,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10007::::::::40:::::::|h[Red Mageweave Vest]|h|r",Type="Armor"},["Formula: Enchant Cloak - Stealth"]={SubType="Enchanting",Level=70,id=20734,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25000,Texture=134327,Link="|cff0070dd|Hitem:20734::::::::40:::::::|h[Formula: Enchant Cloak - Stealth]|h|r",EquipLoc="",Type="Recipe"},["Cragwood Maul"]={SubType="Two-Handed Maces",Level=42,id=11265,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16484,Texture=133053,Type="Weapon",Link="|cff1eff00|Hitem:11265::::::::40:::::::|h[Cragwood Maul]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Unloaded Zapper"]={SubType="Quest",Level=1,id=11319,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133000,Type="Quest",Link="|cffffffff|Hitem:11319::::::::40:::::::|h[Unloaded Zapper]|h|r",EquipLoc=""},["Ring of Scorn"]={SubType="Miscellaneous",Level=20,id=3235,StackCount=1,Rarity=2,MinLevel=0,SellPrice=412,Texture=133357,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:3235::::::::40:::::::|h[Ring of Scorn]|h|r"},["Joonho's Mercy"]={SubType="One-Handed Swords",Level=50,id=17054,StackCount=1,Rarity=3,MinLevel=45,SellPrice=28788,Texture=135351,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:17054::::::::40:::::::|h[Joonho's Mercy]|h|r",Type="Weapon"},["Sentinel Gloves"]={SubType="Leather",Level=37,id=7443,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2243,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7443::::::::40:::::::|h[Sentinel Gloves]|h|r",Type="Armor"},["Headchopper"]={SubType="Two-Handed Axes",Level=44,id=1680,StackCount=1,Rarity=2,MinLevel=39,SellPrice=18234,Texture=132408,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1680::::::::40:::::::|h[Headchopper]|h|r",Type="Weapon"},["Adventurer's Bandana"]={SubType="Leather",Level=63,id=10261,StackCount=1,Rarity=2,MinLevel=58,SellPrice=17985,Texture=133694,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10261::::::::40:::::::|h[Adventurer's Bandana]|h|r",Type="Armor"},["Monster - Mace, Hammer Blue Mighty"]={SubType="One-Handed Maces",Level=1,id=14533,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133491,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14533::::::::40:::::::|h[Monster - Mace, Hammer Blue Mighty]|h|r"},["Neatly Wrapped Box"]={SubType="Junk",Level=1,id=9537,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134140,Link="|cffffffff|Hitem:9537::::::::40:::::::|h[Neatly Wrapped Box]|h|r",EquipLoc="",Type="Miscellaneous"},["Elven Chain Boots"]={SubType="Mail",Level=50,id=13125,StackCount=1,Rarity=3,MinLevel=45,SellPrice=12954,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13125::::::::40:::::::|h[Elven Chain Boots]|h|r"},["Monster - Trident, Wood Handle"]={SubType="Polearms",Level=1,id=5745,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135575,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5745::::::::40:::::::|h[Monster - Trident, Wood Handle]|h|r"},["Shell Launcher Shotgun"]={SubType="Guns",Level=58,id=13146,StackCount=1,Rarity=3,MinLevel=53,SellPrice=34704,Texture=135617,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13146::::::::40:::::::|h[Shell Launcher Shotgun]|h|r"},["Libram: Seal of Salvation"]={SubType="Book",Level=22,id=5684,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133740,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5684::::::::40:::::::|h[Libram: Seal of Salvation]|h|r"},["Amulet of Draconic Subversion"]={SubType="Quest",Level=1,id=16787,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133608,EquipLoc="INVTYPE_NECK",Link="|cffffffff|Hitem:16787::::::::40:::::::|h[Amulet of Draconic Subversion]|h|r",Type="Quest"},["Tome of Justice"]={SubType="Quest",Level=30,id=6778,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133739,Type="Quest",Link="|cffffffff|Hitem:6778::::::::40:::::::|h[Tome of Justice]|h|r",EquipLoc=""},["Bonecreeper Stylus"]={SubType="Wands",Level=62,id=13938,StackCount=1,Rarity=3,MinLevel=57,SellPrice=39304,Texture=133732,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13938::::::::40:::::::|h[Bonecreeper Stylus]|h|r"},["Lieutenant Commander's Satin Amice"]={SubType="Cloth",Level=63,id=17601,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8931,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:17601::::::::40:::::::|h[Lieutenant Commander's Satin Amice]|h|r",Type="Armor"},["Bouquet of Scarlet Begonias"]={SubType="Miscellaneous",Level=23,id=2562,StackCount=1,Rarity=1,MinLevel=0,SellPrice=575,Texture=133941,Link="|cffffffff|Hitem:2562::::::::40:::::::|h[Bouquet of Scarlet Begonias]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Metallic Fragments"]={SubType="Quest",Level=1,id=9592,StackCount=40,Rarity=1,MinLevel=0,SellPrice=0,Texture=135241,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9592::::::::40:::::::|h[Metallic Fragments]|h|r"},["Condor Bracers"]={SubType="Cloth",Level=39,id=15864,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1947,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15864::::::::40:::::::|h[Condor Bracers]|h|r",Type="Armor"},["Magic Knucklebone (DND)"]={SubType="Consumable",Level=1,id=12440,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12440::::::::40:::::::|h[Magic Knucklebone (DND)]|h|r"},["Everlook Report"]={SubType="Quest",Level=1,id=15788,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134942,EquipLoc="",Link="|cffffffff|Hitem:15788::::::::40:::::::|h[Everlook Report]|h|r",Type="Quest"},["Cape of the Brotherhood"]={SubType="Cloth",Level=25,id=5193,StackCount=1,Rarity=3,MinLevel=20,SellPrice=940,Texture=133760,EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:5193::::::::40:::::::|h[Cape of the Brotherhood]|h|r",Type="Armor"},["Monster - Staff Green Sphere Glowing"]={SubType="Staves",Level=1,id=13709,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13709::::::::40:::::::|h[Monster - Staff Green Sphere Glowing]|h|r"},["Sparkly Necklace"]={SubType="Junk",Level=1,id=11940,StackCount=20,Rarity=0,MinLevel=0,SellPrice=389,Texture=133298,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11940::::::::40:::::::|h[Sparkly Necklace]|h|r",EquipLoc=""},["Exalted Shield"]={SubType="Shields",Level=65,id=14982,StackCount=1,Rarity=2,MinLevel=60,SellPrice=34119,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14982::::::::40:::::::|h[Exalted Shield]|h|r"},["Monster - Trident, Flame Wrath"]={SubType="Polearms",Level=1,id=11838,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,Type="Weapon",Link="|cff9d9d9d|Hitem:11838::::::::40:::::::|h[Monster - Trident, Flame Wrath]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Laced Pumpkin"]={SubType="Quest",Level=1,id=3035,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133981,EquipLoc="",Link="|cffffffff|Hitem:3035::::::::40:::::::|h[Laced Pumpkin]|h|r",Type="Quest"},["Plans: Enchanted Thorium Helm"]={SubType="Blacksmithing",Level=63,id=12725,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134941,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12725::::::::40:::::::|h[Plans: Enchanted Thorium Helm]|h|r"},["2900 Test sword 63 blue"]={SubType="One-Handed Swords",Level=63,id=19428,StackCount=1,Rarity=3,MinLevel=58,SellPrice=54922,Texture=135637,Link="|cff0070dd|Hitem:19428::::::::40:::::::|h[2900 Test sword 63 blue]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Bloated Trout"]={SubType="Consumable",Level=35,id=8366,StackCount=1,Rarity=1,MinLevel=25,SellPrice=100,Texture=133888,Link="|cffffffff|Hitem:8366::::::::40:::::::|h[Bloated Trout]|h|r",EquipLoc="",Type="Consumable"},["Zum'rah's Vexing Cane"]={SubType="Staves",Level=47,id=18082,StackCount=1,Rarity=3,MinLevel=42,SellPrice=28161,Texture=135147,Type="Weapon",Link="|cff0070dd|Hitem:18082::::::::40:::::::|h[Zum'rah's Vexing Cane]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Pattern: Wicked Leather Pants"]={SubType="Leatherworking",Level=58,id=15757,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15757::::::::40:::::::|h[Pattern: Wicked Leather Pants]|h|r",Type="Recipe"},["Forest Buckler"]={SubType="Shields",Level=24,id=6383,StackCount=1,Rarity=2,MinLevel=19,SellPrice=1519,Texture=134955,Type="Armor",Link="|cff1eff00|Hitem:6383::::::::40:::::::|h[Forest Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Arena Bands"]={SubType="Mail",Level=50,id=18711,StackCount=1,Rarity=3,MinLevel=45,SellPrice=8700,Texture=132602,Type="Armor",Link="|cff0070dd|Hitem:18711::::::::40:::::::|h[Arena Bands]|h|r",EquipLoc="INVTYPE_WRIST"},["Gnoll Hide Sack"]={SubType="Bag",Level=15,id=3233,StackCount=1,Rarity=1,MinLevel=0,SellPrice=212,Texture=133622,Type="Container",Link="|cffffffff|Hitem:3233::::::::40:::::::|h[Gnoll Hide Sack]|h|r",EquipLoc="INVTYPE_BAG"},["Blackfang"]={SubType="Daggers",Level=25,id=2236,StackCount=1,Rarity=3,MinLevel=20,SellPrice=3386,Texture=135638,Type="Weapon",Link="|cff0070dd|Hitem:2236::::::::40:::::::|h[Blackfang]|h|r",EquipLoc="INVTYPE_WEAPON"},["Tablet of Mana Totem"]={SubType="Book",Level=30,id=3133,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2000,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:3133::::::::40:::::::|h[Tablet of Mana Totem]|h|r",Type="Recipe"},["Worn Mail Belt"]={SubType="Mail",Level=12,id=1730,StackCount=1,Rarity=0,MinLevel=7,SellPrice=48,Texture=132495,Link="|cff9d9d9d|Hitem:1730::::::::40:::::::|h[Worn Mail Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Thorium Leggings"]={SubType="Plate",Level=60,id=12414,StackCount=1,Rarity=2,MinLevel=55,SellPrice=17376,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:12414::::::::40:::::::|h[Thorium Leggings]|h|r"},["Monster - Item, Lantern - Round Offhand"]={SubType="Miscellaneous",Level=1,id=13609,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134718,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13609::::::::40:::::::|h[Monster - Item, Lantern - Round Offhand]|h|r"},["Chest of Containment Coffers"]={SubType="Junk",Level=1,id=7247,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Link="|cffffffff|Hitem:7247::::::::40:::::::|h[Chest of Containment Coffers]|h|r",EquipLoc="",Type="Miscellaneous"},["Warlord's Plate Headpiece"]={SubType="Plate",Level=74,id=16542,StackCount=1,Rarity=4,MinLevel=60,SellPrice=19707,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16542::::::::40:::::::|h[Warlord's Plate Headpiece]|h|r",Type="Armor"},["Brindlethorn Tunic"]={SubType="Leather",Level=60,id=12104,StackCount=1,Rarity=2,MinLevel=0,SellPrice=20879,Texture=132717,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:12104::::::::40:::::::|h[Brindlethorn Tunic]|h|r"},["Ceremonial Leather Harness"]={SubType="Leather",Level=18,id=3313,StackCount=1,Rarity=2,MinLevel=13,SellPrice=519,Texture=132719,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:3313::::::::40:::::::|h[Ceremonial Leather Harness]|h|r"},["Sturdy Quarterstaff"]={SubType="Staves",Level=13,id=4566,StackCount=1,Rarity=2,MinLevel=8,SellPrice=631,Texture=135145,Type="Weapon",Link="|cff1eff00|Hitem:4566::::::::40:::::::|h[Sturdy Quarterstaff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Willow Bracers"]={SubType="Cloth",Level=15,id=6543,StackCount=1,Rarity=2,MinLevel=10,SellPrice=147,Texture=132611,Type="Armor",Link="|cff1eff00|Hitem:6543::::::::40:::::::|h[Willow Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Totem of Rage"]={SubType="Totems",Level=57,id=22395,StackCount=1,Rarity=3,MinLevel=52,SellPrice=12973,Texture=134919,Link="|cff0070dd|Hitem:22395::::::::40:::::::|h[Totem of Rage]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["[PH] Cloth Leggings of the Rising Dawn"]={SubType="Cloth",Level=100,id=13775,StackCount=1,Rarity=1,MinLevel=100,SellPrice=69532,Texture=134581,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:13775::::::::40:::::::|h[[PH] Cloth Leggings of the Rising Dawn]|h|r"},["Triumphant Cloak"]={SubType="Cloth",Level=58,id=15681,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11406,Texture=133766,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15681::::::::40:::::::|h[Triumphant Cloak]|h|r",Type="Armor"},["Bloodspattered Cloak"]={SubType="Cloth",Level=14,id=15490,StackCount=1,Rarity=1,MinLevel=9,SellPrice=105,Texture=133774,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:15490::::::::40:::::::|h[Bloodspattered Cloak]|h|r",Type="Armor"},["Deprecated Iron Shot"]={SubType="Bullet",Level=4,id=2513,StackCount=200,Rarity=1,MinLevel=1,SellPrice=0,Texture=132384,Type="Projectile",EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:2513::::::::40:::::::|h[Deprecated Iron Shot]|h|r"},["Dredge Boots"]={SubType="Mail",Level=22,id=6666,StackCount=1,Rarity=2,MinLevel=0,SellPrice=830,Texture=132535,Link="|cff1eff00|Hitem:6666::::::::40:::::::|h[Dredge Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Leggings of the People's Militia"]={SubType="Cloth",Level=15,id=12295,StackCount=1,Rarity=2,MinLevel=0,SellPrice=282,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:12295::::::::40:::::::|h[Leggings of the People's Militia]|h|r"},["Handcrafted Staff"]={SubType="Staves",Level=2,id=3661,StackCount=1,Rarity=1,MinLevel=1,SellPrice=9,Texture=135158,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:3661::::::::40:::::::|h[Handcrafted Staff]|h|r",Type="Weapon"},["Test Nature Res Head Leather"]={SubType="Leather",Level=35,id=16140,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2613,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:16140::::::::40:::::::|h[Test Nature Res Head Leather]|h|r",Type="Armor"},["Pagan Mantle"]={SubType="Cloth",Level=24,id=14157,StackCount=1,Rarity=1,MinLevel=19,SellPrice=433,Texture=135037,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:14157::::::::40:::::::|h[Pagan Mantle]|h|r"},["Alterac Granite"]={SubType="Quest",Level=1,id=4521,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135234,EquipLoc="",Link="|cffffffff|Hitem:4521::::::::40:::::::|h[Alterac Granite]|h|r",Type="Quest"},["Steelcap Shield"]={SubType="Shields",Level=20,id=15207,StackCount=1,Rarity=2,MinLevel=0,SellPrice=868,Texture=134957,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15207::::::::40:::::::|h[Steelcap Shield]|h|r",Type="Armor"},["Padded Lining"]={SubType="Junk",Level=1,id=16748,StackCount=20,Rarity=0,MinLevel=0,SellPrice=15,Texture=132911,EquipLoc="",Link="|cff9d9d9d|Hitem:16748::::::::40:::::::|h[Padded Lining]|h|r",Type="Miscellaneous"},["Wrangler's Cloak"]={SubType="Cloth",Level=22,id=15333,StackCount=1,Rarity=2,MinLevel=17,SellPrice=537,Texture=133753,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15333::::::::40:::::::|h[Wrangler's Cloak]|h|r",Type="Armor"},["Ironvine Breastplate"]={SubType="Plate",Level=70,id=22762,StackCount=1,Rarity=3,MinLevel=60,SellPrice=31492,Texture=132742,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:22762::::::::40:::::::|h[Ironvine Breastplate]|h|r"},["General Drakkisath's Command"]={SubType="Quest",Level=1,id=12780,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133473,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12780::::::::40:::::::|h[General Drakkisath's Command]|h|r"},["Charger's Pants"]={SubType="Mail",Level=11,id=15477,StackCount=1,Rarity=2,MinLevel=6,SellPrice=192,Texture=134592,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15477::::::::40:::::::|h[Charger's Pants]|h|r",Type="Armor"},["Codex of Renew"]={SubType="Book",Level=8,id=1084,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:1084::::::::40:::::::|h[Codex of Renew]|h|r",Type="Recipe"},["90 Green Warrior Legplates"]={SubType="Plate",Level=90,id=20247,StackCount=1,Rarity=2,MinLevel=60,SellPrice=70650,Texture=134584,Link="|cff1eff00|Hitem:20247::::::::40:::::::|h[90 Green Warrior Legplates]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Recipe: Fire Protection Potion"]={SubType="Alchemy",Level=33,id=6055,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:6055::::::::40:::::::|h[Recipe: Fire Protection Potion]|h|r"},["Fireproof Orb"]={SubType="Miscellaneous",Level=28,id=4836,StackCount=1,Rarity=2,MinLevel=23,SellPrice=2000,Texture=133434,Link="|cff1eff00|Hitem:4836::::::::40:::::::|h[Fireproof Orb]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Fillet of Frenzy"]={SubType="Consumable",Level=15,id=5476,StackCount=20,Rarity=1,MinLevel=5,SellPrice=3,Texture=133891,EquipLoc="",Link="|cffffffff|Hitem:5476::::::::40:::::::|h[Fillet of Frenzy]|h|r",Type="Consumable"},["Whiteout Staff"]={SubType="Staves",Level=65,id=19101,StackCount=1,Rarity=3,MinLevel=60,SellPrice=79411,Texture=135167,Link="|cff0070dd|Hitem:19101::::::::40:::::::|h[Whiteout Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Ironbark Staff"]={SubType="Staves",Level=65,id=20069,StackCount=1,Rarity=4,MinLevel=60,SellPrice=110199,Texture=135466,Link="|cffa335ee|Hitem:20069::::::::40:::::::|h[Ironbark Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Deprecated Ancestral Mantle"]={SubType="Cloth",Level=13,id=4670,StackCount=1,Rarity=1,MinLevel=8,SellPrice=85,Texture=135040,Link="|cffffffff|Hitem:4670::::::::40:::::::|h[Deprecated Ancestral Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Crochet Vest"]={SubType="Cloth",Level=43,id=3943,StackCount=1,Rarity=0,MinLevel=38,SellPrice=2244,Texture=135009,Link="|cff9d9d9d|Hitem:3943::::::::40:::::::|h[Crochet Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Bloodspiller"]={SubType="Two-Handed Axes",Level=32,id=7753,StackCount=1,Rarity=3,MinLevel=27,SellPrice=7874,Texture=132401,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:7753::::::::40:::::::|h[Bloodspiller]|h|r",Type="Weapon"},["Pillager's Shield"]={SubType="Shields",Level=37,id=15563,StackCount=1,Rarity=2,MinLevel=32,SellPrice=5562,Texture=134953,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15563::::::::40:::::::|h[Pillager's Shield]|h|r",Type="Armor"},["AHNQIRAJ TEST ITEM D PLATE BOOTS"]={SubType="Miscellaneous",Level=1,id=21442,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21442::::::::40:::::::|h[AHNQIRAJ TEST ITEM D PLATE BOOTS]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["iCoke Prize Voucher"]={SubType="Quest",Level=1,id=19642,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:19642::::::::40:::::::|h[iCoke Prize Voucher]|h|r",EquipLoc="",Type="Quest"},["Pattern: Cenarion Herb Bag"]={SubType="Tailoring",Level=55,id=22310,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,Link="|cffffffff|Hitem:22310::::::::40:::::::|h[Pattern: Cenarion Herb Bag]|h|r",EquipLoc="",Type="Recipe"},["Gauntlets of The Five Thunders"]={SubType="Mail",Level=55,id=22099,StackCount=1,Rarity=4,MinLevel=0,SellPrice=15558,Texture=132945,Link="|cffa335ee|Hitem:22099::::::::40:::::::|h[Gauntlets of The Five Thunders]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Bonelink Cape"]={SubType="Cloth",Level=43,id=15611,StackCount=1,Rarity=2,MinLevel=38,SellPrice=4369,Texture=133763,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15611::::::::40:::::::|h[Bonelink Cape]|h|r",Type="Armor"},["Lollipop"]={SubType="Consumable",Level=5,id=7806,StackCount=20,Rarity=1,MinLevel=1,SellPrice=10,Texture=133982,EquipLoc="",Link="|cffffffff|Hitem:7806::::::::40:::::::|h[Lollipop]|h|r",Type="Consumable"},["Harvester's Robe"]={SubType="Cloth",Level=15,id=1561,StackCount=1,Rarity=2,MinLevel=0,SellPrice=268,Texture=132654,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:1561::::::::40:::::::|h[Harvester's Robe]|h|r"},["Polished Scale Belt"]={SubType="Mail",Level=27,id=2148,StackCount=1,Rarity=1,MinLevel=22,SellPrice=581,Texture=132493,Link="|cffffffff|Hitem:2148::::::::40:::::::|h[Polished Scale Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Small Blue Pouch"]={SubType="Bag",Level=5,id=828,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=133636,Type="Container",Link="|cffffffff|Hitem:828::::::::40:::::::|h[Small Blue Pouch]|h|r",EquipLoc="INVTYPE_BAG"},["Tome of Conjure Food III"]={SubType="Book",Level=22,id=4147,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:4147::::::::40:::::::|h[Tome of Conjure Food III]|h|r",Type="Recipe"},["1500 Test sword 63 blue"]={SubType="One-Handed Swords",Level=63,id=19427,StackCount=1,Rarity=3,MinLevel=58,SellPrice=54922,Texture=135637,Link="|cff0070dd|Hitem:19427::::::::40:::::::|h[1500 Test sword 63 blue]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Marble Circle"]={SubType="Miscellaneous",Level=54,id=12002,StackCount=1,Rarity=2,MinLevel=49,SellPrice=6322,Texture=133346,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12002::::::::40:::::::|h[Marble Circle]|h|r"},["Big Voodoo Cloak"]={SubType="Cloth",Level=48,id=8216,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6323,Texture=133754,Link="|cff1eff00|Hitem:8216::::::::40:::::::|h[Big Voodoo Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Nightfin Soup"]={SubType="Consumable",Level=45,id=13931,StackCount=20,Rarity=1,MinLevel=35,SellPrice=12,Texture=132804,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13931::::::::40:::::::|h[Nightfin Soup]|h|r"},["OLDDwarven Initiate's Shirt"]={SubType="Miscellaneous",Level=1,id=93,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:93::::::::40:::::::|h[OLDDwarven Initiate's Shirt]|h|r",Type="Armor"},["Infiltrator Buckler"]={SubType="Shields",Level=33,id=7330,StackCount=1,Rarity=2,MinLevel=28,SellPrice=3923,Texture=134955,Link="|cff1eff00|Hitem:7330::::::::40:::::::|h[Infiltrator Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Red Winter Hat"]={SubType="Miscellaneous",Level=1,id=21524,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1,Texture=133169,Link="|cff1eff00|Hitem:21524::::::::40:::::::|h[Red Winter Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Etched Sigil"]={SubType="Quest",Level=1,id=9567,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134415,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9567::::::::40:::::::|h[Etched Sigil]|h|r"},["Devout Skirt"]={SubType="Cloth",Level=61,id=16694,StackCount=1,Rarity=3,MinLevel=56,SellPrice=20820,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16694::::::::40:::::::|h[Devout Skirt]|h|r",Type="Armor"},["Libram of Tenacity"]={SubType="Book",Level=50,id=11734,StackCount=1,Rarity=2,MinLevel=50,SellPrice=0,Texture=133739,Type="Recipe",Link="|cff1eff00|Hitem:11734::::::::40:::::::|h[Libram of Tenacity]|h|r",EquipLoc=""},["Plated Fist of Hakoo"]={SubType="Plate",Level=45,id=13071,StackCount=1,Rarity=3,MinLevel=40,SellPrice=4061,Texture=132944,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13071::::::::40:::::::|h[Plated Fist of Hakoo]|h|r"},["Deathbone Chestplate"]={SubType="Plate",Level=61,id=14624,StackCount=1,Rarity=3,MinLevel=56,SellPrice=20578,Texture=132637,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:14624::::::::40:::::::|h[Deathbone Chestplate]|h|r"},["Rat Cage"]={SubType="Junk",Level=1,id=23015,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132599,Link="|cffffffff|Hitem:23015::::::::40:::::::|h[Rat Cage]|h|r",EquipLoc="",Type="Miscellaneous"},["Saltstone Surcoat"]={SubType="Plate",Level=41,id=14895,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4904,Texture=132743,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14895::::::::40:::::::|h[Saltstone Surcoat]|h|r"},["90 Epic Warrior Axe"]={SubType="Two-Handed Axes",Level=90,id=20149,StackCount=1,Rarity=4,MinLevel=60,SellPrice=346622,Texture=132392,Link="|cffa335ee|Hitem:20149::::::::40:::::::|h[90 Epic Warrior Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Oilskin Leggings"]={SubType="Leather",Level=46,id=9414,StackCount=1,Rarity=2,MinLevel=41,SellPrice=8645,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9414::::::::40:::::::|h[Oilskin Leggings]|h|r"},["Rough Stone"]={SubType="Trade Goods",Level=5,id=2835,StackCount=20,Rarity=1,MinLevel=0,SellPrice=2,Texture=135232,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:2835::::::::40:::::::|h[Rough Stone]|h|r"},["Lace Pants"]={SubType="Cloth",Level=12,id=9600,StackCount=1,Rarity=1,MinLevel=0,SellPrice=93,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:9600::::::::40:::::::|h[Lace Pants]|h|r"},["Another Clue to Sander's Treasure"]={SubType="Quest",Level=1,id=1361,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134257,Link="|cffffffff|Hitem:1361::::::::40:::::::|h[Another Clue to Sander's Treasure]|h|r",EquipLoc="",Type="Quest"},["Monster - Item, Bottle - Green"]={SubType="Miscellaneous",Level=1,id=2716,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134400,Type="Weapon",Link="|cff9d9d9d|Hitem:2716::::::::40:::::::|h[Monster - Item, Bottle - Green]|h|r",EquipLoc="INVTYPE_WEAPON"},["Cloak of Veiled Shadows"]={SubType="Cloth",Level=67,id=21406,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133771,Link="|cffa335ee|Hitem:21406::::::::40:::::::|h[Cloak of Veiled Shadows]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Samophlange Manual"]={SubType="Quest",Level=1,id=11149,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133736,Type="Quest",Link="|cffffffff|Hitem:11149::::::::40:::::::|h[Samophlange Manual]|h|r",EquipLoc=""},["Enigma Robes"]={SubType="Cloth",Level=88,id=21343,StackCount=1,Rarity=4,MinLevel=60,SellPrice=104850,Texture=132652,Link="|cffa335ee|Hitem:21343::::::::40:::::::|h[Enigma Robes]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Head of Deepfury"]={SubType="Quest",Level=1,id=3640,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134159,Link="|cffffffff|Hitem:3640::::::::40:::::::|h[Head of Deepfury]|h|r",EquipLoc="",Type="Quest"},["Venomous Totem"]={SubType="Miscellaneous",Level=76,id=19342,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72039,Texture=134232,Link="|cffa335ee|Hitem:19342::::::::40:::::::|h[Venomous Totem]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Husk of Nerub'enkan"]={SubType="Shields",Level=61,id=13529,StackCount=1,Rarity=3,MinLevel=56,SellPrice=32303,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:13529::::::::40:::::::|h[Husk of Nerub'enkan]|h|r"},["Mystical Cape"]={SubType="Cloth",Level=52,id=10174,StackCount=1,Rarity=2,MinLevel=47,SellPrice=8121,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10174::::::::40:::::::|h[Mystical Cape]|h|r",Type="Armor"},["Sentry's Shield"]={SubType="Shields",Level=31,id=15530,StackCount=1,Rarity=2,MinLevel=26,SellPrice=3222,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15530::::::::40:::::::|h[Sentry's Shield]|h|r",Type="Armor"},["Celestial Bindings"]={SubType="Cloth",Level=55,id=14311,StackCount=1,Rarity=2,MinLevel=50,SellPrice=6524,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14311::::::::40:::::::|h[Celestial Bindings]|h|r"},["First Mosh'aru Tablet"]={SubType="Quest",Level=1,id=10660,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134417,EquipLoc="",Link="|cffffffff|Hitem:10660::::::::40:::::::|h[First Mosh'aru Tablet]|h|r",Type="Quest"},["Mercurial Girdle"]={SubType="Mail",Level=61,id=10154,StackCount=1,Rarity=2,MinLevel=56,SellPrice=13337,Texture=132500,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10154::::::::40:::::::|h[Mercurial Girdle]|h|r",Type="Armor"},["Book of Soothe Animal II"]={SubType="Book",Level=38,id=8788,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8788::::::::40:::::::|h[Book of Soothe Animal II]|h|r"},["Piece of Coral"]={SubType="Junk",Level=1,id=5371,StackCount=5,Rarity=0,MinLevel=0,SellPrice=48,Texture=135240,EquipLoc="",Link="|cff9d9d9d|Hitem:5371::::::::40:::::::|h[Piece of Coral]|h|r",Type="Miscellaneous"},["Plans: Golden Iron Destroyer"]={SubType="Blacksmithing",Level=34,id=3867,StackCount=1,Rarity=2,MinLevel=0,SellPrice=950,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:3867::::::::40:::::::|h[Plans: Golden Iron Destroyer]|h|r",EquipLoc=""},["Recipe: Swiftness Potion"]={SubType="Alchemy",Level=15,id=2555,StackCount=1,Rarity=2,MinLevel=0,SellPrice=40,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:2555::::::::40:::::::|h[Recipe: Swiftness Potion]|h|r"},["Bloodsail Admiral's Hat"]={SubType="Cloth",Level=60,id=12185,StackCount=1,Rarity=2,MinLevel=0,SellPrice=12895,Texture=133168,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:12185::::::::40:::::::|h[Bloodsail Admiral's Hat]|h|r"},["Mountainside Buckler"]={SubType="Shields",Level=46,id=13082,StackCount=1,Rarity=3,MinLevel=41,SellPrice=13235,Texture=134961,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:13082::::::::40:::::::|h[Mountainside Buckler]|h|r"},["Heartswood"]={SubType="Quest",Level=1,id=6912,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136065,Link="|cffffffff|Hitem:6912::::::::40:::::::|h[Heartswood]|h|r",EquipLoc="",Type="Quest"},["Traveler's Spaulders"]={SubType="Leather",Level=59,id=8301,StackCount=1,Rarity=2,MinLevel=54,SellPrice=14463,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:8301::::::::40:::::::|h[Traveler's Spaulders]|h|r"},["Vanguard Sabatons"]={SubType="Plate",Level=54,id=14857,StackCount=1,Rarity=2,MinLevel=49,SellPrice=9266,Texture=132586,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14857::::::::40:::::::|h[Vanguard Sabatons]|h|r"},["Brain Hacker"]={SubType="Two-Handed Axes",Level=60,id=1263,StackCount=1,Rarity=4,MinLevel=55,SellPrice=79064,Texture=135580,Link="|cffa335ee|Hitem:1263::::::::40:::::::|h[Brain Hacker]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Scroll of Spirit III"]={SubType="Consumable",Level=40,id=4424,StackCount=5,Rarity=1,MinLevel=30,SellPrice=100,Texture=134937,Link="|cffffffff|Hitem:4424::::::::40:::::::|h[Scroll of Spirit III]|h|r",EquipLoc="",Type="Consumable"},["Abyssal Plate Epaulets"]={SubType="Plate",Level=68,id=20683,StackCount=1,Rarity=3,MinLevel=60,SellPrice=21028,Texture=135053,Link="|cff0070dd|Hitem:20683::::::::40:::::::|h[Abyssal Plate Epaulets]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Ursangous's Paw"]={SubType="Quest",Level=20,id=16303,StackCount=1,Rarity=2,MinLevel=20,SellPrice=0,Texture=132941,EquipLoc="",Link="|cff1eff00|Hitem:16303::::::::40:::::::|h[Ursangous's Paw]|h|r",Type="Quest"},["Bouquet of Black Roses"]={SubType="Miscellaneous",Level=60,id=3424,StackCount=1,Rarity=1,MinLevel=0,SellPrice=125000,Texture=133436,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:3424::::::::40:::::::|h[Bouquet of Black Roses]|h|r"},["Vicar's Robe"]={SubType="Cloth",Level=26,id=3569,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1262,Texture=132683,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:3569::::::::40:::::::|h[Vicar's Robe]|h|r",Type="Armor"},["Fortified Shield"]={SubType="Shields",Level=25,id=9816,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1781,Texture=134953,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9816::::::::40:::::::|h[Fortified Shield]|h|r"},["Skull of the Coldbringer"]={SubType="Quest",Level=1,id=10420,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,EquipLoc="",Link="|cffffffff|Hitem:10420::::::::40:::::::|h[Skull of the Coldbringer]|h|r",Type="Quest"},["Tome of Cone of Cold III"]={SubType="Book",Level=42,id=8854,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133739,Link="|cffffffff|Hitem:8854::::::::40:::::::|h[Tome of Cone of Cold III]|h|r",EquipLoc="",Type="Recipe"},["Monster - Item, Tankard Gold Offhand"]={SubType="Miscellaneous",Level=1,id=13862,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=132795,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13862::::::::40:::::::|h[Monster - Item, Tankard Gold Offhand]|h|r"},["Embossed Plate Helmet"]={SubType="Plate",Level=43,id=9969,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3964,Texture=133127,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9969::::::::40:::::::|h[Embossed Plate Helmet]|h|r"},["Dark Leather Boots"]={SubType="Leather",Level=20,id=2315,StackCount=1,Rarity=1,MinLevel=15,SellPrice=307,Texture=132539,Type="Armor",Link="|cffffffff|Hitem:2315::::::::40:::::::|h[Dark Leather Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Lightforge Bracers"]={SubType="Plate",Level=57,id=16722,StackCount=1,Rarity=3,MinLevel=52,SellPrice=8105,Texture=132613,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16722::::::::40:::::::|h[Lightforge Bracers]|h|r",Type="Armor"},["Inferno Cloak"]={SubType="Cloth",Level=25,id=4790,StackCount=1,Rarity=2,MinLevel=20,SellPrice=831,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:4790::::::::40:::::::|h[Inferno Cloak]|h|r"},["Axe of Orgrimmar"]={SubType="Two-Handed Axes",Level=18,id=15424,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1404,Texture=132395,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15424::::::::40:::::::|h[Axe of Orgrimmar]|h|r",Type="Weapon"},["Captain's Breastplate"]={SubType="Mail",Level=44,id=7486,StackCount=1,Rarity=2,MinLevel=39,SellPrice=9325,Texture=132742,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7486::::::::40:::::::|h[Captain's Breastplate]|h|r"},["Beaded Raptor Collar"]={SubType="Cloth",Level=31,id=4463,StackCount=1,Rarity=2,MinLevel=26,SellPrice=953,Texture=132500,Link="|cff1eff00|Hitem:4463::::::::40:::::::|h[Beaded Raptor Collar]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Monster - Shield, Small Metal Damaged"]={SubType="Shields",Level=1,id=2052,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:2052::::::::40:::::::|h[Monster - Shield, Small Metal Damaged]|h|r"},["Gargoyle's Bite"]={SubType="Polearms",Level=22,id=12989,StackCount=1,Rarity=3,MinLevel=20,SellPrice=2854,Texture=135128,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12989::::::::40:::::::|h[Gargoyle's Bite]|h|r"},["Recipe: Alchemists' Stone"]={SubType="Alchemy",Level=60,id=13517,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13517::::::::40:::::::|h[Recipe: Alchemists' Stone]|h|r"},["Blood of Heroes"]={SubType="Quest",Level=60,id=12938,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134813,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12938::::::::40:::::::|h[Blood of Heroes]|h|r"},["Ripe Watermelon"]={SubType="Consumable",Level=5,id=5057,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=133978,Link="|cffffffff|Hitem:5057::::::::40:::::::|h[Ripe Watermelon]|h|r",EquipLoc="",Type="Consumable"},["Elegant Leggings"]={SubType="Cloth",Level=61,id=10217,StackCount=1,Rarity=2,MinLevel=56,SellPrice=16688,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10217::::::::40:::::::|h[Elegant Leggings]|h|r",Type="Armor"},["Gaea's Circlet"]={SubType="Cloth",Level=49,id=14271,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6599,Texture=132520,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14271::::::::40:::::::|h[Gaea's Circlet]|h|r"},["Ring of Critical Testing 4"]={SubType="Miscellaneous",Level=60,id=18982,StackCount=1,Rarity=4,MinLevel=0,SellPrice=56012,Texture=133357,Type="Armor",Link="|cffa335ee|Hitem:18982::::::::40:::::::|h[Ring of Critical Testing 4]|h|r",EquipLoc="INVTYPE_FINGER"},["Monster - Staff, Ornate Jeweled Staff - Purple Low Purple Glow"]={SubType="Staves",Level=1,id=14837,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14837::::::::40:::::::|h[Monster - Staff, Ornate Jeweled Staff - Purple Low Purple Glow]|h|r"},["Monster - Shield, Scarlet Crusade B03"]={SubType="Shields",Level=1,id=12933,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:12933::::::::40:::::::|h[Monster - Shield, Scarlet Crusade B03]|h|r"},["Bloodwoven Wraps"]={SubType="Cloth",Level=51,id=14265,StackCount=1,Rarity=2,MinLevel=46,SellPrice=9853,Texture=132643,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14265::::::::40:::::::|h[Bloodwoven Wraps]|h|r"},["Might of the Timbermaw"]={SubType="Leather",Level=58,id=19044,StackCount=1,Rarity=3,MinLevel=53,SellPrice=11116,Texture=132498,Link="|cff0070dd|Hitem:19044::::::::40:::::::|h[Might of the Timbermaw]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Hunting Cloak"]={SubType="Cloth",Level=13,id=4689,StackCount=1,Rarity=1,MinLevel=8,SellPrice=106,Texture=133764,Type="Armor",Link="|cffffffff|Hitem:4689::::::::40:::::::|h[Hunting Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Overlinked Chain Belt"]={SubType="Mail",Level=44,id=4000,StackCount=1,Rarity=0,MinLevel=39,SellPrice=1797,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:4000::::::::40:::::::|h[Overlinked Chain Belt]|h|r",Type="Armor"},["JYoo test item"]={SubType="One-Handed Axes",Level=1,id=1259,StackCount=1,Rarity=0,MinLevel=0,SellPrice=2,Texture=132392,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:1259::::::::40:::::::|h[JYoo test item]|h|r",Type="Weapon"},["White Drakeskin Cap"]={SubType="Leather",Level=40,id=4543,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4098,Texture=133111,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:4543::::::::40:::::::|h[White Drakeskin Cap]|h|r"},["Wicked Chain Gauntlets"]={SubType="Mail",Level=30,id=15538,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1412,Texture=132949,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15538::::::::40:::::::|h[Wicked Chain Gauntlets]|h|r",Type="Armor"},["Essence of the Firelord DEPRECATED"]={SubType="Quest",Level=1,id=18566,StackCount=1,Rarity=5,MinLevel=100,SellPrice=0,Texture=135826,Type="Quest",Link="|cffff8000|Hitem:18566::::::::40:::::::|h[Essence of the Firelord DEPRECATED]|h|r",EquipLoc=""},["Monster - Item, Bucket - Wood"]={SubType="Miscellaneous",Level=1,id=12801,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133942,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12801::::::::40:::::::|h[Monster - Item, Bucket - Wood]|h|r"},["Tarnished Chain Gloves"]={SubType="Mail",Level=5,id=2385,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2385::::::::40:::::::|h[Tarnished Chain Gloves]|h|r",Type="Armor"},["Demonic Rune"]={SubType="Trade Goods",Level=50,id=12662,StackCount=20,Rarity=2,MinLevel=0,SellPrice=600,Texture=134417,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:12662::::::::40:::::::|h[Demonic Rune]|h|r"},["Stringy Vulture Meat"]={SubType="Trade Goods",Level=10,id=729,StackCount=10,Rarity=1,MinLevel=0,SellPrice=17,Texture=133972,EquipLoc="",Link="|cffffffff|Hitem:729::::::::40:::::::|h[Stringy Vulture Meat]|h|r",Type="Trade Goods"},["Dreadmist Robe"]={SubType="Cloth",Level=63,id=16700,StackCount=1,Rarity=3,MinLevel=58,SellPrice=24071,Texture=132690,EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:16700::::::::40:::::::|h[Dreadmist Robe]|h|r",Type="Armor"},["Tablet of Rockbiter Weapon III"]={SubType="Book",Level=30,id=9082,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9082::::::::40:::::::|h[Tablet of Rockbiter Weapon III]|h|r"},["Padded Armor"]={SubType="Cloth",Level=27,id=2160,StackCount=1,Rarity=1,MinLevel=22,SellPrice=832,Texture=135006,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:2160::::::::40:::::::|h[Padded Armor]|h|r"},["Shadowhide Pendant"]={SubType="Quest",Level=1,id=1075,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133437,EquipLoc="",Link="|cffffffff|Hitem:1075::::::::40:::::::|h[Shadowhide Pendant]|h|r",Type="Quest"},["Right Piece of Lord Valthalak's Amulet"]={SubType="Quest",Level=1,id=22046,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133318,Link="|cffffffff|Hitem:22046::::::::40:::::::|h[Right Piece of Lord Valthalak's Amulet]|h|r",EquipLoc="",Type="Quest"},["Valley of Trials Gift Voucher"]={SubType="Quest",Level=1,id=14649,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134140,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14649::::::::40:::::::|h[Valley of Trials Gift Voucher]|h|r"},["Encrypted Sigil"]={SubType="Quest",Level=1,id=9551,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134415,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9551::::::::40:::::::|h[Encrypted Sigil]|h|r"},["[UNUSED] Letter Cookie"]={SubType="Consumable",Level=0,id=23086,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132934,Link="|cffffffff|Hitem:23086::::::::40:::::::|h[[UNUSED] Letter Cookie]|h|r",EquipLoc="",Type="Consumable"},["Pattern: Runic Leather Bracers"]={SubType="Leatherworking",Level=55,id=15739,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15739::::::::40:::::::|h[Pattern: Runic Leather Bracers]|h|r",Type="Recipe"},["Heartseeking Crossbow"]={SubType="Crossbows",Level=56,id=13040,StackCount=1,Rarity=3,MinLevel=51,SellPrice=29444,Texture=135533,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13040::::::::40:::::::|h[Heartseeking Crossbow]|h|r"},["Monster - Mace, The Hand of Nefarius"]={SubType="One-Handed Maces",Level=1,id=19404,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133476,Link="|cff9d9d9d|Hitem:19404::::::::40:::::::|h[Monster - Mace, The Hand of Nefarius]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Grilled Squid"]={SubType="Consumable",Level=45,id=13928,StackCount=20,Rarity=1,MinLevel=35,SellPrice=8,Texture=133899,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13928::::::::40:::::::|h[Grilled Squid]|h|r"},["Hypnotic Blade"]={SubType="Daggers",Level=39,id=7714,StackCount=1,Rarity=3,MinLevel=34,SellPrice=3835,Texture=135643,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:7714::::::::40:::::::|h[Hypnotic Blade]|h|r"},["Hawkeye's Gloves"]={SubType="Leather",Level=37,id=14594,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2236,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14594::::::::40:::::::|h[Hawkeye's Gloves]|h|r"},["Atal'ai Leggings"]={SubType="Leather",Level=52,id=10785,StackCount=1,Rarity=2,MinLevel=47,SellPrice=13200,Texture=134587,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10785::::::::40:::::::|h[Atal'ai Leggings]|h|r",Type="Armor"},["Snarkshaw Spaulders"]={SubType="Leather",Level=54,id=11871,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10666,Texture=135046,Type="Armor",Link="|cff1eff00|Hitem:11871::::::::40:::::::|h[Snarkshaw Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Shadowy Potion OLD"]={SubType="Quest",Level=1,id=18685,StackCount=3,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134807,Type="Quest",Link="|cffffffff|Hitem:18685::::::::40:::::::|h[Shadowy Potion OLD]|h|r",EquipLoc=""},["Imperial Plate Leggings"]={SubType="Plate",Level=61,id=12429,StackCount=1,Rarity=2,MinLevel=56,SellPrice=17923,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:12429::::::::40:::::::|h[Imperial Plate Leggings]|h|r"},["Test Arcane Res Hands Mail"]={SubType="Mail",Level=35,id=16164,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2070,Texture=132962,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:16164::::::::40:::::::|h[Test Arcane Res Hands Mail]|h|r",Type="Armor"},["Gryphon Mail Gauntlets"]={SubType="Mail",Level=47,id=15625,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5818,Texture=132944,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15625::::::::40:::::::|h[Gryphon Mail Gauntlets]|h|r",Type="Armor"},["Grizzly Jerkin"]={SubType="Leather",Level=16,id=15304,StackCount=1,Rarity=2,MinLevel=11,SellPrice=414,Texture=132716,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15304::::::::40:::::::|h[Grizzly Jerkin]|h|r",Type="Armor"},["[PH] Leather Chestguard of the Rising Dawn"]={SubType="Leather",Level=100,id=13767,StackCount=1,Rarity=1,MinLevel=100,SellPrice=90784,Texture=132722,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13767::::::::40:::::::|h[[PH] Leather Chestguard of the Rising Dawn]|h|r"},["Schematic: Ultra-Flash Shadow Reflector"]={SubType="Engineering",Level=60,id=18658,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:18658::::::::40:::::::|h[Schematic: Ultra-Flash Shadow Reflector]|h|r",EquipLoc=""},["Rin'ji's Secret"]={SubType="Quest",Level=1,id=8724,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134459,Link="|cffffffff|Hitem:8724::::::::40:::::::|h[Rin'ji's Secret]|h|r",EquipLoc="",Type="Quest"},["Band of Cenarius"]={SubType="Miscellaneous",Level=70,id=22725,StackCount=1,Rarity=3,MinLevel=0,SellPrice=38790,Texture=133353,Link="|cff0070dd|Hitem:22725::::::::40:::::::|h[Band of Cenarius]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Scaled Leather Boots"]={SubType="Leather",Level=31,id=9828,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1845,Texture=132537,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9828::::::::40:::::::|h[Scaled Leather Boots]|h|r"},["Bellygrub's Tusk"]={SubType="Quest",Level=1,id=3631,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133721,Type="Quest",Link="|cffffffff|Hitem:3631::::::::40:::::::|h[Bellygrub's Tusk]|h|r",EquipLoc=""},["Crate of Lightforge Ingots"]={SubType="Quest",Level=1,id=2712,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Link="|cffffffff|Hitem:2712::::::::40:::::::|h[Crate of Lightforge Ingots]|h|r",EquipLoc="",Type="Quest"},["Disarming Colloid"]={SubType="Quest",Level=1,id=2609,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,EquipLoc="",Link="|cffffffff|Hitem:2609::::::::40:::::::|h[Disarming Colloid]|h|r",Type="Quest"},["Warden Staff"]={SubType="Staves",Level=48,id=943,StackCount=1,Rarity=4,MinLevel=43,SellPrice=42863,Texture=135166,Link="|cffa335ee|Hitem:943::::::::40:::::::|h[Warden Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Hakkari Blood"]={SubType="Key",Level=1,id=10460,StackCount=1,Rarity=1,MinLevel=0,SellPrice=629,Texture=136124,EquipLoc="",Link="|cffffffff|Hitem:10460::::::::40:::::::|h[Hakkari Blood]|h|r",Type="Key"},["Lethtendris's Wand"]={SubType="Wands",Level=58,id=18301,StackCount=1,Rarity=2,MinLevel=53,SellPrice=29363,Texture=135468,Type="Weapon",Link="|cff1eff00|Hitem:18301::::::::40:::::::|h[Lethtendris's Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Silithid Claw"]={SubType="Fist Weapons",Level=76,id=21673,StackCount=1,Rarity=4,MinLevel=60,SellPrice=141169,Texture=134296,Link="|cffa335ee|Hitem:21673::::::::40:::::::|h[Silithid Claw]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Interlaced Boots"]={SubType="Cloth",Level=32,id=3793,StackCount=1,Rarity=0,MinLevel=27,SellPrice=648,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:3793::::::::40:::::::|h[Interlaced Boots]|h|r"},["Plainstrider Meat"]={SubType="Quest",Level=1,id=4739,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133970,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4739::::::::40:::::::|h[Plainstrider Meat]|h|r"},["Tablet of Restoration III"]={SubType="Book",Level=16,id=1057,StackCount=1,Rarity=1,MinLevel=16,SellPrice=450,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:1057::::::::40:::::::|h[Tablet of Restoration III]|h|r",Type="Recipe"},["Pledge of Adoration: Orgrimmar"]={SubType="Consumable",Level=1,id=22156,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135450,Link="|cffffffff|Hitem:22156::::::::40:::::::|h[Pledge of Adoration: Orgrimmar]|h|r",EquipLoc="",Type="Consumable"},["Fizzle's Claw"]={SubType="Quest",Level=1,id=4869,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134294,EquipLoc="",Link="|cffffffff|Hitem:4869::::::::40:::::::|h[Fizzle's Claw]|h|r",Type="Quest"},["Plans: Dark Iron Bracers"]={SubType="Blacksmithing",Level=59,id=17051,StackCount=1,Rarity=3,MinLevel=0,SellPrice=17500,Texture=134941,EquipLoc="",Link="|cff0070dd|Hitem:17051::::::::40:::::::|h[Plans: Dark Iron Bracers]|h|r",Type="Recipe"},["Crest of Darkshire"]={SubType="Shields",Level=35,id=6223,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4797,Texture=134951,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:6223::::::::40:::::::|h[Crest of Darkshire]|h|r"},["Interlaced Cloak"]={SubType="Cloth",Level=36,id=3795,StackCount=1,Rarity=0,MinLevel=31,SellPrice=981,Texture=133763,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:3795::::::::40:::::::|h[Interlaced Cloak]|h|r"},["Azuresong Mageblade"]={SubType="One-Handed Swords",Level=71,id=17103,StackCount=1,Rarity=4,MinLevel=60,SellPrice=111823,Texture=135349,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffa335ee|Hitem:17103::::::::40:::::::|h[Azuresong Mageblade]|h|r",Type="Weapon"},["Glacial Leggings"]={SubType="Cloth",Level=80,id=22700,StackCount=1,Rarity=4,MinLevel=0,SellPrice=73085,Texture=134586,Link="|cffa335ee|Hitem:22700::::::::40:::::::|h[Glacial Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Silksand Wraps"]={SubType="Cloth",Level=44,id=14425,StackCount=1,Rarity=2,MinLevel=39,SellPrice=6223,Texture=132650,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14425::::::::40:::::::|h[Silksand Wraps]|h|r"},["Reinforced Leather Gloves"]={SubType="Leather",Level=50,id=2475,StackCount=1,Rarity=1,MinLevel=45,SellPrice=3459,Texture=132939,Link="|cffffffff|Hitem:2475::::::::40:::::::|h[Reinforced Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Eye of Adaegus"]={SubType="Miscellaneous",Level=53,id=5266,StackCount=1,Rarity=3,MinLevel=48,SellPrice=11157,Texture=133347,Link="|cff0070dd|Hitem:5266::::::::40:::::::|h[Eye of Adaegus]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Boots of the Enchanter"]={SubType="Cloth",Level=35,id=4325,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2272,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:4325::::::::40:::::::|h[Boots of the Enchanter]|h|r",Type="Armor"},["Recipe: Transmute Earth to Life"]={SubType="Alchemy",Level=55,id=13489,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3750,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13489::::::::40:::::::|h[Recipe: Transmute Earth to Life]|h|r"},["Sanctified Orb"]={SubType="Miscellaneous",Level=52,id=20512,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=134123,Link="|cff0070dd|Hitem:20512::::::::40:::::::|h[Sanctified Orb]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Shiny Bauble"]={SubType="Consumable",Level=10,id=6529,StackCount=20,Rarity=1,MinLevel=0,SellPrice=12,Texture=134335,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6529::::::::40:::::::|h[Shiny Bauble]|h|r"},["Elixir of Detect Lesser Invisibility"]={SubType="Consumable",Level=39,id=3828,StackCount=5,Rarity=1,MinLevel=29,SellPrice=150,Texture=134712,Type="Consumable",Link="|cffffffff|Hitem:3828::::::::40:::::::|h[Elixir of Detect Lesser Invisibility]|h|r",EquipLoc=""},["Blizzard Stationery"]={SubType="Consumable",Level=0,id=18154,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135724,Type="Consumable",Link="|cffffffff|Hitem:18154::::::::40:::::::|h[Blizzard Stationery]|h|r",EquipLoc=""},["Turquoise Sash"]={SubType="Cloth",Level=58,id=15791,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7172,Texture=132499,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15791::::::::40:::::::|h[Turquoise Sash]|h|r",Type="Armor"},["Head of Targorr"]={SubType="Quest",Level=1,id=3630,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3630::::::::40:::::::|h[Head of Targorr]|h|r"},["Wild Steelbloom"]={SubType="Trade Goods",Level=22,id=3355,StackCount=20,Rarity=1,MinLevel=0,SellPrice=50,Texture=133938,Link="|cffffffff|Hitem:3355::::::::40:::::::|h[Wild Steelbloom]|h|r",EquipLoc="",Type="Trade Goods"},["Relic of Truth"]={SubType="Miscellaneous",Level=20,id=3005,StackCount=1,Rarity=1,MinLevel=15,SellPrice=250,Texture=133435,Link="|cffffffff|Hitem:3005::::::::40:::::::|h[Relic of Truth]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Knight-Lieutenant's Silk Walkers"]={SubType="Cloth",Level=66,id=23291,StackCount=1,Rarity=3,MinLevel=60,SellPrice=9865,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:23291::::::::40:::::::|h[Knight-Lieutenant's Silk Walkers]|h|r"},["Dredgemire Leggings"]={SubType="Leather",Level=18,id=15450,StackCount=1,Rarity=2,MinLevel=0,SellPrice=533,Texture=134587,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15450::::::::40:::::::|h[Dredgemire Leggings]|h|r",Type="Armor"},["Death Striker"]={SubType="Two-Handed Axes",Level=63,id=15273,StackCount=1,Rarity=2,MinLevel=58,SellPrice=57108,Texture=132409,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15273::::::::40:::::::|h[Death Striker]|h|r",Type="Weapon"},["Warrior's Tunic"]={SubType="Mail",Level=11,id=2965,StackCount=1,Rarity=2,MinLevel=6,SellPrice=189,Texture=132624,Link="|cff1eff00|Hitem:2965::::::::40:::::::|h[Warrior's Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Water Pitcher"]={SubType="Quest",Level=1,id=4755,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132795,EquipLoc="",Link="|cffffffff|Hitem:4755::::::::40:::::::|h[Water Pitcher]|h|r",Type="Quest"},["Incendicite Ore"]={SubType="Trade Goods",Level=22,id=3340,StackCount=10,Rarity=1,MinLevel=0,SellPrice=31,Texture=134577,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:3340::::::::40:::::::|h[Incendicite Ore]|h|r"},["Empty Mana Gem"]={SubType="Consumable",Level=28,id=5223,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134134,Link="|cffffffff|Hitem:5223::::::::40:::::::|h[Empty Mana Gem]|h|r",EquipLoc="",Type="Consumable"},["Ornate Mithril Pants"]={SubType="Plate",Level=44,id=7926,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5952,Texture=134584,Link="|cff1eff00|Hitem:7926::::::::40:::::::|h[Ornate Mithril Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Stormrager"]={SubType="Wands",Level=62,id=16997,StackCount=1,Rarity=3,MinLevel=0,SellPrice=41603,Texture=135467,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:16997::::::::40:::::::|h[Stormrager]|h|r",Type="Weapon"},["QAEnchant Cloak +1% Dodge"]={SubType="Consumable",Level=1,id=22043,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22043::::::::40:::::::|h[QAEnchant Cloak +1% Dodge]|h|r",EquipLoc="",Type="Consumable"},["Earthfury Boots"]={SubType="Mail",Level=66,id=16837,StackCount=1,Rarity=4,MinLevel=60,SellPrice=38550,Texture=132587,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16837::::::::40:::::::|h[Earthfury Boots]|h|r",Type="Armor"},["Pattern: Stormcloth Headband"]={SubType="Tailoring",Level=48,id=10319,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1750,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10319::::::::40:::::::|h[Pattern: Stormcloth Headband]|h|r",Type="Recipe"},["Deathchill Armor"]={SubType="Mail",Level=44,id=10764,StackCount=1,Rarity=3,MinLevel=39,SellPrice=10434,Texture=132747,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:10764::::::::40:::::::|h[Deathchill Armor]|h|r",Type="Armor"},["Gnarled Staff"]={SubType="Staves",Level=20,id=2030,StackCount=1,Rarity=1,MinLevel=15,SellPrice=1108,Texture=135147,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:2030::::::::40:::::::|h[Gnarled Staff]|h|r",Type="Weapon"},["Grimclaw"]={SubType="One-Handed Axes",Level=25,id=1481,StackCount=1,Rarity=3,MinLevel=20,SellPrice=3337,Texture=132404,Type="Weapon",Link="|cff0070dd|Hitem:1481::::::::40:::::::|h[Grimclaw]|h|r",EquipLoc="INVTYPE_WEAPON"},["Worn Running Boots"]={SubType="Leather",Level=40,id=9398,StackCount=1,Rarity=2,MinLevel=35,SellPrice=1244,Texture=132536,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9398::::::::40:::::::|h[Worn Running Boots]|h|r"},["Warped Leather Belt"]={SubType="Leather",Level=14,id=1502,StackCount=1,Rarity=0,MinLevel=9,SellPrice=60,Texture=132515,Type="Armor",Link="|cff9d9d9d|Hitem:1502::::::::40:::::::|h[Warped Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Woodland Shield"]={SubType="Shields",Level=5,id=5395,StackCount=1,Rarity=1,MinLevel=0,SellPrice=16,Texture=134949,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:5395::::::::40:::::::|h[Woodland Shield]|h|r",Type="Armor"},["Pamela's Doll"]={SubType="Consumable",Level=1,id=12885,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134231,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12885::::::::40:::::::|h[Pamela's Doll]|h|r"},["Ballast Maul"]={SubType="Two-Handed Maces",Level=36,id=1990,StackCount=1,Rarity=2,MinLevel=31,SellPrice=10077,Texture=133481,Link="|cff1eff00|Hitem:1990::::::::40:::::::|h[Ballast Maul]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Drape of Benediction"]={SubType="Cloth",Level=67,id=18208,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29147,Texture=133756,Type="Armor",Link="|cffa335ee|Hitem:18208::::::::40:::::::|h[Drape of Benediction]|h|r",EquipLoc="INVTYPE_CLOAK"},["Lord's Crest"]={SubType="Shields",Level=53,id=10078,StackCount=1,Rarity=2,MinLevel=48,SellPrice=18642,Texture=135964,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:10078::::::::40:::::::|h[Lord's Crest]|h|r",Type="Armor"},["Reins of the Bengal Tiger"]={SubType="Junk",Level=40,id=8630,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132242,Link="|cffffffff|Hitem:8630::::::::40:::::::|h[Reins of the Bengal Tiger]|h|r",EquipLoc="",Type="Miscellaneous"},["Serpentskin Spaulders"]={SubType="Leather",Level=53,id=8263,StackCount=1,Rarity=2,MinLevel=48,SellPrice=10373,Texture=135054,Link="|cff1eff00|Hitem:8263::::::::40:::::::|h[Serpentskin Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Ironheart Chain"]={SubType="Mail",Level=15,id=3166,StackCount=1,Rarity=2,MinLevel=0,SellPrice=407,Texture=132624,Type="Armor",Link="|cff1eff00|Hitem:3166::::::::40:::::::|h[Ironheart Chain]|h|r",EquipLoc="INVTYPE_CHEST"},["Squire's Boots"]={SubType="Miscellaneous",Level=1,id=43,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:43::::::::40:::::::|h[Squire's Boots]|h|r",Type="Armor"},["Cloak of Draconic Might"]={SubType="Cloth",Level=70,id=19436,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31956,Texture=133763,Link="|cffa335ee|Hitem:19436::::::::40:::::::|h[Cloak of Draconic Might]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Cat Carrier (Orange Tabby)"]={SubType="Junk",Level=20,id=8487,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=132599,Link="|cffffffff|Hitem:8487::::::::40:::::::|h[Cat Carrier (Orange Tabby)]|h|r",EquipLoc="",Type="Miscellaneous"},["Murloc Skin Bag"]={SubType="Bag",Level=25,id=1470,StackCount=1,Rarity=1,MinLevel=0,SellPrice=875,Texture=133626,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:1470::::::::40:::::::|h[Murloc Skin Bag]|h|r",Type="Container"},["Black Velvet Robes"]={SubType="Cloth",Level=26,id=2800,StackCount=1,Rarity=3,MinLevel=21,SellPrice=1525,Texture=132689,Link="|cff0070dd|Hitem:2800::::::::40:::::::|h[Black Velvet Robes]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Skeletal Gauntlets"]={SubType="Mail",Level=17,id=4676,StackCount=1,Rarity=2,MinLevel=12,SellPrice=278,Texture=132937,Link="|cff1eff00|Hitem:4676::::::::40:::::::|h[Skeletal Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Draenethyst Shard"]={SubType="Quest",Level=1,id=6190,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134128,Type="Quest",Link="|cffffffff|Hitem:6190::::::::40:::::::|h[Draenethyst Shard]|h|r",EquipLoc=""},["Book of Thorns VI"]={SubType="Book",Level=54,id=8792,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8792::::::::40:::::::|h[Book of Thorns VI]|h|r"},["Dervish Buckler"]={SubType="Shields",Level=28,id=6598,StackCount=1,Rarity=2,MinLevel=23,SellPrice=2426,Texture=134956,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:6598::::::::40:::::::|h[Dervish Buckler]|h|r"},["Lavacrest Leggings"]={SubType="Plate",Level=58,id=11802,StackCount=1,Rarity=3,MinLevel=53,SellPrice=17976,Texture=134584,Type="Armor",Link="|cff0070dd|Hitem:11802::::::::40:::::::|h[Lavacrest Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Warrior's Boots"]={SubType="Mail",Level=10,id=2967,StackCount=1,Rarity=1,MinLevel=5,SellPrice=66,Texture=132589,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:2967::::::::40:::::::|h[Warrior's Boots]|h|r"},["Master Dragonslayer's Medallion"]={SubType="Miscellaneous",Level=83,id=19383,StackCount=1,Rarity=4,MinLevel=60,SellPrice=128862,Texture=133305,Link="|cffa335ee|Hitem:19383::::::::40:::::::|h[Master Dragonslayer's Medallion]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Peerless Bracers"]={SubType="Leather",Level=55,id=15425,StackCount=1,Rarity=2,MinLevel=50,SellPrice=8272,Texture=132601,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15425::::::::40:::::::|h[Peerless Bracers]|h|r",Type="Armor"},["Legplates of Might"]={SubType="Plate",Level=66,id=16867,StackCount=1,Rarity=4,MinLevel=60,SellPrice=36358,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16867::::::::40:::::::|h[Legplates of Might]|h|r",Type="Armor"},["Cenarion Beacon"]={SubType="Quest",Level=0,id=11511,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134249,Type="Quest",Link="|cffffffff|Hitem:11511::::::::40:::::::|h[Cenarion Beacon]|h|r",EquipLoc=""},["Virtuous Gloves"]={SubType="Cloth",Level=55,id=22081,StackCount=1,Rarity=4,MinLevel=0,SellPrice=10448,Texture=132948,Link="|cffa335ee|Hitem:22081::::::::40:::::::|h[Virtuous Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Level 35 Test Gear Leather - Druid/Shaman"]={SubType="Junk",Level=1,id=13663,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13663::::::::40:::::::|h[Level 35 Test Gear Leather - Druid/Shaman]|h|r"},["Felhound Tracker Kit"]={SubType="Junk",Level=1,id=10834,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,EquipLoc="",Link="|cffffffff|Hitem:10834::::::::40:::::::|h[Felhound Tracker Kit]|h|r",Type="Miscellaneous"},["Grimoire of Devour Magic (Rank 2)"]={SubType="Book",Level=38,id=16381,StackCount=1,Rarity=1,MinLevel=38,SellPrice=2500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16381::::::::40:::::::|h[Grimoire of Devour Magic (Rank 2)]|h|r",Type="Recipe"},["Green Iron Gauntlets"]={SubType="Mail",Level=30,id=3485,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1295,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:3485::::::::40:::::::|h[Green Iron Gauntlets]|h|r"},["A Jubling's Tiny Home"]={SubType="Junk",Level=35,id=19450,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132835,Link="|cffffffff|Hitem:19450::::::::40:::::::|h[A Jubling's Tiny Home]|h|r",EquipLoc="",Type="Miscellaneous"},["Tablet of Magma Totem III"]={SubType="Book",Level=48,id=9138,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=134459,Link="|cffffffff|Hitem:9138::::::::40:::::::|h[Tablet of Magma Totem III]|h|r",EquipLoc="",Type="Recipe"},["Kromcrush's Chestplate"]={SubType="Plate",Level=62,id=18503,StackCount=1,Rarity=3,MinLevel=57,SellPrice=22521,Texture=132636,Type="Armor",Link="|cff0070dd|Hitem:18503::::::::40:::::::|h[Kromcrush's Chestplate]|h|r",EquipLoc="INVTYPE_CHEST"},["Pattern: Guardian Cloak"]={SubType="Leatherworking",Level=37,id=5974,StackCount=1,Rarity=2,MinLevel=0,SellPrice=350,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:5974::::::::40:::::::|h[Pattern: Guardian Cloak]|h|r",Type="Recipe"},["Pagan Wraps"]={SubType="Cloth",Level=26,id=14163,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1168,Texture=132661,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14163::::::::40:::::::|h[Pagan Wraps]|h|r"},["Hand of Dextren Ward"]={SubType="Quest",Level=1,id=3628,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132943,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3628::::::::40:::::::|h[Hand of Dextren Ward]|h|r"},["Empty Termite Jar"]={SubType="Quest",Level=1,id=15042,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134743,EquipLoc="",Link="|cffffffff|Hitem:15042::::::::40:::::::|h[Empty Termite Jar]|h|r",Type="Quest"},["PVP - Horde Mine Deed"]={SubType="Key",Level=1,id=6209,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134238,Link="|cffffffff|Hitem:6209::::::::40:::::::|h[PVP - Horde Mine Deed]|h|r",EquipLoc="",Type="Key"},["Augmented Chain Boots"]={SubType="Mail",Level=37,id=2420,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2387,Texture=132535,Type="Armor",Link="|cffffffff|Hitem:2420::::::::40:::::::|h[Augmented Chain Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Hive'Regal Silithid Brain"]={SubType="Quest",Level=1,id=20459,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134340,Link="|cffffffff|Hitem:20459::::::::40:::::::|h[Hive'Regal Silithid Brain]|h|r",EquipLoc="",Type="Quest"},["Resplendent Bracelets"]={SubType="Cloth",Level=57,id=14320,StackCount=1,Rarity=2,MinLevel=52,SellPrice=6855,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14320::::::::40:::::::|h[Resplendent Bracelets]|h|r"},["Infernal Orb"]={SubType="Quest",Level=1,id=7291,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134336,Link="|cffffffff|Hitem:7291::::::::40:::::::|h[Infernal Orb]|h|r",EquipLoc="",Type="Quest"},["Blue Hakkari Bijou"]={SubType="Quest",Level=61,id=19708,StackCount=250,Rarity=3,MinLevel=58,SellPrice=0,Texture=132526,Link="|cff0070dd|Hitem:19708::::::::40:::::::|h[Blue Hakkari Bijou]|h|r",EquipLoc="",Type="Quest"},["Warbringer's Spaulders"]={SubType="Plate",Level=43,id=14946,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4151,Texture=135053,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14946::::::::40:::::::|h[Warbringer's Spaulders]|h|r"},["Mistscape Boots"]={SubType="Cloth",Level=43,id=4047,StackCount=1,Rarity=2,MinLevel=38,SellPrice=3959,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:4047::::::::40:::::::|h[Mistscape Boots]|h|r"},["Triumphant Chestpiece"]={SubType="Mail",Level=65,id=15680,StackCount=1,Rarity=2,MinLevel=60,SellPrice=31983,Texture=132751,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15680::::::::40:::::::|h[Triumphant Chestpiece]|h|r",Type="Armor"},["Dragonclaw Ring"]={SubType="Miscellaneous",Level=38,id=10710,StackCount=1,Rarity=3,MinLevel=0,SellPrice=6130,Texture=133346,EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:10710::::::::40:::::::|h[Dragonclaw Ring]|h|r",Type="Armor"},["Phial of Scrying"]={SubType="Quest",Level=1,id=5251,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134715,Link="|cffffffff|Hitem:5251::::::::40:::::::|h[Phial of Scrying]|h|r",EquipLoc="",Type="Quest"},["Pattern: Reinforced Woolen Shoulders"]={SubType="Tailoring",Level=24,id=4347,StackCount=1,Rarity=2,MinLevel=0,SellPrice=150,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:4347::::::::40:::::::|h[Pattern: Reinforced Woolen Shoulders]|h|r",EquipLoc=""},["Ornate Breastplate"]={SubType="Mail",Level=58,id=10118,StackCount=1,Rarity=2,MinLevel=53,SellPrice=23381,Texture=132632,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10118::::::::40:::::::|h[Ornate Breastplate]|h|r",Type="Armor"},["Kravel's Scheme"]={SubType="Quest",Level=1,id=5826,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:5826::::::::40:::::::|h[Kravel's Scheme]|h|r",Type="Quest"},["Green Hills of Stranglethorn - Chapter III"]={SubType="Quest",Level=1,id=2758,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133677,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2758::::::::40:::::::|h[Green Hills of Stranglethorn - Chapter III]|h|r"},["Recipe: Dig Rat Stew"]={SubType="Cooking",Level=20,id=5487,StackCount=1,Rarity=1,MinLevel=0,SellPrice=200,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:5487::::::::40:::::::|h[Recipe: Dig Rat Stew]|h|r",Type="Recipe"},["Stormpike Cloth Girdle"]={SubType="Cloth",Level=60,id=19094,StackCount=1,Rarity=3,MinLevel=55,SellPrice=9488,Texture=132493,Link="|cff0070dd|Hitem:19094::::::::40:::::::|h[Stormpike Cloth Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Cord Bracers"]={SubType="Cloth",Level=11,id=5590,StackCount=1,Rarity=1,MinLevel=0,SellPrice=35,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:5590::::::::40:::::::|h[Cord Bracers]|h|r",Type="Armor"},["Ornate Spyglass"]={SubType="Devices",Level=27,id=5507,StackCount=1,Rarity=1,MinLevel=0,SellPrice=600,Texture=134440,Link="|cffffffff|Hitem:5507::::::::40:::::::|h[Ornate Spyglass]|h|r",EquipLoc="",Type="Trade Goods"},["Blood Opal"]={SubType="Consumable",Level=1,id=18595,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25000,Texture=134085,Type="Consumable",Link="|cff1eff00|Hitem:18595::::::::40:::::::|h[Blood Opal]|h|r",EquipLoc=""},["Plans: Bloodsoul Gauntlets"]={SubType="Blacksmithing",Level=65,id=19778,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19778::::::::40:::::::|h[Plans: Bloodsoul Gauntlets]|h|r",EquipLoc="",Type="Recipe"},["Book of Starfire II"]={SubType="Book",Level=26,id=8761,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133743,Link="|cffffffff|Hitem:8761::::::::40:::::::|h[Book of Starfire II]|h|r",EquipLoc="",Type="Recipe"},["Handcrafted Mastersmith Girdle"]={SubType="Plate",Level=63,id=13502,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11987,Texture=132512,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13502::::::::40:::::::|h[Handcrafted Mastersmith Girdle]|h|r"},["Green Tinted Goggles"]={SubType="Cloth",Level=30,id=4385,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1410,Texture=133149,Link="|cff1eff00|Hitem:4385::::::::40:::::::|h[Green Tinted Goggles]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Forest Leather Chestpiece"]={SubType="Leather",Level=26,id=3055,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1526,Texture=132723,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:3055::::::::40:::::::|h[Forest Leather Chestpiece]|h|r"},["Frostbit Staff"]={SubType="Staves",Level=10,id=2067,StackCount=1,Rarity=1,MinLevel=5,SellPrice=186,Texture=135152,Link="|cffffffff|Hitem:2067::::::::40:::::::|h[Frostbit Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Mulverick's Beacon"]={SubType="Quest",Level=1,id=17323,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135148,EquipLoc="",Link="|cffffffff|Hitem:17323::::::::40:::::::|h[Mulverick's Beacon]|h|r",Type="Quest"},["Smoldering Coal"]={SubType="Quest",Level=1,id=6991,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134575,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6991::::::::40:::::::|h[Smoldering Coal]|h|r"},["Ambassador Malcin's Head"]={SubType="Quest",Level=1,id=17009,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134179,EquipLoc="",Link="|cffffffff|Hitem:17009::::::::40:::::::|h[Ambassador Malcin's Head]|h|r",Type="Quest"},["QAEnchant Shield +2% Block Chance"]={SubType="Consumable",Level=1,id=22038,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22038::::::::40:::::::|h[QAEnchant Shield +2% Block Chance]|h|r",EquipLoc="",Type="Consumable"},["Guardian's Moldy Card"]={SubType="Consumable",Level=1,id=22145,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135454,Link="|cffffffff|Hitem:22145::::::::40:::::::|h[Guardian's Moldy Card]|h|r",EquipLoc="",Type="Consumable"},["Abercrombie's Crate"]={SubType="Quest",Level=1,id=1349,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132766,EquipLoc="",Link="|cffffffff|Hitem:1349::::::::40:::::::|h[Abercrombie's Crate]|h|r",Type="Quest"},["Pauldrons of Might"]={SubType="Plate",Level=66,id=16868,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27364,Texture=135046,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16868::::::::40:::::::|h[Pauldrons of Might]|h|r",Type="Armor"},["Barbaric Linen Vest"]={SubType="Cloth",Level=14,id=2578,StackCount=1,Rarity=2,MinLevel=9,SellPrice=224,Texture=132715,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:2578::::::::40:::::::|h[Barbaric Linen Vest]|h|r"},["General's Chain Girdle"]={SubType="Mail",Level=65,id=16572,StackCount=1,Rarity=4,MinLevel=60,SellPrice=12233,Texture=132503,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16572::::::::40:::::::|h[General's Chain Girdle]|h|r",Type="Armor"},["Frostwolf Assault Orders"]={SubType="Quest",Level=1,id=17442,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134940,EquipLoc="",Link="|cffffffff|Hitem:17442::::::::40:::::::|h[Frostwolf Assault Orders]|h|r",Type="Quest"},["Flawless Draenethyst Sphere"]={SubType="Quest",Level=1,id=8244,StackCount=20,Rarity=3,MinLevel=1,SellPrice=10000,Texture=134564,Type="Quest",EquipLoc="",Link="|cff0070dd|Hitem:8244::::::::40:::::::|h[Flawless Draenethyst Sphere]|h|r"},["Eschewal Greaves"]={SubType="Plate",Level=54,id=11872,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8566,Texture=132582,Type="Armor",Link="|cff1eff00|Hitem:11872::::::::40:::::::|h[Eschewal Greaves]|h|r",EquipLoc="INVTYPE_FEET"},["Deprecated Jungle Trail Pack"]={SubType="Bag",Level=25,id=1724,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133632,Link="|cffffffff|Hitem:1724::::::::40:::::::|h[Deprecated Jungle Trail Pack]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Stoneskin Totem Scroll"]={SubType="Quest",Level=4,id=6648,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Type="Quest",Link="|cffffffff|Hitem:6648::::::::40:::::::|h[Stoneskin Totem Scroll]|h|r",EquipLoc=""},["Level 20 Test Gear Leather - Hunter/Rogue"]={SubType="Junk",Level=1,id=13664,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13664::::::::40:::::::|h[Level 20 Test Gear Leather - Hunter/Rogue]|h|r"},["Ring of the Moon"]={SubType="Miscellaneous",Level=21,id=12052,StackCount=1,Rarity=2,MinLevel=16,SellPrice=837,Texture=133347,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12052::::::::40:::::::|h[Ring of the Moon]|h|r"},["Grimoire of Fire Shield (Rank 4)"]={SubType="Book",Level=44,id=16329,StackCount=1,Rarity=1,MinLevel=44,SellPrice=3000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16329::::::::40:::::::|h[Grimoire of Fire Shield (Rank 4)]|h|r",Type="Recipe"},["Nat Pagle's Guide to Extreme Anglin'"]={SubType="Junk",Level=1,id=18229,StackCount=1,Rarity=0,MinLevel=0,SellPrice=790,Texture=133734,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18229::::::::40:::::::|h[Nat Pagle's Guide to Extreme Anglin']|h|r",EquipLoc=""},["Wildmane Well Water"]={SubType="Quest",Level=1,id=4749,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133748,Link="|cffffffff|Hitem:4749::::::::40:::::::|h[Wildmane Well Water]|h|r",EquipLoc="",Type="Quest"},["Arced War Axe"]={SubType="Two-Handed Axes",Level=26,id=3191,StackCount=1,Rarity=2,MinLevel=21,SellPrice=3857,Texture=132397,Link="|cff1eff00|Hitem:3191::::::::40:::::::|h[Arced War Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Chieftain's Leggings"]={SubType="Leather",Level=51,id=9954,StackCount=1,Rarity=2,MinLevel=46,SellPrice=12125,Texture=134592,Link="|cff1eff00|Hitem:9954::::::::40:::::::|h[Chieftain's Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Pattern: Tough Scorpid Boots"]={SubType="Leatherworking",Level=47,id=8399,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,Link="|cff1eff00|Hitem:8399::::::::40:::::::|h[Pattern: Tough Scorpid Boots]|h|r",EquipLoc="",Type="Recipe"},["Wayfarer's Knapsack"]={SubType="Bag",Level=55,id=11742,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8750,Texture=133653,Type="Container",Link="|cff1eff00|Hitem:11742::::::::40:::::::|h[Wayfarer's Knapsack]|h|r",EquipLoc="INVTYPE_BAG"},["Aurora Bracers"]={SubType="Cloth",Level=38,id=4043,StackCount=1,Rarity=2,MinLevel=33,SellPrice=1958,Texture=132606,Type="Armor",Link="|cff1eff00|Hitem:4043::::::::40:::::::|h[Aurora Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Thermaplugg's Left Arm"]={SubType="Two-Handed Axes",Level=37,id=9459,StackCount=1,Rarity=3,MinLevel=32,SellPrice=13560,Texture=132394,Link="|cff0070dd|Hitem:9459::::::::40:::::::|h[Thermaplugg's Left Arm]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Tablet of Nature Resistance Totem II"]={SubType="Book",Level=44,id=9130,StackCount=1,Rarity=1,MinLevel=44,SellPrice=6250,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9130::::::::40:::::::|h[Tablet of Nature Resistance Totem II]|h|r"},["Tablet of Flame Shock"]={SubType="Book",Level=10,id=9047,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9047::::::::40:::::::|h[Tablet of Flame Shock]|h|r"},["Greater Scythe"]={SubType="One-Handed Axes",Level=40,id=15234,StackCount=1,Rarity=2,MinLevel=35,SellPrice=11354,Texture=132394,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:15234::::::::40:::::::|h[Greater Scythe]|h|r",Type="Weapon"},["Conjured Fresh Water"]={SubType="Consumable",Level=15,id=2288,StackCount=20,Rarity=1,MinLevel=5,SellPrice=0,Texture=132794,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2288::::::::40:::::::|h[Conjured Fresh Water]|h|r"},["Arcanite Skeleton Key"]={SubType="Trade Goods",Level=55,id=15872,StackCount=20,Rarity=2,MinLevel=0,SellPrice=625,Texture=134242,EquipLoc="",Link="|cff1eff00|Hitem:15872::::::::40:::::::|h[Arcanite Skeleton Key]|h|r",Type="Trade Goods"},["Beads of Ogre Might"]={SubType="Miscellaneous",Level=63,id=22150,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10283,Texture=133280,Link="|cff0070dd|Hitem:22150::::::::40:::::::|h[Beads of Ogre Might]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Athrikus Narassin's Head"]={SubType="Quest",Level=1,id=5383,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134161,EquipLoc="",Link="|cffffffff|Hitem:5383::::::::40:::::::|h[Athrikus Narassin's Head]|h|r",Type="Quest"},["Rune of Duty"]={SubType="Miscellaneous",Level=45,id=21567,StackCount=1,Rarity=3,MinLevel=40,SellPrice=10000,Texture=134415,Link="|cff0070dd|Hitem:21567::::::::40:::::::|h[Rune of Duty]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Silver Hakkari Bijou"]={SubType="Quest",Level=61,id=19714,StackCount=250,Rarity=3,MinLevel=58,SellPrice=0,Texture=132533,Link="|cff0070dd|Hitem:19714::::::::40:::::::|h[Silver Hakkari Bijou]|h|r",EquipLoc="",Type="Quest"},["Dwarven Cloth Britches"]={SubType="Cloth",Level=5,id=79,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10,Texture=134589,Type="Armor",Link="|cffffffff|Hitem:79::::::::40:::::::|h[Dwarven Cloth Britches]|h|r",EquipLoc="INVTYPE_LEGS"},["Skullspell Orb"]={SubType="Miscellaneous",Level=52,id=10708,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8982,Texture=133729,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:10708::::::::40:::::::|h[Skullspell Orb]|h|r",Type="Armor"},["Surena's Choker"]={SubType="Quest",Level=1,id=6810,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133292,Type="Quest",Link="|cffffffff|Hitem:6810::::::::40:::::::|h[Surena's Choker]|h|r",EquipLoc=""},["Runecloth Cloak"]={SubType="Cloth",Level=53,id=13860,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8741,Texture=133762,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:13860::::::::40:::::::|h[Runecloth Cloak]|h|r"},["Belt of the Archmage"]={SubType="Cloth",Level=62,id=18405,StackCount=1,Rarity=4,MinLevel=57,SellPrice=14744,Texture=132520,Type="Armor",Link="|cffa335ee|Hitem:18405::::::::40:::::::|h[Belt of the Archmage]|h|r",EquipLoc="INVTYPE_WAIST"},["Feline Mantle"]={SubType="Cloth",Level=28,id=3748,StackCount=1,Rarity=3,MinLevel=23,SellPrice=1304,Texture=135036,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:3748::::::::40:::::::|h[Feline Mantle]|h|r"},["Un'Goro Stomper Pelt"]={SubType="Quest",Level=1,id=11479,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134365,Type="Quest",Link="|cffffffff|Hitem:11479::::::::40:::::::|h[Un'Goro Stomper Pelt]|h|r",EquipLoc=""},["Skeletal Shoulders"]={SubType="Mail",Level=43,id=13132,StackCount=1,Rarity=3,MinLevel=38,SellPrice=7340,Texture=135042,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13132::::::::40:::::::|h[Skeletal Shoulders]|h|r"},["Tower Shield"]={SubType="Shields",Level=29,id=2222,StackCount=1,Rarity=0,MinLevel=24,SellPrice=1005,Texture=134957,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:2222::::::::40:::::::|h[Tower Shield]|h|r"},["Grimoire of Blood Pact (Rank 5)"]={SubType="Book",Level=50,id=16325,StackCount=1,Rarity=1,MinLevel=50,SellPrice=3750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16325::::::::40:::::::|h[Grimoire of Blood Pact (Rank 5)]|h|r",Type="Recipe"},["Hallowed Wand - Ghost"]={SubType="Consumable",Level=1,id=20409,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135474,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20409::::::::40:::::::|h[Hallowed Wand - Ghost]|h|r"},["Deepstrider Tumor"]={SubType="Quest",Level=1,id=6082,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134577,Type="Quest",Link="|cffffffff|Hitem:6082::::::::40:::::::|h[Deepstrider Tumor]|h|r",EquipLoc=""},["Sayge's Fortune #12"]={SubType="Junk",Level=1,id=19247,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19247::::::::40:::::::|h[Sayge's Fortune #12]|h|r",EquipLoc="",Type="Miscellaneous"},["Emerald Shield"]={SubType="Shields",Level=59,id=10365,StackCount=1,Rarity=2,MinLevel=54,SellPrice=26276,Texture=134950,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:10365::::::::40:::::::|h[Emerald Shield]|h|r",Type="Armor"},["Brightly Glowing Stone"]={SubType="Miscellaneous",Level=63,id=18523,StackCount=1,Rarity=3,MinLevel=58,SellPrice=34810,Texture=134333,Type="Armor",Link="|cff0070dd|Hitem:18523::::::::40:::::::|h[Brightly Glowing Stone]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Boots of the Qiraji General"]={SubType="Mail",Level=71,id=21497,StackCount=1,Rarity=3,MinLevel=60,SellPrice=39919,Texture=132554,Link="|cff0070dd|Hitem:21497::::::::40:::::::|h[Boots of the Qiraji General]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Weapon of Mass Destruction (test)"]={SubType="Junk",Level=1,id=5418,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133710,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:5418::::::::40:::::::|h[Weapon of Mass Destruction (test)]|h|r"},["Coarse Stone"]={SubType="Trade Goods",Level=15,id=2836,StackCount=20,Rarity=1,MinLevel=0,SellPrice=15,Texture=135235,Link="|cffffffff|Hitem:2836::::::::40:::::::|h[Coarse Stone]|h|r",EquipLoc="",Type="Trade Goods"},["Truestrike Shoulders"]={SubType="Leather",Level=61,id=12927,StackCount=1,Rarity=3,MinLevel=56,SellPrice=19149,Texture=135041,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:12927::::::::40:::::::|h[Truestrike Shoulders]|h|r"},["Fast Test Gun"]={SubType="Guns",Level=70,id=5550,StackCount=1,Rarity=0,MinLevel=1,SellPrice=19332,Texture=135612,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:5550::::::::40:::::::|h[Fast Test Gun]|h|r",Type="Weapon"},["Codex of Sleep"]={SubType="Book",Level=6,id=1111,StackCount=1,Rarity=1,MinLevel=6,SellPrice=50,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:1111::::::::40:::::::|h[Codex of Sleep]|h|r",Type="Recipe"},["Lei of the Lifegiver"]={SubType="Miscellaneous",Level=65,id=19312,StackCount=1,Rarity=4,MinLevel=60,SellPrice=125000,Texture=133941,Link="|cffa335ee|Hitem:19312::::::::40:::::::|h[Lei of the Lifegiver]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Heavy Scorpid Helm"]={SubType="Mail",Level=59,id=15080,StackCount=1,Rarity=2,MinLevel=54,SellPrice=18230,Texture=133122,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15080::::::::40:::::::|h[Heavy Scorpid Helm]|h|r",Type="Armor"},["Obsidian Band"]={SubType="Miscellaneous",Level=58,id=12004,StackCount=1,Rarity=2,MinLevel=53,SellPrice=9163,Texture=133343,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12004::::::::40:::::::|h[Obsidian Band]|h|r"},["Pointy Crocolisk Tooth"]={SubType="Junk",Level=1,id=770,StackCount=10,Rarity=0,MinLevel=0,SellPrice=316,Texture=133725,EquipLoc="",Link="|cff9d9d9d|Hitem:770::::::::40:::::::|h[Pointy Crocolisk Tooth]|h|r",Type="Miscellaneous"},["Venomshroud Vest"]={SubType="Cloth",Level=54,id=14437,StackCount=1,Rarity=2,MinLevel=49,SellPrice=12002,Texture=135010,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14437::::::::40:::::::|h[Venomshroud Vest]|h|r"},["Swift White Mechanostrider"]={SubType="Junk",Level=60,id=18773,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132247,Type="Miscellaneous",Link="|cffa335ee|Hitem:18773::::::::40:::::::|h[Swift White Mechanostrider]|h|r",EquipLoc=""},["Merc Sword"]={SubType="Two-Handed Swords",Level=16,id=4567,StackCount=1,Rarity=2,MinLevel=11,SellPrice=1049,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:4567::::::::40:::::::|h[Merc Sword]|h|r"},["A Head Rag"]={SubType="Junk",Level=1,id=9358,StackCount=20,Rarity=0,MinLevel=0,SellPrice=228,Texture=133694,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:9358::::::::40:::::::|h[A Head Rag]|h|r"},["Monster - Item, Orb - Lava"]={SubType="Miscellaneous",Level=1,id=12746,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135473,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12746::::::::40:::::::|h[Monster - Item, Orb - Lava]|h|r"},["The Pacifier"]={SubType="Two-Handed Maces",Level=37,id=6327,StackCount=1,Rarity=3,MinLevel=32,SellPrice=12823,Texture=133484,Type="Weapon",Link="|cff0070dd|Hitem:6327::::::::40:::::::|h[The Pacifier]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Hazecover Boots"]={SubType="Cloth",Level=54,id=12050,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8963,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:12050::::::::40:::::::|h[Hazecover Boots]|h|r"},["Wyrmtongue Shoulders"]={SubType="Leather",Level=63,id=13358,StackCount=1,Rarity=3,MinLevel=58,SellPrice=21036,Texture=135055,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13358::::::::40:::::::|h[Wyrmtongue Shoulders]|h|r"},["Cresting Charm"]={SubType="Consumable",Level=35,id=4481,StackCount=10,Rarity=1,MinLevel=25,SellPrice=176,Texture=133438,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:4481::::::::40:::::::|h[Cresting Charm]|h|r"},["Ancona Chicken"]={SubType="Junk",Level=35,id=11023,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=132762,Type="Miscellaneous",Link="|cffffffff|Hitem:11023::::::::40:::::::|h[Ancona Chicken]|h|r",EquipLoc=""},["Blessed Qiraji War Hammer"]={SubType="One-Handed Maces",Level=79,id=21268,StackCount=1,Rarity=4,MinLevel=60,SellPrice=172135,Texture=133501,Link="|cffa335ee|Hitem:21268::::::::40:::::::|h[Blessed Qiraji War Hammer]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Desecrated Headpiece"]={SubType="Junk",Level=60,id=22360,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133825,Link="|cffa335ee|Hitem:22360::::::::40:::::::|h[Desecrated Headpiece]|h|r",EquipLoc="",Type="Miscellaneous"},["Clever Hat"]={SubType="Leather",Level=58,id=18308,StackCount=1,Rarity=2,MinLevel=53,SellPrice=14006,Texture=133153,Type="Armor",Link="|cff1eff00|Hitem:18308::::::::40:::::::|h[Clever Hat]|h|r",EquipLoc="INVTYPE_HEAD"},["Glyphed Helm"]={SubType="Leather",Level=39,id=6422,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3768,Texture=133111,Type="Armor",Link="|cff1eff00|Hitem:6422::::::::40:::::::|h[Glyphed Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Blood Guard's Dragonhide Gauntlets"]={SubType="Leather",Level=63,id=16496,StackCount=1,Rarity=3,MinLevel=58,SellPrice=6853,Texture=132959,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16496::::::::40:::::::|h[Blood Guard's Dragonhide Gauntlets]|h|r",Type="Armor"},["Blessed Relic"]={SubType="Miscellaneous",Level=15,id=2921,StackCount=1,Rarity=1,MinLevel=10,SellPrice=125,Texture=134414,Link="|cffffffff|Hitem:2921::::::::40:::::::|h[Blessed Relic]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Vambraces of the Sadist"]={SubType="Plate",Level=59,id=13400,StackCount=1,Rarity=3,MinLevel=54,SellPrice=9296,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13400::::::::40:::::::|h[Vambraces of the Sadist]|h|r"},["Strange Dust"]={SubType="Trade Goods",Level=10,id=10940,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132858,EquipLoc="",Link="|cffffffff|Hitem:10940::::::::40:::::::|h[Strange Dust]|h|r",Type="Trade Goods"},["Bloodforged Bindings"]={SubType="Plate",Level=45,id=14956,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3108,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14956::::::::40:::::::|h[Bloodforged Bindings]|h|r"},["Wild Berries"]={SubType="Reagent",Level=50,id=17021,StackCount=20,Rarity=1,MinLevel=0,SellPrice=175,Texture=133749,EquipLoc="",Link="|cffffffff|Hitem:17021::::::::40:::::::|h[Wild Berries]|h|r",Type="Reagent"},["Cowl of Necromancy"]={SubType="Cloth",Level=36,id=2621,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2357,Texture=133132,Type="Armor",Link="|cff1eff00|Hitem:2621::::::::40:::::::|h[Cowl of Necromancy]|h|r",EquipLoc="INVTYPE_HEAD"},["Juju Chill"]={SubType="Quest",Level=60,id=12457,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1500,Texture=134311,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12457::::::::40:::::::|h[Juju Chill]|h|r"},["Heraldic Leggings"]={SubType="Leather",Level=49,id=8123,StackCount=1,Rarity=2,MinLevel=44,SellPrice=11275,Texture=134586,Link="|cff1eff00|Hitem:8123::::::::40:::::::|h[Heraldic Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Lunar Mantle"]={SubType="Cloth",Level=44,id=14247,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4467,Texture=135043,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14247::::::::40:::::::|h[Lunar Mantle]|h|r"},["Pattern: Stormcloth Boots"]={SubType="Tailoring",Level=50,id=10324,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10324::::::::40:::::::|h[Pattern: Stormcloth Boots]|h|r",Type="Recipe"},["Glyph of Deflection"]={SubType="Miscellaneous",Level=90,id=23040,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91160,Texture=135443,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:23040::::::::40:::::::|h[Glyph of Deflection]|h|r"},["Ancient Cornerstone Grimoire"]={SubType="Miscellaneous",Level=76,id=17067,StackCount=1,Rarity=4,MinLevel=60,SellPrice=75452,Texture=133739,EquipLoc="INVTYPE_HOLDABLE",Link="|cffa335ee|Hitem:17067::::::::40:::::::|h[Ancient Cornerstone Grimoire]|h|r",Type="Armor"},["Chainlink Towel"]={SubType="Cloth",Level=48,id=9648,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6392,Texture=133757,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9648::::::::40:::::::|h[Chainlink Towel]|h|r"},["Stonesplinter Axe"]={SubType="One-Handed Axes",Level=13,id=2265,StackCount=1,Rarity=2,MinLevel=8,SellPrice=477,Texture=132410,Link="|cff1eff00|Hitem:2265::::::::40:::::::|h[Stonesplinter Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Driftwood Branch"]={SubType="Staves",Level=10,id=7094,StackCount=1,Rarity=1,MinLevel=5,SellPrice=174,Texture=135146,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:7094::::::::40:::::::|h[Driftwood Branch]|h|r"},["Wayfaring Gloves"]={SubType="Cloth",Level=16,id=5337,StackCount=1,Rarity=2,MinLevel=0,SellPrice=167,Texture=132940,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:5337::::::::40:::::::|h[Wayfaring Gloves]|h|r"},["Troyas' Stave"]={SubType="Quest",Level=1,id=9263,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135145,Link="|cffffffff|Hitem:9263::::::::40:::::::|h[Troyas' Stave]|h|r",EquipLoc="",Type="Quest"},["Flayed Demon Skin (old2)"]={SubType="Quest",Level=25,id=6766,StackCount=1,Rarity=1,MinLevel=25,SellPrice=0,Texture=134253,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6766::::::::40:::::::|h[Flayed Demon Skin (old2)]|h|r"},["zzOLD - QAEnchant 2H Weapon +9 Damage"]={SubType="Consumable",Level=1,id=22026,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22026::::::::40:::::::|h[zzOLD - QAEnchant 2H Weapon +9 Damage]|h|r",EquipLoc="",Type="Consumable"},["Gnomish Inventor Boots"]={SubType="Cloth",Level=49,id=9645,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6768,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9645::::::::40:::::::|h[Gnomish Inventor Boots]|h|r"},["Tome of Amplify Magic IV"]={SubType="Book",Level=54,id=8882,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133739,Link="|cffffffff|Hitem:8882::::::::40:::::::|h[Tome of Amplify Magic IV]|h|r",EquipLoc="",Type="Recipe"},["Felheart Slippers"]={SubType="Cloth",Level=66,id=16803,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26181,Texture=132562,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16803::::::::40:::::::|h[Felheart Slippers]|h|r",Type="Armor"},["Right-Handed Claw"]={SubType="Fist Weapons",Level=25,id=15903,StackCount=1,Rarity=1,MinLevel=20,SellPrice=1623,Texture=132941,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:15903::::::::40:::::::|h[Right-Handed Claw]|h|r",Type="Weapon"},["Genesis Shoulderpads"]={SubType="Leather",Level=78,id=21354,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58358,Texture=135034,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:21354::::::::40:::::::|h[Genesis Shoulderpads]|h|r"},["Emerald Gauntlets"]={SubType="Plate",Level=57,id=10277,StackCount=1,Rarity=2,MinLevel=52,SellPrice=6985,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10277::::::::40:::::::|h[Emerald Gauntlets]|h|r",Type="Armor"},["Silithid Husked Launcher"]={SubType="Guns",Level=68,id=21800,StackCount=1,Rarity=3,MinLevel=60,SellPrice=52522,Texture=135619,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:21800::::::::40:::::::|h[Silithid Husked Launcher]|h|r"},["Empty Dew Gland"]={SubType="Junk",Level=0,id=8430,StackCount=10,Rarity=0,MinLevel=0,SellPrice=46,Texture=133727,Link="|cff9d9d9d|Hitem:8430::::::::40:::::::|h[Empty Dew Gland]|h|r",EquipLoc="",Type="Miscellaneous"},["Ricochet Blunderbuss"]={SubType="Guns",Level=48,id=4089,StackCount=1,Rarity=2,MinLevel=43,SellPrice=15060,Texture=135612,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:4089::::::::40:::::::|h[Ricochet Blunderbuss]|h|r",Type="Weapon"},["War Rider Bracers"]={SubType="Mail",Level=40,id=4745,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3230,Texture=132608,Link="|cff1eff00|Hitem:4745::::::::40:::::::|h[War Rider Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Plans: Thorium Leggings"]={SubType="Blacksmithing",Level=60,id=12704,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12704::::::::40:::::::|h[Plans: Thorium Leggings]|h|r"},["Thistleshrub Dew"]={SubType="Quest",Level=0,id=8603,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134857,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:8603::::::::40:::::::|h[Thistleshrub Dew]|h|r"},["Recipe: Filet of Redgill"]={SubType="Cooking",Level=45,id=13941,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13941::::::::40:::::::|h[Recipe: Filet of Redgill]|h|r"},["Recipe: Goretusk Liver Pie"]={SubType="Cooking",Level=15,id=2697,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=134939,Link="|cffffffff|Hitem:2697::::::::40:::::::|h[Recipe: Goretusk Liver Pie]|h|r",EquipLoc="",Type="Recipe"},["Undelivered Parcel"]={SubType="Quest",Level=40,id=11463,StackCount=1,Rarity=2,MinLevel=40,SellPrice=0,Texture=133628,Type="Quest",Link="|cff1eff00|Hitem:11463::::::::40:::::::|h[Undelivered Parcel]|h|r",EquipLoc=""},["Firefin Snapper"]={SubType="Reagent",Level=25,id=6359,StackCount=20,Rarity=1,MinLevel=0,SellPrice=5,Texture=134299,Link="|cffffffff|Hitem:6359::::::::40:::::::|h[Firefin Snapper]|h|r",EquipLoc="",Type="Reagent"},["Mindtap Talisman"]={SubType="Miscellaneous",Level=61,id=18371,StackCount=1,Rarity=3,MinLevel=56,SellPrice=20737,Texture=132489,Type="Armor",Link="|cff0070dd|Hitem:18371::::::::40:::::::|h[Mindtap Talisman]|h|r",EquipLoc="INVTYPE_TRINKET"},["Monster - Staff, Jeweled Red Staff Low Red Flame"]={SubType="Staves",Level=1,id=14618,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14618::::::::40:::::::|h[Monster - Staff, Jeweled Red Staff Low Red Flame]|h|r"},["Recipe: Major Rejuvenation Potion"]={SubType="Alchemy",Level=60,id=18257,StackCount=1,Rarity=3,MinLevel=0,SellPrice=50000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18257::::::::40:::::::|h[Recipe: Major Rejuvenation Potion]|h|r",EquipLoc=""},["Message for Elissa Starbreeze"]={SubType="Quest",Level=1,id=5353,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,EquipLoc="",Link="|cffffffff|Hitem:5353::::::::40:::::::|h[Message for Elissa Starbreeze]|h|r",Type="Quest"},["Sentinel Breastplate"]={SubType="Leather",Level=40,id=7439,StackCount=1,Rarity=2,MinLevel=35,SellPrice=5425,Texture=132719,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7439::::::::40:::::::|h[Sentinel Breastplate]|h|r",Type="Armor"},["Orange Hakkari Bijou"]={SubType="Quest",Level=61,id=19710,StackCount=250,Rarity=3,MinLevel=58,SellPrice=0,Texture=132530,Link="|cff0070dd|Hitem:19710::::::::40:::::::|h[Orange Hakkari Bijou]|h|r",EquipLoc="",Type="Quest"},["Vest of the Den Watcher"]={SubType="Mail",Level=58,id=21320,StackCount=1,Rarity=2,MinLevel=0,SellPrice=22497,Texture=132638,Link="|cff1eff00|Hitem:21320::::::::40:::::::|h[Vest of the Den Watcher]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Evil Bat Eye"]={SubType="Junk",Level=1,id=11404,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2080,Texture=133884,Type="Miscellaneous",Link="|cffffffff|Hitem:11404::::::::40:::::::|h[Evil Bat Eye]|h|r",EquipLoc=""},["Kobold Excavation Pick"]={SubType="One-Handed Axes",Level=7,id=778,StackCount=1,Rarity=1,MinLevel=2,SellPrice=55,Texture=134708,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:778::::::::40:::::::|h[Kobold Excavation Pick]|h|r"},["Tablet of Lightning Shock"]={SubType="Book",Level=30,id=9079,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9079::::::::40:::::::|h[Tablet of Lightning Shock]|h|r"},["Fine Leather Pants"]={SubType="Leather",Level=21,id=5958,StackCount=1,Rarity=2,MinLevel=16,SellPrice=829,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:5958::::::::40:::::::|h[Fine Leather Pants]|h|r",Type="Armor"},["Hero's Buckler"]={SubType="Shields",Level=62,id=8313,StackCount=1,Rarity=2,MinLevel=57,SellPrice=30637,Texture=134953,Link="|cff1eff00|Hitem:8313::::::::40:::::::|h[Hero's Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Monster - Item, Book - B02 Blue Glowing"]={SubType="Miscellaneous",Level=1,id=12868,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12868::::::::40:::::::|h[Monster - Item, Book - B02 Blue Glowing]|h|r"},["Touch of Chaos"]={SubType="Wands",Level=68,id=19861,StackCount=1,Rarity=4,MinLevel=60,SellPrice=75990,Texture=135471,Link="|cffa335ee|Hitem:19861::::::::40:::::::|h[Touch of Chaos]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Cured Heavy Hide"]={SubType="Trade Goods",Level=30,id=4236,StackCount=20,Rarity=1,MinLevel=0,SellPrice=225,Texture=134367,EquipLoc="",Link="|cffffffff|Hitem:4236::::::::40:::::::|h[Cured Heavy Hide]|h|r",Type="Trade Goods"},["Underwater Mushroom Cap"]={SubType="Consumable",Level=35,id=8543,StackCount=20,Rarity=1,MinLevel=25,SellPrice=300,Texture=134533,Link="|cffffffff|Hitem:8543::::::::40:::::::|h[Underwater Mushroom Cap]|h|r",EquipLoc="",Type="Consumable"},["Hinott's Oil"]={SubType="Consumable",Level=1,id=8095,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134807,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8095::::::::40:::::::|h[Hinott's Oil]|h|r"},["Tablet of Water Walking"]={SubType="Book",Level=28,id=5709,StackCount=1,Rarity=1,MinLevel=28,SellPrice=1750,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:5709::::::::40:::::::|h[Tablet of Water Walking]|h|r",Type="Recipe"},["Rough Leather Pants"]={SubType="Leather",Level=10,id=798,StackCount=1,Rarity=1,MinLevel=5,SellPrice=70,Texture=134589,Link="|cffffffff|Hitem:798::::::::40:::::::|h[Rough Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Formula: Enchant Boots - Greater Stamina"]={SubType="Enchanting",Level=52,id=16215,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16215::::::::40:::::::|h[Formula: Enchant Boots - Greater Stamina]|h|r",Type="Recipe"},["Phoenix Gloves"]={SubType="Cloth",Level=25,id=4331,StackCount=1,Rarity=2,MinLevel=20,SellPrice=526,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:4331::::::::40:::::::|h[Phoenix Gloves]|h|r",Type="Armor"},["Empty Blue Waterskin"]={SubType="Quest",Level=0,id=7767,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132821,EquipLoc="",Link="|cffffffff|Hitem:7767::::::::40:::::::|h[Empty Blue Waterskin]|h|r",Type="Quest"},["Flask of Mojo"]={SubType="Trade Goods",Level=40,id=8151,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=134776,Link="|cffffffff|Hitem:8151::::::::40:::::::|h[Flask of Mojo]|h|r",EquipLoc="",Type="Trade Goods"},["Helcular's Rod"]={SubType="Quest",Level=1,id=3708,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135471,Link="|cffffffff|Hitem:3708::::::::40:::::::|h[Helcular's Rod]|h|r",EquipLoc="",Type="Quest"},["Hallowed Brazier"]={SubType="Quest",Level=1,id=22014,StackCount=1,Rarity=1,MinLevel=0,SellPrice=333333,Texture=133879,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:22014::::::::40:::::::|h[Hallowed Brazier]|h|r"},["Ghost Mushroom"]={SubType="Trade Goods",Level=47,id=8845,StackCount=20,Rarity=1,MinLevel=0,SellPrice=375,Texture=134529,Link="|cffffffff|Hitem:8845::::::::40:::::::|h[Ghost Mushroom]|h|r",EquipLoc="",Type="Trade Goods"},["Mighty Chain Pants"]={SubType="Mail",Level=23,id=4800,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1221,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:4800::::::::40:::::::|h[Mighty Chain Pants]|h|r"},["Scalemail Vest"]={SubType="Mail",Level=22,id=285,StackCount=1,Rarity=1,MinLevel=17,SellPrice=711,Texture=132631,Link="|cffffffff|Hitem:285::::::::40:::::::|h[Scalemail Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Pattern: Wicked Leather Belt"]={SubType="Leatherworking",Level=60,id=15768,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15768::::::::40:::::::|h[Pattern: Wicked Leather Belt]|h|r",Type="Recipe"},["Hazza'rah's Dream Thread"]={SubType="Quest",Level=1,id=19942,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133686,Link="|cff1eff00|Hitem:19942::::::::40:::::::|h[Hazza'rah's Dream Thread]|h|r",EquipLoc="",Type="Quest"},["Felvine Shard"]={SubType="Quest",Level=1,id=18501,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132884,Type="Quest",Link="|cffffffff|Hitem:18501::::::::40:::::::|h[Felvine Shard]|h|r",EquipLoc=""},["AHNQIRAJ TEST ITEM A CLOTH SHOULDERS"]={SubType="Miscellaneous",Level=1,id=21435,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21435::::::::40:::::::|h[AHNQIRAJ TEST ITEM A CLOTH SHOULDERS]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Ogre's Monocle"]={SubType="Quest",Level=1,id=1968,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134336,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1968::::::::40:::::::|h[Ogre's Monocle]|h|r"},["Plans: Runed Mithril Hammer"]={SubType="Blacksmithing",Level=49,id=8028,StackCount=1,Rarity=3,MinLevel=0,SellPrice=2500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:8028::::::::40:::::::|h[Plans: Runed Mithril Hammer]|h|r"},["Brashclaw's Skewer"]={SubType="Two-Handed Swords",Level=17,id=2204,StackCount=1,Rarity=2,MinLevel=12,SellPrice=1133,Texture=135321,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:2204::::::::40:::::::|h[Brashclaw's Skewer]|h|r",Type="Weapon"},["A Torn Letter"]={SubType="Quest",Level=1,id=22932,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133460,Link="|cffffffff|Hitem:22932::::::::40:::::::|h[A Torn Letter]|h|r",EquipLoc="",Type="Quest"},["Hillsbrad Town Registry"]={SubType="Quest",Level=1,id=3657,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133740,Type="Quest",Link="|cffffffff|Hitem:3657::::::::40:::::::|h[Hillsbrad Town Registry]|h|r",EquipLoc=""},["Formula: Enchant Gloves - Mining"]={SubType="Enchanting",Level=29,id=11150,StackCount=1,Rarity=2,MinLevel=0,SellPrice=750,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11150::::::::40:::::::|h[Formula: Enchant Gloves - Mining]|h|r",EquipLoc=""},["Scaled Leggings of Qiraji Fury"]={SubType="Mail",Level=76,id=21668,StackCount=1,Rarity=4,MinLevel=60,SellPrice=83111,Texture=134667,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:21668::::::::40:::::::|h[Scaled Leggings of Qiraji Fury]|h|r"},["Russet Belt"]={SubType="Cloth",Level=37,id=3593,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1095,Texture=132515,Link="|cffffffff|Hitem:3593::::::::40:::::::|h[Russet Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Top Half of Advanced Armorsmithing: Volume I"]={SubType="Quest",Level=60,id=18780,StackCount=1,Rarity=3,MinLevel=50,SellPrice=0,Texture=134332,Type="Quest",Link="|cff0070dd|Hitem:18780::::::::40:::::::|h[Top Half of Advanced Armorsmithing: Volume I]|h|r",EquipLoc=""},["Major Mana Potion"]={SubType="Consumable",Level=59,id=13444,StackCount=5,Rarity=1,MinLevel=49,SellPrice=1500,Texture=134856,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13444::::::::40:::::::|h[Major Mana Potion]|h|r"},["Bloodvine"]={SubType="Trade Goods",Level=60,id=19726,StackCount=20,Rarity=2,MinLevel=0,SellPrice=500,Texture=134189,Link="|cff1eff00|Hitem:19726::::::::40:::::::|h[Bloodvine]|h|r",EquipLoc="",Type="Trade Goods"},["High Warlord's Recurve"]={SubType="Bows",Level=78,id=18835,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34997,Texture=135496,Type="Weapon",Link="|cffa335ee|Hitem:18835::::::::40:::::::|h[High Warlord's Recurve]|h|r",EquipLoc="INVTYPE_RANGED"},["Bloodstone Wedge"]={SubType="Quest",Level=1,id=3691,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134128,EquipLoc="",Link="|cffffffff|Hitem:3691::::::::40:::::::|h[Bloodstone Wedge]|h|r",Type="Quest"},["Sleeping Robes"]={SubType="Cloth",Level=10,id=9598,StackCount=1,Rarity=2,MinLevel=0,SellPrice=94,Texture=132677,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:9598::::::::40:::::::|h[Sleeping Robes]|h|r"},["Tough Scorpid Gloves"]={SubType="Mail",Level=45,id=8204,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4676,Texture=132958,Link="|cff1eff00|Hitem:8204::::::::40:::::::|h[Tough Scorpid Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Tablet of Astral Recall"]={SubType="Book",Level=30,id=4170,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2000,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:4170::::::::40:::::::|h[Tablet of Astral Recall]|h|r",Type="Recipe"},["Monster - Item, Mutton with Bite Offhand"]={SubType="Miscellaneous",Level=1,id=13407,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=133974,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13407::::::::40:::::::|h[Monster - Item, Mutton with Bite Offhand]|h|r"},["Spry Boots"]={SubType="Leather",Level=57,id=18411,StackCount=1,Rarity=2,MinLevel=0,SellPrice=13704,Texture=132540,Type="Armor",Link="|cff1eff00|Hitem:18411::::::::40:::::::|h[Spry Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Herb Baked Egg"]={SubType="Consumable",Level=7,id=6888,StackCount=20,Rarity=1,MinLevel=1,SellPrice=10,Texture=132834,Type="Consumable",Link="|cffffffff|Hitem:6888::::::::40:::::::|h[Herb Baked Egg]|h|r",EquipLoc=""},["Genesis Helm"]={SubType="Leather",Level=81,id=21353,StackCount=1,Rarity=4,MinLevel=60,SellPrice=67301,Texture=133074,Link="|cffa335ee|Hitem:21353::::::::40:::::::|h[Genesis Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Black Mageweave Headband"]={SubType="Cloth",Level=46,id=10024,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5421,Texture=133693,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10024::::::::40:::::::|h[Black Mageweave Headband]|h|r",Type="Armor"},["Tablet of Earth Shock IV"]={SubType="Book",Level=24,id=9069,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=134459,Link="|cffffffff|Hitem:9069::::::::40:::::::|h[Tablet of Earth Shock IV]|h|r",EquipLoc="",Type="Recipe"},["Chainmail Bracers"]={SubType="Mail",Level=17,id=1846,StackCount=1,Rarity=1,MinLevel=12,SellPrice=176,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:1846::::::::40:::::::|h[Chainmail Bracers]|h|r"},["Elixir of Wisdom"]={SubType="Consumable",Level=20,id=3383,StackCount=5,Rarity=1,MinLevel=10,SellPrice=100,Texture=134717,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:3383::::::::40:::::::|h[Elixir of Wisdom]|h|r"},["Bright Cloak"]={SubType="Cloth",Level=23,id=6381,StackCount=1,Rarity=2,MinLevel=18,SellPrice=625,Texture=133762,Link="|cff1eff00|Hitem:6381::::::::40:::::::|h[Bright Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Key to the City"]={SubType="Key",Level=1,id=12382,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134247,Type="Key",EquipLoc="",Link="|cff1eff00|Hitem:12382::::::::40:::::::|h[Key to the City]|h|r"},["Crackling Staff"]={SubType="Staves",Level=65,id=19102,StackCount=1,Rarity=3,MinLevel=60,SellPrice=79705,Texture=135157,Link="|cff0070dd|Hitem:19102::::::::40:::::::|h[Crackling Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Small Red Pouch"]={SubType="Bag",Level=5,id=805,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=133638,Type="Container",Link="|cffffffff|Hitem:805::::::::40:::::::|h[Small Red Pouch]|h|r",EquipLoc="INVTYPE_BAG"},["Soulforge Bracers"]={SubType="Plate",Level=65,id=22088,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12524,Texture=132613,Link="|cff0070dd|Hitem:22088::::::::40:::::::|h[Soulforge Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["90 Green Frost Wand"]={SubType="Wands",Level=90,id=20350,StackCount=1,Rarity=2,MinLevel=60,SellPrice=140987,Texture=135467,Link="|cff1eff00|Hitem:20350::::::::40:::::::|h[90 Green Frost Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Fine Egg"]={SubType="Quest",Level=1,id=8644,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=132834,Link="|cffffffff|Hitem:8644::::::::40:::::::|h[Fine Egg]|h|r",EquipLoc="",Type="Quest"},["Pattern: Blue Linen Robe"]={SubType="Tailoring",Level=14,id=6272,StackCount=1,Rarity=1,MinLevel=0,SellPrice=75,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:6272::::::::40:::::::|h[Pattern: Blue Linen Robe]|h|r",EquipLoc=""},["Chipped Gorilla Tooth"]={SubType="Junk",Level=1,id=4097,StackCount=10,Rarity=0,MinLevel=0,SellPrice=305,Texture=133725,EquipLoc="",Link="|cff9d9d9d|Hitem:4097::::::::40:::::::|h[Chipped Gorilla Tooth]|h|r",Type="Miscellaneous"},["Pattern: Swift Boots"]={SubType="Leatherworking",Level=40,id=7453,StackCount=1,Rarity=2,MinLevel=0,SellPrice=875,Texture=134939,EquipLoc="",Link="|cff1eff00|Hitem:7453::::::::40:::::::|h[Pattern: Swift Boots]|h|r",Type="Recipe"},["Pattern: Moonglow Vest"]={SubType="Leatherworking",Level=18,id=6710,StackCount=1,Rarity=2,MinLevel=0,SellPrice=137,Texture=134939,Type="Recipe",Link="|cff1eff00|Hitem:6710::::::::40:::::::|h[Pattern: Moonglow Vest]|h|r",EquipLoc=""},["Dull Drakefire Amulet"]={SubType="Quest",Level=1,id=16888,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133444,EquipLoc="",Link="|cffffffff|Hitem:16888::::::::40:::::::|h[Dull Drakefire Amulet]|h|r",Type="Quest"},["Boot Knife"]={SubType="Thrown",Level=8,id=5379,StackCount=200,Rarity=0,MinLevel=3,SellPrice=0,Texture=135426,EquipLoc="INVTYPE_THROWN",Link="|cff9d9d9d|Hitem:5379::::::::40:::::::|h[Boot Knife]|h|r",Type="Weapon"},["Green Hills of Stranglethorn - Page 4"]={SubType="Junk",Level=1,id=2728,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,Type="Miscellaneous",Link="|cffffffff|Hitem:2728::::::::40:::::::|h[Green Hills of Stranglethorn - Page 4]|h|r",EquipLoc=""},["Highborne Robes"]={SubType="Cloth",Level=59,id=14453,StackCount=1,Rarity=2,MinLevel=54,SellPrice=15677,Texture=132677,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14453::::::::40:::::::|h[Highborne Robes]|h|r"},["Lady Maye's Pendant"]={SubType="Miscellaneous",Level=64,id=14558,StackCount=1,Rarity=4,MinLevel=59,SellPrice=10500,Texture=133295,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:14558::::::::40:::::::|h[Lady Maye's Pendant]|h|r"},["Spider Palp"]={SubType="Junk",Level=1,id=4428,StackCount=5,Rarity=0,MinLevel=0,SellPrice=331,Texture=134321,EquipLoc="",Link="|cff9d9d9d|Hitem:4428::::::::40:::::::|h[Spider Palp]|h|r",Type="Miscellaneous"},["Legionnaire's Band"]={SubType="Miscellaneous",Level=63,id=19510,StackCount=1,Rarity=3,MinLevel=58,SellPrice=18750,Texture=133363,Link="|cff0070dd|Hitem:19510::::::::40:::::::|h[Legionnaire's Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Deprecated Solid Shot"]={SubType="Bullet",Level=8,id=2518,StackCount=200,Rarity=1,MinLevel=3,SellPrice=0,Texture=132384,EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:2518::::::::40:::::::|h[Deprecated Solid Shot]|h|r",Type="Projectile"},["Flame of Stormwind"]={SubType="Quest",Level=1,id=23182,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135813,Link="|cffffffff|Hitem:23182::::::::40:::::::|h[Flame of Stormwind]|h|r",EquipLoc="",Type="Quest"},["Deprecated Large Scorpid Carapace"]={SubType="Quest",Level=1,id=4885,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=135035,Type="Quest",Link="|cffffffff|Hitem:4885::::::::40:::::::|h[Deprecated Large Scorpid Carapace]|h|r",EquipLoc=""},["Double Mail Shoulderpads"]={SubType="Mail",Level=39,id=3814,StackCount=1,Rarity=0,MinLevel=34,SellPrice=1891,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3814::::::::40:::::::|h[Double Mail Shoulderpads]|h|r"},["Seven of Elementals"]={SubType="Junk",Level=1,id=19274,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134486,Link="|cff0070dd|Hitem:19274::::::::40:::::::|h[Seven of Elementals]|h|r",EquipLoc="",Type="Miscellaneous"},["Hibernal Boots"]={SubType="Cloth",Level=47,id=8107,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5938,Texture=132543,Link="|cff1eff00|Hitem:8107::::::::40:::::::|h[Hibernal Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Deprecated Orc Acolyte's Belt"]={SubType="Miscellaneous",Level=1,id=131,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133693,Type="Armor",Link="|cffffffff|Hitem:131::::::::40:::::::|h[Deprecated Orc Acolyte's Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Fragment of the Nightmare's Corruption"]={SubType="Quest",Level=1,id=21146,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136120,Link="|cffffffff|Hitem:21146::::::::40:::::::|h[Fragment of the Nightmare's Corruption]|h|r",EquipLoc="",Type="Quest"},["Monster - Mace, Bashguud's Hammer"]={SubType="One-Handed Maces",Level=1,id=14575,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14575::::::::40:::::::|h[Monster - Mace, Bashguud's Hammer]|h|r"},["Libram: Holy Strike VII"]={SubType="Book",Level=48,id=8934,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=133740,Link="|cffffffff|Hitem:8934::::::::40:::::::|h[Libram: Holy Strike VII]|h|r",EquipLoc="",Type="Recipe"},["Ancestral Belt"]={SubType="Cloth",Level=10,id=4672,StackCount=1,Rarity=1,MinLevel=5,SellPrice=28,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:4672::::::::40:::::::|h[Ancestral Belt]|h|r"},["Stinging Viper"]={SubType="One-Handed Maces",Level=24,id=6472,StackCount=1,Rarity=3,MinLevel=19,SellPrice=3018,Texture=135472,Type="Weapon",Link="|cff0070dd|Hitem:6472::::::::40:::::::|h[Stinging Viper]|h|r",EquipLoc="INVTYPE_WEAPON"},["Conjured Crystal Water"]={SubType="Consumable",Level=65,id=8079,StackCount=20,Rarity=1,MinLevel=55,SellPrice=0,Texture=132805,Link="|cffffffff|Hitem:8079::::::::40:::::::|h[Conjured Crystal Water]|h|r",EquipLoc="",Type="Consumable"},["Charm Pouch (DND)"]={SubType="Miscellaneous",Level=1,id=12442,StackCount=1,Rarity=1,MinLevel=0,SellPrice=11463,Texture=133622,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:12442::::::::40:::::::|h[Charm Pouch (DND)]|h|r"},["Corehound Boots"]={SubType="Leather",Level=59,id=16982,StackCount=1,Rarity=4,MinLevel=54,SellPrice=24397,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16982::::::::40:::::::|h[Corehound Boots]|h|r",Type="Armor"},["Thundering Charm"]={SubType="Consumable",Level=35,id=4480,StackCount=10,Rarity=1,MinLevel=25,SellPrice=185,Texture=133435,Type="Consumable",Link="|cffffffff|Hitem:4480::::::::40:::::::|h[Thundering Charm]|h|r",EquipLoc=""},["Karnitol's Satchel"]={SubType="Quest",Level=1,id=6245,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133633,Type="Quest",Link="|cffffffff|Hitem:6245::::::::40:::::::|h[Karnitol's Satchel]|h|r",EquipLoc=""},["Recipe: Elixir of the Sages"]={SubType="Alchemy",Level=54,id=13479,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13479::::::::40:::::::|h[Recipe: Elixir of the Sages]|h|r"},["Dimly Opalescent Ring"]={SubType="Miscellaneous",Level=61,id=18684,StackCount=1,Rarity=3,MinLevel=56,SellPrice=36141,Texture=133357,Type="Armor",Link="|cff0070dd|Hitem:18684::::::::40:::::::|h[Dimly Opalescent Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Pattern: Onyxia Scale Breastplate"]={SubType="Leatherworking",Level=62,id=15780,StackCount=1,Rarity=4,MinLevel=0,SellPrice=30000,Texture=134939,EquipLoc="",Link="|cffa335ee|Hitem:15780::::::::40:::::::|h[Pattern: Onyxia Scale Breastplate]|h|r",Type="Recipe"},["Old Whistle of the Ivory Raptor"]={SubType="Junk",Level=40,id=8589,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132253,Link="|cffffffff|Hitem:8589::::::::40:::::::|h[Old Whistle of the Ivory Raptor]|h|r",EquipLoc="",Type="Miscellaneous"},["Gloom Wand"]={SubType="Wands",Level=21,id=5209,StackCount=1,Rarity=1,MinLevel=16,SellPrice=771,Texture=135139,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:5209::::::::40:::::::|h[Gloom Wand]|h|r",Type="Weapon"},["Brass Collar"]={SubType="Quest",Level=1,id=1006,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133345,Type="Quest",Link="|cffffffff|Hitem:1006::::::::40:::::::|h[Brass Collar]|h|r",EquipLoc=""},["Heavy Kodo Stew"]={SubType="Consumable",Level=40,id=12215,StackCount=20,Rarity=1,MinLevel=35,SellPrice=300,Texture=132806,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12215::::::::40:::::::|h[Heavy Kodo Stew]|h|r"},["Roc Gizzard"]={SubType="Quest",Level=1,id=6257,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133707,Link="|cffffffff|Hitem:6257::::::::40:::::::|h[Roc Gizzard]|h|r",EquipLoc="",Type="Quest"},["Engraved Helm"]={SubType="Mail",Level=59,id=10235,StackCount=1,Rarity=2,MinLevel=54,SellPrice=16896,Texture=133076,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10235::::::::40:::::::|h[Engraved Helm]|h|r",Type="Armor"},["Triprunner Dungarees"]={SubType="Leather",Level=37,id=9624,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5267,Texture=134588,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:9624::::::::40:::::::|h[Triprunner Dungarees]|h|r"},["Veteran Girdle"]={SubType="Mail",Level=14,id=4678,StackCount=1,Rarity=1,MinLevel=9,SellPrice=108,Texture=132494,Type="Armor",Link="|cffffffff|Hitem:4678::::::::40:::::::|h[Veteran Girdle]|h|r",EquipLoc="INVTYPE_WAIST"},["Kang the Decapitator"]={SubType="Two-Handed Axes",Level=49,id=2291,StackCount=1,Rarity=4,MinLevel=44,SellPrice=44580,Texture=132406,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:2291::::::::40:::::::|h[Kang the Decapitator]|h|r"},["Redemption Tunic"]={SubType="Plate",Level=92,id=22425,StackCount=1,Rarity=4,MinLevel=60,SellPrice=123767,Texture=132637,Link="|cffa335ee|Hitem:22425::::::::40:::::::|h[Redemption Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Naglering"]={SubType="Miscellaneous",Level=59,id=11669,StackCount=1,Rarity=3,MinLevel=54,SellPrice=17157,Texture=133347,Type="Armor",Link="|cff0070dd|Hitem:11669::::::::40:::::::|h[Naglering]|h|r",EquipLoc="INVTYPE_FINGER"},["Agmond's Belt Pouch"]={SubType="Bag",Level=35,id=4981,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=133635,Type="Container",Link="|cffffffff|Hitem:4981::::::::40:::::::|h[Agmond's Belt Pouch]|h|r",EquipLoc="INVTYPE_BAG"},["Pridelord Boots"]={SubType="Leather",Level=56,id=14671,StackCount=1,Rarity=2,MinLevel=51,SellPrice=13012,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14671::::::::40:::::::|h[Pridelord Boots]|h|r"},["Marauder's Leggings"]={SubType="Mail",Level=38,id=15573,StackCount=1,Rarity=2,MinLevel=33,SellPrice=5840,Texture=134589,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15573::::::::40:::::::|h[Marauder's Leggings]|h|r",Type="Armor"},["Templar Crown"]={SubType="Plate",Level=56,id=10168,StackCount=1,Rarity=2,MinLevel=51,SellPrice=10032,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10168::::::::40:::::::|h[Templar Crown]|h|r",Type="Armor"},["Harpy Lieutenant Ring"]={SubType="Quest",Level=1,id=5065,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133344,Link="|cffffffff|Hitem:5065::::::::40:::::::|h[Harpy Lieutenant Ring]|h|r",EquipLoc="",Type="Quest"},["Renferrel's Findings"]={SubType="Quest",Level=1,id=3468,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133458,Type="Quest",Link="|cffffffff|Hitem:3468::::::::40:::::::|h[Renferrel's Findings]|h|r",EquipLoc=""},["Amulet of the Dawn"]={SubType="Miscellaneous",Level=60,id=22657,StackCount=1,Rarity=4,MinLevel=0,SellPrice=33625,Texture=133279,Link="|cffa335ee|Hitem:22657::::::::40:::::::|h[Amulet of the Dawn]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Ankh"]={SubType="Reagent",Level=30,id=17030,StackCount=5,Rarity=1,MinLevel=0,SellPrice=500,Texture=133439,EquipLoc="",Link="|cffffffff|Hitem:17030::::::::40:::::::|h[Ankh]|h|r",Type="Reagent"},["Spirit Cloak"]={SubType="Cloth",Level=23,id=4792,StackCount=1,Rarity=2,MinLevel=18,SellPrice=655,Texture=133763,Link="|cff1eff00|Hitem:4792::::::::40:::::::|h[Spirit Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Aboriginal Bands"]={SubType="Cloth",Level=14,id=14115,StackCount=1,Rarity=1,MinLevel=9,SellPrice=70,Texture=132607,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:14115::::::::40:::::::|h[Aboriginal Bands]|h|r"},["Knight-Captain's Leather Chestpiece"]={SubType="Leather",Level=68,id=23298,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18600,Texture=132720,Link="|cff0070dd|Hitem:23298::::::::40:::::::|h[Knight-Captain's Leather Chestpiece]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Spirit of Zanza"]={SubType="Consumable",Level=65,id=20079,StackCount=1,Rarity=2,MinLevel=55,SellPrice=0,Texture=134810,Link="|cff1eff00|Hitem:20079::::::::40:::::::|h[Spirit of Zanza]|h|r",EquipLoc="",Type="Consumable"},["Battle Slayer"]={SubType="Two-Handed Axes",Level=22,id=3199,StackCount=1,Rarity=2,MinLevel=17,SellPrice=2262,Texture=135424,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3199::::::::40:::::::|h[Battle Slayer]|h|r",Type="Weapon"},["Rabbit Crate (Snowshoe)"]={SubType="Junk",Level=20,id=8497,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=132762,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:8497::::::::40:::::::|h[Rabbit Crate (Snowshoe)]|h|r"},["Crushed Elemental Bracer"]={SubType="Junk",Level=1,id=5451,StackCount=20,Rarity=0,MinLevel=0,SellPrice=22,Texture=132606,EquipLoc="",Link="|cff9d9d9d|Hitem:5451::::::::40:::::::|h[Crushed Elemental Bracer]|h|r",Type="Miscellaneous"},["Ghost-o-plasm"]={SubType="Quest",Level=1,id=15849,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,EquipLoc="",Link="|cffffffff|Hitem:15849::::::::40:::::::|h[Ghost-o-plasm]|h|r",Type="Quest"},["Magical Book Binding"]={SubType="Quest",Level=1,id=21112,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133686,Link="|cffffffff|Hitem:21112::::::::40:::::::|h[Magical Book Binding]|h|r",EquipLoc="",Type="Quest"},["Aspect of Neptulon"]={SubType="Quest",Level=1,id=17310,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134856,EquipLoc="",Link="|cffffffff|Hitem:17310::::::::40:::::::|h[Aspect of Neptulon]|h|r",Type="Quest"},["Tiara of the Oracle"]={SubType="Cloth",Level=81,id=21348,StackCount=1,Rarity=4,MinLevel=60,SellPrice=52826,Texture=133074,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:21348::::::::40:::::::|h[Tiara of the Oracle]|h|r"},["Helm of Fire"]={SubType="Leather",Level=50,id=8348,StackCount=1,Rarity=3,MinLevel=45,SellPrice=10819,Texture=133076,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:8348::::::::40:::::::|h[Helm of Fire]|h|r"},["Durability Bow"]={SubType="Bows",Level=1,id=14394,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2,Texture=135490,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cffffffff|Hitem:14394::::::::40:::::::|h[Durability Bow]|h|r"},["Recipe: Barbecued Buzzard Wing"]={SubType="Cooking",Level=35,id=4609,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=134939,Link="|cffffffff|Hitem:4609::::::::40:::::::|h[Recipe: Barbecued Buzzard Wing]|h|r",EquipLoc="",Type="Recipe"},["Empty Canteen"]={SubType="Consumable",Level=1,id=12922,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132788,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12922::::::::40:::::::|h[Empty Canteen]|h|r"},["Might of Hakkar"]={SubType="One-Handed Maces",Level=54,id=10838,StackCount=1,Rarity=3,MinLevel=49,SellPrice=34665,Texture=133486,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:10838::::::::40:::::::|h[Might of Hakkar]|h|r",Type="Weapon"},["Deprecated Dragonstalker Tunic"]={SubType="Leather",Level=63,id=13092,StackCount=1,Rarity=3,MinLevel=58,SellPrice=30173,Texture=132646,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:13092::::::::40:::::::|h[Deprecated Dragonstalker Tunic]|h|r"},["Recipe: Philosopher's Stone"]={SubType="Alchemy",Level=45,id=9303,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9303::::::::40:::::::|h[Recipe: Philosopher's Stone]|h|r"},["500 Pound Chicken"]={SubType="Quest",Level=1,id=21028,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133971,Link="|cffffffff|Hitem:21028::::::::40:::::::|h[500 Pound Chicken]|h|r",EquipLoc="",Type="Quest"},["Nightfall Drape"]={SubType="Cloth",Level=53,id=12465,StackCount=1,Rarity=3,MinLevel=48,SellPrice=10261,Texture=133757,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:12465::::::::40:::::::|h[Nightfall Drape]|h|r"},["Restorative Potion"]={SubType="Consumable",Level=42,id=9030,StackCount=5,Rarity=1,MinLevel=32,SellPrice=200,Texture=134712,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9030::::::::40:::::::|h[Restorative Potion]|h|r"},["Triumphant Shoulder Pads"]={SubType="Mail",Level=63,id=15686,StackCount=1,Rarity=2,MinLevel=58,SellPrice=22331,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15686::::::::40:::::::|h[Triumphant Shoulder Pads]|h|r",Type="Armor"},["Bonebrace Hauberk"]={SubType="Mail",Level=61,id=14536,StackCount=1,Rarity=3,MinLevel=56,SellPrice=32271,Texture=132636,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:14536::::::::40:::::::|h[Bonebrace Hauberk]|h|r"},["Imp Summoning Scroll"]={SubType="Quest",Level=1,id=6516,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Type="Quest",Link="|cffffffff|Hitem:6516::::::::40:::::::|h[Imp Summoning Scroll]|h|r",EquipLoc=""},["Flintrock Shoulders"]={SubType="Leather",Level=38,id=7755,StackCount=1,Rarity=3,MinLevel=33,SellPrice=4140,Texture=135044,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:7755::::::::40:::::::|h[Flintrock Shoulders]|h|r",Type="Armor"},["Relic Coffer Key"]={SubType="Key",Level=1,id=11078,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,Type="Key",Link="|cffffffff|Hitem:11078::::::::40:::::::|h[Relic Coffer Key]|h|r",EquipLoc=""},["Ring of Zoram"]={SubType="Quest",Level=1,id=5445,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133352,Link="|cffffffff|Hitem:5445::::::::40:::::::|h[Ring of Zoram]|h|r",EquipLoc="",Type="Quest"},["Gloves of the Hypnotic Flame"]={SubType="Cloth",Level=70,id=18808,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22665,Texture=132937,Type="Armor",Link="|cffa335ee|Hitem:18808::::::::40:::::::|h[Gloves of the Hypnotic Flame]|h|r",EquipLoc="INVTYPE_HAND"},["Moonglow Vest"]={SubType="Leather",Level=18,id=6709,StackCount=1,Rarity=2,MinLevel=13,SellPrice=545,Texture=132724,Type="Armor",Link="|cff1eff00|Hitem:6709::::::::40:::::::|h[Moonglow Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Sealed Letter to Ag'tor"]={SubType="Quest",Level=1,id=10643,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,EquipLoc="",Link="|cffffffff|Hitem:10643::::::::40:::::::|h[Sealed Letter to Ag'tor]|h|r",Type="Quest"},["The Mystic Studies of Hor'ank"]={SubType="Consumable",Level=1,id=13151,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133743,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13151::::::::40:::::::|h[The Mystic Studies of Hor'ank]|h|r"},["Bronze Feather"]={SubType="Quest",Level=1,id=4753,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132927,Link="|cffffffff|Hitem:4753::::::::40:::::::|h[Bronze Feather]|h|r",EquipLoc="",Type="Quest"},["The Lost Kris of Zedd"]={SubType="Daggers",Level=68,id=21802,StackCount=1,Rarity=3,MinLevel=60,SellPrice=70573,Texture=135342,Link="|cff0070dd|Hitem:21802::::::::40:::::::|h[The Lost Kris of Zedd]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Happy Fun Rock"]={SubType="Consumable",Level=1,id=18640,StackCount=2,Rarity=1,MinLevel=1,SellPrice=0,Texture=132384,Type="Consumable",Link="|cffffffff|Hitem:18640::::::::40:::::::|h[Happy Fun Rock]|h|r",EquipLoc=""},["Wail of the Banshee"]={SubType="Consumable",Level=60,id=13514,StackCount=1,Rarity=2,MinLevel=55,SellPrice=5820,Texture=136183,Type="Consumable",EquipLoc="",Link="|cff1eff00|Hitem:13514::::::::40:::::::|h[Wail of the Banshee]|h|r"},["Blood Guard's Mail Vices"]={SubType="Mail",Level=66,id=22867,StackCount=1,Rarity=3,MinLevel=60,SellPrice=10157,Texture=132945,Link="|cff0070dd|Hitem:22867::::::::40:::::::|h[Blood Guard's Mail Vices]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Handstitched Linen Britches"]={SubType="Cloth",Level=14,id=4309,StackCount=1,Rarity=2,MinLevel=9,SellPrice=226,Texture=134587,Link="|cff1eff00|Hitem:4309::::::::40:::::::|h[Handstitched Linen Britches]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Reef Axe"]={SubType="Two-Handed Axes",Level=27,id=6905,StackCount=1,Rarity=2,MinLevel=22,SellPrice=4010,Texture=135576,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:6905::::::::40:::::::|h[Reef Axe]|h|r"},["General's Mail Leggings"]={SubType="Mail",Level=71,id=16579,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33662,Texture=134667,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16579::::::::40:::::::|h[General's Mail Leggings]|h|r",Type="Armor"},["Gnomish Shrink Ray"]={SubType="Devices",Level=41,id=10716,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=133003,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:10716::::::::40:::::::|h[Gnomish Shrink Ray]|h|r",Type="Trade Goods"},["Medicine Staff"]={SubType="Staves",Level=19,id=4575,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1487,Texture=135168,Link="|cff1eff00|Hitem:4575::::::::40:::::::|h[Medicine Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Tablet of Stoneclaw Totem IV"]={SubType="Book",Level=38,id=9099,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9099::::::::40:::::::|h[Tablet of Stoneclaw Totem IV]|h|r"},["Pagan Rod"]={SubType="Miscellaneous",Level=26,id=15974,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1461,Texture=135144,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15974::::::::40:::::::|h[Pagan Rod]|h|r",Type="Armor"},["Embroidered Pants"]={SubType="Cloth",Level=50,id=2437,StackCount=1,Rarity=1,MinLevel=45,SellPrice=5578,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:2437::::::::40:::::::|h[Embroidered Pants]|h|r",Type="Armor"},["Bronze Framework"]={SubType="Parts",Level=29,id=4382,StackCount=10,Rarity=1,MinLevel=0,SellPrice=600,Texture=133006,Link="|cffffffff|Hitem:4382::::::::40:::::::|h[Bronze Framework]|h|r",EquipLoc="",Type="Trade Goods"},["Test AQ Resource - Roast Raptor"]={SubType="Junk",Level=1,id=21642,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21642::::::::40:::::::|h[Test AQ Resource - Roast Raptor]|h|r",EquipLoc="",Type="Miscellaneous"},["Recipe: Fillet of Frenzy"]={SubType="Cooking",Level=15,id=5485,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:5485::::::::40:::::::|h[Recipe: Fillet of Frenzy]|h|r",Type="Recipe"},["Left-Handed Brass Knuckles"]={SubType="Fist Weapons",Level=15,id=15906,StackCount=1,Rarity=1,MinLevel=10,SellPrice=427,Texture=132938,EquipLoc="INVTYPE_WEAPONOFFHAND",Link="|cffffffff|Hitem:15906::::::::40:::::::|h[Left-Handed Brass Knuckles]|h|r",Type="Weapon"},["Quilted Bracers"]={SubType="Cloth",Level=12,id=3453,StackCount=1,Rarity=1,MinLevel=0,SellPrice=46,Texture=132610,Type="Armor",Link="|cffffffff|Hitem:3453::::::::40:::::::|h[Quilted Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Expert Cookbook"]={SubType="Cooking",Level=30,id=16072,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:16072::::::::40:::::::|h[Expert Cookbook]|h|r",Type="Recipe"},["Silver-thread Pants"]={SubType="Cloth",Level=30,id=4037,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1821,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:4037::::::::40:::::::|h[Silver-thread Pants]|h|r",Type="Armor"},["Swashbuckler's Breastplate"]={SubType="Leather",Level=58,id=10182,StackCount=1,Rarity=2,MinLevel=53,SellPrice=18370,Texture=132717,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10182::::::::40:::::::|h[Swashbuckler's Breastplate]|h|r",Type="Armor"},["Warlord's Axe"]={SubType="One-Handed Axes",Level=58,id=15238,StackCount=1,Rarity=2,MinLevel=53,SellPrice=36496,Texture=132407,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15238::::::::40:::::::|h[Warlord's Axe]|h|r",Type="Weapon"},["Geomancer's Cord"]={SubType="Cloth",Level=36,id=14217,StackCount=1,Rarity=2,MinLevel=31,SellPrice=1638,Texture=132491,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14217::::::::40:::::::|h[Geomancer's Cord]|h|r"},["Agile Boots"]={SubType="Leather",Level=20,id=4788,StackCount=1,Rarity=2,MinLevel=15,SellPrice=526,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:4788::::::::40:::::::|h[Agile Boots]|h|r",Type="Armor"},["Tempest Talisman"]={SubType="Miscellaneous",Level=58,id=18317,StackCount=1,Rarity=3,MinLevel=53,SellPrice=12503,Texture=133290,Type="Armor",Link="|cff0070dd|Hitem:18317::::::::40:::::::|h[Tempest Talisman]|h|r",EquipLoc="INVTYPE_NECK"},["Thick Scale Belt"]={SubType="Mail",Level=31,id=15549,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1504,Texture=132510,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15549::::::::40:::::::|h[Thick Scale Belt]|h|r",Type="Armor"},["Pattern: Double-stitched Leather Gloves OLD"]={SubType="Leatherworking",Level=25,id=4295,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:4295::::::::40:::::::|h[Pattern: Double-stitched Leather Gloves OLD]|h|r",Type="Recipe"},["Deprecated Tiny Flame Sac"]={SubType="Trade Goods",Level=5,id=784,StackCount=5,Rarity=1,MinLevel=0,SellPrice=15,Texture=134343,Link="|cffffffff|Hitem:784::::::::40:::::::|h[Deprecated Tiny Flame Sac]|h|r",EquipLoc="",Type="Trade Goods"},["Schematic: Delicate Arcanite Converter"]={SubType="Engineering",Level=57,id=16050,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:16050::::::::40:::::::|h[Schematic: Delicate Arcanite Converter]|h|r",Type="Recipe"},["Tome of Fireball VI"]={SubType="Book",Level=30,id=8824,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133739,Link="|cffffffff|Hitem:8824::::::::40:::::::|h[Tome of Fireball VI]|h|r",EquipLoc="",Type="Recipe"},["Death Knight Sabatons"]={SubType="Plate",Level=59,id=18692,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14375,Texture=132589,Type="Armor",Link="|cff0070dd|Hitem:18692::::::::40:::::::|h[Death Knight Sabatons]|h|r",EquipLoc="INVTYPE_FEET"},["Don Rigoberto's Lost Hat"]={SubType="Cloth",Level=81,id=21615,StackCount=1,Rarity=4,MinLevel=60,SellPrice=53014,Texture=133153,Link="|cffa335ee|Hitem:21615::::::::40:::::::|h[Don Rigoberto's Lost Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["General's Silk Trousers"]={SubType="Cloth",Level=71,id=16534,StackCount=1,Rarity=4,MinLevel=60,SellPrice=23700,Texture=134587,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16534::::::::40:::::::|h[General's Silk Trousers]|h|r",Type="Armor"},["Full Moonshine"]={SubType="Consumable",Level=25,id=1072,StackCount=10,Rarity=1,MinLevel=0,SellPrice=62,Texture=132798,Type="Consumable",Link="|cffffffff|Hitem:1072::::::::40:::::::|h[Full Moonshine]|h|r",EquipLoc=""},["Imperial Red Boots"]={SubType="Cloth",Level=52,id=8246,StackCount=1,Rarity=2,MinLevel=47,SellPrice=7917,Texture=132536,Link="|cff1eff00|Hitem:8246::::::::40:::::::|h[Imperial Red Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Hyacinth Mushroom"]={SubType="Quest",Level=1,id=10639,StackCount=20,Rarity=1,MinLevel=1,SellPrice=0,Texture=134530,EquipLoc="",Link="|cffffffff|Hitem:10639::::::::40:::::::|h[Hyacinth Mushroom]|h|r",Type="Quest"},["Nightshade Armguards"]={SubType="Leather",Level=58,id=10223,StackCount=1,Rarity=2,MinLevel=53,SellPrice=9466,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10223::::::::40:::::::|h[Nightshade Armguards]|h|r",Type="Armor"},["Holy Relic Water"]={SubType="Miscellaneous",Level=45,id=4030,StackCount=1,Rarity=1,MinLevel=40,SellPrice=4000,Texture=134712,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:4030::::::::40:::::::|h[Holy Relic Water]|h|r",Type="Armor"},["Plagueheart Robe"]={SubType="Cloth",Level=92,id=22504,StackCount=1,Rarity=4,MinLevel=60,SellPrice=126586,Texture=132684,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:22504::::::::40:::::::|h[Plagueheart Robe]|h|r"},["Firestone"]={SubType="Miscellaneous",Level=36,id=13699,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134085,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13699::::::::40:::::::|h[Firestone]|h|r"},["Recipe: Bristle Whisker Catfish"]={SubType="Cooking",Level=25,id=6330,StackCount=1,Rarity=1,MinLevel=0,SellPrice=300,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:6330::::::::40:::::::|h[Recipe: Bristle Whisker Catfish]|h|r"},["Faerie Mantle"]={SubType="Cloth",Level=32,id=5820,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1622,Texture=135036,Link="|cff1eff00|Hitem:5820::::::::40:::::::|h[Faerie Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Brutehammer"]={SubType="Two-Handed Maces",Level=63,id=15267,StackCount=1,Rarity=2,MinLevel=58,SellPrice=60203,Texture=133047,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15267::::::::40:::::::|h[Brutehammer]|h|r",Type="Weapon"},["Boiled Clams"]={SubType="Consumable",Level=15,id=5525,StackCount=20,Rarity=1,MinLevel=5,SellPrice=20,Texture=134432,EquipLoc="",Link="|cffffffff|Hitem:5525::::::::40:::::::|h[Boiled Clams]|h|r",Type="Consumable"},["Bloodmail Hauberk"]={SubType="Mail",Level=61,id=14611,StackCount=1,Rarity=3,MinLevel=56,SellPrice=32509,Texture=132720,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:14611::::::::40:::::::|h[Bloodmail Hauberk]|h|r"},["Sorcerer Sphere"]={SubType="Miscellaneous",Level=43,id=9882,StackCount=1,Rarity=2,MinLevel=38,SellPrice=6209,Texture=134333,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:9882::::::::40:::::::|h[Sorcerer Sphere]|h|r"},["Steel-clasped Bracers"]={SubType="Mail",Level=29,id=4534,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1173,Texture=132605,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:4534::::::::40:::::::|h[Steel-clasped Bracers]|h|r",Type="Armor"},["Protector Gauntlets"]={SubType="Mail",Level=50,id=14792,StackCount=1,Rarity=2,MinLevel=45,SellPrice=6960,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14792::::::::40:::::::|h[Protector Gauntlets]|h|r"},["Felix's Chest"]={SubType="Quest",Level=1,id=16313,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132597,EquipLoc="",Link="|cffffffff|Hitem:16313::::::::40:::::::|h[Felix's Chest]|h|r",Type="Quest"},["Swinetusk Shank"]={SubType="Daggers",Level=35,id=6691,StackCount=1,Rarity=3,MinLevel=30,SellPrice=8866,Texture=133723,Type="Weapon",Link="|cff0070dd|Hitem:6691::::::::40:::::::|h[Swinetusk Shank]|h|r",EquipLoc="INVTYPE_WEAPON"},["Axe of the Deep Woods"]={SubType="One-Handed Axes",Level=57,id=811,StackCount=1,Rarity=4,MinLevel=52,SellPrice=54123,Texture=132398,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffa335ee|Hitem:811::::::::40:::::::|h[Axe of the Deep Woods]|h|r",Type="Weapon"},["Formula: Wizard Oil"]={SubType="Enchanting",Level=55,id=20755,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134327,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:20755::::::::40:::::::|h[Formula: Wizard Oil]|h|r"},["Fey Dragon Scale"]={SubType="Quest",Level=1,id=5583,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134303,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5583::::::::40:::::::|h[Fey Dragon Scale]|h|r"},["Mithril Casing"]={SubType="Parts",Level=43,id=10561,StackCount=10,Rarity=1,MinLevel=0,SellPrice=1000,Texture=133021,EquipLoc="",Link="|cffffffff|Hitem:10561::::::::40:::::::|h[Mithril Casing]|h|r",Type="Trade Goods"},["Battered Leather Bracers"]={SubType="Leather",Level=10,id=2374,StackCount=1,Rarity=1,MinLevel=5,SellPrice=34,Texture=132601,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:2374::::::::40:::::::|h[Battered Leather Bracers]|h|r"},["Tablet of Lightning Bolt VII"]={SubType="Book",Level=50,id=9145,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=134459,Link="|cffffffff|Hitem:9145::::::::40:::::::|h[Tablet of Lightning Bolt VII]|h|r",EquipLoc="",Type="Recipe"},["Fingerbone Bracers"]={SubType="Cloth",Level=28,id=1351,StackCount=1,Rarity=2,MinLevel=23,SellPrice=768,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:1351::::::::40:::::::|h[Fingerbone Bracers]|h|r",Type="Armor"},["Balanced Throwing Dagger"]={SubType="Thrown",Level=8,id=2946,StackCount=200,Rarity=1,MinLevel=3,SellPrice=0,Texture=135641,EquipLoc="INVTYPE_THROWN",Link="|cffffffff|Hitem:2946::::::::40:::::::|h[Balanced Throwing Dagger]|h|r",Type="Weapon"},["Misplaced Servo Arm"]={SubType="One-Handed Maces",Level=83,id=23221,StackCount=1,Rarity=4,MinLevel=60,SellPrice=203182,Texture=133505,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:23221::::::::40:::::::|h[Misplaced Servo Arm]|h|r"},["Goblin Smasher"]={SubType="Two-Handed Maces",Level=12,id=4964,StackCount=1,Rarity=2,MinLevel=0,SellPrice=503,Texture=133052,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:4964::::::::40:::::::|h[Goblin Smasher]|h|r"},["Ghostwalker Rags"]={SubType="Leather",Level=37,id=15144,StackCount=1,Rarity=2,MinLevel=32,SellPrice=4232,Texture=132736,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15144::::::::40:::::::|h[Ghostwalker Rags]|h|r",Type="Armor"},["Desecrated Bindings"]={SubType="Junk",Level=60,id=22369,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133806,Link="|cffa335ee|Hitem:22369::::::::40:::::::|h[Desecrated Bindings]|h|r",EquipLoc="",Type="Miscellaneous"},["Free Ticket Voucher"]={SubType="Quest",Level=1,id=19338,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:19338::::::::40:::::::|h[Free Ticket Voucher]|h|r",EquipLoc="",Type="Quest"},["Bracers of Valor"]={SubType="Plate",Level=57,id=16735,StackCount=1,Rarity=3,MinLevel=52,SellPrice=8738,Texture=132617,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16735::::::::40:::::::|h[Bracers of Valor]|h|r",Type="Armor"},["Blinkstrike Armguards"]={SubType="Plate",Level=60,id=15860,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7907,Texture=132616,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15860::::::::40:::::::|h[Blinkstrike Armguards]|h|r",Type="Armor"},["Cross Dagger"]={SubType="Daggers",Level=28,id=2819,StackCount=1,Rarity=2,MinLevel=23,SellPrice=3830,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:2819::::::::40:::::::|h[Cross Dagger]|h|r",Type="Weapon"},["Dirty Knucklebones"]={SubType="Quest",Level=1,id=2843,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133727,EquipLoc="",Link="|cffffffff|Hitem:2843::::::::40:::::::|h[Dirty Knucklebones]|h|r",Type="Quest"},["Infiltrator Shoulders"]={SubType="Leather",Level=33,id=7408,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2281,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7408::::::::40:::::::|h[Infiltrator Shoulders]|h|r",Type="Armor"},["Ring of the Aristocrat"]={SubType="Miscellaneous",Level=54,id=12102,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9042,Texture=133357,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12102::::::::40:::::::|h[Ring of the Aristocrat]|h|r"},["Beaststalker's Mantle"]={SubType="Mail",Level=60,id=16679,StackCount=1,Rarity=3,MinLevel=55,SellPrice=22822,Texture=135041,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16679::::::::40:::::::|h[Beaststalker's Mantle]|h|r",Type="Armor"},["Malachite"]={SubType="Trade Goods",Level=7,id=774,StackCount=20,Rarity=2,MinLevel=0,SellPrice=15,Texture=134106,Link="|cff1eff00|Hitem:774::::::::40:::::::|h[Malachite]|h|r",EquipLoc="",Type="Trade Goods"},["Recipe: Flask of Chromatic Resistance"]={SubType="Alchemy",Level=60,id=13522,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13522::::::::40:::::::|h[Recipe: Flask of Chromatic Resistance]|h|r"},["Fungal Spores"]={SubType="Quest",Level=1,id=5012,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133848,EquipLoc="",Link="|cffffffff|Hitem:5012::::::::40:::::::|h[Fungal Spores]|h|r",Type="Quest"},["Crystal Force"]={SubType="Quest",Level=55,id=11563,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134088,Type="Quest",Link="|cffffffff|Hitem:11563::::::::40:::::::|h[Crystal Force]|h|r",EquipLoc=""},["Schematic: Blue Firework"]={SubType="Engineering",Level=30,id=18649,StackCount=1,Rarity=1,MinLevel=0,SellPrice=450,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:18649::::::::40:::::::|h[Schematic: Blue Firework]|h|r",EquipLoc=""},["Runed Scroll"]={SubType="Consumable",Level=15,id=10621,StackCount=1,Rarity=1,MinLevel=15,SellPrice=0,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10621::::::::40:::::::|h[Runed Scroll]|h|r",Type="Consumable"},["Neophyte's Shirt"]={SubType="Miscellaneous",Level=1,id=53,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,Type="Armor",Link="|cffffffff|Hitem:53::::::::40:::::::|h[Neophyte's Shirt]|h|r",EquipLoc="INVTYPE_BODY"},["Gregor's Remains"]={SubType="Quest",Level=1,id=2829,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2829::::::::40:::::::|h[Gregor's Remains]|h|r"},["Expert First Aid - Under Wraps"]={SubType="First Aid",Level=30,id=16084,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:16084::::::::40:::::::|h[Expert First Aid - Under Wraps]|h|r",Type="Recipe"},["Forest's Embrace"]={SubType="Leather",Level=52,id=22272,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15152,Texture=132723,Link="|cff0070dd|Hitem:22272::::::::40:::::::|h[Forest's Embrace]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Inferno Gloves"]={SubType="Cloth",Level=62,id=18408,StackCount=1,Rarity=3,MinLevel=57,SellPrice=11178,Texture=132953,Type="Armor",Link="|cff0070dd|Hitem:18408::::::::40:::::::|h[Inferno Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Box of Spells"]={SubType="Junk",Level=0,id=9540,StackCount=1,Rarity=1,MinLevel=0,SellPrice=150,Texture=132595,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:9540::::::::40:::::::|h[Box of Spells]|h|r"},["Recipe: Elixir of Dream Vision"]={SubType="Alchemy",Level=48,id=9297,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:9297::::::::40:::::::|h[Recipe: Elixir of Dream Vision]|h|r"},["Linen Cloth"]={SubType="Trade Goods",Level=5,id=2589,StackCount=20,Rarity=1,MinLevel=0,SellPrice=13,Texture=132889,Link="|cffffffff|Hitem:2589::::::::40:::::::|h[Linen Cloth]|h|r",EquipLoc="",Type="Trade Goods"},["Infiltrator Cord"]={SubType="Leather",Level=32,id=7406,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1372,Texture=132492,Link="|cff1eff00|Hitem:7406::::::::40:::::::|h[Infiltrator Cord]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Gnomish Net-o-Matic Projector"]={SubType="Devices",Level=42,id=10720,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=134325,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:10720::::::::40:::::::|h[Gnomish Net-o-Matic Projector]|h|r",Type="Trade Goods"},["Grimoire of Soothing Kiss (Rank 2)"]={SubType="Book",Level=34,id=16376,StackCount=1,Rarity=1,MinLevel=34,SellPrice=2000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16376::::::::40:::::::|h[Grimoire of Soothing Kiss (Rank 2)]|h|r",Type="Recipe"},["Banded Armor"]={SubType="Mail",Level=33,id=9836,StackCount=1,Rarity=2,MinLevel=28,SellPrice=3677,Texture=132739,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9836::::::::40:::::::|h[Banded Armor]|h|r"},["Deprecated Warrior's Pauldrons"]={SubType="Mail",Level=11,id=4657,StackCount=1,Rarity=1,MinLevel=6,SellPrice=84,Texture=135038,Type="Armor",Link="|cffffffff|Hitem:4657::::::::40:::::::|h[Deprecated Warrior's Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Monster - Sword2H, Horde Curved Silver"]={SubType="Two-Handed Swords",Level=1,id=12882,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12882::::::::40:::::::|h[Monster - Sword2H, Horde Curved Silver]|h|r"},["Elemental Focus Band"]={SubType="Miscellaneous",Level=65,id=20682,StackCount=1,Rarity=4,MinLevel=60,SellPrice=73553,Texture=133365,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:20682::::::::40:::::::|h[Elemental Focus Band]|h|r"},["A Small Stave"]={SubType="Quest",Level=1,id=9325,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135145,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9325::::::::40:::::::|h[A Small Stave]|h|r"},["Robust Helm"]={SubType="Leather",Level=31,id=15129,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1825,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15129::::::::40:::::::|h[Robust Helm]|h|r",Type="Armor"},["Salty Scorpid Venom"]={SubType="Quest",Level=1,id=5794,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134797,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5794::::::::40:::::::|h[Salty Scorpid Venom]|h|r"},["Dark Iron Scraps"]={SubType="Junk",Level=1,id=22528,StackCount=250,Rarity=1,MinLevel=0,SellPrice=0,Texture=133614,Link="|cffffffff|Hitem:22528::::::::40:::::::|h[Dark Iron Scraps]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Shield, Horde A02 Silver"]={SubType="Shields",Level=1,id=12452,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:12452::::::::40:::::::|h[Monster - Shield, Horde A02 Silver]|h|r"},["Hulking Spaulders"]={SubType="Mail",Level=26,id=14749,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1325,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14749::::::::40:::::::|h[Hulking Spaulders]|h|r"},["A Faded Journal Page"]={SubType="Quest",Level=1,id=921,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133688,EquipLoc="",Link="|cffffffff|Hitem:921::::::::40:::::::|h[A Faded Journal Page]|h|r",Type="Quest"},["Musty Scroll"]={SubType="Quest",Level=1,id=6278,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134941,Type="Quest",Link="|cffffffff|Hitem:6278::::::::40:::::::|h[Musty Scroll]|h|r",EquipLoc=""},["Staff of Rampant Growth"]={SubType="Staves",Level=71,id=20581,StackCount=1,Rarity=4,MinLevel=60,SellPrice=137184,Texture=135173,Link="|cffa335ee|Hitem:20581::::::::40:::::::|h[Staff of Rampant Growth]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Eldarathian Tome of Summoning Vol. 1"]={SubType="Consumable",Level=1,id=13149,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133739,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13149::::::::40:::::::|h[Eldarathian Tome of Summoning Vol. 1]|h|r"},["Arcanite Champion"]={SubType="Two-Handed Swords",Level=63,id=12790,StackCount=1,Rarity=3,MinLevel=58,SellPrice=74619,Texture=135349,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12790::::::::40:::::::|h[Arcanite Champion]|h|r"},["Praetorian Coif"]={SubType="Leather",Level=57,id=15185,StackCount=1,Rarity=2,MinLevel=52,SellPrice=12905,Texture=132500,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15185::::::::40:::::::|h[Praetorian Coif]|h|r",Type="Armor"},["Pattern: Green Woolen Robe"]={SubType="Tailoring",Level=18,id=6273,StackCount=1,Rarity=1,MinLevel=0,SellPrice=187,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:6273::::::::40:::::::|h[Pattern: Green Woolen Robe]|h|r",EquipLoc=""},["Thunderbrow Ring"]={SubType="Miscellaneous",Level=29,id=13097,StackCount=1,Rarity=3,MinLevel=24,SellPrice=2164,Texture=133351,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:13097::::::::40:::::::|h[Thunderbrow Ring]|h|r"},["63 Green Rogue Spaulders"]={SubType="Leather",Level=63,id=20322,StackCount=1,Rarity=2,MinLevel=58,SellPrice=17877,Texture=135038,Link="|cff1eff00|Hitem:20322::::::::40:::::::|h[63 Green Rogue Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Flax Belt"]={SubType="Cloth",Level=5,id=11848,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5,Texture=132492,Type="Armor",Link="|cffffffff|Hitem:11848::::::::40:::::::|h[Flax Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Swift Gray Ram"]={SubType="Junk",Level=60,id=18787,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132248,Type="Miscellaneous",Link="|cffa335ee|Hitem:18787::::::::40:::::::|h[Swift Gray Ram]|h|r",EquipLoc=""},["Embersilk Bracelets"]={SubType="Cloth",Level=37,id=14226,StackCount=1,Rarity=2,MinLevel=32,SellPrice=1731,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14226::::::::40:::::::|h[Embersilk Bracelets]|h|r"},["Monster - Cleaver"]={SubType="One-Handed Axes",Level=1,id=2827,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2827::::::::40:::::::|h[Monster - Cleaver]|h|r"},["Zealot Blade"]={SubType="One-Handed Swords",Level=34,id=13033,StackCount=1,Rarity=3,MinLevel=29,SellPrice=8094,Texture=135313,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13033::::::::40:::::::|h[Zealot Blade]|h|r"},["Sigil of Arathor"]={SubType="Quest",Level=1,id=4458,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134335,Type="Quest",Link="|cffffffff|Hitem:4458::::::::40:::::::|h[Sigil of Arathor]|h|r",EquipLoc=""},["Sarkoth's Mangled Claw"]={SubType="Quest",Level=1,id=4905,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134294,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4905::::::::40:::::::|h[Sarkoth's Mangled Claw]|h|r"},["Gan'zulah's Head"]={SubType="Quest",Level=1,id=3904,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3904::::::::40:::::::|h[Gan'zulah's Head]|h|r"},["Mantle of Lady Falther'ess"]={SubType="Cloth",Level=41,id=23178,StackCount=1,Rarity=3,MinLevel=36,SellPrice=4089,Texture=133769,Link="|cff0070dd|Hitem:23178::::::::40:::::::|h[Mantle of Lady Falther'ess]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Sevren's Orders"]={SubType="Quest",Level=1,id=3017,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:3017::::::::40:::::::|h[Sevren's Orders]|h|r",Type="Quest"},["Monster - Mace, Frying Pan"]={SubType="One-Handed Maces",Level=1,id=17040,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133476,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:17040::::::::40:::::::|h[Monster - Mace, Frying Pan]|h|r",Type="Weapon"},["63 Green Warrior Pauldrons"]={SubType="Plate",Level=63,id=20289,StackCount=1,Rarity=2,MinLevel=58,SellPrice=14676,Texture=135046,Link="|cff1eff00|Hitem:20289::::::::40:::::::|h[63 Green Warrior Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Pattern: Tuxedo Shirt"]={SubType="Tailoring",Level=48,id=10321,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1125,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10321::::::::40:::::::|h[Pattern: Tuxedo Shirt]|h|r",Type="Recipe"},["Folded Handkerchief"]={SubType="Junk",Level=1,id=5363,StackCount=5,Rarity=0,MinLevel=0,SellPrice=20,Texture=132905,Link="|cff9d9d9d|Hitem:5363::::::::40:::::::|h[Folded Handkerchief]|h|r",EquipLoc="",Type="Miscellaneous"},["The Nightmare's Corruption"]={SubType="Quest",Level=1,id=21152,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136160,Link="|cffffffff|Hitem:21152::::::::40:::::::|h[The Nightmare's Corruption]|h|r",EquipLoc="",Type="Quest"},["Headsplitter"]={SubType="One-Handed Axes",Level=30,id=7786,StackCount=1,Rarity=3,MinLevel=25,SellPrice=5605,Texture=132405,Link="|cff0070dd|Hitem:7786::::::::40:::::::|h[Headsplitter]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Ancient Sinew Wrapped Lamina"]={SubType="Quiver",Level=75,id=18714,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=134403,Type="Quiver",Link="|cffa335ee|Hitem:18714::::::::40:::::::|h[Ancient Sinew Wrapped Lamina]|h|r",EquipLoc="INVTYPE_BAG"},["Pattern: Frostsaber Tunic"]={SubType="Leatherworking",Level=62,id=15779,StackCount=1,Rarity=2,MinLevel=0,SellPrice=15000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15779::::::::40:::::::|h[Pattern: Frostsaber Tunic]|h|r",Type="Recipe"},["Lupine Cord"]={SubType="Leather",Level=15,id=15011,StackCount=1,Rarity=2,MinLevel=10,SellPrice=183,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15011::::::::40:::::::|h[Lupine Cord]|h|r",Type="Armor"},["Formula: Enchant Shield - Superior Spirit"]={SubType="Enchanting",Level=56,id=16222,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16222::::::::40:::::::|h[Formula: Enchant Shield - Superior Spirit]|h|r",Type="Recipe"},["Bonescraper"]={SubType="Daggers",Level=62,id=13368,StackCount=1,Rarity=3,MinLevel=57,SellPrice=55438,Texture=135648,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13368::::::::40:::::::|h[Bonescraper]|h|r"},["Guardian Buckler"]={SubType="Shields",Level=25,id=4820,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1664,Texture=134956,Link="|cff1eff00|Hitem:4820::::::::40:::::::|h[Guardian Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Dokebi Mantle"]={SubType="Leather",Level=32,id=14587,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2030,Texture=135039,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14587::::::::40:::::::|h[Dokebi Mantle]|h|r"},["Flimsy Female Dwarf Mask"]={SubType="Miscellaneous",Level=1,id=20562,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134160,Link="|cffffffff|Hitem:20562::::::::40:::::::|h[Flimsy Female Dwarf Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["[PH] Brilliant Dawn Cap"]={SubType="Leather",Level=100,id=13789,StackCount=1,Rarity=1,MinLevel=100,SellPrice=62625,Texture=133117,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:13789::::::::40:::::::|h[[PH] Brilliant Dawn Cap]|h|r"},["Carefully Written Letter"]={SubType="Junk",Level=1,id=22264,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135454,Link="|cffffffff|Hitem:22264::::::::40:::::::|h[Carefully Written Letter]|h|r",EquipLoc="",Type="Miscellaneous"},["Unused Red Leather C03 Pants"]={SubType="Leather",Level=1,id=3532,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:3532::::::::40:::::::|h[Unused Red Leather C03 Pants]|h|r"},["Solid Sharpening Stone"]={SubType="Trade Goods",Level=35,id=7964,StackCount=20,Rarity=1,MinLevel=25,SellPrice=40,Texture=135251,Link="|cffffffff|Hitem:7964::::::::40:::::::|h[Solid Sharpening Stone]|h|r",EquipLoc="",Type="Trade Goods"},["OOX-17/TN Distress Beacon"]={SubType="Quest",Level=43,id=8623,StackCount=1,Rarity=2,MinLevel=43,SellPrice=0,Texture=132836,Link="|cff1eff00|Hitem:8623::::::::40:::::::|h[OOX-17/TN Distress Beacon]|h|r",EquipLoc="",Type="Quest"},["Maury's Key"]={SubType="Key",Level=1,id=3930,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,EquipLoc="",Link="|cffffffff|Hitem:3930::::::::40:::::::|h[Maury's Key]|h|r",Type="Key"},["Outrunner's Shield"]={SubType="Shields",Level=22,id=15504,StackCount=1,Rarity=2,MinLevel=17,SellPrice=1168,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15504::::::::40:::::::|h[Outrunner's Shield]|h|r",Type="Armor"},["Buzzard Feather"]={SubType="Junk",Level=1,id=3882,StackCount=10,Rarity=0,MinLevel=0,SellPrice=13,Texture=132915,EquipLoc="",Link="|cff9d9d9d|Hitem:3882::::::::40:::::::|h[Buzzard Feather]|h|r",Type="Miscellaneous"},["Serpentskin Leggings"]={SubType="Leather",Level=54,id=8262,StackCount=1,Rarity=2,MinLevel=49,SellPrice=14605,Texture=134586,Link="|cff1eff00|Hitem:8262::::::::40:::::::|h[Serpentskin Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Greenweave Cloak"]={SubType="Cloth",Level=20,id=9770,StackCount=1,Rarity=2,MinLevel=15,SellPrice=416,Texture=133769,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9770::::::::40:::::::|h[Greenweave Cloak]|h|r"},["Deprecated Avenger Shoulders"]={SubType="Leather",Level=10,id=4764,StackCount=1,Rarity=0,MinLevel=5,SellPrice=35,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:4764::::::::40:::::::|h[Deprecated Avenger Shoulders]|h|r",Type="Armor"},["Tribal Gloves"]={SubType="Leather",Level=12,id=3286,StackCount=1,Rarity=1,MinLevel=7,SellPrice=59,Texture=132953,Type="Armor",Link="|cffffffff|Hitem:3286::::::::40:::::::|h[Tribal Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Glyphic Letter"]={SubType="Quest",Level=1,id=9571,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Link="|cffffffff|Hitem:9571::::::::40:::::::|h[Glyphic Letter]|h|r",EquipLoc="",Type="Quest"},["Hollow Wing Bone"]={SubType="Junk",Level=1,id=11418,StackCount=5,Rarity=0,MinLevel=0,SellPrice=604,Texture=133718,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11418::::::::40:::::::|h[Hollow Wing Bone]|h|r",EquipLoc=""},["Recipe: Elixir of Frost Power"]={SubType="Alchemy",Level=38,id=17709,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:17709::::::::40:::::::|h[Recipe: Elixir of Frost Power]|h|r",Type="Recipe"},["Glowing Soul Gem"]={SubType="Quest",Level=1,id=5366,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134335,Link="|cffffffff|Hitem:5366::::::::40:::::::|h[Glowing Soul Gem]|h|r",EquipLoc="",Type="Quest"},["Field Plate Gauntlets"]={SubType="Plate",Level=41,id=9287,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2406,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9287::::::::40:::::::|h[Field Plate Gauntlets]|h|r"},["Detention Strap"]={SubType="Mail",Level=62,id=13950,StackCount=1,Rarity=3,MinLevel=57,SellPrice=16447,Texture=132498,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13950::::::::40:::::::|h[Detention Strap]|h|r"},["Monster - Item, Book - Black Simple Offhand"]={SubType="Miscellaneous",Level=1,id=12863,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12863::::::::40:::::::|h[Monster - Item, Book - Black Simple Offhand]|h|r"},["Rawhide Gloves"]={SubType="Leather",Level=23,id=1799,StackCount=1,Rarity=0,MinLevel=18,SellPrice=211,Texture=132952,EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:1799::::::::40:::::::|h[Rawhide Gloves]|h|r",Type="Armor"},["Bandit Boots"]={SubType="Leather",Level=20,id=9776,StackCount=1,Rarity=2,MinLevel=15,SellPrice=547,Texture=132539,Link="|cff1eff00|Hitem:9776::::::::40:::::::|h[Bandit Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Buccaneer's Vest"]={SubType="Cloth",Level=23,id=14175,StackCount=1,Rarity=2,MinLevel=18,SellPrice=847,Texture=135012,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14175::::::::40:::::::|h[Buccaneer's Vest]|h|r"},["Bloated Oily Blackmouth"]={SubType="Consumable",Level=15,id=21162,StackCount=1,Rarity=1,MinLevel=5,SellPrice=25,Texture=134302,Link="|cffffffff|Hitem:21162::::::::40:::::::|h[Bloated Oily Blackmouth]|h|r",EquipLoc="",Type="Consumable"},["Anthion's Holy Water"]={SubType="Quest",Level=1,id=22151,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134716,Link="|cffffffff|Hitem:22151::::::::40:::::::|h[Anthion's Holy Water]|h|r",EquipLoc="",Type="Quest"},["Lieutenant Commander's Plate Helm"]={SubType="Plate",Level=63,id=16429,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8641,Texture=133073,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16429::::::::40:::::::|h[Lieutenant Commander's Plate Helm]|h|r",Type="Armor"},["Copper Battle Axe"]={SubType="Two-Handed Axes",Level=13,id=3488,StackCount=1,Rarity=2,MinLevel=8,SellPrice=613,Texture=135420,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3488::::::::40:::::::|h[Copper Battle Axe]|h|r",Type="Weapon"},["Cobalt Ring"]={SubType="Miscellaneous",Level=29,id=11984,StackCount=1,Rarity=2,MinLevel=24,SellPrice=2189,Texture=133352,Type="Armor",Link="|cff1eff00|Hitem:11984::::::::40:::::::|h[Cobalt Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Wushoolay's Charm of Nature"]={SubType="Miscellaneous",Level=65,id=19955,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133306,Link="|cffa335ee|Hitem:19955::::::::40:::::::|h[Wushoolay's Charm of Nature]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Painted Chain Gloves"]={SubType="Mail",Level=5,id=4910,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:4910::::::::40:::::::|h[Painted Chain Gloves]|h|r",Type="Armor"},["Ahanu's Leather Goods"]={SubType="Quest",Level=1,id=16283,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133639,EquipLoc="",Link="|cffffffff|Hitem:16283::::::::40:::::::|h[Ahanu's Leather Goods]|h|r",Type="Quest"},["Test Nature Res Wrist Cloth"]={SubType="Cloth",Level=35,id=16119,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1379,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:16119::::::::40:::::::|h[Test Nature Res Wrist Cloth]|h|r",Type="Armor"},["Abjurer's Pants"]={SubType="Cloth",Level=50,id=9942,StackCount=1,Rarity=2,MinLevel=45,SellPrice=9341,Texture=134588,Link="|cff1eff00|Hitem:9942::::::::40:::::::|h[Abjurer's Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Twilight Void Bracers"]={SubType="Mail",Level=62,id=13528,StackCount=1,Rarity=2,MinLevel=57,SellPrice=13198,Texture=132615,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:13528::::::::40:::::::|h[Twilight Void Bracers]|h|r"},["Sceptre of Light"]={SubType="Quest",Level=1,id=15750,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135161,EquipLoc="",Link="|cffffffff|Hitem:15750::::::::40:::::::|h[Sceptre of Light]|h|r",Type="Quest"},["Dwarven Defender"]={SubType="Shields",Level=17,id=6187,StackCount=1,Rarity=2,MinLevel=0,SellPrice=613,Texture=134951,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:6187::::::::40:::::::|h[Dwarven Defender]|h|r"},["Zandalar Freethinker's Armguards"]={SubType="Plate",Level=61,id=19827,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132613,Link="|cffa335ee|Hitem:19827::::::::40:::::::|h[Zandalar Freethinker's Armguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Highlander's Mail Greaves"]={SubType="Mail",Level=63,id=20051,StackCount=1,Rarity=3,MinLevel=58,SellPrice=27302,Texture=132545,Link="|cff0070dd|Hitem:20051::::::::40:::::::|h[Highlander's Mail Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Monster - Dagger, Green Pronged"]={SubType="Daggers",Level=1,id=12332,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135640,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12332::::::::40:::::::|h[Monster - Dagger, Green Pronged]|h|r"},["Journeyman's Bracers"]={SubType="Cloth",Level=8,id=3641,StackCount=1,Rarity=1,MinLevel=3,SellPrice=15,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3641::::::::40:::::::|h[Journeyman's Bracers]|h|r"},["Strider Stew"]={SubType="Consumable",Level=15,id=5477,StackCount=20,Rarity=1,MinLevel=5,SellPrice=18,Texture=133748,Link="|cffffffff|Hitem:5477::::::::40:::::::|h[Strider Stew]|h|r",EquipLoc="",Type="Consumable"},["Tablet of Fire Resistance"]={SubType="Book",Level=32,id=4186,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2500,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:4186::::::::40:::::::|h[Tablet of Fire Resistance]|h|r",Type="Recipe"},["Large Compass"]={SubType="Quest",Level=1,id=11104,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134377,Type="Quest",Link="|cffffffff|Hitem:11104::::::::40:::::::|h[Large Compass]|h|r",EquipLoc=""},["Durable Rod"]={SubType="Miscellaneous",Level=34,id=15935,StackCount=1,Rarity=2,MinLevel=29,SellPrice=3323,Texture=135139,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15935::::::::40:::::::|h[Durable Rod]|h|r",Type="Armor"},["Pledge of Friendship: Ironforge"]={SubType="Consumable",Level=1,id=22160,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135449,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22160::::::::40:::::::|h[Pledge of Friendship: Ironforge]|h|r"},["Mithril Lotterybox"]={SubType="Junk",Level=40,id=8506,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=132597,Link="|cff1eff00|Hitem:8506::::::::40:::::::|h[Mithril Lotterybox]|h|r",EquipLoc="",Type="Miscellaneous"},["Tablet of Nullify Poison"]={SubType="Book",Level=18,id=1033,StackCount=1,Rarity=1,MinLevel=18,SellPrice=625,Texture=134459,Link="|cffffffff|Hitem:1033::::::::40:::::::|h[Tablet of Nullify Poison]|h|r",EquipLoc="",Type="Recipe"},["Schematic: Lil' Smoky"]={SubType="Engineering",Level=40,id=11827,StackCount=1,Rarity=2,MinLevel=0,SellPrice=675,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:11827::::::::40:::::::|h[Schematic: Lil' Smoky]|h|r",EquipLoc=""},["Shredder Operating Manual - Page 7"]={SubType="Junk",Level=1,id=16651,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:16651::::::::40:::::::|h[Shredder Operating Manual - Page 7]|h|r",Type="Miscellaneous"},["Humbert's Pants"]={SubType="Cloth",Level=29,id=4723,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1703,Texture=134582,Type="Armor",Link="|cff1eff00|Hitem:4723::::::::40:::::::|h[Humbert's Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Kentic Amice"]={SubType="Cloth",Level=52,id=11624,StackCount=1,Rarity=3,MinLevel=47,SellPrice=9079,Texture=135056,Type="Armor",Link="|cff0070dd|Hitem:11624::::::::40:::::::|h[Kentic Amice]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Furlbrow's Pocket Watch"]={SubType="Quest",Level=1,id=841,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134377,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:841::::::::40:::::::|h[Furlbrow's Pocket Watch]|h|r"},["Drawing Kit"]={SubType="Quest",Level=0,id=10445,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132594,EquipLoc="",Link="|cffffffff|Hitem:10445::::::::40:::::::|h[Drawing Kit]|h|r",Type="Quest"},["Sorcerer Slippers"]={SubType="Cloth",Level=40,id=9876,StackCount=1,Rarity=2,MinLevel=35,SellPrice=3146,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9876::::::::40:::::::|h[Sorcerer Slippers]|h|r"},["Green Garden Tea"]={SubType="Consumable",Level=35,id=17405,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=132819,EquipLoc="",Link="|cffffffff|Hitem:17405::::::::40:::::::|h[Green Garden Tea]|h|r",Type="Consumable"},["Cured Ham Steak"]={SubType="Consumable",Level=45,id=4599,StackCount=20,Rarity=1,MinLevel=35,SellPrice=100,Texture=133970,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:4599::::::::40:::::::|h[Cured Ham Steak]|h|r"},["Crocolisk Skin"]={SubType="Quest",Level=1,id=2925,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134304,Type="Quest",Link="|cffffffff|Hitem:2925::::::::40:::::::|h[Crocolisk Skin]|h|r",EquipLoc=""},["Jouster's Greaves"]={SubType="Plate",Level=40,id=8160,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3378,Texture=132583,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:8160::::::::40:::::::|h[Jouster's Greaves]|h|r"},["Battlechaser's Greaves"]={SubType="Plate",Level=55,id=12555,StackCount=1,Rarity=3,MinLevel=50,SellPrice=11406,Texture=132587,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:12555::::::::40:::::::|h[Battlechaser's Greaves]|h|r"},["Primal Hakkari Armsplint"]={SubType="Quest",Level=1,id=19717,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=132617,Link="|cffa335ee|Hitem:19717::::::::40:::::::|h[Primal Hakkari Armsplint]|h|r",EquipLoc="",Type="Quest"},["Signed Recruitment Letter"]={SubType="Quest",Level=1,id=4995,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133473,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4995::::::::40:::::::|h[Signed Recruitment Letter]|h|r"},["Red Sack of Gems"]={SubType="Junk",Level=1,id=17969,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4773,Texture=133643,EquipLoc="",Link="|cff1eff00|Hitem:17969::::::::40:::::::|h[Red Sack of Gems]|h|r",Type="Miscellaneous"},["Stormpike Sage's Cloak"]={SubType="Cloth",Level=60,id=19086,StackCount=1,Rarity=3,MinLevel=55,SellPrice=15209,Texture=133770,Link="|cff0070dd|Hitem:19086::::::::40:::::::|h[Stormpike Sage's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Dark Green Wedding Hanbok"]={SubType="Miscellaneous",Level=30,id=13896,StackCount=1,Rarity=1,MinLevel=0,SellPrice=11020,Texture=132664,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:13896::::::::40:::::::|h[Dark Green Wedding Hanbok]|h|r"},["Deprecated Deepwood Boots"]={SubType="Leather",Level=27,id=3060,StackCount=1,Rarity=0,MinLevel=22,SellPrice=512,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:3060::::::::40:::::::|h[Deprecated Deepwood Boots]|h|r",Type="Armor"},["Runic Leather Bracers"]={SubType="Leather",Level=55,id=15092,StackCount=1,Rarity=2,MinLevel=50,SellPrice=7656,Texture=132610,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15092::::::::40:::::::|h[Runic Leather Bracers]|h|r",Type="Armor"},["The Postmaster's Treads"]={SubType="Cloth",Level=61,id=13391,StackCount=1,Rarity=3,MinLevel=56,SellPrice=16425,Texture=132536,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13391::::::::40:::::::|h[The Postmaster's Treads]|h|r"},["Captain Sander's Shirt"]={SubType="Miscellaneous",Level=15,id=3342,StackCount=1,Rarity=1,MinLevel=0,SellPrice=137,Texture=135018,Link="|cffffffff|Hitem:3342::::::::40:::::::|h[Captain Sander's Shirt]|h|r",EquipLoc="INVTYPE_BODY",Type="Armor"},["Gemshard Heart"]={SubType="Miscellaneous",Level=54,id=17707,StackCount=1,Rarity=3,MinLevel=49,SellPrice=11631,Texture=135227,EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:17707::::::::40:::::::|h[Gemshard Heart]|h|r",Type="Armor"},["Qiraji Encased Jewel"]={SubType="Quest",Level=1,id=20937,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=132617,Link="|cffa335ee|Hitem:20937::::::::40:::::::|h[Qiraji Encased Jewel]|h|r",EquipLoc="",Type="Quest"},["Carefully Folded Note"]={SubType="Quest",Level=45,id=4098,StackCount=1,Rarity=1,MinLevel=45,SellPrice=0,Texture=133469,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4098::::::::40:::::::|h[Carefully Folded Note]|h|r"},["Jet Loop"]={SubType="Miscellaneous",Level=42,id=11998,StackCount=1,Rarity=2,MinLevel=37,SellPrice=2896,Texture=133343,Type="Armor",Link="|cff1eff00|Hitem:11998::::::::40:::::::|h[Jet Loop]|h|r",EquipLoc="INVTYPE_FINGER"},["Hand of Shazzrah"]={SubType="Quest",Level=1,id=17332,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132953,EquipLoc="",Link="|cffffffff|Hitem:17332::::::::40:::::::|h[Hand of Shazzrah]|h|r",Type="Quest"},["Birchwood Maul"]={SubType="Two-Handed Maces",Level=15,id=4570,StackCount=1,Rarity=2,MinLevel=10,SellPrice=922,Texture=133052,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:4570::::::::40:::::::|h[Birchwood Maul]|h|r"},["Russet Vest"]={SubType="Cloth",Level=37,id=2429,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2027,Texture=135018,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:2429::::::::40:::::::|h[Russet Vest]|h|r"},["Barbaric Shoulders"]={SubType="Leather",Level=35,id=5964,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2609,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:5964::::::::40:::::::|h[Barbaric Shoulders]|h|r",Type="Armor"},["Libram: Judgement III"]={SubType="Book",Level=60,id=8945,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133740,Link="|cffffffff|Hitem:8945::::::::40:::::::|h[Libram: Judgement III]|h|r",EquipLoc="",Type="Recipe"},["Gothic Plate Gauntlets"]={SubType="Plate",Level=46,id=10087,StackCount=1,Rarity=2,MinLevel=41,SellPrice=3393,Texture=132955,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10087::::::::40:::::::|h[Gothic Plate Gauntlets]|h|r",Type="Armor"},["[PH] Plate Chestguard of the Brilliant Dawn"]={SubType="Plate",Level=100,id=13771,StackCount=1,Rarity=1,MinLevel=100,SellPrice=66646,Texture=132751,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13771::::::::40:::::::|h[[PH] Plate Chestguard of the Brilliant Dawn]|h|r"},["Red Hot Wings"]={SubType="Consumable",Level=35,id=19224,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=134002,Link="|cffffffff|Hitem:19224::::::::40:::::::|h[Red Hot Wings]|h|r",EquipLoc="",Type="Consumable"},["Furbolg Medicine Pouch"]={SubType="Miscellaneous",Level=52,id=16768,StackCount=1,Rarity=2,MinLevel=0,SellPrice=37500,Texture=133644,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:16768::::::::40:::::::|h[Furbolg Medicine Pouch]|h|r",Type="Armor"},["Idol of Strife"]={SubType="Quest",Level=61,id=20881,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134908,Link="|cff0070dd|Hitem:20881::::::::40:::::::|h[Idol of Strife]|h|r",EquipLoc="",Type="Quest"},["Yellow Rocket Cluster"]={SubType="Consumable",Level=1,id=21578,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=134293,Link="|cffffffff|Hitem:21578::::::::40:::::::|h[Yellow Rocket Cluster]|h|r",EquipLoc="",Type="Consumable"},["Axe of the Enforcer"]={SubType="One-Handed Axes",Level=27,id=1454,StackCount=1,Rarity=3,MinLevel=22,SellPrice=3937,Texture=132415,Type="Weapon",Link="|cff0070dd|Hitem:1454::::::::40:::::::|h[Axe of the Enforcer]|h|r",EquipLoc="INVTYPE_WEAPON"},["Headhunter's Bands"]={SubType="Leather",Level=30,id=15351,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1090,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15351::::::::40:::::::|h[Headhunter's Bands]|h|r",Type="Armor"},["Green Whelp Scale"]={SubType="Junk",Level=1,id=7392,StackCount=5,Rarity=1,MinLevel=0,SellPrice=200,Texture=134305,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:7392::::::::40:::::::|h[Green Whelp Scale]|h|r"},["Empty Felstone Field Bottle"]={SubType="Quest",Level=1,id=13186,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134870,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13186::::::::40:::::::|h[Empty Felstone Field Bottle]|h|r"},["Test Enchantments LockBox (Enchanting Items) 3"]={SubType="Junk",Level=1,id=17911,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17911::::::::40:::::::|h[Test Enchantments LockBox (Enchanting Items) 3]|h|r",Type="Miscellaneous"},["Codex of Fade III"]={SubType="Book",Level=30,id=8975,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133741,Link="|cffffffff|Hitem:8975::::::::40:::::::|h[Codex of Fade III]|h|r",EquipLoc="",Type="Recipe"},["Thrall's Resolve"]={SubType="Miscellaneous",Level=60,id=12544,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7407,Texture=133347,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:12544::::::::40:::::::|h[Thrall's Resolve]|h|r"},["Tablet of Thunderclap"]={SubType="Book",Level=20,id=5703,StackCount=1,Rarity=1,MinLevel=20,SellPrice=750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5703::::::::40:::::::|h[Tablet of Thunderclap]|h|r"},["Dragonbreath Hand Cannon"]={SubType="Guns",Level=75,id=19368,StackCount=1,Rarity=4,MinLevel=60,SellPrice=106574,Texture=135611,Link="|cffa335ee|Hitem:19368::::::::40:::::::|h[Dragonbreath Hand Cannon]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Codex of Mind Blast II"]={SubType="Book",Level=16,id=8962,StackCount=1,Rarity=1,MinLevel=16,SellPrice=325,Texture=133741,Link="|cffffffff|Hitem:8962::::::::40:::::::|h[Codex of Mind Blast II]|h|r",EquipLoc="",Type="Recipe"},["Spellbinder Boots"]={SubType="Cloth",Level=14,id=2971,StackCount=1,Rarity=1,MinLevel=9,SellPrice=108,Texture=132543,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:2971::::::::40:::::::|h[Spellbinder Boots]|h|r",Type="Armor"},["Thule's Head"]={SubType="Quest",Level=1,id=3623,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Link="|cffffffff|Hitem:3623::::::::40:::::::|h[Thule's Head]|h|r",EquipLoc="",Type="Quest"},["Tome of Conjure Food V"]={SubType="Book",Level=42,id=8853,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133739,Link="|cffffffff|Hitem:8853::::::::40:::::::|h[Tome of Conjure Food V]|h|r",EquipLoc="",Type="Recipe"},["Night Reaver"]={SubType="Two-Handed Axes",Level=23,id=1318,StackCount=1,Rarity=3,MinLevel=18,SellPrice=3066,Texture=135424,Link="|cff0070dd|Hitem:1318::::::::40:::::::|h[Night Reaver]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Aurora Sphere"]={SubType="Miscellaneous",Level=41,id=7610,StackCount=1,Rarity=2,MinLevel=36,SellPrice=5811,Texture=134121,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:7610::::::::40:::::::|h[Aurora Sphere]|h|r"},["Seal of Sylvanas"]={SubType="Miscellaneous",Level=29,id=6414,StackCount=1,Rarity=3,MinLevel=0,SellPrice=2055,Texture=133357,Type="Armor",Link="|cff0070dd|Hitem:6414::::::::40:::::::|h[Seal of Sylvanas]|h|r",EquipLoc="INVTYPE_FINGER"},["QAEnchant Boots +8% Speed"]={SubType="Consumable",Level=1,id=22587,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22587::::::::40:::::::|h[QAEnchant Boots +8% Speed]|h|r"},["Tough Leather Belt"]={SubType="Leather",Level=30,id=1803,StackCount=1,Rarity=0,MinLevel=25,SellPrice=465,Texture=132513,EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:1803::::::::40:::::::|h[Tough Leather Belt]|h|r",Type="Armor"},["Sayge's Fortune #25"]={SubType="Junk",Level=10,id=19443,StackCount=1,Rarity=1,MinLevel=10,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19443::::::::40:::::::|h[Sayge's Fortune #25]|h|r",EquipLoc="",Type="Miscellaneous"},["Plans: Rune Edge"]={SubType="Blacksmithing",Level=57,id=12826,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12826::::::::40:::::::|h[Plans: Rune Edge]|h|r"},["Sanctimonial Rod"]={SubType="Staves",Level=46,id=11857,StackCount=1,Rarity=2,MinLevel=0,SellPrice=21377,Texture=135148,Type="Weapon",Link="|cff1eff00|Hitem:11857::::::::40:::::::|h[Sanctimonial Rod]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Fight Club"]={SubType="One-Handed Maces",Level=39,id=7736,StackCount=1,Rarity=3,MinLevel=34,SellPrice=11970,Texture=133486,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:7736::::::::40:::::::|h[Fight Club]|h|r",Type="Weapon"},["Cutthroat's Armguards"]={SubType="Leather",Level=29,id=15132,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1017,Texture=132609,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15132::::::::40:::::::|h[Cutthroat's Armguards]|h|r",Type="Armor"},["Codex of Mind Blast III"]={SubType="Book",Level=22,id=8967,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133741,Link="|cffffffff|Hitem:8967::::::::40:::::::|h[Codex of Mind Blast III]|h|r",EquipLoc="",Type="Recipe"},["Kodo Kombobulator"]={SubType="Quest",Level=30,id=13892,StackCount=1,Rarity=1,MinLevel=15,SellPrice=0,Texture=132488,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13892::::::::40:::::::|h[Kodo Kombobulator]|h|r"},["Tome of Fireball III"]={SubType="Book",Level=12,id=992,StackCount=1,Rarity=1,MinLevel=12,SellPrice=125,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:992::::::::40:::::::|h[Tome of Fireball III]|h|r",Type="Recipe"},["Plans: Solid Iron Maul"]={SubType="Blacksmithing",Level=31,id=10858,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10858::::::::40:::::::|h[Plans: Solid Iron Maul]|h|r",Type="Recipe"},["Deadmines Cleaver"]={SubType="One-Handed Axes",Level=15,id=1927,StackCount=1,Rarity=2,MinLevel=10,SellPrice=690,Texture=132402,Link="|cff1eff00|Hitem:1927::::::::40:::::::|h[Deadmines Cleaver]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Symbolic Crest"]={SubType="Shields",Level=43,id=14825,StackCount=1,Rarity=2,MinLevel=38,SellPrice=8595,Texture=134961,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14825::::::::40:::::::|h[Symbolic Crest]|h|r"},["Exalted Gauntlets"]={SubType="Plate",Level=61,id=14976,StackCount=1,Rarity=2,MinLevel=56,SellPrice=8349,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14976::::::::40:::::::|h[Exalted Gauntlets]|h|r"},["Magician Staff"]={SubType="Staves",Level=29,id=2077,StackCount=1,Rarity=2,MinLevel=24,SellPrice=5059,Texture=135468,Link="|cff1eff00|Hitem:2077::::::::40:::::::|h[Magician Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Rough Broad Axe"]={SubType="Two-Handed Axes",Level=3,id=2483,StackCount=1,Rarity=1,MinLevel=1,SellPrice=14,Texture=135420,Link="|cffffffff|Hitem:2483::::::::40:::::::|h[Rough Broad Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Deprecated Dark Iron Pauldrons"]={SubType="Mail",Level=15,id=3007,StackCount=1,Rarity=0,MinLevel=10,SellPrice=132,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3007::::::::40:::::::|h[Deprecated Dark Iron Pauldrons]|h|r"},["Test Nature Res Wrist Mail"]={SubType="Leather",Level=35,id=16132,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1725,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:16132::::::::40:::::::|h[Test Nature Res Wrist Mail]|h|r",Type="Armor"},["Test Staff 77 epic"]={SubType="Staves",Level=77,id=20372,StackCount=1,Rarity=4,MinLevel=60,SellPrice=181731,Texture=135166,Link="|cffa335ee|Hitem:20372::::::::40:::::::|h[Test Staff 77 epic]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Tablet of Earth Shock V"]={SubType="Book",Level=36,id=9095,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=134459,Link="|cffffffff|Hitem:9095::::::::40:::::::|h[Tablet of Earth Shock V]|h|r",EquipLoc="",Type="Recipe"},["Treetop Leggings"]={SubType="Cloth",Level=55,id=11911,StackCount=1,Rarity=2,MinLevel=0,SellPrice=12392,Texture=134588,Type="Armor",Link="|cff1eff00|Hitem:11911::::::::40:::::::|h[Treetop Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Nightsky Trousers"]={SubType="Cloth",Level=36,id=6405,StackCount=1,Rarity=2,MinLevel=31,SellPrice=3167,Texture=134588,Type="Armor",Link="|cff1eff00|Hitem:6405::::::::40:::::::|h[Nightsky Trousers]|h|r",EquipLoc="INVTYPE_LEGS"},["Tome of Frost Armor II"]={SubType="Book",Level=10,id=974,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133739,Link="|cffffffff|Hitem:974::::::::40:::::::|h[Tome of Frost Armor II]|h|r",EquipLoc="",Type="Recipe"},["Latched Belt"]={SubType="Mail",Level=5,id=2690,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:2690::::::::40:::::::|h[Latched Belt]|h|r",Type="Armor"},["Dragon Finger"]={SubType="Wands",Level=60,id=15282,StackCount=1,Rarity=2,MinLevel=55,SellPrice=30628,Texture=135468,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15282::::::::40:::::::|h[Dragon Finger]|h|r",Type="Weapon"},["Dragonstalker's Legguards"]={SubType="Mail",Level=76,id=16938,StackCount=1,Rarity=4,MinLevel=60,SellPrice=85917,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16938::::::::40:::::::|h[Dragonstalker's Legguards]|h|r",Type="Armor"},["A Parrot Skeleton"]={SubType="Junk",Level=1,id=9357,StackCount=10,Rarity=0,MinLevel=0,SellPrice=227,Texture=133719,Link="|cff9d9d9d|Hitem:9357::::::::40:::::::|h[A Parrot Skeleton]|h|r",EquipLoc="",Type="Miscellaneous"},["Deprecated Heavy Brown Sack"]={SubType="Bag",Level=25,id=931,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133639,Type="Container",Link="|cffffffff|Hitem:931::::::::40:::::::|h[Deprecated Heavy Brown Sack]|h|r",EquipLoc="INVTYPE_BAG"},["Hatefury Claw"]={SubType="Quest",Level=1,id=6246,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134294,Link="|cffffffff|Hitem:6246::::::::40:::::::|h[Hatefury Claw]|h|r",EquipLoc="",Type="Quest"},["Renegade Belt"]={SubType="Mail",Level=35,id=9869,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2225,Texture=132515,Link="|cff1eff00|Hitem:9869::::::::40:::::::|h[Renegade Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Grelin Whitebeard's Journal"]={SubType="Quest",Level=1,id=2004,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:2004::::::::40:::::::|h[Grelin Whitebeard's Journal]|h|r",Type="Quest"},["Traveler's Jerkin"]={SubType="Leather",Level=61,id=8296,StackCount=1,Rarity=2,MinLevel=56,SellPrice=20861,Texture=132720,Link="|cff1eff00|Hitem:8296::::::::40:::::::|h[Traveler's Jerkin]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Monster - Item, Fish - Purple Offhand"]={SubType="Miscellaneous",Level=1,id=19488,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133888,Link="|cff9d9d9d|Hitem:19488::::::::40:::::::|h[Monster - Item, Fish - Purple Offhand]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND",Type="Weapon"},["Monster - Shield, Black Skull"]={SubType="Shields",Level=1,id=12893,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:12893::::::::40:::::::|h[Monster - Shield, Black Skull]|h|r"},["Martyr's Chain"]={SubType="Mail",Level=26,id=3416,StackCount=1,Rarity=3,MinLevel=21,SellPrice=2213,Texture=132624,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:3416::::::::40:::::::|h[Martyr's Chain]|h|r",Type="Armor"},["Imprisoned Doomguard"]={SubType="Quest",Level=1,id=18605,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134075,Type="Quest",Link="|cffffffff|Hitem:18605::::::::40:::::::|h[Imprisoned Doomguard]|h|r",EquipLoc=""},["Staff of the Ruins"]={SubType="Staves",Level=72,id=21452,StackCount=1,Rarity=4,MinLevel=60,SellPrice=147914,Texture=135149,Link="|cffa335ee|Hitem:21452::::::::40:::::::|h[Staff of the Ruins]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Grimoire of Lash of Pain (Rank 5)"]={SubType="Book",Level=52,id=16373,StackCount=1,Rarity=1,MinLevel=52,SellPrice=4500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16373::::::::40:::::::|h[Grimoire of Lash of Pain (Rank 5)]|h|r",Type="Recipe"},["Test AQ Resource - Baked Salmon"]={SubType="Junk",Level=1,id=21660,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21660::::::::40:::::::|h[Test AQ Resource - Baked Salmon]|h|r",EquipLoc="",Type="Miscellaneous"},["Brutish Armguards"]={SubType="Plate",Level=44,id=14910,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3033,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14910::::::::40:::::::|h[Brutish Armguards]|h|r"},["QAEnchant Weapon +5 Damage"]={SubType="Consumable",Level=1,id=17888,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17888::::::::40:::::::|h[QAEnchant Weapon +5 Damage]|h|r",Type="Consumable"},["Monster - Sword2H, Broadsword"]={SubType="Two-Handed Swords",Level=1,id=4991,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135315,Link="|cff9d9d9d|Hitem:4991::::::::40:::::::|h[Monster - Sword2H, Broadsword]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Freezing Lich Robes"]={SubType="Cloth",Level=62,id=14340,StackCount=1,Rarity=3,MinLevel=57,SellPrice=21778,Texture=132687,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:14340::::::::40:::::::|h[Freezing Lich Robes]|h|r"},["Fist of Omokk"]={SubType="Two-Handed Maces",Level=60,id=13167,StackCount=1,Rarity=3,MinLevel=55,SellPrice=59410,Texture=133041,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13167::::::::40:::::::|h[Fist of Omokk]|h|r"},["Captain's Circlet"]={SubType="Mail",Level=42,id=7488,StackCount=1,Rarity=2,MinLevel=37,SellPrice=6038,Texture=132767,Link="|cff1eff00|Hitem:7488::::::::40:::::::|h[Captain's Circlet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Vial of Purest Water"]={SubType="Quest",Level=1,id=7810,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134800,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7810::::::::40:::::::|h[Vial of Purest Water]|h|r"},["Well Oiled Cloak"]={SubType="Cloth",Level=44,id=12254,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4483,Texture=133756,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:12254::::::::40:::::::|h[Well Oiled Cloak]|h|r"},["Large Brilliant Shard"]={SubType="Trade Goods",Level=55,id=14344,StackCount=20,Rarity=3,MinLevel=0,SellPrice=0,Texture=132873,Type="Trade Goods",EquipLoc="",Link="|cff0070dd|Hitem:14344::::::::40:::::::|h[Large Brilliant Shard]|h|r"},["Champion's Gauntlets"]={SubType="Mail",Level=46,id=7541,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5479,Texture=132963,Link="|cff1eff00|Hitem:7541::::::::40:::::::|h[Champion's Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Toasting Goblet"]={SubType="Consumable",Level=1,id=21267,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132789,Link="|cffffffff|Hitem:21267::::::::40:::::::|h[Toasting Goblet]|h|r",EquipLoc="",Type="Consumable"},["Jangdor's Handcrafted Gloves"]={SubType="Leather",Level=45,id=9632,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3883,Texture=132957,Link="|cff1eff00|Hitem:9632::::::::40:::::::|h[Jangdor's Handcrafted Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Horns of Eranikus"]={SubType="Mail",Level=56,id=10833,StackCount=1,Rarity=3,MinLevel=51,SellPrice=8597,Texture=133127,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:10833::::::::40:::::::|h[Horns of Eranikus]|h|r",Type="Armor"},["Rigid Moccasins"]={SubType="Leather",Level=21,id=15111,StackCount=1,Rarity=2,MinLevel=16,SellPrice=609,Texture=132537,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15111::::::::40:::::::|h[Rigid Moccasins]|h|r",Type="Armor"},["Codex of Mind Blast VII"]={SubType="Book",Level=46,id=9002,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9002::::::::40:::::::|h[Codex of Mind Blast VII]|h|r"},["Split Bone Necklace"]={SubType="Quest",Level=1,id=3916,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133727,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3916::::::::40:::::::|h[Split Bone Necklace]|h|r"},["Grimlok's Tribal Vestments"]={SubType="Cloth",Level=47,id=9415,StackCount=1,Rarity=3,MinLevel=42,SellPrice=8997,Texture=135009,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:9415::::::::40:::::::|h[Grimlok's Tribal Vestments]|h|r"},["Grimoire of Pestilence II"]={SubType="Book",Level=26,id=4203,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1500,Texture=133738,Link="|cffffffff|Hitem:4203::::::::40:::::::|h[Grimoire of Pestilence II]|h|r",EquipLoc="",Type="Recipe"},["Zanzil's Seal"]={SubType="Miscellaneous",Level=71,id=19893,StackCount=1,Rarity=3,MinLevel=60,SellPrice=55355,Texture=133388,Link="|cff0070dd|Hitem:19893::::::::40:::::::|h[Zanzil's Seal]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Soldier's Armor"]={SubType="Mail",Level=18,id=6545,StackCount=1,Rarity=2,MinLevel=13,SellPrice=675,Texture=132638,Type="Armor",Link="|cff1eff00|Hitem:6545::::::::40:::::::|h[Soldier's Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["The Emperor's New Cape"]={SubType="Cloth",Level=60,id=11930,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14588,Texture=133772,Type="Armor",Link="|cff0070dd|Hitem:11930::::::::40:::::::|h[The Emperor's New Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Ritual Salve"]={SubType="Quest",Level=1,id=6634,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134712,Link="|cffffffff|Hitem:6634::::::::40:::::::|h[Ritual Salve]|h|r",EquipLoc="",Type="Quest"},["Ogre Forged Hauberk"]={SubType="Mail",Level=62,id=18530,StackCount=1,Rarity=3,MinLevel=57,SellPrice=31331,Texture=132634,Type="Armor",Link="|cff0070dd|Hitem:18530::::::::40:::::::|h[Ogre Forged Hauberk]|h|r",EquipLoc="INVTYPE_CHEST"},["Knight-Captain's Satin Legguards"]={SubType="Cloth",Level=68,id=23302,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15096,Texture=134591,Link="|cff0070dd|Hitem:23302::::::::40:::::::|h[Knight-Captain's Satin Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Jade Circlet"]={SubType="Plate",Level=52,id=14919,StackCount=1,Rarity=2,MinLevel=47,SellPrice=7717,Texture=132514,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14919::::::::40:::::::|h[Jade Circlet]|h|r"},["Green Carapace Shield"]={SubType="Shields",Level=21,id=2021,StackCount=1,Rarity=2,MinLevel=16,SellPrice=1025,Texture=134321,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:2021::::::::40:::::::|h[Green Carapace Shield]|h|r"},["Combatant Claymore"]={SubType="Two-Handed Swords",Level=33,id=2877,StackCount=1,Rarity=3,MinLevel=28,SellPrice=8524,Texture=135324,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:2877::::::::40:::::::|h[Combatant Claymore]|h|r"},["Raw Redgill"]={SubType="Consumable",Level=45,id=13758,StackCount=20,Rarity=1,MinLevel=35,SellPrice=4,Texture=133892,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13758::::::::40:::::::|h[Raw Redgill]|h|r"},["Gauntlets of Ogre Strength"]={SubType="Mail",Level=32,id=3341,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1621,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:3341::::::::40:::::::|h[Gauntlets of Ogre Strength]|h|r",Type="Armor"},["Bloodfang Pants"]={SubType="Leather",Level=76,id=16909,StackCount=1,Rarity=4,MinLevel=60,SellPrice=69209,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16909::::::::40:::::::|h[Bloodfang Pants]|h|r",Type="Armor"},["Stranglethorn Seed"]={SubType="Reagent",Level=30,id=17035,StackCount=20,Rarity=1,MinLevel=0,SellPrice=100,Texture=133944,EquipLoc="",Link="|cffffffff|Hitem:17035::::::::40:::::::|h[Stranglethorn Seed]|h|r",Type="Reagent"},["Monster - Item, Orb - A01 Blue"]={SubType="Miscellaneous",Level=1,id=19053,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135473,Link="|cff9d9d9d|Hitem:19053::::::::40:::::::|h[Monster - Item, Orb - A01 Blue]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Gossamer Robe"]={SubType="Cloth",Level=50,id=7518,StackCount=1,Rarity=2,MinLevel=45,SellPrice=9406,Texture=132645,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:7518::::::::40:::::::|h[Gossamer Robe]|h|r",Type="Armor"},["Tabar"]={SubType="Two-Handed Axes",Level=14,id=1196,StackCount=1,Rarity=1,MinLevel=9,SellPrice=442,Texture=132395,Link="|cffffffff|Hitem:1196::::::::40:::::::|h[Tabar]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Grunt's Belt"]={SubType="Mail",Level=20,id=15510,StackCount=1,Rarity=2,MinLevel=15,SellPrice=423,Texture=132504,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15510::::::::40:::::::|h[Grunt's Belt]|h|r",Type="Armor"},["Fel Moss"]={SubType="Quest",Level=1,id=3297,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134186,Type="Quest",Link="|cffffffff|Hitem:3297::::::::40:::::::|h[Fel Moss]|h|r",EquipLoc=""},["Fine Leather Belt"]={SubType="Leather",Level=16,id=4246,StackCount=1,Rarity=1,MinLevel=11,SellPrice=125,Texture=132493,Link="|cffffffff|Hitem:4246::::::::40:::::::|h[Fine Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Grizzly Cape"]={SubType="Cloth",Level=10,id=15299,StackCount=1,Rarity=1,MinLevel=5,SellPrice=42,Texture=133762,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:15299::::::::40:::::::|h[Grizzly Cape]|h|r",Type="Armor"},["Fras Siabi's Advertisement"]={SubType="Junk",Level=1,id=13364,StackCount=20,Rarity=0,MinLevel=0,SellPrice=2000,Texture=134944,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:13364::::::::40:::::::|h[Fras Siabi's Advertisement]|h|r"},["Agamand Family Axe"]={SubType="Quest",Level=1,id=7567,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132392,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7567::::::::40:::::::|h[Agamand Family Axe]|h|r"},["Monster - Staff, Lord Valthalak"]={SubType="Staves",Level=63,id=22391,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=135144,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:22391::::::::40:::::::|h[Monster - Staff, Lord Valthalak]|h|r"},["Brigandine Bracers"]={SubType="Mail",Level=50,id=2427,StackCount=1,Rarity=1,MinLevel=45,SellPrice=4029,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:2427::::::::40:::::::|h[Brigandine Bracers]|h|r",Type="Armor"},["Sayge's Fortune #2"]={SubType="Junk",Level=1,id=19256,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19256::::::::40:::::::|h[Sayge's Fortune #2]|h|r",EquipLoc="",Type="Miscellaneous"},["Imperial Leather Breastplate"]={SubType="Leather",Level=46,id=6430,StackCount=1,Rarity=2,MinLevel=41,SellPrice=9098,Texture=132722,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:6430::::::::40:::::::|h[Imperial Leather Breastplate]|h|r"},["Highlander's Cloth Boots"]={SubType="Cloth",Level=63,id=20054,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16582,Texture=132564,Link="|cff0070dd|Hitem:20054::::::::40:::::::|h[Highlander's Cloth Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Ashkandi, Greatsword of the Brotherhood"]={SubType="Two-Handed Swords",Level=81,id=19364,StackCount=1,Rarity=4,MinLevel=60,SellPrice=228517,Texture=135360,Link="|cffa335ee|Hitem:19364::::::::40:::::::|h[Ashkandi, Greatsword of the Brotherhood]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Recipe: Jungle Stew"]={SubType="Cooking",Level=35,id=12231,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12231::::::::40:::::::|h[Recipe: Jungle Stew]|h|r"},["Hardened Leather Helm"]={SubType="Leather",Level=35,id=8747,StackCount=1,Rarity=0,MinLevel=30,SellPrice=1036,Texture=133117,Link="|cff9d9d9d|Hitem:8747::::::::40:::::::|h[Hardened Leather Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Warsong Gulch Mageweave Bandage"]={SubType="Consumable",Level=45,id=19067,StackCount=20,Rarity=1,MinLevel=35,SellPrice=75,Texture=133690,Link="|cffffffff|Hitem:19067::::::::40:::::::|h[Warsong Gulch Mageweave Bandage]|h|r",EquipLoc="",Type="Consumable"},["Opaline Medallion"]={SubType="Miscellaneous",Level=57,id=16623,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7783,Texture=133295,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:16623::::::::40:::::::|h[Opaline Medallion]|h|r",Type="Armor"},["Recipe: Dragonbreath Chili"]={SubType="Cooking",Level=40,id=12239,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1750,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12239::::::::40:::::::|h[Recipe: Dragonbreath Chili]|h|r"},["Crest of Beckoning: Thunder"]={SubType="Junk",Level=1,id=20418,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134458,Link="|cffffffff|Hitem:20418::::::::40:::::::|h[Crest of Beckoning: Thunder]|h|r",EquipLoc="",Type="Miscellaneous"},["Hanzo Sword"]={SubType="One-Handed Swords",Level=55,id=8190,StackCount=1,Rarity=3,MinLevel=50,SellPrice=37286,Texture=135280,Link="|cff0070dd|Hitem:8190::::::::40:::::::|h[Hanzo Sword]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Tome of Fireball VIII"]={SubType="Book",Level=42,id=8851,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133739,Link="|cffffffff|Hitem:8851::::::::40:::::::|h[Tome of Fireball VIII]|h|r",EquipLoc="",Type="Recipe"},["Creeping Anguish"]={SubType="Consumable",Level=34,id=2896,StackCount=10,Rarity=1,MinLevel=0,SellPrice=25,Texture=134799,Link="|cffffffff|Hitem:2896::::::::40:::::::|h[Creeping Anguish]|h|r",EquipLoc="",Type="Consumable"},["Spider Belt"]={SubType="Cloth",Level=36,id=4328,StackCount=1,Rarity=2,MinLevel=31,SellPrice=1524,Texture=132514,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4328::::::::40:::::::|h[Spider Belt]|h|r",Type="Armor"},["Savage Boar's Guard"]={SubType="Shields",Level=42,id=10767,StackCount=1,Rarity=3,MinLevel=37,SellPrice=9652,Texture=134963,EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:10767::::::::40:::::::|h[Savage Boar's Guard]|h|r",Type="Armor"},["Centaur Ear"]={SubType="Quest",Level=1,id=6067,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133855,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6067::::::::40:::::::|h[Centaur Ear]|h|r"},["Atal'alarion's Tusk Ring"]={SubType="Plate",Level=51,id=10798,StackCount=1,Rarity=3,MinLevel=46,SellPrice=6263,Texture=132504,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:10798::::::::40:::::::|h[Atal'alarion's Tusk Ring]|h|r",Type="Armor"},["Deprecated Phylactery of Rot"]={SubType="Miscellaneous",Level=40,id=2012,StackCount=1,Rarity=0,MinLevel=35,SellPrice=1300,Texture=133436,Type="Armor",Link="|cff9d9d9d|Hitem:2012::::::::40:::::::|h[Deprecated Phylactery of Rot]|h|r",EquipLoc="INVTYPE_TRINKET"},["Boulderskin Breastplate"]={SubType="Plate",Level=60,id=12106,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16824,Texture=132723,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:12106::::::::40:::::::|h[Boulderskin Breastplate]|h|r"},["Colossal Parachute"]={SubType="Consumable",Level=25,id=10684,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=132369,EquipLoc="",Link="|cffffffff|Hitem:10684::::::::40:::::::|h[Colossal Parachute]|h|r",Type="Consumable"},["Kolkar Booty Key"]={SubType="Key",Level=1,id=5020,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3,Texture=134237,EquipLoc="",Link="|cffffffff|Hitem:5020::::::::40:::::::|h[Kolkar Booty Key]|h|r",Type="Key"},["Tablet of Healing Stream Totem IV"]={SubType="Book",Level=50,id=9147,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=134459,Link="|cffffffff|Hitem:9147::::::::40:::::::|h[Tablet of Healing Stream Totem IV]|h|r",EquipLoc="",Type="Recipe"},["Libram of Constitution"]={SubType="Book",Level=50,id=11733,StackCount=1,Rarity=2,MinLevel=50,SellPrice=0,Texture=133733,Type="Recipe",Link="|cff1eff00|Hitem:11733::::::::40:::::::|h[Libram of Constitution]|h|r",EquipLoc=""},["Jadefire Belt"]={SubType="Leather",Level=52,id=15388,StackCount=1,Rarity=2,MinLevel=47,SellPrice=6357,Texture=132510,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15388::::::::40:::::::|h[Jadefire Belt]|h|r",Type="Armor"},["Kezan's Unstoppable Taint"]={SubType="Miscellaneous",Level=65,id=19605,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=133313,Link="|cffa335ee|Hitem:19605::::::::40:::::::|h[Kezan's Unstoppable Taint]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Formidable Legguards"]={SubType="Mail",Level=51,id=15637,StackCount=1,Rarity=2,MinLevel=46,SellPrice=14557,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15637::::::::40:::::::|h[Formidable Legguards]|h|r",Type="Armor"},["Drakestone"]={SubType="Miscellaneous",Level=54,id=10796,StackCount=1,Rarity=3,MinLevel=49,SellPrice=8982,Texture=134335,EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:10796::::::::40:::::::|h[Drakestone]|h|r",Type="Armor"},["Valorous Legguards"]={SubType="Plate",Level=49,id=8280,StackCount=1,Rarity=2,MinLevel=44,SellPrice=8503,Texture=134592,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:8280::::::::40:::::::|h[Valorous Legguards]|h|r"},["Stargazer Cloak"]={SubType="Cloth",Level=43,id=9660,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4227,Texture=133760,Link="|cff1eff00|Hitem:9660::::::::40:::::::|h[Stargazer Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Halycon's Muzzle"]={SubType="Leather",Level=60,id=13961,StackCount=1,Rarity=3,MinLevel=0,SellPrice=18028,Texture=135055,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13961::::::::40:::::::|h[Halycon's Muzzle]|h|r"},["White Swashbuckler's Shirt"]={SubType="Miscellaneous",Level=32,id=6795,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=135030,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:6795::::::::40:::::::|h[White Swashbuckler's Shirt]|h|r"},["Heirloom Axe"]={SubType="One-Handed Axes",Level=15,id=7115,StackCount=1,Rarity=2,MinLevel=0,SellPrice=683,Texture=132408,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:7115::::::::40:::::::|h[Heirloom Axe]|h|r",Type="Weapon"},["Monster - Mace2H, Warhammer Ebony"]={SubType="Two-Handed Maces",Level=1,id=12950,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133489,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12950::::::::40:::::::|h[Monster - Mace2H, Warhammer Ebony]|h|r"},["Test Haste Chest"]={SubType="Plate",Level=60,id=13716,StackCount=1,Rarity=1,MinLevel=55,SellPrice=9652,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13716::::::::40:::::::|h[Test Haste Chest]|h|r"},["Ripped Ogre Loincloth"]={SubType="Miscellaneous",Level=10,id=15794,StackCount=1,Rarity=0,MinLevel=0,SellPrice=39,Texture=134706,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:15794::::::::40:::::::|h[Ripped Ogre Loincloth]|h|r",Type="Armor"},["Heroic Bracers"]={SubType="Plate",Level=56,id=14938,StackCount=1,Rarity=2,MinLevel=51,SellPrice=6470,Texture=132613,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14938::::::::40:::::::|h[Heroic Bracers]|h|r"},["Test Nature Resist Cloth LockBox"]={SubType="Junk",Level=1,id=16180,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16180::::::::40:::::::|h[Test Nature Resist Cloth LockBox]|h|r",Type="Miscellaneous"},["Owlbeast Hide Gloves"]={SubType="Leather",Level=50,id=19119,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5803,Texture=132942,Link="|cff1eff00|Hitem:19119::::::::40:::::::|h[Owlbeast Hide Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Flame of Thunder Bluff"]={SubType="Quest",Level=1,id=23180,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135824,Link="|cffffffff|Hitem:23180::::::::40:::::::|h[Flame of Thunder Bluff]|h|r",EquipLoc="",Type="Quest"},["Mantle of Lost Hope"]={SubType="Cloth",Level=53,id=22234,StackCount=1,Rarity=3,MinLevel=48,SellPrice=9713,Texture=135040,Link="|cff0070dd|Hitem:22234::::::::40:::::::|h[Mantle of Lost Hope]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Recipe: Greater Arcane Elixir"]={SubType="Alchemy",Level=57,id=13493,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13493::::::::40:::::::|h[Recipe: Greater Arcane Elixir]|h|r"},["Padded Gloves"]={SubType="Cloth",Level=27,id=2158,StackCount=1,Rarity=1,MinLevel=22,SellPrice=413,Texture=132957,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2158::::::::40:::::::|h[Padded Gloves]|h|r",Type="Armor"},["Venom Web Fang"]={SubType="Daggers",Level=19,id=899,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1248,Texture=134298,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:899::::::::40:::::::|h[Venom Web Fang]|h|r"},["Marshal's Satin Bracers"]={SubType="Cloth",Level=65,id=17606,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8060,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:17606::::::::40:::::::|h[Marshal's Satin Bracers]|h|r",Type="Armor"},["Tome of Arcane Explosion IV"]={SubType="Book",Level=38,id=8898,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133739,Link="|cffffffff|Hitem:8898::::::::40:::::::|h[Tome of Arcane Explosion IV]|h|r",EquipLoc="",Type="Recipe"},["Volcanic Leggings"]={SubType="Leather",Level=54,id=15054,StackCount=1,Rarity=2,MinLevel=49,SellPrice=14559,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15054::::::::40:::::::|h[Volcanic Leggings]|h|r",Type="Armor"},["Prison Shank"]={SubType="Daggers",Level=26,id=2941,StackCount=1,Rarity=3,MinLevel=21,SellPrice=3552,Texture=135654,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:2941::::::::40:::::::|h[Prison Shank]|h|r"},["Blue Ribboned Gift"]={SubType="Consumable",Level=5,id=5044,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134142,EquipLoc="",Link="|cffffffff|Hitem:5044::::::::40:::::::|h[Blue Ribboned Gift]|h|r",Type="Consumable"},["Tablet of Jin'yael"]={SubType="Quest",Level=1,id=10539,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134458,EquipLoc="",Link="|cffffffff|Hitem:10539::::::::40:::::::|h[Tablet of Jin'yael]|h|r",Type="Quest"},["Plans: Imperial Plate Bracers"]={SubType="Blacksmithing",Level=54,id=12690,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12690::::::::40:::::::|h[Plans: Imperial Plate Bracers]|h|r"},["Pysan's Old Greatsword"]={SubType="Two-Handed Swords",Level=28,id=1975,StackCount=1,Rarity=3,MinLevel=23,SellPrice=5744,Texture=135326,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:1975::::::::40:::::::|h[Pysan's Old Greatsword]|h|r"},["Test AQ Resource - Wool Bandages"]={SubType="Junk",Level=1,id=21657,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21657::::::::40:::::::|h[Test AQ Resource - Wool Bandages]|h|r"},["Runed Copper Rod"]={SubType="Trade Goods",Level=5,id=6218,StackCount=1,Rarity=1,MinLevel=1,SellPrice=24,Texture=135225,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:6218::::::::40:::::::|h[Runed Copper Rod]|h|r"},["Silky Spider Cape"]={SubType="Cloth",Level=42,id=10776,StackCount=1,Rarity=3,MinLevel=35,SellPrice=4799,Texture=133769,EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:10776::::::::40:::::::|h[Silky Spider Cape]|h|r",Type="Armor"},["Iridescent Scale Leggings"]={SubType="Mail",Level=45,id=4478,StackCount=1,Rarity=2,MinLevel=40,SellPrice=10176,Texture=134583,Link="|cff1eff00|Hitem:4478::::::::40:::::::|h[Iridescent Scale Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Crippling Poison"]={SubType="Consumable",Level=20,id=3775,StackCount=20,Rarity=1,MinLevel=20,SellPrice=13,Texture=132274,Type="Consumable",Link="|cffffffff|Hitem:3775::::::::40:::::::|h[Crippling Poison]|h|r",EquipLoc=""},["Grimoire of Sacrifice (Rank 3)"]={SubType="Book",Level=32,id=16353,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16353::::::::40:::::::|h[Grimoire of Sacrifice (Rank 3)]|h|r",Type="Recipe"},["Smite's Reaver"]={SubType="One-Handed Axes",Level=22,id=5196,StackCount=1,Rarity=2,MinLevel=17,SellPrice=1830,Texture=132416,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:5196::::::::40:::::::|h[Smite's Reaver]|h|r",Type="Weapon"},["Recipe: Cooked Crab Claw"]={SubType="Cooking",Level=15,id=2698,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:2698::::::::40:::::::|h[Recipe: Cooked Crab Claw]|h|r",Type="Recipe"},["Prospector's Pick"]={SubType="Quest",Level=1,id=4702,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134707,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4702::::::::40:::::::|h[Prospector's Pick]|h|r"},["Rathorian's Cape"]={SubType="Cloth",Level=15,id=5111,StackCount=1,Rarity=2,MinLevel=10,SellPrice=320,Texture=133150,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:5111::::::::40:::::::|h[Rathorian's Cape]|h|r",Type="Armor"},["Darkrune Helm"]={SubType="Plate",Level=63,id=20551,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17352,Texture=133078,Link="|cff0070dd|Hitem:20551::::::::40:::::::|h[Darkrune Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Apprentice's Boots"]={SubType="Miscellaneous",Level=1,id=55,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132543,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:55::::::::40:::::::|h[Apprentice's Boots]|h|r",Type="Armor"},["Wingblade"]={SubType="One-Handed Swords",Level=24,id=6504,StackCount=1,Rarity=3,MinLevel=0,SellPrice=2933,Texture=135314,Link="|cff0070dd|Hitem:6504::::::::40:::::::|h[Wingblade]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Waterlogged Crate"]={SubType="Junk",Level=25,id=6352,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132766,Type="Miscellaneous",Link="|cffffffff|Hitem:6352::::::::40:::::::|h[Waterlogged Crate]|h|r",EquipLoc=""},["Durable Boots"]={SubType="Cloth",Level=31,id=9820,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1541,Texture=132537,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9820::::::::40:::::::|h[Durable Boots]|h|r"},["Craftsman's Writ - Major Healing Potion"]={SubType="Junk",Level=60,id=22618,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22618::::::::40:::::::|h[Craftsman's Writ - Major Healing Potion]|h|r",EquipLoc="",Type="Miscellaneous"},["Typhoon"]={SubType="Two-Handed Swords",Level=68,id=18542,StackCount=1,Rarity=4,MinLevel=60,SellPrice=125278,Texture=135351,Type="Weapon",Link="|cffa335ee|Hitem:18542::::::::40:::::::|h[Typhoon]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Dark Whelpling"]={SubType="Junk",Level=30,id=10822,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134153,EquipLoc="",Link="|cffffffff|Hitem:10822::::::::40:::::::|h[Dark Whelpling]|h|r",Type="Miscellaneous"},["Hawkeye's Cloak"]={SubType="Cloth",Level=35,id=14593,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2210,Texture=133755,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14593::::::::40:::::::|h[Hawkeye's Cloak]|h|r"},["Lunar Bindings"]={SubType="Cloth",Level=41,id=14248,StackCount=1,Rarity=2,MinLevel=36,SellPrice=2372,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14248::::::::40:::::::|h[Lunar Bindings]|h|r"},["Jacinth Circle"]={SubType="Miscellaneous",Level=29,id=11969,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1721,Texture=133351,Type="Armor",Link="|cff1eff00|Hitem:11969::::::::40:::::::|h[Jacinth Circle]|h|r",EquipLoc="INVTYPE_FINGER"},["Pattern: Tough Scorpid Helm"]={SubType="Leatherworking",Level=50,id=8402,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1375,Texture=134942,Link="|cff1eff00|Hitem:8402::::::::40:::::::|h[Pattern: Tough Scorpid Helm]|h|r",EquipLoc="",Type="Recipe"},["Deprecated Dwarven Recruit's Shirt"]={SubType="Miscellaneous",Level=1,id=105,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:105::::::::40:::::::|h[Deprecated Dwarven Recruit's Shirt]|h|r",Type="Armor"},["Stonewall Girdle"]={SubType="Plate",Level=55,id=11703,StackCount=1,Rarity=3,MinLevel=50,SellPrice=7378,Texture=132505,Type="Armor",Link="|cff0070dd|Hitem:11703::::::::40:::::::|h[Stonewall Girdle]|h|r",EquipLoc="INVTYPE_WAIST"},["Bloodmail Gauntlets"]={SubType="Mail",Level=61,id=14615,StackCount=1,Rarity=3,MinLevel=56,SellPrice=14916,Texture=132960,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:14615::::::::40:::::::|h[Bloodmail Gauntlets]|h|r"},["Revelosh's Boots"]={SubType="Plate",Level=41,id=9387,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3438,Texture=132587,Link="|cff1eff00|Hitem:9387::::::::40:::::::|h[Revelosh's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Torch of the Eternal Flame"]={SubType="Quest",Level=1,id=6654,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135432,Type="Quest",Link="|cffffffff|Hitem:6654::::::::40:::::::|h[Torch of the Eternal Flame]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Imperial Red Mantle"]={SubType="Cloth",Level=52,id=8250,StackCount=1,Rarity=2,MinLevel=47,SellPrice=8034,Texture=135054,Link="|cff1eff00|Hitem:8250::::::::40:::::::|h[Imperial Red Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Monster - Item, Lantern - Round"]={SubType="Miscellaneous",Level=1,id=2715,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=134249,Type="Weapon",Link="|cff9d9d9d|Hitem:2715::::::::40:::::::|h[Monster - Item, Lantern - Round]|h|r",EquipLoc="INVTYPE_WEAPON"},["Ivory Wand"]={SubType="Wands",Level=51,id=15279,StackCount=1,Rarity=2,MinLevel=46,SellPrice=18267,Texture=135469,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15279::::::::40:::::::|h[Ivory Wand]|h|r",Type="Weapon"},["Myrmidon's Signet"]={SubType="Miscellaneous",Level=58,id=2246,StackCount=1,Rarity=4,MinLevel=53,SellPrice=30000,Texture=133347,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:2246::::::::40:::::::|h[Myrmidon's Signet]|h|r"},["Azure Moon Amice"]={SubType="Cloth",Level=58,id=12109,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11569,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:12109::::::::40:::::::|h[Azure Moon Amice]|h|r"},["Lofty Armguards"]={SubType="Plate",Level=50,id=14923,StackCount=1,Rarity=2,MinLevel=45,SellPrice=4604,Texture=132613,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14923::::::::40:::::::|h[Lofty Armguards]|h|r"},["Aristocratic Cuffs"]={SubType="Cloth",Level=54,id=12546,StackCount=1,Rarity=3,MinLevel=49,SellPrice=7463,Texture=132604,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:12546::::::::40:::::::|h[Aristocratic Cuffs]|h|r"},["Stone Tomahawk"]={SubType="One-Handed Axes",Level=5,id=1383,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=135421,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:1383::::::::40:::::::|h[Stone Tomahawk]|h|r"},["Deprecated Fine Spun Mantle"]={SubType="Cloth",Level=18,id=1272,StackCount=1,Rarity=0,MinLevel=13,SellPrice=130,Texture=135040,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:1272::::::::40:::::::|h[Deprecated Fine Spun Mantle]|h|r"},["Merrin's Letter"]={SubType="Quest",Level=1,id=2639,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2639::::::::40:::::::|h[Merrin's Letter]|h|r"},["Deprecated Homespun Shawl"]={SubType="Cloth",Level=8,id=1354,StackCount=1,Rarity=1,MinLevel=0,SellPrice=24,Texture=133765,Link="|cffffffff|Hitem:1354::::::::40:::::::|h[Deprecated Homespun Shawl]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Silverwing Battle Tabard"]={SubType="Miscellaneous",Level=20,id=19506,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=135026,Link="|cffffffff|Hitem:19506::::::::40:::::::|h[Silverwing Battle Tabard]|h|r",EquipLoc="INVTYPE_TABARD",Type="Armor"},["Core Armor Kit"]={SubType="Consumable",Level=60,id=18251,StackCount=10,Rarity=3,MinLevel=50,SellPrice=5000,Texture=133600,Type="Consumable",Link="|cff0070dd|Hitem:18251::::::::40:::::::|h[Core Armor Kit]|h|r",EquipLoc=""},["Green Leather Belt"]={SubType="Leather",Level=32,id=4257,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1311,Texture=132506,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4257::::::::40:::::::|h[Green Leather Belt]|h|r",Type="Armor"},["Heart of Mokk"]={SubType="Quest",Level=1,id=2797,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2797::::::::40:::::::|h[Heart of Mokk]|h|r"},["Cats Eye Emerald"]={SubType="Quest",Level=1,id=5097,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134104,Link="|cffffffff|Hitem:5097::::::::40:::::::|h[Cats Eye Emerald]|h|r",EquipLoc="",Type="Quest"},["Deep Rooted Ring"]={SubType="Miscellaneous",Level=63,id=19109,StackCount=1,Rarity=3,MinLevel=58,SellPrice=33920,Texture=133377,Link="|cff0070dd|Hitem:19109::::::::40:::::::|h[Deep Rooted Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Marauder's Crest"]={SubType="Shields",Level=40,id=15569,StackCount=1,Rarity=2,MinLevel=35,SellPrice=7162,Texture=134952,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15569::::::::40:::::::|h[Marauder's Crest]|h|r",Type="Armor"},["Feathered Bracers"]={SubType="Leather",Level=27,id=4194,StackCount=1,Rarity=1,MinLevel=22,SellPrice=520,Texture=132607,Type="Armor",Link="|cffffffff|Hitem:4194::::::::40:::::::|h[Feathered Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Green Leather Bracers"]={SubType="Leather",Level=36,id=4259,StackCount=1,Rarity=2,MinLevel=31,SellPrice=1934,Texture=132611,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:4259::::::::40:::::::|h[Green Leather Bracers]|h|r",Type="Armor"},["Head of Bangalash"]={SubType="Quest",Level=1,id=3880,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134176,EquipLoc="",Link="|cffffffff|Hitem:3880::::::::40:::::::|h[Head of Bangalash]|h|r",Type="Quest"},["Glowing Fruit"]={SubType="Quest",Level=1,id=5189,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133977,EquipLoc="",Link="|cffffffff|Hitem:5189::::::::40:::::::|h[Glowing Fruit]|h|r",Type="Quest"},["Amulet of Sevine"]={SubType="Quest",Level=1,id=10754,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133279,EquipLoc="",Link="|cffffffff|Hitem:10754::::::::40:::::::|h[Amulet of Sevine]|h|r",Type="Quest"},["Thick War Axe"]={SubType="One-Handed Axes",Level=17,id=3489,StackCount=1,Rarity=2,MinLevel=12,SellPrice=937,Texture=135419,Link="|cff1eff00|Hitem:3489::::::::40:::::::|h[Thick War Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Field Plate Vambraces"]={SubType="Plate",Level=41,id=9285,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2388,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9285::::::::40:::::::|h[Field Plate Vambraces]|h|r"},["Test Frost Res Feet Cloth"]={SubType="Cloth",Level=35,id=16135,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2210,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:16135::::::::40:::::::|h[Test Frost Res Feet Cloth]|h|r",Type="Armor"},["Gor'tesh's Lopped Off Head"]={SubType="Key",Level=1,id=11079,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136133,Type="Key",Link="|cffffffff|Hitem:11079::::::::40:::::::|h[Gor'tesh's Lopped Off Head]|h|r",EquipLoc=""},["Wrangler's Buckler"]={SubType="Shields",Level=27,id=15332,StackCount=1,Rarity=2,MinLevel=22,SellPrice=2263,Texture=134948,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15332::::::::40:::::::|h[Wrangler's Buckler]|h|r",Type="Armor"},["Bard's Cloak"]={SubType="Cloth",Level=14,id=6555,StackCount=1,Rarity=1,MinLevel=9,SellPrice=130,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:6555::::::::40:::::::|h[Bard's Cloak]|h|r"},["Sequoia Branch"]={SubType="Two-Handed Maces",Level=40,id=15261,StackCount=1,Rarity=2,MinLevel=35,SellPrice=13530,Texture=133053,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15261::::::::40:::::::|h[Sequoia Branch]|h|r",Type="Weapon"},["Spellbinder Gloves"]={SubType="Cloth",Level=14,id=2972,StackCount=1,Rarity=1,MinLevel=9,SellPrice=72,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2972::::::::40:::::::|h[Spellbinder Gloves]|h|r"},["Knitted Bracers"]={SubType="Cloth",Level=10,id=3603,StackCount=1,Rarity=1,MinLevel=5,SellPrice=29,Texture=132602,Link="|cffffffff|Hitem:3603::::::::40:::::::|h[Knitted Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["SI:7 Insignia (Fredo)"]={SubType="Quest",Level=1,id=16001,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133599,EquipLoc="",Link="|cffffffff|Hitem:16001::::::::40:::::::|h[SI:7 Insignia (Fredo)]|h|r",Type="Quest"},["Heavy Lamellar Girdle"]={SubType="Plate",Level=51,id=10243,StackCount=1,Rarity=2,MinLevel=46,SellPrice=5035,Texture=132499,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10243::::::::40:::::::|h[Heavy Lamellar Girdle]|h|r",Type="Armor"},["The Hexxer's Cover"]={SubType="Cloth",Level=71,id=19886,StackCount=1,Rarity=3,MinLevel=60,SellPrice=24979,Texture=133565,Link="|cff0070dd|Hitem:19886::::::::40:::::::|h[The Hexxer's Cover]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Warlord's Chain Chestpiece"]={SubType="Mail",Level=74,id=16565,StackCount=1,Rarity=4,MinLevel=60,SellPrice=39843,Texture=132633,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16565::::::::40:::::::|h[Warlord's Chain Chestpiece]|h|r",Type="Armor"},["Basaltscale Armor"]={SubType="Mail",Level=58,id=12108,StackCount=1,Rarity=2,MinLevel=0,SellPrice=23054,Texture=132638,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:12108::::::::40:::::::|h[Basaltscale Armor]|h|r"},["Gold Bar"]={SubType="Trade Goods",Level=30,id=3577,StackCount=20,Rarity=2,MinLevel=0,SellPrice=600,Texture=133217,Link="|cff1eff00|Hitem:3577::::::::40:::::::|h[Gold Bar]|h|r",EquipLoc="",Type="Trade Goods"},["Schematic: Large Seaforium Charge"]={SubType="Engineering",Level=40,id=4417,StackCount=1,Rarity=2,MinLevel=0,SellPrice=675,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:4417::::::::40:::::::|h[Schematic: Large Seaforium Charge]|h|r",Type="Recipe"},["Monster - Sword2H, Black Metal Hilt"]={SubType="Two-Handed Swords",Level=1,id=6224,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=135313,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:6224::::::::40:::::::|h[Monster - Sword2H, Black Metal Hilt]|h|r"},["Brewer's Gloves"]={SubType="Cloth",Level=15,id=10637,StackCount=1,Rarity=2,MinLevel=0,SellPrice=139,Texture=132940,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10637::::::::40:::::::|h[Brewer's Gloves]|h|r",Type="Armor"},["A Chewed Bone"]={SubType="Junk",Level=1,id=15793,StackCount=20,Rarity=0,MinLevel=0,SellPrice=50,Texture=133726,EquipLoc="",Link="|cff9d9d9d|Hitem:15793::::::::40:::::::|h[A Chewed Bone]|h|r",Type="Miscellaneous"},["Pilferer's Gloves"]={SubType="Leather",Level=28,id=7358,StackCount=1,Rarity=2,MinLevel=23,SellPrice=885,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7358::::::::40:::::::|h[Pilferer's Gloves]|h|r"},["Test Agility Chest"]={SubType="Plate",Level=60,id=12244,StackCount=1,Rarity=1,MinLevel=55,SellPrice=9488,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:12244::::::::40:::::::|h[Test Agility Chest]|h|r"},["Monster - Mace2H, Golden Stone Hammer"]={SubType="Two-Handed Maces",Level=1,id=12901,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133489,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12901::::::::40:::::::|h[Monster - Mace2H, Golden Stone Hammer]|h|r"},["Torn Note"]={SubType="Junk",Level=1,id=4102,StackCount=10,Rarity=0,MinLevel=0,SellPrice=33,Texture=133471,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:4102::::::::40:::::::|h[Torn Note]|h|r"},["Earth Sapta"]={SubType="Consumable",Level=1,id=6635,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134743,Type="Consumable",Link="|cffffffff|Hitem:6635::::::::40:::::::|h[Earth Sapta]|h|r",EquipLoc=""},["Choker of Enlightenment"]={SubType="Miscellaneous",Level=65,id=17109,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33625,Texture=133297,EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:17109::::::::40:::::::|h[Choker of Enlightenment]|h|r",Type="Armor"},["Voidstone (Deprecated)"]={SubType="Reagent",Level=10,id=5562,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=134334,EquipLoc="",Link="|cffffffff|Hitem:5562::::::::40:::::::|h[Voidstone (Deprecated)]|h|r",Type="Reagent"},["Coarse Blasting Powder"]={SubType="Parts",Level=15,id=4364,StackCount=20,Rarity=1,MinLevel=0,SellPrice=12,Texture=133849,EquipLoc="",Link="|cffffffff|Hitem:4364::::::::40:::::::|h[Coarse Blasting Powder]|h|r",Type="Trade Goods"},["Gladius"]={SubType="One-Handed Swords",Level=9,id=2488,StackCount=1,Rarity=1,MinLevel=4,SellPrice=107,Texture=135321,Type="Weapon",Link="|cffffffff|Hitem:2488::::::::40:::::::|h[Gladius]|h|r",EquipLoc="INVTYPE_WEAPON"},["Deprecated Large Broom"]={SubType="Staves",Level=16,id=1948,StackCount=1,Rarity=0,MinLevel=11,SellPrice=408,Texture=133040,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1948::::::::40:::::::|h[Deprecated Large Broom]|h|r"},["Royal Gown"]={SubType="Cloth",Level=48,id=9913,StackCount=1,Rarity=2,MinLevel=43,SellPrice=8490,Texture=132644,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:9913::::::::40:::::::|h[Royal Gown]|h|r"},["Frostguard"]={SubType="One-Handed Swords",Level=63,id=12797,StackCount=1,Rarity=3,MinLevel=58,SellPrice=56943,Texture=135291,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:12797::::::::40:::::::|h[Frostguard]|h|r"},["Codex of Flash Heal II"]={SubType="Book",Level=26,id=8969,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133741,Link="|cffffffff|Hitem:8969::::::::40:::::::|h[Codex of Flash Heal II]|h|r",EquipLoc="",Type="Recipe"},["Sentinel Cap"]={SubType="Leather",Level=38,id=7441,StackCount=1,Rarity=2,MinLevel=33,SellPrice=3514,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7441::::::::40:::::::|h[Sentinel Cap]|h|r",Type="Armor"},["Augmented Chain Gloves"]={SubType="Mail",Level=37,id=2422,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1596,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2422::::::::40:::::::|h[Augmented Chain Gloves]|h|r"},["Sentinel Shoulders"]={SubType="Leather",Level=38,id=7445,StackCount=1,Rarity=2,MinLevel=33,SellPrice=3660,Texture=135039,Link="|cff1eff00|Hitem:7445::::::::40:::::::|h[Sentinel Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Hibernal Sash"]={SubType="Cloth",Level=47,id=8114,StackCount=1,Rarity=2,MinLevel=42,SellPrice=3677,Texture=132514,Link="|cff1eff00|Hitem:8114::::::::40:::::::|h[Hibernal Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Deprecated Pattern: Feathered Robe"]={SubType="Leatherworking",Level=20,id=2602,StackCount=1,Rarity=1,MinLevel=0,SellPrice=162,Texture=134939,Link="|cffffffff|Hitem:2602::::::::40:::::::|h[Deprecated Pattern: Feathered Robe]|h|r",EquipLoc="",Type="Recipe"},["Recipe: Clam Chowder"]={SubType="Cooking",Level=20,id=5528,StackCount=1,Rarity=1,MinLevel=0,SellPrice=200,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:5528::::::::40:::::::|h[Recipe: Clam Chowder]|h|r",Type="Recipe"},["Monster - Mace, Horde Bone Spike Hammer"]={SubType="One-Handed Maces",Level=1,id=12788,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133476,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12788::::::::40:::::::|h[Monster - Mace, Horde Bone Spike Hammer]|h|r"},["Crochet Belt"]={SubType="Cloth",Level=42,id=3936,StackCount=1,Rarity=0,MinLevel=37,SellPrice=985,Texture=132491,Type="Armor",Link="|cff9d9d9d|Hitem:3936::::::::40:::::::|h[Crochet Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Recipe: Smoked Bear Meat"]={SubType="Cooking",Level=13,id=6892,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:6892::::::::40:::::::|h[Recipe: Smoked Bear Meat]|h|r"},["Magnificent Cloak"]={SubType="Cloth",Level=56,id=15671,StackCount=1,Rarity=2,MinLevel=51,SellPrice=9782,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15671::::::::40:::::::|h[Magnificent Cloak]|h|r",Type="Armor"},["Tender Wolf Meat"]={SubType="Trade Goods",Level=40,id=12208,StackCount=10,Rarity=1,MinLevel=0,SellPrice=150,Texture=133970,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12208::::::::40:::::::|h[Tender Wolf Meat]|h|r"},["Amulet of the Darkmoon"]={SubType="Miscellaneous",Level=65,id=19491,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25000,Texture=133301,Link="|cffa335ee|Hitem:19491::::::::40:::::::|h[Amulet of the Darkmoon]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Frostreaver Crown"]={SubType="Mail",Level=32,id=13127,StackCount=1,Rarity=3,MinLevel=27,SellPrice=3021,Texture=133126,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:13127::::::::40:::::::|h[Frostreaver Crown]|h|r"},["Eternal Rod"]={SubType="Miscellaneous",Level=65,id=15989,StackCount=1,Rarity=2,MinLevel=60,SellPrice=12498,Texture=135151,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15989::::::::40:::::::|h[Eternal Rod]|h|r",Type="Armor"},["Venomstrike"]={SubType="Bows",Level=24,id=6469,StackCount=1,Rarity=3,MinLevel=19,SellPrice=2240,Texture=135498,Link="|cff0070dd|Hitem:6469::::::::40:::::::|h[Venomstrike]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Imperial Red Gloves"]={SubType="Cloth",Level=52,id=8249,StackCount=1,Rarity=2,MinLevel=47,SellPrice=5336,Texture=132953,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:8249::::::::40:::::::|h[Imperial Red Gloves]|h|r"},["Filled Brown Waterskin"]={SubType="Quest",Level=0,id=7769,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132824,Link="|cffffffff|Hitem:7769::::::::40:::::::|h[Filled Brown Waterskin]|h|r",EquipLoc="",Type="Quest"},["Death's Clutch"]={SubType="Leather",Level=62,id=14503,StackCount=1,Rarity=3,MinLevel=57,SellPrice=19652,Texture=135056,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:14503::::::::40:::::::|h[Death's Clutch]|h|r"},["Pattern: Robe of Winter Night"]={SubType="Tailoring",Level=57,id=14493,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5000,Texture=134941,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:14493::::::::40:::::::|h[Pattern: Robe of Winter Night]|h|r"},["Formula: Runed Arcanite Rod"]={SubType="Enchanting",Level=58,id=16243,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5500,Texture=134327,EquipLoc="",Link="|cffffffff|Hitem:16243::::::::40:::::::|h[Formula: Runed Arcanite Rod]|h|r",Type="Recipe"},["Monster - Sword2H, Horde Jagged"]={SubType="Two-Handed Swords",Level=1,id=11323,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",Link="|cff9d9d9d|Hitem:11323::::::::40:::::::|h[Monster - Sword2H, Horde Jagged]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Brigade Circlet"]={SubType="Mail",Level=44,id=9932,StackCount=1,Rarity=2,MinLevel=39,SellPrice=6995,Texture=133090,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9932::::::::40:::::::|h[Brigade Circlet]|h|r"},["Neru Fragment"]={SubType="Quest",Level=1,id=2661,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135238,Type="Quest",Link="|cffffffff|Hitem:2661::::::::40:::::::|h[Neru Fragment]|h|r",EquipLoc=""},["Darkmist Boots"]={SubType="Cloth",Level=41,id=14238,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3691,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14238::::::::40:::::::|h[Darkmist Boots]|h|r"},["Emberweave Leggings"]={SubType="Mail",Level=75,id=19433,StackCount=1,Rarity=4,MinLevel=60,SellPrice=80659,Texture=134669,Link="|cffa335ee|Hitem:19433::::::::40:::::::|h[Emberweave Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Marauder's Boots"]={SubType="Mail",Level=38,id=15565,StackCount=1,Rarity=2,MinLevel=33,SellPrice=4274,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15565::::::::40:::::::|h[Marauder's Boots]|h|r",Type="Armor"},["Archer's Shoulderpads"]={SubType="Leather",Level=37,id=9863,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3207,Texture=135039,Link="|cff1eff00|Hitem:9863::::::::40:::::::|h[Archer's Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Eggscilloscope Prototype"]={SubType="Quest",Level=1,id=12286,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133003,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12286::::::::40:::::::|h[Eggscilloscope Prototype]|h|r"},["[PH] Glorious Standard of the Alliance [DEP]"]={SubType="Consumable",Level=60,id=23700,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132486,Link="|cffffffff|Hitem:23700::::::::40:::::::|h[[PH] Glorious Standard of the Alliance [DEP]]|h|r",EquipLoc="",Type="Consumable"},["Cinderhide Armsplints"]={SubType="Leather",Level=57,id=11764,StackCount=1,Rarity=3,MinLevel=52,SellPrice=10398,Texture=132601,Type="Armor",Link="|cff0070dd|Hitem:11764::::::::40:::::::|h[Cinderhide Armsplints]|h|r",EquipLoc="INVTYPE_WRIST"},["Thick Leather Hat"]={SubType="Leather",Level=42,id=8750,StackCount=1,Rarity=0,MinLevel=37,SellPrice=1863,Texture=133090,Link="|cff9d9d9d|Hitem:8750::::::::40:::::::|h[Thick Leather Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Haunch of Meat"]={SubType="Consumable",Level=15,id=2287,StackCount=20,Rarity=1,MinLevel=5,SellPrice=6,Texture=133974,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2287::::::::40:::::::|h[Haunch of Meat]|h|r"},["Neeru's Herb Pouch"]={SubType="Quest",Level=1,id=9628,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133645,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9628::::::::40:::::::|h[Neeru's Herb Pouch]|h|r"},["Grimoire of Suffering (Rank 4)"]={SubType="Book",Level=60,id=16366,StackCount=1,Rarity=1,MinLevel=60,SellPrice=6500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16366::::::::40:::::::|h[Grimoire of Suffering (Rank 4)]|h|r",Type="Recipe"},["Small Blue Rocket"]={SubType="Consumable",Level=1,id=21558,StackCount=20,Rarity=1,MinLevel=0,SellPrice=6,Texture=134282,Link="|cffffffff|Hitem:21558::::::::40:::::::|h[Small Blue Rocket]|h|r",EquipLoc="",Type="Consumable"},["Lok'amir il Romathis"]={SubType="One-Handed Maces",Level=81,id=19360,StackCount=1,Rarity=4,MinLevel=60,SellPrice=180116,Texture=133481,Link="|cffa335ee|Hitem:19360::::::::40:::::::|h[Lok'amir il Romathis]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Qiraji Execution Bracers"]={SubType="Leather",Level=81,id=21602,StackCount=1,Rarity=4,MinLevel=60,SellPrice=46595,Texture=132612,Link="|cffa335ee|Hitem:21602::::::::40:::::::|h[Qiraji Execution Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Marshal's Silk Gloves"]={SubType="Cloth",Level=71,id=16440,StackCount=1,Rarity=4,MinLevel=60,SellPrice=11807,Texture=132948,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16440::::::::40:::::::|h[Marshal's Silk Gloves]|h|r",Type="Armor"},["Explosive Arrow"]={SubType="Arrow",Level=42,id=10579,StackCount=200,Rarity=3,MinLevel=37,SellPrice=0,Texture=132382,EquipLoc="INVTYPE_AMMO",Link="|cff0070dd|Hitem:10579::::::::40:::::::|h[Explosive Arrow]|h|r",Type="Projectile"},["Rock Chip"]={SubType="Junk",Level=1,id=5741,StackCount=20,Rarity=0,MinLevel=0,SellPrice=111,Texture=135236,Link="|cff9d9d9d|Hitem:5741::::::::40:::::::|h[Rock Chip]|h|r",EquipLoc="",Type="Miscellaneous"},["Grim Guzzler Key"]={SubType="Key",Level=1,id=11602,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,Type="Key",Link="|cffffffff|Hitem:11602::::::::40:::::::|h[Grim Guzzler Key]|h|r",EquipLoc=""},["Recipe: Limited Invulnerability Potion"]={SubType="Alchemy",Level=50,id=3395,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:3395::::::::40:::::::|h[Recipe: Limited Invulnerability Potion]|h|r"},["Onyx Claymore"]={SubType="Two-Handed Swords",Level=26,id=3417,StackCount=1,Rarity=3,MinLevel=21,SellPrice=4629,Texture=135311,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:3417::::::::40:::::::|h[Onyx Claymore]|h|r"},["Willow Branch"]={SubType="Miscellaneous",Level=19,id=7554,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1039,Texture=135139,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:7554::::::::40:::::::|h[Willow Branch]|h|r"},["Legionnaire's Chain Leggings"]={SubType="Mail",Level=63,id=16527,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17603,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16527::::::::40:::::::|h[Legionnaire's Chain Leggings]|h|r",Type="Armor"},["Royal Gloves"]={SubType="Cloth",Level=44,id=9910,StackCount=1,Rarity=2,MinLevel=39,SellPrice=3087,Texture=132951,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9910::::::::40:::::::|h[Royal Gloves]|h|r"},["Cuirboulli Pants"]={SubType="Leather",Level=27,id=2146,StackCount=1,Rarity=1,MinLevel=22,SellPrice=961,Texture=134589,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:2146::::::::40:::::::|h[Cuirboulli Pants]|h|r",Type="Armor"},["Gaea's Cuffs"]={SubType="Cloth",Level=46,id=14268,StackCount=1,Rarity=2,MinLevel=41,SellPrice=3486,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14268::::::::40:::::::|h[Gaea's Cuffs]|h|r"},["Ironspine's Fist"]={SubType="One-Handed Maces",Level=35,id=7687,StackCount=1,Rarity=3,MinLevel=30,SellPrice=8836,Texture=133056,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:7687::::::::40:::::::|h[Ironspine's Fist]|h|r"},["Dazzling Mithril Rapier"]={SubType="One-Handed Swords",Level=48,id=7944,StackCount=1,Rarity=2,MinLevel=43,SellPrice=20092,Texture=135340,Link="|cff1eff00|Hitem:7944::::::::40:::::::|h[Dazzling Mithril Rapier]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Nightscale Girdle"]={SubType="Mail",Level=47,id=10706,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5521,Texture=132522,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10706::::::::40:::::::|h[Nightscale Girdle]|h|r",Type="Armor"},["Tome of Fireball XI"]={SubType="Book",Level=60,id=8890,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8890::::::::40:::::::|h[Tome of Fireball XI]|h|r"},["Herod's Shoulder"]={SubType="Mail",Level=42,id=7718,StackCount=1,Rarity=3,MinLevel=37,SellPrice=6867,Texture=135032,Link="|cff0070dd|Hitem:7718::::::::40:::::::|h[Herod's Shoulder]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Aquadynamic Fish Lens"]={SubType="Consumable",Level=20,id=6811,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=134440,Link="|cffffffff|Hitem:6811::::::::40:::::::|h[Aquadynamic Fish Lens]|h|r",EquipLoc="",Type="Consumable"},["Rigid Shoulders"]={SubType="Leather",Level=26,id=15116,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1163,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15116::::::::40:::::::|h[Rigid Shoulders]|h|r",Type="Armor"},["Rod of the Ogre Magi"]={SubType="Staves",Level=63,id=18534,StackCount=1,Rarity=3,MinLevel=58,SellPrice=71503,Texture=135169,Type="Weapon",Link="|cff0070dd|Hitem:18534::::::::40:::::::|h[Rod of the Ogre Magi]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Restoring Balm"]={SubType="Consumable",Level=24,id=1970,StackCount=10,Rarity=1,MinLevel=0,SellPrice=120,Texture=134712,Link="|cffffffff|Hitem:1970::::::::40:::::::|h[Restoring Balm]|h|r",EquipLoc="",Type="Consumable"},["Pattern: Tough Scorpid Bracers"]={SubType="Leatherworking",Level=44,id=8397,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1000,Texture=134942,Link="|cff1eff00|Hitem:8397::::::::40:::::::|h[Pattern: Tough Scorpid Bracers]|h|r",EquipLoc="",Type="Recipe"},["Songbird Blouse"]={SubType="Leather",Level=58,id=13378,StackCount=1,Rarity=3,MinLevel=53,SellPrice=21972,Texture=132679,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:13378::::::::40:::::::|h[Songbird Blouse]|h|r"},["Torwa's Pouch"]={SubType="Junk",Level=48,id=11568,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133635,Type="Miscellaneous",Link="|cffffffff|Hitem:11568::::::::40:::::::|h[Torwa's Pouch]|h|r",EquipLoc=""},["Deprecated Jorell's Head"]={SubType="Junk",Level=1,id=4486,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133472,EquipLoc="",Link="|cffffffff|Hitem:4486::::::::40:::::::|h[Deprecated Jorell's Head]|h|r",Type="Miscellaneous"},["Sacred Burial Trousers"]={SubType="Cloth",Level=32,id=6282,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2243,Texture=134581,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:6282::::::::40:::::::|h[Sacred Burial Trousers]|h|r"},["Father Flame"]={SubType="Miscellaneous",Level=58,id=13371,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6657,Texture=134337,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:13371::::::::40:::::::|h[Father Flame]|h|r"},["Dark Leather Gloves"]={SubType="Leather",Level=26,id=4248,StackCount=1,Rarity=2,MinLevel=21,SellPrice=791,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:4248::::::::40:::::::|h[Dark Leather Gloves]|h|r",Type="Armor"},["Monster - Item, Bouquet - Roses"]={SubType="Miscellaneous",Level=1,id=2710,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133941,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2710::::::::40:::::::|h[Monster - Item, Bouquet - Roses]|h|r",Type="Weapon"},["Green Hills of Stranglethorn - Page 16"]={SubType="Junk",Level=1,id=2740,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:2740::::::::40:::::::|h[Green Hills of Stranglethorn - Page 16]|h|r"},["Scarlet Gauntlets"]={SubType="Mail",Level=38,id=10331,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2728,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10331::::::::40:::::::|h[Scarlet Gauntlets]|h|r",Type="Armor"},["Monster - Mace2H, Huge Wooden Maul"]={SubType="Two-Handed Maces",Level=1,id=5301,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=133040,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5301::::::::40:::::::|h[Monster - Mace2H, Huge Wooden Maul]|h|r",Type="Weapon"},["Monster - Dagger, Dark Pronged"]={SubType="Daggers",Level=1,id=12298,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135640,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12298::::::::40:::::::|h[Monster - Dagger, Dark Pronged]|h|r"},["Befouled Bloodstone Orb"]={SubType="Quest",Level=1,id=4510,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134335,EquipLoc="",Link="|cffffffff|Hitem:4510::::::::40:::::::|h[Befouled Bloodstone Orb]|h|r",Type="Quest"},["Monster - Sword, Falchion"]={SubType="One-Handed Swords",Level=1,id=2147,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135325,Type="Weapon",Link="|cff9d9d9d|Hitem:2147::::::::40:::::::|h[Monster - Sword, Falchion]|h|r",EquipLoc="INVTYPE_WEAPON"},["Blended Bean Brew"]={SubType="Consumable",Level=15,id=17404,StackCount=20,Rarity=1,MinLevel=5,SellPrice=6,Texture=132802,EquipLoc="",Link="|cffffffff|Hitem:17404::::::::40:::::::|h[Blended Bean Brew]|h|r",Type="Consumable"},["Brigand's Pauldrons"]={SubType="Mail",Level=40,id=3765,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4811,Texture=135034,Type="Armor",Link="|cff1eff00|Hitem:3765::::::::40:::::::|h[Brigand's Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Precision Bow"]={SubType="Bows",Level=27,id=8183,StackCount=1,Rarity=2,MinLevel=22,SellPrice=2426,Texture=135492,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:8183::::::::40:::::::|h[Precision Bow]|h|r"},["Magister's Mantle"]={SubType="Cloth",Level=60,id=16689,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14597,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16689::::::::40:::::::|h[Magister's Mantle]|h|r",Type="Armor"},["Formula: Enchant Boots - Lesser Spirit"]={SubType="Enchanting",Level=38,id=11167,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1000,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11167::::::::40:::::::|h[Formula: Enchant Boots - Lesser Spirit]|h|r",EquipLoc=""},["Encrypted Memorandum"]={SubType="Quest",Level=1,id=9558,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134332,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9558::::::::40:::::::|h[Encrypted Memorandum]|h|r"},["Oddly Magical Belt"]={SubType="Cloth",Level=60,id=18475,StackCount=1,Rarity=2,MinLevel=55,SellPrice=7907,Texture=132496,Type="Armor",Link="|cff1eff00|Hitem:18475::::::::40:::::::|h[Oddly Magical Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Tablet of Chain Heal II"]={SubType="Book",Level=46,id=9133,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9133::::::::40:::::::|h[Tablet of Chain Heal II]|h|r"},["Heavy Notched Belt"]={SubType="Mail",Level=42,id=12257,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3885,Texture=132523,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:12257::::::::40:::::::|h[Heavy Notched Belt]|h|r"},["Fire Sword of Crippling"]={SubType="One-Handed Swords",Level=1,id=997,StackCount=1,Rarity=1,MinLevel=1,SellPrice=3,Texture=135274,Type="Weapon",Link="|cffffffff|Hitem:997::::::::40:::::::|h[Fire Sword of Crippling]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Mooncloth Robe"]={SubType="Cloth",Level=61,id=18486,StackCount=1,Rarity=3,MinLevel=56,SellPrice=21683,Texture=132645,Type="Armor",Link="|cff0070dd|Hitem:18486::::::::40:::::::|h[Mooncloth Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Tarnished Bastard Sword"]={SubType="Two-Handed Swords",Level=3,id=2754,StackCount=1,Rarity=1,MinLevel=1,SellPrice=13,Texture=135276,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:2754::::::::40:::::::|h[Tarnished Bastard Sword]|h|r"},["Venomshroud Cape"]={SubType="Cloth",Level=46,id=14440,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5347,Texture=133761,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14440::::::::40:::::::|h[Venomshroud Cape]|h|r"},["Diamond Hammer"]={SubType="One-Handed Maces",Level=25,id=2194,StackCount=1,Rarity=3,MinLevel=20,SellPrice=3276,Texture=133043,Link="|cff0070dd|Hitem:2194::::::::40:::::::|h[Diamond Hammer]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Pearl-handled Dagger"]={SubType="Daggers",Level=23,id=5540,StackCount=1,Rarity=2,MinLevel=18,SellPrice=2107,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:5540::::::::40:::::::|h[Pearl-handled Dagger]|h|r",Type="Weapon"},["Lambent Scale Breastplate"]={SubType="Mail",Level=27,id=3049,StackCount=1,Rarity=2,MinLevel=22,SellPrice=2119,Texture=132628,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:3049::::::::40:::::::|h[Lambent Scale Breastplate]|h|r"},["Morbent's Bane"]={SubType="Miscellaneous",Level=33,id=7297,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135142,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:7297::::::::40:::::::|h[Morbent's Bane]|h|r"},["Gothic Plate Spaulders"]={SubType="Plate",Level=47,id=10092,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5602,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10092::::::::40:::::::|h[Gothic Plate Spaulders]|h|r",Type="Armor"},["Rare Earth"]={SubType="Quest",Level=1,id=5391,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,EquipLoc="",Link="|cffffffff|Hitem:5391::::::::40:::::::|h[Rare Earth]|h|r",Type="Quest"},["Dark Iron Ale Mug"]={SubType="Consumable",Level=1,id=11325,StackCount=20,Rarity=1,MinLevel=0,SellPrice=150,Texture=132791,Type="Consumable",Link="|cffffffff|Hitem:11325::::::::40:::::::|h[Dark Iron Ale Mug]|h|r",EquipLoc=""},["Undermine Clam Chowder"]={SubType="Consumable",Level=45,id=16766,StackCount=20,Rarity=1,MinLevel=35,SellPrice=100,Texture=132804,EquipLoc="",Link="|cffffffff|Hitem:16766::::::::40:::::::|h[Undermine Clam Chowder]|h|r",Type="Consumable"},["Glinting Steel Dagger"]={SubType="Daggers",Level=36,id=12259,StackCount=1,Rarity=2,MinLevel=31,SellPrice=8072,Texture=135641,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:12259::::::::40:::::::|h[Glinting Steel Dagger]|h|r"},["Tablet of Poison Cleansing Totem"]={SubType="Book",Level=22,id=9063,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9063::::::::40:::::::|h[Tablet of Poison Cleansing Totem]|h|r"},["Dunestalker's Boots"]={SubType="Leather",Level=63,id=20715,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20969,Texture=132542,Link="|cff0070dd|Hitem:20715::::::::40:::::::|h[Dunestalker's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Robe of Evocation"]={SubType="Cloth",Level=18,id=14150,StackCount=1,Rarity=2,MinLevel=13,SellPrice=420,Texture=132665,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14150::::::::40:::::::|h[Robe of Evocation]|h|r"},["Elemental Plate Girdle"]={SubType="Plate",Level=61,id=18529,StackCount=1,Rarity=3,MinLevel=56,SellPrice=9963,Texture=132507,Type="Armor",Link="|cff0070dd|Hitem:18529::::::::40:::::::|h[Elemental Plate Girdle]|h|r",EquipLoc="INVTYPE_WAIST"},["Blood Sausage"]={SubType="Consumable",Level=15,id=3220,StackCount=20,Rarity=1,MinLevel=5,SellPrice=40,Texture=134005,Type="Consumable",Link="|cffffffff|Hitem:3220::::::::40:::::::|h[Blood Sausage]|h|r",EquipLoc=""},["Book of Mark of the Wild VII"]={SubType="Book",Level=60,id=8799,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8799::::::::40:::::::|h[Book of Mark of the Wild VII]|h|r"},["Deprecate Snare Kit"]={SubType="Reagent",Level=40,id=4095,StackCount=10,Rarity=1,MinLevel=0,SellPrice=617,Texture=134325,EquipLoc="",Link="|cffffffff|Hitem:4095::::::::40:::::::|h[Deprecate Snare Kit]|h|r",Type="Reagent"},["Brawler's Boots"]={SubType="Miscellaneous",Level=1,id=140,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132538,Link="|cffffffff|Hitem:140::::::::40:::::::|h[Brawler's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Weatherbeaten Parchment"]={SubType="Quest",Level=1,id=6495,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:6495::::::::40:::::::|h[Weatherbeaten Parchment]|h|r",EquipLoc="",Type="Quest"},["Keen Throwing Knife"]={SubType="Thrown",Level=16,id=3107,StackCount=200,Rarity=1,MinLevel=11,SellPrice=0,Texture=135425,Type="Weapon",Link="|cffffffff|Hitem:3107::::::::40:::::::|h[Keen Throwing Knife]|h|r",EquipLoc="INVTYPE_THROWN"},["Cenarion Helm"]={SubType="Leather",Level=66,id=16834,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34949,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16834::::::::40:::::::|h[Cenarion Helm]|h|r",Type="Armor"},["Un'Goro Soil"]={SubType="Junk",Level=1,id=11018,StackCount=100,Rarity=1,MinLevel=0,SellPrice=146,Texture=133849,Type="Miscellaneous",Link="|cffffffff|Hitem:11018::::::::40:::::::|h[Un'Goro Soil]|h|r",EquipLoc=""},["Gorishi Queen Lure"]={SubType="Quest",Level=1,id=11833,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134809,Type="Quest",Link="|cffffffff|Hitem:11833::::::::40:::::::|h[Gorishi Queen Lure]|h|r",EquipLoc=""},["Grave Moss"]={SubType="Trade Goods",Level=24,id=3369,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=133849,Type="Trade Goods",Link="|cffffffff|Hitem:3369::::::::40:::::::|h[Grave Moss]|h|r",EquipLoc=""},["Schematic: Arcane Bomb"]={SubType="Engineering",Level=60,id=16055,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:16055::::::::40:::::::|h[Schematic: Arcane Bomb]|h|r",Type="Recipe"},["Jazeraint Gauntlets"]={SubType="Mail",Level=40,id=9900,StackCount=1,Rarity=2,MinLevel=35,SellPrice=3195,Texture=132946,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9900::::::::40:::::::|h[Jazeraint Gauntlets]|h|r"},["The Axe of Severing"]={SubType="Two-Handed Axes",Level=25,id=23171,StackCount=1,Rarity=3,MinLevel=20,SellPrice=4213,Texture=132394,Link="|cff0070dd|Hitem:23171::::::::40:::::::|h[The Axe of Severing]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Deprecated Heavy Bracers"]={SubType="Mail",Level=15,id=4774,StackCount=1,Rarity=0,MinLevel=10,SellPrice=87,Texture=132602,Type="Armor",Link="|cff9d9d9d|Hitem:4774::::::::40:::::::|h[Deprecated Heavy Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Tome of Amplify Magic III"]={SubType="Book",Level=42,id=8855,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133739,Link="|cffffffff|Hitem:8855::::::::40:::::::|h[Tome of Amplify Magic III]|h|r",EquipLoc="",Type="Recipe"},["Tablet of Healing Totem"]={SubType="Book",Level=6,id=5697,StackCount=1,Rarity=1,MinLevel=6,SellPrice=50,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5697::::::::40:::::::|h[Tablet of Healing Totem]|h|r"},["Jangdor's Handcrafted Tunic"]={SubType="Leather",Level=48,id=19042,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9984,Texture=132723,Link="|cff1eff00|Hitem:19042::::::::40:::::::|h[Jangdor's Handcrafted Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Deprecated Coif of Inner Strength"]={SubType="Mail",Level=26,id=2918,StackCount=1,Rarity=0,MinLevel=0,SellPrice=526,Texture=133070,EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:2918::::::::40:::::::|h[Deprecated Coif of Inner Strength]|h|r",Type="Armor"},["Chestnut Mare Bridle"]={SubType="Junk",Level=40,id=5655,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132261,Link="|cff0070dd|Hitem:5655::::::::40:::::::|h[Chestnut Mare Bridle]|h|r",EquipLoc="",Type="Miscellaneous"},["Crown of Caer Darrow"]={SubType="Cloth",Level=63,id=13986,StackCount=1,Rarity=3,MinLevel=0,SellPrice=17469,Texture=132767,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:13986::::::::40:::::::|h[Crown of Caer Darrow]|h|r"},["Darkreaver's Head"]={SubType="Quest",Level=1,id=18880,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134179,Type="Quest",Link="|cffffffff|Hitem:18880::::::::40:::::::|h[Darkreaver's Head]|h|r",EquipLoc=""},["Dokebi Bracers"]={SubType="Leather",Level=27,id=14580,StackCount=1,Rarity=2,MinLevel=22,SellPrice=818,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14580::::::::40:::::::|h[Dokebi Bracers]|h|r"},["Gadrin's Parchment"]={SubType="Quest",Level=50,id=9323,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9323::::::::40:::::::|h[Gadrin's Parchment]|h|r"},["Palm Frond Mantle"]={SubType="Cloth",Level=34,id=4140,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1875,Texture=135037,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:4140::::::::40:::::::|h[Palm Frond Mantle]|h|r"},["Grimoire of Demon Skin II"]={SubType="Book",Level=10,id=1232,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:1232::::::::40:::::::|h[Grimoire of Demon Skin II]|h|r",Type="Recipe"},["Northern Shortsword"]={SubType="One-Handed Swords",Level=18,id=2078,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1070,Texture=135321,Link="|cff1eff00|Hitem:2078::::::::40:::::::|h[Northern Shortsword]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Ace of Beasts"]={SubType="Junk",Level=1,id=19227,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134482,Link="|cff0070dd|Hitem:19227::::::::40:::::::|h[Ace of Beasts]|h|r",EquipLoc="",Type="Miscellaneous"},["Crimson Snake"]={SubType="Junk",Level=30,id=10392,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=136040,EquipLoc="",Link="|cffffffff|Hitem:10392::::::::40:::::::|h[Crimson Snake]|h|r",Type="Miscellaneous"},["Tablet of Chain Heal"]={SubType="Book",Level=40,id=9183,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Link="|cffffffff|Hitem:9183::::::::40:::::::|h[Tablet of Chain Heal]|h|r",EquipLoc="",Type="Recipe"},["Plate Wall Shield"]={SubType="Shields",Level=65,id=3988,StackCount=1,Rarity=0,MinLevel=60,SellPrice=12924,Texture=134949,Type="Armor",Link="|cff9d9d9d|Hitem:3988::::::::40:::::::|h[Plate Wall Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Adventurer's Bracers"]={SubType="Leather",Level=61,id=10256,StackCount=1,Rarity=2,MinLevel=56,SellPrice=10675,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10256::::::::40:::::::|h[Adventurer's Bracers]|h|r",Type="Armor"},["Plans: Mighty Iron Hammer"]={SubType="Blacksmithing",Level=29,id=3608,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:3608::::::::40:::::::|h[Plans: Mighty Iron Hammer]|h|r",EquipLoc=""},["Book of Regrowth IX"]={SubType="Book",Level=60,id=8800,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133743,Link="|cffffffff|Hitem:8800::::::::40:::::::|h[Book of Regrowth IX]|h|r",EquipLoc="",Type="Recipe"},["Cindercloth Vest"]={SubType="Cloth",Level=52,id=14042,StackCount=1,Rarity=2,MinLevel=47,SellPrice=10561,Texture=132648,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14042::::::::40:::::::|h[Cindercloth Vest]|h|r"},["Stalker Claws"]={SubType="Quest",Level=1,id=4801,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134296,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4801::::::::40:::::::|h[Stalker Claws]|h|r"},["Chestnut Mantle"]={SubType="Cloth",Level=26,id=17695,StackCount=1,Rarity=2,MinLevel=0,SellPrice=930,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:17695::::::::40:::::::|h[Chestnut Mantle]|h|r",Type="Armor"},["Bundle of Crocolisk Skins"]={SubType="Quest",Level=1,id=3347,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134305,Type="Quest",Link="|cffffffff|Hitem:3347::::::::40:::::::|h[Bundle of Crocolisk Skins]|h|r",EquipLoc=""},["Legplates of Heroism"]={SubType="Plate",Level=66,id=22000,StackCount=1,Rarity=3,MinLevel=0,SellPrice=26786,Texture=134584,Link="|cff0070dd|Hitem:22000::::::::40:::::::|h[Legplates of Heroism]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Mistscape Gloves"]={SubType="Cloth",Level=43,id=6428,StackCount=1,Rarity=2,MinLevel=38,SellPrice=2795,Texture=132957,Link="|cff1eff00|Hitem:6428::::::::40:::::::|h[Mistscape Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Parrot Cage (Hyacinth Macaw)"]={SubType="Junk",Level=20,id=8494,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=136036,Link="|cffffffff|Hitem:8494::::::::40:::::::|h[Parrot Cage (Hyacinth Macaw)]|h|r",EquipLoc="",Type="Miscellaneous"},["Legionnaire's Mail Legguards"]={SubType="Mail",Level=68,id=22887,StackCount=1,Rarity=3,MinLevel=60,SellPrice=22395,Texture=134589,Link="|cff0070dd|Hitem:22887::::::::40:::::::|h[Legionnaire's Mail Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Flute of the Ancients"]={SubType="Quest",Level=1,id=11445,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133942,Type="Quest",Link="|cffffffff|Hitem:11445::::::::40:::::::|h[Flute of the Ancients]|h|r",EquipLoc=""},["[PH] Cloth Leggings of the Brilliant Dawn"]={SubType="Cloth",Level=100,id=13774,StackCount=1,Rarity=1,MinLevel=100,SellPrice=67417,Texture=134581,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:13774::::::::40:::::::|h[[PH] Cloth Leggings of the Brilliant Dawn]|h|r"},["Hands of the Exalted Herald"]={SubType="Cloth",Level=59,id=12554,StackCount=1,Rarity=3,MinLevel=54,SellPrice=9474,Texture=132966,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:12554::::::::40:::::::|h[Hands of the Exalted Herald]|h|r"},["Dirtwood Belt"]={SubType="Cloth",Level=10,id=5458,StackCount=1,Rarity=1,MinLevel=0,SellPrice=27,Texture=132493,Link="|cffffffff|Hitem:5458::::::::40:::::::|h[Dirtwood Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Speckled Tastyfish"]={SubType="Quest",Level=45,id=19807,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133907,Link="|cffffffff|Hitem:19807::::::::40:::::::|h[Speckled Tastyfish]|h|r",EquipLoc="",Type="Quest"},["Rod of Sorrow"]={SubType="Wands",Level=39,id=5247,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7961,Texture=135144,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5247::::::::40:::::::|h[Rod of Sorrow]|h|r",Type="Weapon"},["Shadowforge Bushmaster"]={SubType="Guns",Level=43,id=9422,StackCount=1,Rarity=3,MinLevel=38,SellPrice=13052,Texture=134536,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:9422::::::::40:::::::|h[Shadowforge Bushmaster]|h|r"},["Scroll of Myzrael"]={SubType="Quest",Level=50,id=4472,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,EquipLoc="",Link="|cffffffff|Hitem:4472::::::::40:::::::|h[Scroll of Myzrael]|h|r",Type="Quest"},["Bonereaver's Edge"]={SubType="Two-Handed Swords",Level=77,id=17076,StackCount=1,Rarity=4,MinLevel=60,SellPrice=196438,Texture=135302,EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:17076::::::::40:::::::|h[Bonereaver's Edge]|h|r",Type="Weapon"},["Spiked Dagger"]={SubType="Daggers",Level=53,id=13822,StackCount=1,Rarity=0,MinLevel=48,SellPrice=11442,Texture=135641,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13822::::::::40:::::::|h[Spiked Dagger]|h|r"},["Glacial Gloves"]={SubType="Cloth",Level=80,id=22654,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34846,Texture=132940,Link="|cffa335ee|Hitem:22654::::::::40:::::::|h[Glacial Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Nomadic Belt"]={SubType="Leather",Level=5,id=4954,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=132494,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:4954::::::::40:::::::|h[Nomadic Belt]|h|r"},["Thrice Strung Longbow DEPRECATED"]={SubType="Bows",Level=68,id=19966,StackCount=1,Rarity=3,MinLevel=60,SellPrice=55377,Texture=135496,Link="|cff0070dd|Hitem:19966::::::::40:::::::|h[Thrice Strung Longbow DEPRECATED]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Mistscape Bracers"]={SubType="Cloth",Level=42,id=4045,StackCount=1,Rarity=2,MinLevel=37,SellPrice=2683,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:4045::::::::40:::::::|h[Mistscape Bracers]|h|r"},["Ancient Rune Etched Stave"]={SubType="Quest",Level=71,id=18707,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135159,Type="Quest",Link="|cffa335ee|Hitem:18707::::::::40:::::::|h[Ancient Rune Etched Stave]|h|r",EquipLoc=""},["Monster - Mace2H, Pacifier"]={SubType="Two-Handed Maces",Level=1,id=10568,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133041,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:10568::::::::40:::::::|h[Monster - Mace2H, Pacifier]|h|r",Type="Weapon"},["Plans: Radiant Circlet"]={SubType="Blacksmithing",Level=59,id=12702,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6250,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12702::::::::40:::::::|h[Plans: Radiant Circlet]|h|r"},["Hyper-Radiant Flame Reflector"]={SubType="Devices",Level=58,id=18638,StackCount=1,Rarity=3,MinLevel=53,SellPrice=12500,Texture=133862,Type="Trade Goods",Link="|cff0070dd|Hitem:18638::::::::40:::::::|h[Hyper-Radiant Flame Reflector]|h|r",EquipLoc="INVTYPE_TRINKET"},["Relic Blade"]={SubType="Daggers",Level=20,id=5627,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1379,Texture=135641,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:5627::::::::40:::::::|h[Relic Blade]|h|r"},["Monster - Gun, Club"]={SubType="One-Handed Maces",Level=1,id=6946,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135612,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:6946::::::::40:::::::|h[Monster - Gun, Club]|h|r"},["Ivycloth Gloves"]={SubType="Cloth",Level=26,id=9795,StackCount=1,Rarity=2,MinLevel=21,SellPrice=626,Texture=132961,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9795::::::::40:::::::|h[Ivycloth Gloves]|h|r"},["[PH] Rising Dawn Hat"]={SubType="Cloth",Level=1,id=13787,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133116,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:13787::::::::40:::::::|h[[PH] Rising Dawn Hat]|h|r"},["Monster - Staff, Wood w/ Spiral Head White Low Purple Glow"]={SubType="Staves",Level=1,id=13723,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135138,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13723::::::::40:::::::|h[Monster - Staff, Wood w/ Spiral Head White Low Purple Glow]|h|r"},["Runic Plate Shoulders"]={SubType="Plate",Level=60,id=12610,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12247,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:12610::::::::40:::::::|h[Runic Plate Shoulders]|h|r"},["Twilight Mantle"]={SubType="Cloth",Level=38,id=7435,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2749,Texture=135033,Link="|cff1eff00|Hitem:7435::::::::40:::::::|h[Twilight Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Beaded Robe"]={SubType="Cloth",Level=11,id=14091,StackCount=1,Rarity=2,MinLevel=6,SellPrice=119,Texture=132663,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14091::::::::40:::::::|h[Beaded Robe]|h|r"},["Heart of Fire"]={SubType="Reagent",Level=45,id=7077,StackCount=10,Rarity=1,MinLevel=0,SellPrice=400,Texture=135819,Link="|cffffffff|Hitem:7077::::::::40:::::::|h[Heart of Fire]|h|r",EquipLoc="",Type="Reagent"},["Handful of Stardust"]={SubType="Quest",Level=1,id=5494,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,Link="|cffffffff|Hitem:5494::::::::40:::::::|h[Handful of Stardust]|h|r",EquipLoc="",Type="Quest"},["Prospector's Boots"]={SubType="Leather",Level=19,id=14560,StackCount=1,Rarity=2,MinLevel=14,SellPrice=484,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14560::::::::40:::::::|h[Prospector's Boots]|h|r"},["Sayge's Fortune #11"]={SubType="Junk",Level=1,id=19246,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19246::::::::40:::::::|h[Sayge's Fortune #11]|h|r",EquipLoc="",Type="Miscellaneous"},["Schematic: Mechanical Dragonling"]={SubType="Engineering",Level=40,id=13311,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13311::::::::40:::::::|h[Schematic: Mechanical Dragonling]|h|r"},["Ancient Egg"]={SubType="Quest",Level=1,id=12402,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132834,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12402::::::::40:::::::|h[Ancient Egg]|h|r"},["Gray Leather D02 Breastplate"]={SubType="Leather",Level=1,id=3538,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132715,Type="Armor",Link="|cffffffff|Hitem:3538::::::::40:::::::|h[Gray Leather D02 Breastplate]|h|r",EquipLoc="INVTYPE_CHEST"},["Blackforge Buckler"]={SubType="Shields",Level=47,id=4069,StackCount=1,Rarity=2,MinLevel=42,SellPrice=11900,Texture=134956,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:4069::::::::40:::::::|h[Blackforge Buckler]|h|r"},["Riveted Gauntlets"]={SubType="Mail",Level=20,id=5312,StackCount=1,Rarity=2,MinLevel=0,SellPrice=419,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:5312::::::::40:::::::|h[Riveted Gauntlets]|h|r"},["Adventurer's Legguards"]={SubType="Leather",Level=64,id=10262,StackCount=1,Rarity=2,MinLevel=59,SellPrice=25272,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10262::::::::40:::::::|h[Adventurer's Legguards]|h|r",Type="Armor"},["Enchanted Resonite Crystal"]={SubType="Quest",Level=1,id=16603,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134075,EquipLoc="",Link="|cffffffff|Hitem:16603::::::::40:::::::|h[Enchanted Resonite Crystal]|h|r",Type="Quest"},["Defias Gunpowder"]={SubType="Key",Level=0,id=5397,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133587,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:5397::::::::40:::::::|h[Defias Gunpowder]|h|r"},["Marshal's Dreadweave Gloves"]={SubType="Cloth",Level=71,id=17584,StackCount=1,Rarity=4,MinLevel=60,SellPrice=11856,Texture=132948,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:17584::::::::40:::::::|h[Marshal's Dreadweave Gloves]|h|r",Type="Armor"},["Broken Spear"]={SubType="Junk",Level=1,id=4880,StackCount=5,Rarity=0,MinLevel=0,SellPrice=86,Texture=135128,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:4880::::::::40:::::::|h[Broken Spear]|h|r",EquipLoc=""},["Prairie Ring"]={SubType="Miscellaneous",Level=25,id=12007,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1064,Texture=133344,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12007::::::::40:::::::|h[Prairie Ring]|h|r"},["Fists of Phalanx"]={SubType="Plate",Level=56,id=11745,StackCount=1,Rarity=3,MinLevel=51,SellPrice=7878,Texture=132956,Type="Armor",Link="|cff0070dd|Hitem:11745::::::::40:::::::|h[Fists of Phalanx]|h|r",EquipLoc="INVTYPE_HAND"},["Midnight Haze"]={SubType="Daggers",Level=81,id=22803,StackCount=1,Rarity=4,MinLevel=60,SellPrice=180171,Texture=133455,Link="|cffa335ee|Hitem:22803::::::::40:::::::|h[Midnight Haze]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Sage's Robe"]={SubType="Cloth",Level=32,id=6610,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2156,Texture=132660,Type="Armor",Link="|cff1eff00|Hitem:6610::::::::40:::::::|h[Sage's Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Insignia of the Horde"]={SubType="Miscellaneous",Level=0,id=18834,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3750,Texture=133453,Type="Armor",Link="|cff0070dd|Hitem:18834::::::::40:::::::|h[Insignia of the Horde]|h|r",EquipLoc="INVTYPE_TRINKET"},["Mercurial Greaves"]={SubType="Mail",Level=61,id=10155,StackCount=1,Rarity=2,MinLevel=56,SellPrice=20168,Texture=132536,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10155::::::::40:::::::|h[Mercurial Greaves]|h|r",Type="Armor"},["Weighted Throwing Axe"]={SubType="Thrown",Level=8,id=3131,StackCount=200,Rarity=1,MinLevel=3,SellPrice=0,Texture=135421,EquipLoc="INVTYPE_THROWN",Link="|cffffffff|Hitem:3131::::::::40:::::::|h[Weighted Throwing Axe]|h|r",Type="Weapon"},["Sylvan Vest"]={SubType="Cloth",Level=70,id=22756,StackCount=1,Rarity=3,MinLevel=60,SellPrice=33164,Texture=132742,Link="|cff0070dd|Hitem:22756::::::::40:::::::|h[Sylvan Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Roasted Boar Meat"]={SubType="Consumable",Level=7,id=2681,StackCount=20,Rarity=1,MinLevel=1,SellPrice=6,Texture=133974,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2681::::::::40:::::::|h[Roasted Boar Meat]|h|r"},["Fel Fire"]={SubType="Quest",Level=1,id=18626,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135805,Type="Quest",Link="|cffffffff|Hitem:18626::::::::40:::::::|h[Fel Fire]|h|r",EquipLoc=""},["Plans: Radiant Belt"]={SubType="Blacksmithing",Level=52,id=12685,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12685::::::::40:::::::|h[Plans: Radiant Belt]|h|r"},["Recipe: Curiously Tasty Omelet"]={SubType="Cooking",Level=25,id=3682,StackCount=1,Rarity=1,MinLevel=0,SellPrice=400,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:3682::::::::40:::::::|h[Recipe: Curiously Tasty Omelet]|h|r"},["Fishliver Oil"]={SubType="Consumable",Level=21,id=1322,StackCount=10,Rarity=1,MinLevel=0,SellPrice=68,Texture=134743,Type="Consumable",Link="|cffffffff|Hitem:1322::::::::40:::::::|h[Fishliver Oil]|h|r",EquipLoc=""},["Empty Brown Waterskin"]={SubType="Quest",Level=0,id=7766,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132825,EquipLoc="",Link="|cffffffff|Hitem:7766::::::::40:::::::|h[Empty Brown Waterskin]|h|r",Type="Quest"},["Jaron's Pick"]={SubType="Quest",Level=1,id=12891,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134708,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12891::::::::40:::::::|h[Jaron's Pick]|h|r"},["Celestial Silk Robes"]={SubType="Cloth",Level=61,id=14317,StackCount=1,Rarity=2,MinLevel=56,SellPrice=16633,Texture=132669,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14317::::::::40:::::::|h[Celestial Silk Robes]|h|r"},["Dark Iron Fanny Pack"]={SubType="Quest",Level=1,id=11468,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133635,Type="Quest",Link="|cffffffff|Hitem:11468::::::::40:::::::|h[Dark Iron Fanny Pack]|h|r",EquipLoc=""},["Sticky Ichor"]={SubType="Junk",Level=1,id=7100,StackCount=5,Rarity=0,MinLevel=0,SellPrice=7,Texture=134437,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:7100::::::::40:::::::|h[Sticky Ichor]|h|r"},["Secret Safe Key"]={SubType="Key",Level=1,id=11115,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,Type="Key",Link="|cffffffff|Hitem:11115::::::::40:::::::|h[Secret Safe Key]|h|r",EquipLoc=""},["Slayer's Cape"]={SubType="Cloth",Level=27,id=14752,StackCount=1,Rarity=2,MinLevel=22,SellPrice=978,Texture=133760,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14752::::::::40:::::::|h[Slayer's Cape]|h|r"},["Battle Chain Pants"]={SubType="Mail",Level=12,id=3282,StackCount=1,Rarity=2,MinLevel=7,SellPrice=235,Texture=134583,Link="|cff1eff00|Hitem:3282::::::::40:::::::|h[Battle Chain Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Screeching Bow"]={SubType="Bows",Level=60,id=18729,StackCount=1,Rarity=3,MinLevel=55,SellPrice=38302,Texture=135500,Type="Weapon",Link="|cff0070dd|Hitem:18729::::::::40:::::::|h[Screeching Bow]|h|r",EquipLoc="INVTYPE_RANGED"},["Defiler's Lizardhide Girdle"]={SubType="Leather",Level=33,id=20172,StackCount=1,Rarity=3,MinLevel=28,SellPrice=1802,Texture=132506,Link="|cff0070dd|Hitem:20172::::::::40:::::::|h[Defiler's Lizardhide Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Champion's Girdle"]={SubType="Mail",Level=46,id=7546,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5050,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:7546::::::::40:::::::|h[Champion's Girdle]|h|r",Type="Armor"},["Tracker's Tunic"]={SubType="Leather",Level=48,id=9924,StackCount=1,Rarity=2,MinLevel=43,SellPrice=10276,Texture=132723,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9924::::::::40:::::::|h[Tracker's Tunic]|h|r"},["Broken and Battered Samophlange"]={SubType="Quest",Level=1,id=11146,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132995,Type="Quest",Link="|cffffffff|Hitem:11146::::::::40:::::::|h[Broken and Battered Samophlange]|h|r",EquipLoc=""},["Moss Cinch"]={SubType="Leather",Level=31,id=6911,StackCount=1,Rarity=3,MinLevel=26,SellPrice=1442,Texture=132514,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:6911::::::::40:::::::|h[Moss Cinch]|h|r"},["Keepsake of Remembrance"]={SubType="Quest",Level=1,id=13585,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133736,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13585::::::::40:::::::|h[Keepsake of Remembrance]|h|r"},["Slarkskin"]={SubType="Mail",Level=15,id=6180,StackCount=1,Rarity=2,MinLevel=10,SellPrice=423,Texture=132634,Type="Armor",Link="|cff1eff00|Hitem:6180::::::::40:::::::|h[Slarkskin]|h|r",EquipLoc="INVTYPE_CHEST"},["Enchanted Leather"]={SubType="Trade Goods",Level=55,id=12810,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134418,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12810::::::::40:::::::|h[Enchanted Leather]|h|r"},["Cold Forged Hammer"]={SubType="One-Handed Maces",Level=63,id=20648,StackCount=1,Rarity=3,MinLevel=0,SellPrice=58693,Texture=133059,Link="|cff0070dd|Hitem:20648::::::::40:::::::|h[Cold Forged Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Bottle of Zombie Juice"]={SubType="Quest",Level=1,id=1451,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134776,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1451::::::::40:::::::|h[Bottle of Zombie Juice]|h|r"},["Ornate Bracers"]={SubType="Mail",Level=54,id=10126,StackCount=1,Rarity=2,MinLevel=49,SellPrice=8865,Texture=132613,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10126::::::::40:::::::|h[Ornate Bracers]|h|r",Type="Armor"},["Tablet of Fire Resistance Totem II"]={SubType="Book",Level=42,id=9127,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9127::::::::40:::::::|h[Tablet of Fire Resistance Totem II]|h|r"},["Champion's Leather Helm"]={SubType="Leather",Level=71,id=23257,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15672,Texture=133077,Link="|cff0070dd|Hitem:23257::::::::40:::::::|h[Champion's Leather Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["JEFF TEST SHIELD"]={SubType="Shields",Level=1,id=12961,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2,Texture=134949,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:12961::::::::40:::::::|h[JEFF TEST SHIELD]|h|r"},["The Queen's Jewel"]={SubType="Miscellaneous",Level=30,id=13094,StackCount=1,Rarity=3,MinLevel=25,SellPrice=2646,Texture=133368,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:13094::::::::40:::::::|h[The Queen's Jewel]|h|r"},["Reinforced Chain Vest"]={SubType="Mail",Level=28,id=1761,StackCount=1,Rarity=0,MinLevel=23,SellPrice=892,Texture=132624,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:1761::::::::40:::::::|h[Reinforced Chain Vest]|h|r"},["Bijou's Information"]={SubType="Quest",Level=1,id=12770,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134269,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12770::::::::40:::::::|h[Bijou's Information]|h|r"},["OLDWinterhoof Cleansing Totem"]={SubType="Miscellaneous",Level=1,id=4750,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4,Texture=135140,Type="Armor",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:4750::::::::40:::::::|h[OLDWinterhoof Cleansing Totem]|h|r"},["Gemstone of Smolderthorn"]={SubType="Quest",Level=1,id=12335,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134116,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:12335::::::::40:::::::|h[Gemstone of Smolderthorn]|h|r"},["Jouster's Girdle"]={SubType="Plate",Level=40,id=8159,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2244,Texture=132511,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:8159::::::::40:::::::|h[Jouster's Girdle]|h|r"},["Vek'lor's Diadem"]={SubType="Quest",Level=1,id=20930,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=132617,Link="|cffa335ee|Hitem:20930::::::::40:::::::|h[Vek'lor's Diadem]|h|r",EquipLoc="",Type="Quest"},["Plans: Green Iron Boots"]={SubType="Blacksmithing",Level=29,id=3611,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:3611::::::::40:::::::|h[Plans: Green Iron Boots]|h|r",EquipLoc=""},["Cracked Skull Mortar"]={SubType="Quest",Level=22,id=1352,StackCount=1,Rarity=1,MinLevel=12,SellPrice=200,Texture=133728,Type="Quest",Link="|cffffffff|Hitem:1352::::::::40:::::::|h[Cracked Skull Mortar]|h|r",EquipLoc=""},["Lofty Breastplate"]={SubType="Plate",Level=57,id=14924,StackCount=1,Rarity=2,MinLevel=52,SellPrice=14031,Texture=132760,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14924::::::::40:::::::|h[Lofty Breastplate]|h|r"},["Windshrieker Pauldrons"]={SubType="Mail",Level=60,id=13538,StackCount=1,Rarity=2,MinLevel=55,SellPrice=19223,Texture=135044,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:13538::::::::40:::::::|h[Windshrieker Pauldrons]|h|r"},["Highborne Cloak"]={SubType="Cloth",Level=51,id=14450,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7364,Texture=132655,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14450::::::::40:::::::|h[Highborne Cloak]|h|r"},["Gemstone of Bloodaxe"]={SubType="Quest",Level=1,id=12337,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134084,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:12337::::::::40:::::::|h[Gemstone of Bloodaxe]|h|r"},["Crest of Beckoning: Fire"]={SubType="Junk",Level=1,id=20416,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134458,Link="|cffffffff|Hitem:20416::::::::40:::::::|h[Crest of Beckoning: Fire]|h|r",EquipLoc="",Type="Miscellaneous"},["Lord Valthalak's Staff of Command"]={SubType="Staves",Level=63,id=22335,StackCount=1,Rarity=3,MinLevel=58,SellPrice=71251,Texture=135144,Link="|cff0070dd|Hitem:22335::::::::40:::::::|h[Lord Valthalak's Staff of Command]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["[PH] Shining Dawn Helm"]={SubType="Plate",Level=100,id=13797,StackCount=1,Rarity=1,MinLevel=100,SellPrice=50100,Texture=133126,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:13797::::::::40:::::::|h[[PH] Shining Dawn Helm]|h|r"},["Libram of Grace"]={SubType="Librams",Level=78,id=22402,StackCount=1,Rarity=4,MinLevel=60,SellPrice=49885,Texture=134915,Link="|cffa335ee|Hitem:22402::::::::40:::::::|h[Libram of Grace]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Deprecated Burnished Chain Coif"]={SubType="Mail",Level=23,id=2995,StackCount=1,Rarity=0,MinLevel=18,SellPrice=370,Texture=133071,EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:2995::::::::40:::::::|h[Deprecated Burnished Chain Coif]|h|r",Type="Armor"},["Abyssal Plate Girdle"]={SubType="Plate",Level=65,id=20673,StackCount=1,Rarity=2,MinLevel=60,SellPrice=10199,Texture=132515,Link="|cff1eff00|Hitem:20673::::::::40:::::::|h[Abyssal Plate Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Quilboar Tomahawk"]={SubType="One-Handed Axes",Level=15,id=5255,StackCount=1,Rarity=2,MinLevel=10,SellPrice=685,Texture=135421,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:5255::::::::40:::::::|h[Quilboar Tomahawk]|h|r"},["Dense Blasting Powder"]={SubType="Parts",Level=50,id=15992,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=133587,EquipLoc="",Link="|cffffffff|Hitem:15992::::::::40:::::::|h[Dense Blasting Powder]|h|r",Type="Trade Goods"},["Flawless Diamond Solitaire"]={SubType="Miscellaneous",Level=50,id=7340,StackCount=1,Rarity=1,MinLevel=0,SellPrice=125000,Texture=133352,Link="|cffffffff|Hitem:7340::::::::40:::::::|h[Flawless Diamond Solitaire]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Large Rucksack"]={SubType="Bag",Level=25,id=933,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133640,Type="Container",Link="|cffffffff|Hitem:933::::::::40:::::::|h[Large Rucksack]|h|r",EquipLoc="INVTYPE_BAG"},["Sentinel Buckler"]={SubType="Shields",Level=38,id=7463,StackCount=1,Rarity=2,MinLevel=33,SellPrice=6202,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:7463::::::::40:::::::|h[Sentinel Buckler]|h|r",Type="Armor"},["Enormous Ogre Belt"]={SubType="Plate",Level=40,id=13145,StackCount=1,Rarity=3,MinLevel=40,SellPrice=2704,Texture=132516,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13145::::::::40:::::::|h[Enormous Ogre Belt]|h|r"},["Darkclaw Lobster"]={SubType="Consumable",Level=55,id=13888,StackCount=20,Rarity=1,MinLevel=45,SellPrice=12,Texture=133900,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13888::::::::40:::::::|h[Darkclaw Lobster]|h|r"},["Sage's Pants"]={SubType="Cloth",Level=32,id=6616,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2203,Texture=134581,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:6616::::::::40:::::::|h[Sage's Pants]|h|r"},["Water Elemental Bracers"]={SubType="Quest",Level=1,id=3923,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132608,EquipLoc="",Link="|cffffffff|Hitem:3923::::::::40:::::::|h[Water Elemental Bracers]|h|r",Type="Quest"},["Tablet of Stoneskin Totem V"]={SubType="Book",Level=44,id=9131,StackCount=1,Rarity=1,MinLevel=44,SellPrice=6250,Texture=134459,Link="|cffffffff|Hitem:9131::::::::40:::::::|h[Tablet of Stoneskin Totem V]|h|r",EquipLoc="",Type="Recipe"},["Resilient Cap"]={SubType="Cloth",Level=33,id=14401,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1786,Texture=133136,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14401::::::::40:::::::|h[Resilient Cap]|h|r"},["Rune-Inscribed Note"]={SubType="Quest",Level=1,id=9552,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9552::::::::40:::::::|h[Rune-Inscribed Note]|h|r"},["Simone's Cultivating Hammer"]={SubType="One-Handed Maces",Level=65,id=22380,StackCount=1,Rarity=3,MinLevel=0,SellPrice=65675,Texture=133042,Link="|cff0070dd|Hitem:22380::::::::40:::::::|h[Simone's Cultivating Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Craftsman's Writ - Major Mana Potion"]={SubType="Junk",Level=60,id=22617,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22617::::::::40:::::::|h[Craftsman's Writ - Major Mana Potion]|h|r",EquipLoc="",Type="Miscellaneous"},["Relic Horn of Justice"]={SubType="Miscellaneous",Level=30,id=3002,StackCount=1,Rarity=1,MinLevel=25,SellPrice=1000,Texture=134229,Link="|cffffffff|Hitem:3002::::::::40:::::::|h[Relic Horn of Justice]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Monster - Item, Pick"]={SubType="One-Handed Axes",Level=1,id=1910,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=134707,Type="Weapon",Link="|cff9d9d9d|Hitem:1910::::::::40:::::::|h[Monster - Item, Pick]|h|r",EquipLoc="INVTYPE_WEAPON"},["Owlbeard Bracers"]={SubType="Cloth",Level=20,id=16981,StackCount=1,Rarity=2,MinLevel=0,SellPrice=271,Texture=132609,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:16981::::::::40:::::::|h[Owlbeard Bracers]|h|r",Type="Armor"},["Tome of Arcane Intellect"]={SubType="Book",Level=1,id=8802,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=133739,Link="|cffffffff|Hitem:8802::::::::40:::::::|h[Tome of Arcane Intellect]|h|r",EquipLoc="",Type="Recipe"},["Prismatic Basilisk Scale"]={SubType="Junk",Level=1,id=4092,StackCount=5,Rarity=0,MinLevel=0,SellPrice=1296,Texture=134303,Link="|cff9d9d9d|Hitem:4092::::::::40:::::::|h[Prismatic Basilisk Scale]|h|r",EquipLoc="",Type="Miscellaneous"},["Plans: Jagged Obsidian Shield"]={SubType="Blacksmithing",Level=70,id=22219,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:22219::::::::40:::::::|h[Plans: Jagged Obsidian Shield]|h|r"},["Zin'rokh, Destroyer of Worlds"]={SubType="Two-Handed Swords",Level=68,id=19854,StackCount=1,Rarity=4,MinLevel=60,SellPrice=123502,Texture=135365,Link="|cffa335ee|Hitem:19854::::::::40:::::::|h[Zin'rokh, Destroyer of Worlds]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Schematic: Craftsman's Monocle"]={SubType="Engineering",Level=37,id=4415,StackCount=1,Rarity=3,MinLevel=0,SellPrice=550,Texture=134939,EquipLoc="",Link="|cff0070dd|Hitem:4415::::::::40:::::::|h[Schematic: Craftsman's Monocle]|h|r",Type="Recipe"},["Judgement Crown"]={SubType="Plate",Level=76,id=16955,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42472,Texture=133176,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16955::::::::40:::::::|h[Judgement Crown]|h|r",Type="Armor"},["Brambleweed Leggings"]={SubType="Leather",Level=20,id=5422,StackCount=1,Rarity=2,MinLevel=15,SellPrice=692,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:5422::::::::40:::::::|h[Brambleweed Leggings]|h|r",Type="Armor"},["Buzzard Beak"]={SubType="Junk",Level=1,id=556,StackCount=5,Rarity=0,MinLevel=0,SellPrice=106,Texture=133707,EquipLoc="",Link="|cff9d9d9d|Hitem:556::::::::40:::::::|h[Buzzard Beak]|h|r",Type="Miscellaneous"},["Monster - Staff, Large Metal Shaft"]={SubType="Staves",Level=1,id=5304,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135144,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5304::::::::40:::::::|h[Monster - Staff, Large Metal Shaft]|h|r"},["Ragefury Eyepatch"]={SubType="Leather",Level=57,id=11735,StackCount=1,Rarity=3,MinLevel=52,SellPrice=16669,Texture=133148,Type="Armor",Link="|cff0070dd|Hitem:11735::::::::40:::::::|h[Ragefury Eyepatch]|h|r",EquipLoc="INVTYPE_HEAD"},["Defender Gauntlets"]={SubType="Mail",Level=23,id=6577,StackCount=1,Rarity=2,MinLevel=18,SellPrice=649,Texture=132945,Link="|cff1eff00|Hitem:6577::::::::40:::::::|h[Defender Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Nightsky Mantle"]={SubType="Cloth",Level=35,id=4718,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2223,Texture=135036,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:4718::::::::40:::::::|h[Nightsky Mantle]|h|r",Type="Armor"},["Big Bear Meat"]={SubType="Trade Goods",Level=21,id=3730,StackCount=10,Rarity=1,MinLevel=0,SellPrice=45,Texture=133970,EquipLoc="",Link="|cffffffff|Hitem:3730::::::::40:::::::|h[Big Bear Meat]|h|r",Type="Trade Goods"},["Plans: Barbaric Iron Boots"]={SubType="Blacksmithing",Level=36,id=7981,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1100,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:7981::::::::40:::::::|h[Plans: Barbaric Iron Boots]|h|r"},["War Paint Cloak"]={SubType="Cloth",Level=16,id=14724,StackCount=1,Rarity=2,MinLevel=11,SellPrice=253,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14724::::::::40:::::::|h[War Paint Cloak]|h|r"},["Monster - Axe, 2H Large Double Bladed"]={SubType="Two-Handed Axes",Level=1,id=5287,StackCount=1,Rarity=0,MinLevel=1,SellPrice=8,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5287::::::::40:::::::|h[Monster - Axe, 2H Large Double Bladed]|h|r"},["Small Spider Leg"]={SubType="Trade Goods",Level=5,id=5465,StackCount=10,Rarity=1,MinLevel=0,SellPrice=3,Texture=134321,EquipLoc="",Link="|cffffffff|Hitem:5465::::::::40:::::::|h[Small Spider Leg]|h|r",Type="Trade Goods"},["Sunprism Pendant"]={SubType="Miscellaneous",Level=60,id=20649,StackCount=1,Rarity=2,MinLevel=0,SellPrice=22425,Texture=133302,Link="|cff1eff00|Hitem:20649::::::::40:::::::|h[Sunprism Pendant]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Monster - Item, Vial Black"]={SubType="Miscellaneous",Level=1,id=2201,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134719,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2201::::::::40:::::::|h[Monster - Item, Vial Black]|h|r"},["Wicked Spiked Mace"]={SubType="One-Handed Maces",Level=25,id=920,StackCount=1,Rarity=2,MinLevel=20,SellPrice=2821,Texture=133486,Type="Weapon",Link="|cff1eff00|Hitem:920::::::::40:::::::|h[Wicked Spiked Mace]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Mechanical Dragonling"]={SubType="Devices",Level=40,id=4396,StackCount=1,Rarity=1,MinLevel=30,SellPrice=6000,Texture=134153,Type="Trade Goods",Link="|cffffffff|Hitem:4396::::::::40:::::::|h[Mechanical Dragonling]|h|r",EquipLoc="INVTYPE_TRINKET"},["Inventor's League Ring"]={SubType="Miscellaneous",Level=31,id=15467,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8630,Texture=133364,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:15467::::::::40:::::::|h[Inventor's League Ring]|h|r",Type="Armor"},["Wraith Blade"]={SubType="One-Handed Swords",Level=83,id=22807,StackCount=1,Rarity=4,MinLevel=60,SellPrice=201633,Texture=135291,Link="|cffa335ee|Hitem:22807::::::::40:::::::|h[Wraith Blade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Robust Cloak"]={SubType="Cloth",Level=25,id=15124,StackCount=1,Rarity=2,MinLevel=20,SellPrice=847,Texture=133755,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15124::::::::40:::::::|h[Robust Cloak]|h|r",Type="Armor"},["Ratty Old Belt"]={SubType="Leather",Level=10,id=6147,StackCount=1,Rarity=1,MinLevel=5,SellPrice=37,Texture=132493,Link="|cffffffff|Hitem:6147::::::::40:::::::|h[Ratty Old Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Raider's Boots"]={SubType="Mail",Level=19,id=9784,StackCount=1,Rarity=2,MinLevel=14,SellPrice=533,Texture=132535,Link="|cff1eff00|Hitem:9784::::::::40:::::::|h[Raider's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Bonecaster's Belt"]={SubType="Cloth",Level=55,id=14304,StackCount=1,Rarity=2,MinLevel=50,SellPrice=6194,Texture=132519,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14304::::::::40:::::::|h[Bonecaster's Belt]|h|r"},["Pattern: Black Dragonscale Leggings"]={SubType="Leatherworking",Level=62,id=15781,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134941,EquipLoc="",Link="|cff0070dd|Hitem:15781::::::::40:::::::|h[Pattern: Black Dragonscale Leggings]|h|r",Type="Recipe"},["Silver-thread Cloak"]={SubType="Cloth",Level=26,id=4713,StackCount=1,Rarity=2,MinLevel=21,SellPrice=926,Texture=133754,Link="|cff1eff00|Hitem:4713::::::::40:::::::|h[Silver-thread Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Marshal's Lamellar Armguards"]={SubType="Plate",Level=65,id=16469,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8466,Texture=132617,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16469::::::::40:::::::|h[Marshal's Lamellar Armguards]|h|r",Type="Armor"},["Masterwork Target Dummy"]={SubType="Devices",Level=55,id=16023,StackCount=10,Rarity=1,MinLevel=0,SellPrice=10000,Texture=132762,EquipLoc="",Link="|cffffffff|Hitem:16023::::::::40:::::::|h[Masterwork Target Dummy]|h|r",Type="Trade Goods"},["Package of Cards"]={SubType="Consumable",Level=1,id=22293,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133467,Link="|cffffffff|Hitem:22293::::::::40:::::::|h[Package of Cards]|h|r",EquipLoc="",Type="Consumable"},["Headhunting Spear"]={SubType="Polearms",Level=36,id=1522,StackCount=1,Rarity=2,MinLevel=31,SellPrice=10224,Texture=135128,Link="|cff1eff00|Hitem:1522::::::::40:::::::|h[Headhunting Spear]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Wizardweave Leggings"]={SubType="Cloth",Level=55,id=14132,StackCount=1,Rarity=2,MinLevel=50,SellPrice=12441,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14132::::::::40:::::::|h[Wizardweave Leggings]|h|r"},["Moonsight Rifle"]={SubType="Guns",Level=29,id=4383,StackCount=1,Rarity=2,MinLevel=24,SellPrice=3183,Texture=135615,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:4383::::::::40:::::::|h[Moonsight Rifle]|h|r"},["Shredder Operating Manual - Page 12"]={SubType="Junk",Level=1,id=16656,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:16656::::::::40:::::::|h[Shredder Operating Manual - Page 12]|h|r",Type="Miscellaneous"},["Winterspring Blood Sample"]={SubType="Quest",Level=1,id=21928,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136168,Link="|cffffffff|Hitem:21928::::::::40:::::::|h[Winterspring Blood Sample]|h|r",EquipLoc="",Type="Quest"},["Razormane War Shield"]={SubType="Shields",Level=24,id=5094,StackCount=1,Rarity=1,MinLevel=19,SellPrice=233,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:5094::::::::40:::::::|h[Razormane War Shield]|h|r"},["Defiler's Plate Greaves"]={SubType="Plate",Level=63,id=20208,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17098,Texture=132585,Link="|cff0070dd|Hitem:20208::::::::40:::::::|h[Defiler's Plate Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Eternal Gloves"]={SubType="Cloth",Level=63,id=14333,StackCount=1,Rarity=2,MinLevel=58,SellPrice=9987,Texture=132940,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14333::::::::40:::::::|h[Eternal Gloves]|h|r"},["Musquash Root"]={SubType="Quest",Level=1,id=2784,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134187,EquipLoc="",Link="|cffffffff|Hitem:2784::::::::40:::::::|h[Musquash Root]|h|r",Type="Quest"},["Rawhide Shoulderpads"]={SubType="Leather",Level=25,id=1801,StackCount=1,Rarity=0,MinLevel=20,SellPrice=418,Texture=135039,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:1801::::::::40:::::::|h[Rawhide Shoulderpads]|h|r"},["Demon Scarred Cloak"]={SubType="Cloth",Level=11,id=4854,StackCount=1,Rarity=1,MinLevel=6,SellPrice=0,Texture=134358,Link="|cffffffff|Hitem:4854::::::::40:::::::|h[Demon Scarred Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Sayge's Fortune #18"]={SubType="Junk",Level=1,id=19252,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19252::::::::40:::::::|h[Sayge's Fortune #18]|h|r",EquipLoc="",Type="Miscellaneous"},["Alabaster Plate Girdle"]={SubType="Plate",Level=52,id=8315,StackCount=1,Rarity=2,MinLevel=47,SellPrice=5061,Texture=132507,Link="|cff1eff00|Hitem:8315::::::::40:::::::|h[Alabaster Plate Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Zaeldarr's Head"]={SubType="Quest",Level=1,id=15785,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134178,EquipLoc="",Link="|cffffffff|Hitem:15785::::::::40:::::::|h[Zaeldarr's Head]|h|r",Type="Quest"},["Lesser Eternal Essence"]={SubType="Trade Goods",Level=50,id=16202,StackCount=10,Rarity=2,MinLevel=0,SellPrice=0,Texture=132865,EquipLoc="",Link="|cff1eff00|Hitem:16202::::::::40:::::::|h[Lesser Eternal Essence]|h|r",Type="Trade Goods"},["Eerie Stable Lantern"]={SubType="Miscellaneous",Level=19,id=6341,StackCount=1,Rarity=2,MinLevel=14,SellPrice=666,Texture=134249,Link="|cff1eff00|Hitem:6341::::::::40:::::::|h[Eerie Stable Lantern]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Golden Scale Shoulders"]={SubType="Mail",Level=35,id=3841,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3106,Texture=135040,Link="|cff1eff00|Hitem:3841::::::::40:::::::|h[Golden Scale Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Bloated Smallfish"]={SubType="Consumable",Level=5,id=6643,StackCount=1,Rarity=1,MinLevel=1,SellPrice=6,Texture=133894,Link="|cffffffff|Hitem:6643::::::::40:::::::|h[Bloated Smallfish]|h|r",EquipLoc="",Type="Consumable"},["Dragon's Blood Necklace"]={SubType="Miscellaneous",Level=44,id=10711,StackCount=1,Rarity=3,MinLevel=0,SellPrice=8377,Texture=133289,EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:10711::::::::40:::::::|h[Dragon's Blood Necklace]|h|r",Type="Armor"},["Cured Leather Pants"]={SubType="Leather",Level=22,id=237,StackCount=1,Rarity=1,MinLevel=17,SellPrice=561,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:237::::::::40:::::::|h[Cured Leather Pants]|h|r",Type="Armor"},["Jade Greaves"]={SubType="Plate",Level=49,id=14913,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6697,Texture=132586,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14913::::::::40:::::::|h[Jade Greaves]|h|r"},["Washte Pawne's Feather"]={SubType="Quest",Level=10,id=5103,StackCount=1,Rarity=1,MinLevel=10,SellPrice=0,Texture=135992,Link="|cffffffff|Hitem:5103::::::::40:::::::|h[Washte Pawne's Feather]|h|r",EquipLoc="",Type="Quest"},["Edgemaster's Handguards"]={SubType="Mail",Level=49,id=14551,StackCount=1,Rarity=4,MinLevel=44,SellPrice=10601,Texture=132964,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:14551::::::::40:::::::|h[Edgemaster's Handguards]|h|r"},["Plans: Hammer of the Titans"]={SubType="Blacksmithing",Level=63,id=12833,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12833::::::::40:::::::|h[Plans: Hammer of the Titans]|h|r"},["Beaststalker's Belt"]={SubType="Mail",Level=58,id=16680,StackCount=1,Rarity=3,MinLevel=53,SellPrice=13788,Texture=132517,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16680::::::::40:::::::|h[Beaststalker's Belt]|h|r",Type="Armor"},["The Feast of Winter Veil"]={SubType="Junk",Level=1,id=17735,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:17735::::::::40:::::::|h[The Feast of Winter Veil]|h|r",Type="Miscellaneous"},["Merciless Axe"]={SubType="Two-Handed Axes",Level=31,id=12249,StackCount=1,Rarity=2,MinLevel=26,SellPrice=6039,Texture=132408,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:12249::::::::40:::::::|h[Merciless Axe]|h|r"},["Pet Bombling"]={SubType="Devices",Level=41,id=11825,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133712,Type="Trade Goods",Link="|cffffffff|Hitem:11825::::::::40:::::::|h[Pet Bombling]|h|r",EquipLoc=""},["Quel'dorai Channeling Rod"]={SubType="Staves",Level=58,id=18311,StackCount=1,Rarity=3,MinLevel=53,SellPrice=56644,Texture=135151,Type="Weapon",Link="|cff0070dd|Hitem:18311::::::::40:::::::|h[Quel'dorai Channeling Rod]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Two of Elementals"]={SubType="Junk",Level=1,id=19269,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134486,Link="|cff0070dd|Hitem:19269::::::::40:::::::|h[Two of Elementals]|h|r",EquipLoc="",Type="Miscellaneous"},["Head of Magus Rimtori"]={SubType="Quest",Level=0,id=10597,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134167,EquipLoc="",Link="|cffffffff|Hitem:10597::::::::40:::::::|h[Head of Magus Rimtori]|h|r",Type="Quest"},["Gloves of the Hidden Temple"]={SubType="Leather",Level=81,id=21605,StackCount=1,Rarity=4,MinLevel=60,SellPrice=47103,Texture=132953,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:21605::::::::40:::::::|h[Gloves of the Hidden Temple]|h|r"},["Highborne Footpads"]={SubType="Cloth",Level=53,id=14447,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8801,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14447::::::::40:::::::|h[Highborne Footpads]|h|r"},["Scourge Banner"]={SubType="Quest",Level=1,id=12807,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132484,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12807::::::::40:::::::|h[Scourge Banner]|h|r"},["Cloak of Consumption"]={SubType="Cloth",Level=68,id=19857,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29966,Texture=133774,Link="|cffa335ee|Hitem:19857::::::::40:::::::|h[Cloak of Consumption]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Schematic: Bloodvine Goggles"]={SubType="Engineering",Level=65,id=20000,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30000,Texture=134939,Link="|cffffffff|Hitem:20000::::::::40:::::::|h[Schematic: Bloodvine Goggles]|h|r",EquipLoc="",Type="Recipe"},["[PH] Shining Dawn Gloves"]={SubType="Cloth",Level=100,id=13728,StackCount=1,Rarity=1,MinLevel=100,SellPrice=36450,Texture=132950,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:13728::::::::40:::::::|h[[PH] Shining Dawn Gloves]|h|r"},["Legionnaire's Chain Hauberk"]={SubType="Mail",Level=68,id=22874,StackCount=1,Rarity=3,MinLevel=60,SellPrice=21341,Texture=132626,Link="|cff0070dd|Hitem:22874::::::::40:::::::|h[Legionnaire's Chain Hauberk]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["The Purifier"]={SubType="Guns",Level=60,id=22656,StackCount=1,Rarity=4,MinLevel=0,SellPrice=47443,Texture=135615,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffa335ee|Hitem:22656::::::::40:::::::|h[The Purifier]|h|r"},["Ivycloth Tunic"]={SubType="Cloth",Level=29,id=9791,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1644,Texture=135010,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9791::::::::40:::::::|h[Ivycloth Tunic]|h|r"},["Pattern: Stormcloth Gloves"]={SubType="Tailoring",Level=44,id=10304,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10304::::::::40:::::::|h[Pattern: Stormcloth Gloves]|h|r",Type="Recipe"},["Bloodlust Gauntlets"]={SubType="Mail",Level=55,id=14802,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9749,Texture=132953,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14802::::::::40:::::::|h[Bloodlust Gauntlets]|h|r"},["Wicked Chain Legguards"]={SubType="Mail",Level=33,id=15541,StackCount=1,Rarity=2,MinLevel=28,SellPrice=3441,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15541::::::::40:::::::|h[Wicked Chain Legguards]|h|r",Type="Armor"},["Pattern: Flarecore Wraps"]={SubType="Tailoring",Level=64,id=18265,StackCount=1,Rarity=3,MinLevel=0,SellPrice=30000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18265::::::::40:::::::|h[Pattern: Flarecore Wraps]|h|r",EquipLoc=""},["Level 65 Test Gear Cloth - Priest 2"]={SubType="Junk",Level=1,id=17852,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17852::::::::40:::::::|h[Level 65 Test Gear Cloth - Priest 2]|h|r",Type="Miscellaneous"},["Veil of Eclipse"]={SubType="Cloth",Level=83,id=23017,StackCount=1,Rarity=4,MinLevel=60,SellPrice=63014,Texture=133775,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffa335ee|Hitem:23017::::::::40:::::::|h[Veil of Eclipse]|h|r"},["Sapphire of Sky"]={SubType="Quest",Level=1,id=3407,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134132,EquipLoc="",Link="|cffffffff|Hitem:3407::::::::40:::::::|h[Sapphire of Sky]|h|r",Type="Quest"},["Buzzard Gizzard"]={SubType="Quest",Level=1,id=7847,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134343,Link="|cffffffff|Hitem:7847::::::::40:::::::|h[Buzzard Gizzard]|h|r",EquipLoc="",Type="Quest"},["Test Stackable Items"]={SubType="Junk",Level=1,id=21274,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21274::::::::40:::::::|h[Test Stackable Items]|h|r",EquipLoc="",Type="Miscellaneous"},["Corroded Shrapnel"]={SubType="Quest",Level=1,id=5664,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134070,Link="|cffffffff|Hitem:5664::::::::40:::::::|h[Corroded Shrapnel]|h|r",EquipLoc="",Type="Quest"},["Pellet Rifle"]={SubType="Guns",Level=7,id=8182,StackCount=1,Rarity=1,MinLevel=2,SellPrice=40,Texture=135613,Link="|cffffffff|Hitem:8182::::::::40:::::::|h[Pellet Rifle]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Insignia Chestguard"]={SubType="Leather",Level=36,id=4057,StackCount=1,Rarity=2,MinLevel=31,SellPrice=4032,Texture=132721,Type="Armor",Link="|cff1eff00|Hitem:4057::::::::40:::::::|h[Insignia Chestguard]|h|r",EquipLoc="INVTYPE_CHEST"},["Large Green Rocket Cluster"]={SubType="Consumable",Level=1,id=21716,StackCount=20,Rarity=1,MinLevel=0,SellPrice=50,Texture=134277,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:21716::::::::40:::::::|h[Large Green Rocket Cluster]|h|r"},["Harpy Needler"]={SubType="Bows",Level=51,id=15291,StackCount=1,Rarity=2,MinLevel=46,SellPrice=19591,Texture=135496,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:15291::::::::40:::::::|h[Harpy Needler]|h|r",Type="Weapon"},["Hatefury Horn"]={SubType="Quest",Level=1,id=6247,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133722,Type="Quest",Link="|cffffffff|Hitem:6247::::::::40:::::::|h[Hatefury Horn]|h|r",EquipLoc=""},["Grimoire of Burning Spirit II"]={SubType="Book",Level=16,id=3144,StackCount=1,Rarity=1,MinLevel=16,SellPrice=450,Texture=133738,Type="Recipe",Link="|cffffffff|Hitem:3144::::::::40:::::::|h[Grimoire of Burning Spirit II]|h|r",EquipLoc=""},["Blackwater Cutlass"]={SubType="One-Handed Swords",Level=19,id=1951,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1258,Texture=135325,Type="Weapon",Link="|cff1eff00|Hitem:1951::::::::40:::::::|h[Blackwater Cutlass]|h|r",EquipLoc="INVTYPE_WEAPON"},["Cenarion Spaulders"]={SubType="Leather",Level=66,id=16836,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31859,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16836::::::::40:::::::|h[Cenarion Spaulders]|h|r",Type="Armor"},["Embersilk Coronet"]={SubType="Cloth",Level=41,id=14228,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3559,Texture=132521,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14228::::::::40:::::::|h[Embersilk Coronet]|h|r"},["Stardust Band"]={SubType="Miscellaneous",Level=52,id=12055,StackCount=1,Rarity=2,MinLevel=47,SellPrice=8375,Texture=133357,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12055::::::::40:::::::|h[Stardust Band]|h|r"},["Test Defense Chest"]={SubType="Plate",Level=60,id=12187,StackCount=1,Rarity=1,MinLevel=55,SellPrice=10390,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:12187::::::::40:::::::|h[Test Defense Chest]|h|r"},["Dark Leather Tunic"]={SubType="Leather",Level=20,id=2317,StackCount=1,Rarity=2,MinLevel=15,SellPrice=689,Texture=132718,Link="|cff1eff00|Hitem:2317::::::::40:::::::|h[Dark Leather Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Deathbone Girdle"]={SubType="Plate",Level=61,id=14620,StackCount=1,Rarity=3,MinLevel=56,SellPrice=10135,Texture=132501,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:14620::::::::40:::::::|h[Deathbone Girdle]|h|r"},["Fractured Canine"]={SubType="Junk",Level=1,id=3299,StackCount=10,Rarity=0,MinLevel=0,SellPrice=48,Texture=133725,Link="|cff9d9d9d|Hitem:3299::::::::40:::::::|h[Fractured Canine]|h|r",EquipLoc="",Type="Miscellaneous"},["Cat Carrier (White Kitten)"]={SubType="Junk",Level=20,id=8489,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=132599,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:8489::::::::40:::::::|h[Cat Carrier (White Kitten)]|h|r"},["Brutality Blade"]={SubType="One-Handed Swords",Level=70,id=18832,StackCount=1,Rarity=4,MinLevel=60,SellPrice=104089,Texture=135313,Type="Weapon",Link="|cffa335ee|Hitem:18832::::::::40:::::::|h[Brutality Blade]|h|r",EquipLoc="INVTYPE_WEAPON"},["Baked Salmon"]={SubType="Consumable",Level=55,id=13935,StackCount=20,Rarity=1,MinLevel=45,SellPrice=10,Texture=133906,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13935::::::::40:::::::|h[Baked Salmon]|h|r"},["Worn Turtle Shell Shield"]={SubType="Shields",Level=20,id=6447,StackCount=1,Rarity=1,MinLevel=15,SellPrice=562,Texture=134967,Type="Armor",Link="|cffffffff|Hitem:6447::::::::40:::::::|h[Worn Turtle Shell Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Elunarian Belt"]={SubType="Cloth",Level=60,id=14465,StackCount=1,Rarity=2,MinLevel=55,SellPrice=8596,Texture=132506,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14465::::::::40:::::::|h[Elunarian Belt]|h|r"},["Virtuous Crown"]={SubType="Cloth",Level=60,id=22080,StackCount=1,Rarity=4,MinLevel=0,SellPrice=20505,Texture=132767,Link="|cffa335ee|Hitem:22080::::::::40:::::::|h[Virtuous Crown]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Lil' Smoky"]={SubType="Devices",Level=41,id=11826,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134231,Type="Trade Goods",Link="|cffffffff|Hitem:11826::::::::40:::::::|h[Lil' Smoky]|h|r",EquipLoc=""},["Imbued Plate Greaves"]={SubType="Plate",Level=58,id=10371,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11149,Texture=132586,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10371::::::::40:::::::|h[Imbued Plate Greaves]|h|r",Type="Armor"},["Dark Iron Ring"]={SubType="Miscellaneous",Level=53,id=11945,StackCount=1,Rarity=2,MinLevel=48,SellPrice=6592,Texture=133357,Type="Armor",Link="|cff1eff00|Hitem:11945::::::::40:::::::|h[Dark Iron Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Thick Leather Tunic"]={SubType="Leather",Level=45,id=3968,StackCount=1,Rarity=0,MinLevel=40,SellPrice=3331,Texture=135017,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:3968::::::::40:::::::|h[Thick Leather Tunic]|h|r"},["Monster - Mace, Green Scepter"]={SubType="One-Handed Maces",Level=1,id=11383,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133483,Type="Weapon",Link="|cff9d9d9d|Hitem:11383::::::::40:::::::|h[Monster - Mace, Green Scepter]|h|r",EquipLoc="INVTYPE_WEAPON"},["Rig Blueprints"]={SubType="Quest",Level=1,id=9153,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134332,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9153::::::::40:::::::|h[Rig Blueprints]|h|r"},["Bait"]={SubType="Quest",Level=1,id=11141,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134006,Type="Quest",Link="|cffffffff|Hitem:11141::::::::40:::::::|h[Bait]|h|r",EquipLoc=""},["The Greatest Race of Hunters"]={SubType="Junk",Level=60,id=18361,StackCount=1,Rarity=3,MinLevel=54,SellPrice=0,Texture=133734,Type="Miscellaneous",Link="|cff0070dd|Hitem:18361::::::::40:::::::|h[The Greatest Race of Hunters]|h|r",EquipLoc=""},["Royal Bands"]={SubType="Cloth",Level=43,id=9909,StackCount=1,Rarity=2,MinLevel=38,SellPrice=2848,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9909::::::::40:::::::|h[Royal Bands]|h|r"},["Arachnidian Branch"]={SubType="Miscellaneous",Level=57,id=15985,StackCount=1,Rarity=2,MinLevel=52,SellPrice=9887,Texture=135465,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15985::::::::40:::::::|h[Arachnidian Branch]|h|r",Type="Armor"},["Thistlefur Jerkin"]={SubType="Cloth",Level=36,id=14202,StackCount=1,Rarity=2,MinLevel=31,SellPrice=3336,Texture=135011,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14202::::::::40:::::::|h[Thistlefur Jerkin]|h|r"},["Laminated Scale Circlet"]={SubType="Mail",Level=54,id=8752,StackCount=1,Rarity=0,MinLevel=49,SellPrice=5217,Texture=132767,Link="|cff9d9d9d|Hitem:8752::::::::40:::::::|h[Laminated Scale Circlet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["General's Silk Handguards"]={SubType="Cloth",Level=71,id=16540,StackCount=1,Rarity=4,MinLevel=60,SellPrice=11265,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16540::::::::40:::::::|h[General's Silk Handguards]|h|r",Type="Armor"},["Deprecated Tauren Apprentice Pants"]={SubType="Cloth",Level=1,id=150,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:150::::::::40:::::::|h[Deprecated Tauren Apprentice Pants]|h|r"},["Standard Issue Flare Gun"]={SubType="Quest",Level=0,id=10444,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134537,EquipLoc="",Link="|cffffffff|Hitem:10444::::::::40:::::::|h[Standard Issue Flare Gun]|h|r",Type="Quest"},["Locked Gift"]={SubType="Consumable",Level=30,id=5046,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134141,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5046::::::::40:::::::|h[Locked Gift]|h|r"},["Grizzled Mane"]={SubType="Junk",Level=1,id=11414,StackCount=10,Rarity=0,MinLevel=0,SellPrice=1828,Texture=134353,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11414::::::::40:::::::|h[Grizzled Mane]|h|r",EquipLoc=""},["Deprecated Rabid Fang"]={SubType="Junk",Level=1,id=3705,StackCount=20,Rarity=1,MinLevel=0,SellPrice=727,Texture=133725,Type="Miscellaneous",Link="|cffffffff|Hitem:3705::::::::40:::::::|h[Deprecated Rabid Fang]|h|r",EquipLoc=""},["Red Hakkari Bijou"]={SubType="Quest",Level=61,id=19707,StackCount=250,Rarity=3,MinLevel=58,SellPrice=0,Texture=132532,Link="|cff0070dd|Hitem:19707::::::::40:::::::|h[Red Hakkari Bijou]|h|r",EquipLoc="",Type="Quest"},["Triumphant Legplates"]={SubType="Mail",Level=63,id=15685,StackCount=1,Rarity=2,MinLevel=58,SellPrice=29539,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15685::::::::40:::::::|h[Triumphant Legplates]|h|r",Type="Armor"},["Crochet Pants"]={SubType="Cloth",Level=45,id=3941,StackCount=1,Rarity=0,MinLevel=40,SellPrice=2598,Texture=134592,Link="|cff9d9d9d|Hitem:3941::::::::40:::::::|h[Crochet Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Dwarven Flamestick"]={SubType="Wands",Level=18,id=5241,StackCount=1,Rarity=2,MinLevel=0,SellPrice=821,Texture=135139,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5241::::::::40:::::::|h[Dwarven Flamestick]|h|r",Type="Weapon"},["Kodo Hide Bag"]={SubType="Bag",Level=5,id=5081,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=133639,Link="|cffffffff|Hitem:5081::::::::40:::::::|h[Kodo Hide Bag]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Grimoire of Curse of Agony III"]={SubType="Book",Level=32,id=9221,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9221::::::::40:::::::|h[Grimoire of Curse of Agony III]|h|r"},["Hands of Thero-shan"]={SubType="Leather",Level=32,id=7951,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1372,Texture=132949,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7951::::::::40:::::::|h[Hands of Thero-shan]|h|r",Type="Armor"},["Shroud of the Nathrezim"]={SubType="Cloth",Level=63,id=18720,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16706,Texture=135054,Type="Armor",Link="|cff0070dd|Hitem:18720::::::::40:::::::|h[Shroud of the Nathrezim]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Deprecated Neeru's Power Stone"]={SubType="Quest",Level=1,id=5171,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134095,EquipLoc="",Link="|cffffffff|Hitem:5171::::::::40:::::::|h[Deprecated Neeru's Power Stone]|h|r",Type="Quest"},["Sealed Folder"]={SubType="Quest",Level=1,id=4482,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133470,Type="Quest",Link="|cffffffff|Hitem:4482::::::::40:::::::|h[Sealed Folder]|h|r",EquipLoc=""},["Broken I.W.I.N. Button"]={SubType="Junk",Level=1,id=18230,StackCount=5,Rarity=0,MinLevel=0,SellPrice=509,Texture=134335,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18230::::::::40:::::::|h[Broken I.W.I.N. Button]|h|r",EquipLoc=""},["Guardsman Belt"]={SubType="Leather",Level=24,id=3429,StackCount=1,Rarity=2,MinLevel=19,SellPrice=586,Texture=132493,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:3429::::::::40:::::::|h[Guardsman Belt]|h|r"},["Desert Ring"]={SubType="Miscellaneous",Level=49,id=12013,StackCount=1,Rarity=2,MinLevel=44,SellPrice=4649,Texture=133356,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12013::::::::40:::::::|h[Desert Ring]|h|r"},["Trogg Beater"]={SubType="Two-Handed Maces",Level=21,id=3571,StackCount=1,Rarity=2,MinLevel=16,SellPrice=2118,Texture=133052,Type="Weapon",Link="|cff1eff00|Hitem:3571::::::::40:::::::|h[Trogg Beater]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Superior Bracers"]={SubType="Leather",Level=26,id=9803,StackCount=1,Rarity=2,MinLevel=21,SellPrice=729,Texture=132601,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9803::::::::40:::::::|h[Superior Bracers]|h|r"},["Tirisfal Pumpkin"]={SubType="Quest",Level=1,id=2846,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133981,EquipLoc="",Link="|cffffffff|Hitem:2846::::::::40:::::::|h[Tirisfal Pumpkin]|h|r",Type="Quest"},["Mendicant's Slippers"]={SubType="Cloth",Level=71,id=20631,StackCount=1,Rarity=4,MinLevel=60,SellPrice=35068,Texture=132562,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:20631::::::::40:::::::|h[Mendicant's Slippers]|h|r"},["Royal Cap Spaulders"]={SubType="Mail",Level=62,id=14548,StackCount=1,Rarity=3,MinLevel=57,SellPrice=24792,Texture=135042,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:14548::::::::40:::::::|h[Royal Cap Spaulders]|h|r"},["Haggard's Dagger"]={SubType="Daggers",Level=15,id=6980,StackCount=1,Rarity=2,MinLevel=0,SellPrice=677,Texture=135651,Type="Weapon",Link="|cff1eff00|Hitem:6980::::::::40:::::::|h[Haggard's Dagger]|h|r",EquipLoc="INVTYPE_WEAPON"},["Plans: Darksoul Leggings"]={SubType="Blacksmithing",Level=65,id=19780,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19780::::::::40:::::::|h[Plans: Darksoul Leggings]|h|r",EquipLoc="",Type="Recipe"},["Doomsday Flare"]={SubType="Quest",Level=1,id=18630,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=134536,Type="Quest",Link="|cffffffff|Hitem:18630::::::::40:::::::|h[Doomsday Flare]|h|r",EquipLoc=""},["Ornate Mithril Breastplate"]={SubType="Plate",Level=48,id=7935,StackCount=1,Rarity=2,MinLevel=43,SellPrice=8368,Texture=132745,Link="|cff1eff00|Hitem:7935::::::::40:::::::|h[Ornate Mithril Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Parcel of Cards"]={SubType="Consumable",Level=1,id=22287,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133462,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22287::::::::40:::::::|h[Parcel of Cards]|h|r"},["Dense Sharpening Stone"]={SubType="Trade Goods",Level=45,id=12404,StackCount=20,Rarity=1,MinLevel=35,SellPrice=75,Texture=135252,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12404::::::::40:::::::|h[Dense Sharpening Stone]|h|r"},["Rageclaw Gloves"]={SubType="Leather",Level=48,id=15383,StackCount=1,Rarity=2,MinLevel=43,SellPrice=5313,Texture=132956,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15383::::::::40:::::::|h[Rageclaw Gloves]|h|r",Type="Armor"},["Knight-Captain's Dragonhide Leggings"]={SubType="Leather",Level=63,id=16422,StackCount=1,Rarity=3,MinLevel=58,SellPrice=15092,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16422::::::::40:::::::|h[Knight-Captain's Dragonhide Leggings]|h|r",Type="Armor"},["Eight of Portals"]={SubType="Junk",Level=1,id=19284,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134492,Link="|cff0070dd|Hitem:19284::::::::40:::::::|h[Eight of Portals]|h|r",EquipLoc="",Type="Miscellaneous"},["Flask of Big Mojo"]={SubType="Trade Goods",Level=40,id=8152,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134743,Link="|cffffffff|Hitem:8152::::::::40:::::::|h[Flask of Big Mojo]|h|r",EquipLoc="",Type="Trade Goods"},["Pattern: Devilsaur Leggings"]={SubType="Leatherworking",Level=60,id=15772,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7500,Texture=134941,EquipLoc="",Link="|cff0070dd|Hitem:15772::::::::40:::::::|h[Pattern: Devilsaur Leggings]|h|r",Type="Recipe"},["Mystical Boots"]={SubType="Cloth",Level=54,id=10179,StackCount=1,Rarity=2,MinLevel=49,SellPrice=8632,Texture=132543,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10179::::::::40:::::::|h[Mystical Boots]|h|r",Type="Armor"},["Marshal's Silk Footwraps"]={SubType="Cloth",Level=71,id=16437,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17523,Texture=132560,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16437::::::::40:::::::|h[Marshal's Silk Footwraps]|h|r",Type="Armor"},["Laced Mail Bracers"]={SubType="Mail",Level=16,id=1740,StackCount=1,Rarity=0,MinLevel=11,SellPrice=97,Texture=132602,Type="Armor",Link="|cff9d9d9d|Hitem:1740::::::::40:::::::|h[Laced Mail Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Abyssal Leather Bracers"]={SubType="Leather",Level=68,id=20681,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18251,Texture=132609,Link="|cff0070dd|Hitem:20681::::::::40:::::::|h[Abyssal Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Egg Crate"]={SubType="Quest",Level=1,id=8647,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,Link="|cffffffff|Hitem:8647::::::::40:::::::|h[Egg Crate]|h|r",EquipLoc="",Type="Quest"},["Codex of Renew VI"]={SubType="Book",Level=38,id=1105,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133741,Link="|cffffffff|Hitem:1105::::::::40:::::::|h[Codex of Renew VI]|h|r",EquipLoc="",Type="Recipe"},["Defender Girdle"]={SubType="Mail",Level=22,id=6576,StackCount=1,Rarity=2,MinLevel=17,SellPrice=572,Texture=132511,Link="|cff1eff00|Hitem:6576::::::::40:::::::|h[Defender Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Leggings of the Fang"]={SubType="Leather",Level=23,id=10410,StackCount=1,Rarity=3,MinLevel=18,SellPrice=1256,Texture=134591,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:10410::::::::40:::::::|h[Leggings of the Fang]|h|r",Type="Armor"},["Tablet of Purge II"]={SubType="Book",Level=32,id=9087,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9087::::::::40:::::::|h[Tablet of Purge II]|h|r"},["Field Marshal's Leather Epaulets"]={SubType="Leather",Level=74,id=16457,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25352,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16457::::::::40:::::::|h[Field Marshal's Leather Epaulets]|h|r",Type="Armor"},["Nimble Leather Gloves"]={SubType="Leather",Level=24,id=7285,StackCount=1,Rarity=2,MinLevel=19,SellPrice=588,Texture=132939,Link="|cff1eff00|Hitem:7285::::::::40:::::::|h[Nimble Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Dervish Belt"]={SubType="Leather",Level=27,id=6600,StackCount=1,Rarity=2,MinLevel=22,SellPrice=867,Texture=132514,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:6600::::::::40:::::::|h[Dervish Belt]|h|r"},["Abjurer's Crystal"]={SubType="Miscellaneous",Level=53,id=9944,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8570,Texture=134125,Link="|cff1eff00|Hitem:9944::::::::40:::::::|h[Abjurer's Crystal]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Test Frost Resist Cloth LockBox"]={SubType="Junk",Level=1,id=16173,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16173::::::::40:::::::|h[Test Frost Resist Cloth LockBox]|h|r",Type="Miscellaneous"},["Elemental Air"]={SubType="Reagent",Level=25,id=7069,StackCount=10,Rarity=1,MinLevel=0,SellPrice=400,Texture=136107,EquipLoc="",Link="|cffffffff|Hitem:7069::::::::40:::::::|h[Elemental Air]|h|r",Type="Reagent"},["Centurion Legplates"]={SubType="Plate",Level=53,id=10740,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10692,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10740::::::::40:::::::|h[Centurion Legplates]|h|r",Type="Armor"},["Savannah Bracers"]={SubType="Leather",Level=18,id=15453,StackCount=1,Rarity=2,MinLevel=0,SellPrice=269,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15453::::::::40:::::::|h[Savannah Bracers]|h|r",Type="Armor"},["Formula: Enchant Bracer - Lesser Deflection"]={SubType="Enchanting",Level=34,id=11163,StackCount=1,Rarity=2,MinLevel=0,SellPrice=750,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11163::::::::40:::::::|h[Formula: Enchant Bracer - Lesser Deflection]|h|r",EquipLoc=""},["Arachnidian Gloves"]={SubType="Cloth",Level=51,id=14294,StackCount=1,Rarity=2,MinLevel=46,SellPrice=5223,Texture=132949,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14294::::::::40:::::::|h[Arachnidian Gloves]|h|r"},["Chen's Empty Keg"]={SubType="Quest",Level=11,id=4926,StackCount=1,Rarity=1,MinLevel=11,SellPrice=0,Texture=132623,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4926::::::::40:::::::|h[Chen's Empty Keg]|h|r"},["Tablet of Call Spirit II"]={SubType="Book",Level=40,id=1603,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1603::::::::40:::::::|h[Tablet of Call Spirit II]|h|r"},["Joseph's Key"]={SubType="Quest",Level=1,id=15328,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,EquipLoc="",Link="|cffffffff|Hitem:15328::::::::40:::::::|h[Joseph's Key]|h|r",Type="Quest"},["Crystal Charge"]={SubType="Quest",Level=55,id=11566,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134116,Type="Quest",Link="|cffffffff|Hitem:11566::::::::40:::::::|h[Crystal Charge]|h|r",EquipLoc=""},["Syndicate Emblem"]={SubType="Quest",Level=1,id=17124,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=133598,EquipLoc="",Link="|cffffffff|Hitem:17124::::::::40:::::::|h[Syndicate Emblem]|h|r",Type="Quest"},["Un'Goro Gorilla Pelt"]={SubType="Quest",Level=1,id=11478,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134356,Type="Quest",Link="|cffffffff|Hitem:11478::::::::40:::::::|h[Un'Goro Gorilla Pelt]|h|r",EquipLoc=""},["Nemesis Bracers"]={SubType="Cloth",Level=76,id=16934,StackCount=1,Rarity=4,MinLevel=60,SellPrice=28213,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16934::::::::40:::::::|h[Nemesis Bracers]|h|r",Type="Armor"},["Brilliant Red Cloak"]={SubType="Cloth",Level=41,id=12253,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3545,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:12253::::::::40:::::::|h[Brilliant Red Cloak]|h|r"},["Superior Mana Potion"]={SubType="Consumable",Level=51,id=13443,StackCount=5,Rarity=1,MinLevel=41,SellPrice=400,Texture=134854,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13443::::::::40:::::::|h[Superior Mana Potion]|h|r"},["Loch Croc Hide Vest"]={SubType="Leather",Level=22,id=6197,StackCount=1,Rarity=2,MinLevel=17,SellPrice=929,Texture=132760,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:6197::::::::40:::::::|h[Loch Croc Hide Vest]|h|r"},["Schematic: Flame Deflector"]={SubType="Engineering",Level=25,id=4411,StackCount=1,Rarity=2,MinLevel=0,SellPrice=275,Texture=134939,Type="Recipe",Link="|cff1eff00|Hitem:4411::::::::40:::::::|h[Schematic: Flame Deflector]|h|r",EquipLoc=""},["OLDInitiate's Belt"]={SubType="Miscellaneous",Level=1,id=50,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:50::::::::40:::::::|h[OLDInitiate's Belt]|h|r",Type="Armor"},["Cryptstalker Handguards"]={SubType="Mail",Level=88,id=22441,StackCount=1,Rarity=4,MinLevel=60,SellPrice=75205,Texture=132959,Link="|cffa335ee|Hitem:22441::::::::40:::::::|h[Cryptstalker Handguards]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Crude Flint"]={SubType="Quest",Level=1,id=2611,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135242,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2611::::::::40:::::::|h[Crude Flint]|h|r"},["Falcon's Call"]={SubType="Junk",Level=60,id=19785,StackCount=1,Rarity=3,MinLevel=60,SellPrice=0,Texture=136036,Link="|cff0070dd|Hitem:19785::::::::40:::::::|h[Falcon's Call]|h|r",EquipLoc="",Type="Miscellaneous"},["Greater Fire Protection Potion"]={SubType="Consumable",Level=58,id=13457,StackCount=5,Rarity=1,MinLevel=48,SellPrice=750,Texture=134804,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13457::::::::40:::::::|h[Greater Fire Protection Potion]|h|r"},["Mystic Sarong"]={SubType="Leather",Level=29,id=4832,StackCount=1,Rarity=2,MinLevel=24,SellPrice=2099,Texture=134587,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:4832::::::::40:::::::|h[Mystic Sarong]|h|r",Type="Armor"},["Test Nature Res Hands Cloth"]={SubType="Cloth",Level=35,id=16117,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1379,Texture=132951,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:16117::::::::40:::::::|h[Test Nature Res Hands Cloth]|h|r",Type="Armor"},["Pathfinder Guard"]={SubType="Shields",Level=30,id=15342,StackCount=1,Rarity=2,MinLevel=25,SellPrice=2907,Texture=134967,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15342::::::::40:::::::|h[Pathfinder Guard]|h|r",Type="Armor"},["Tome of Arcane Explosion VI"]={SubType="Book",Level=54,id=8880,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133739,Link="|cffffffff|Hitem:8880::::::::40:::::::|h[Tome of Arcane Explosion VI]|h|r",EquipLoc="",Type="Recipe"},["Burning Sliver"]={SubType="Wands",Level=40,id=5249,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8658,Texture=135473,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5249::::::::40:::::::|h[Burning Sliver]|h|r"},["Gargantuan Tumor"]={SubType="Quest",Level=1,id=8136,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134343,Link="|cffffffff|Hitem:8136::::::::40:::::::|h[Gargantuan Tumor]|h|r",EquipLoc="",Type="Quest"},["Marez's Head"]={SubType="Quest",Level=1,id=4515,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4515::::::::40:::::::|h[Marez's Head]|h|r"},["[PH] Plate Boots of the Shining Dawn"]={SubType="Plate",Level=100,id=13809,StackCount=1,Rarity=1,MinLevel=100,SellPrice=50977,Texture=132585,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:13809::::::::40:::::::|h[[PH] Plate Boots of the Shining Dawn]|h|r"},["Painted Chain Belt"]={SubType="Mail",Level=5,id=4913,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=132495,Type="Armor",Link="|cffffffff|Hitem:4913::::::::40:::::::|h[Painted Chain Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Wound Poison IV"]={SubType="Consumable",Level=56,id=10922,StackCount=20,Rarity=1,MinLevel=56,SellPrice=175,Texture=132274,EquipLoc="",Link="|cffffffff|Hitem:10922::::::::40:::::::|h[Wound Poison IV]|h|r",Type="Consumable"},["Mathystra Relic"]={SubType="Quest",Level=1,id=5273,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134231,Link="|cffffffff|Hitem:5273::::::::40:::::::|h[Mathystra Relic]|h|r",EquipLoc="",Type="Quest"},["Ironhide Breastplate"]={SubType="Mail",Level=56,id=15640,StackCount=1,Rarity=2,MinLevel=51,SellPrice=20233,Texture=132743,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15640::::::::40:::::::|h[Ironhide Breastplate]|h|r",Type="Armor"},["A Smudged Document"]={SubType="Quest",Level=1,id=22948,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134332,Link="|cffffffff|Hitem:22948::::::::40:::::::|h[A Smudged Document]|h|r",EquipLoc="",Type="Quest"},["Recipe: Frost Protection Potion"]={SubType="Alchemy",Level=38,id=6056,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,Link="|cffffffff|Hitem:6056::::::::40:::::::|h[Recipe: Frost Protection Potion]|h|r",EquipLoc="",Type="Recipe"},["Cadaverous Leggings"]={SubType="Leather",Level=61,id=14638,StackCount=1,Rarity=3,MinLevel=56,SellPrice=25145,Texture=134587,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:14638::::::::40:::::::|h[Cadaverous Leggings]|h|r"},["Field Marshal's Chain Spaulders"]={SubType="Mail",Level=74,id=16468,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29576,Texture=135041,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16468::::::::40:::::::|h[Field Marshal's Chain Spaulders]|h|r",Type="Armor"},["Purple Ribboned Holiday Gift"]={SubType="Consumable",Level=5,id=17308,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133203,EquipLoc="",Link="|cffffffff|Hitem:17308::::::::40:::::::|h[Purple Ribboned Holiday Gift]|h|r",Type="Consumable"},["Bloated Salmon"]={SubType="Consumable",Level=55,id=13891,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=133892,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13891::::::::40:::::::|h[Bloated Salmon]|h|r"},["Frostsaber Gloves"]={SubType="Leather",Level=59,id=15070,StackCount=1,Rarity=2,MinLevel=54,SellPrice=9504,Texture=132950,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15070::::::::40:::::::|h[Frostsaber Gloves]|h|r",Type="Armor"},["Opulent Boots"]={SubType="Cloth",Level=50,id=14285,StackCount=1,Rarity=2,MinLevel=45,SellPrice=6905,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14285::::::::40:::::::|h[Opulent Boots]|h|r"},["Webwood Ichor"]={SubType="Quest",Level=1,id=10640,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,EquipLoc="",Link="|cffffffff|Hitem:10640::::::::40:::::::|h[Webwood Ichor]|h|r",Type="Quest"},["Stonemason Trousers"]={SubType="Leather",Level=20,id=1934,StackCount=1,Rarity=2,MinLevel=15,SellPrice=731,Texture=134582,Type="Armor",Link="|cff1eff00|Hitem:1934::::::::40:::::::|h[Stonemason Trousers]|h|r",EquipLoc="INVTYPE_LEGS"},["Book of Cure Poison"]={SubType="Book",Level=14,id=1332,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133743,Type="Recipe",Link="|cffffffff|Hitem:1332::::::::40:::::::|h[Book of Cure Poison]|h|r",EquipLoc=""},["Huge Gnoll Claw"]={SubType="Quest",Level=1,id=1931,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134297,Type="Quest",Link="|cffffffff|Hitem:1931::::::::40:::::::|h[Huge Gnoll Claw]|h|r",EquipLoc=""},["Right-Handed Brass Knuckles"]={SubType="Fist Weapons",Level=15,id=15905,StackCount=1,Rarity=1,MinLevel=10,SellPrice=426,Texture=132938,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:15905::::::::40:::::::|h[Right-Handed Brass Knuckles]|h|r",Type="Weapon"},["Watcher's Cap"]={SubType="Cloth",Level=31,id=14178,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1532,Texture=133134,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14178::::::::40:::::::|h[Watcher's Cap]|h|r"},["63 Green Rogue Dagger"]={SubType="Daggers",Level=63,id=20317,StackCount=1,Rarity=2,MinLevel=58,SellPrice=46790,Texture=132797,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:20317::::::::40:::::::|h[63 Green Rogue Dagger]|h|r"},["Lawbringer Legplates"]={SubType="Plate",Level=66,id=16855,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33848,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16855::::::::40:::::::|h[Lawbringer Legplates]|h|r",Type="Armor"},["Legends of the Gurubashi, Volume 3"]={SubType="Junk",Level=1,id=3899,StackCount=1,Rarity=0,MinLevel=0,SellPrice=25,Texture=133736,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:3899::::::::40:::::::|h[Legends of the Gurubashi, Volume 3]|h|r",EquipLoc=""},["QAEnchant Boots +7 Stamina"]={SubType="Consumable",Level=1,id=17896,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17896::::::::40:::::::|h[QAEnchant Boots +7 Stamina]|h|r",Type="Consumable"},["Monster - Dagger, Korean A01 Black"]={SubType="Daggers",Level=1,id=21122,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135638,Link="|cff9d9d9d|Hitem:21122::::::::40:::::::|h[Monster - Dagger, Korean A01 Black]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["PVP Plate Legplates Alliance"]={SubType="Plate",Level=60,id=16028,StackCount=1,Rarity=1,MinLevel=0,SellPrice=9488,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:16028::::::::40:::::::|h[PVP Plate Legplates Alliance]|h|r",Type="Armor"},["Sealed Letter to Elissa"]={SubType="Quest",Level=1,id=5380,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133460,EquipLoc="",Link="|cffffffff|Hitem:5380::::::::40:::::::|h[Sealed Letter to Elissa]|h|r",Type="Quest"},["Slick Deviate Leggings"]={SubType="Leather",Level=20,id=6480,StackCount=1,Rarity=2,MinLevel=0,SellPrice=713,Texture=134582,Type="Armor",Link="|cff1eff00|Hitem:6480::::::::40:::::::|h[Slick Deviate Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Scepter of Beckoning: Thunder"]={SubType="Junk",Level=1,id=20448,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135473,Link="|cffffffff|Hitem:20448::::::::40:::::::|h[Scepter of Beckoning: Thunder]|h|r",EquipLoc="",Type="Miscellaneous"},["Sedgeweed Britches"]={SubType="Cloth",Level=5,id=10655,StackCount=1,Rarity=1,MinLevel=0,SellPrice=9,Texture=134592,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:10655::::::::40:::::::|h[Sedgeweed Britches]|h|r",Type="Armor"},["Highborne Padded Armor"]={SubType="Cloth",Level=59,id=14455,StackCount=1,Rarity=2,MinLevel=54,SellPrice=15792,Texture=135007,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14455::::::::40:::::::|h[Highborne Padded Armor]|h|r"},["Book of Regrowth VIII"]={SubType="Book",Level=54,id=8791,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133743,Link="|cffffffff|Hitem:8791::::::::40:::::::|h[Book of Regrowth VIII]|h|r",EquipLoc="",Type="Recipe"},["Codex of Lesser Heal III"]={SubType="Book",Level=10,id=1102,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133741,Type="Recipe",Link="|cffffffff|Hitem:1102::::::::40:::::::|h[Codex of Lesser Heal III]|h|r",EquipLoc=""},["Dirt-trodden Boots"]={SubType="Cloth",Level=8,id=4936,StackCount=1,Rarity=1,MinLevel=0,SellPrice=23,Texture=132542,Type="Armor",Link="|cffffffff|Hitem:4936::::::::40:::::::|h[Dirt-trodden Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Smooth Leather Belt"]={SubType="Leather",Level=55,id=3969,StackCount=1,Rarity=0,MinLevel=50,SellPrice=3256,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:3969::::::::40:::::::|h[Smooth Leather Belt]|h|r",Type="Armor"},["Deprecated Test Fishliver Oil"]={SubType="Consumable",Level=16,id=3507,StackCount=1,Rarity=1,MinLevel=6,SellPrice=5,Texture=134720,Link="|cffffffff|Hitem:3507::::::::40:::::::|h[Deprecated Test Fishliver Oil]|h|r",EquipLoc="",Type="Consumable"},["Dormant Wind Kissed Blade"]={SubType="Quest",Level=80,id=19018,StackCount=1,Rarity=5,MinLevel=60,SellPrice=0,Texture=135349,Link="|cffff8000|Hitem:19018::::::::40:::::::|h[Dormant Wind Kissed Blade]|h|r",EquipLoc="",Type="Quest"},["Light Leather Pants"]={SubType="Leather",Level=19,id=7282,StackCount=1,Rarity=2,MinLevel=14,SellPrice=599,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7282::::::::40:::::::|h[Light Leather Pants]|h|r",Type="Armor"},["Black Amnesty"]={SubType="Daggers",Level=66,id=19166,StackCount=1,Rarity=4,MinLevel=60,SellPrice=92896,Texture=135648,Link="|cffa335ee|Hitem:19166::::::::40:::::::|h[Black Amnesty]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Codex of Mind Blast"]={SubType="Book",Level=10,id=8958,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133741,Link="|cffffffff|Hitem:8958::::::::40:::::::|h[Codex of Mind Blast]|h|r",EquipLoc="",Type="Recipe"},["Bloodwoven Cloak"]={SubType="Cloth",Level=43,id=14261,StackCount=1,Rarity=2,MinLevel=38,SellPrice=4044,Texture=133760,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14261::::::::40:::::::|h[Bloodwoven Cloak]|h|r"},["Guardian Pants"]={SubType="Leather",Level=32,id=5962,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2794,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:5962::::::::40:::::::|h[Guardian Pants]|h|r"},["Sulfuras, Hand of Ragnaros"]={SubType="Two-Handed Maces",Level=80,id=17182,StackCount=1,Rarity=5,MinLevel=60,SellPrice=332623,Texture=133066,EquipLoc="INVTYPE_2HWEAPON",Link="|cffff8000|Hitem:17182::::::::40:::::::|h[Sulfuras, Hand of Ragnaros]|h|r",Type="Weapon"},["Deprecated Miniature Silver Hammer"]={SubType="Miscellaneous",Level=40,id=1914,StackCount=1,Rarity=0,MinLevel=35,SellPrice=212,Texture=133038,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff9d9d9d|Hitem:1914::::::::40:::::::|h[Deprecated Miniature Silver Hammer]|h|r"},["Pattern: Might of the Timbermaw"]={SubType="Leatherworking",Level=58,id=19326,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5500,Texture=134939,Link="|cffffffff|Hitem:19326::::::::40:::::::|h[Pattern: Might of the Timbermaw]|h|r",EquipLoc="",Type="Recipe"},["Truesilver Gauntlets"]={SubType="Plate",Level=45,id=7938,StackCount=1,Rarity=3,MinLevel=40,SellPrice=4028,Texture=132963,Link="|cff0070dd|Hitem:7938::::::::40:::::::|h[Truesilver Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Rough Arrow"]={SubType="Arrow",Level=5,id=2512,StackCount=200,Rarity=1,MinLevel=1,SellPrice=0,Texture=132382,Link="|cffffffff|Hitem:2512::::::::40:::::::|h[Rough Arrow]|h|r",EquipLoc="INVTYPE_AMMO",Type="Projectile"},["Kobold Mining Mallet"]={SubType="One-Handed Maces",Level=7,id=1389,StackCount=1,Rarity=1,MinLevel=2,SellPrice=58,Texture=133046,Type="Weapon",Link="|cffffffff|Hitem:1389::::::::40:::::::|h[Kobold Mining Mallet]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Khan Shaka's Head"]={SubType="Quest",Level=1,id=6073,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134151,Type="Quest",Link="|cffffffff|Hitem:6073::::::::40:::::::|h[Khan Shaka's Head]|h|r",EquipLoc=""},["Woven Ivy Necklace DEPRECATED"]={SubType="Miscellaneous",Level=51,id=19122,StackCount=1,Rarity=3,MinLevel=0,SellPrice=21141,Texture=134196,Link="|cff0070dd|Hitem:19122::::::::40:::::::|h[Woven Ivy Necklace DEPRECATED]|h|r",EquipLoc="",Type="Armor"},["Green Mechanostrider"]={SubType="Junk",Level=40,id=13321,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132247,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:13321::::::::40:::::::|h[Green Mechanostrider]|h|r"},["Mageflame Cloak"]={SubType="Cloth",Level=58,id=13007,StackCount=1,Rarity=3,MinLevel=53,SellPrice=13585,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:13007::::::::40:::::::|h[Mageflame Cloak]|h|r"},["Crystal Phial"]={SubType="Quest",Level=1,id=5185,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134776,EquipLoc="",Link="|cffffffff|Hitem:5185::::::::40:::::::|h[Crystal Phial]|h|r",Type="Quest"},["Tablet of Restoration V"]={SubType="Book",Level=32,id=4179,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2500,Texture=134459,Link="|cffffffff|Hitem:4179::::::::40:::::::|h[Tablet of Restoration V]|h|r",EquipLoc="",Type="Recipe"},["PVP Plate Boots Alliance"]={SubType="Plate",Level=60,id=16030,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7270,Texture=132590,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:16030::::::::40:::::::|h[PVP Plate Boots Alliance]|h|r",Type="Armor"},["Skeletal Club"]={SubType="One-Handed Maces",Level=24,id=2256,StackCount=1,Rarity=3,MinLevel=19,SellPrice=2996,Texture=133729,Link="|cff0070dd|Hitem:2256::::::::40:::::::|h[Skeletal Club]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Resist Test Item"]={SubType="Miscellaneous",Level=1,id=10555,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1632,Texture=134412,EquipLoc="INVTYPE_FINGER",Link="|cffffffff|Hitem:10555::::::::40:::::::|h[Resist Test Item]|h|r",Type="Armor"},["Blesswind Hammer"]={SubType="One-Handed Maces",Level=55,id=15229,StackCount=1,Rarity=2,MinLevel=50,SellPrice=31924,Texture=133039,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15229::::::::40:::::::|h[Blesswind Hammer]|h|r",Type="Weapon"},["Dargol's Hauberk"]={SubType="Mail",Level=13,id=3330,StackCount=1,Rarity=2,MinLevel=8,SellPrice=281,Texture=132624,Link="|cff1eff00|Hitem:3330::::::::40:::::::|h[Dargol's Hauberk]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Marshal's Satin Pants"]={SubType="Cloth",Level=71,id=17603,StackCount=1,Rarity=4,MinLevel=60,SellPrice=23626,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:17603::::::::40:::::::|h[Marshal's Satin Pants]|h|r",Type="Armor"},["Oathstone of Ysera's Dragonflight"]={SubType="Quest",Level=48,id=10589,StackCount=1,Rarity=1,MinLevel=48,SellPrice=0,Texture=134421,EquipLoc="",Link="|cffffffff|Hitem:10589::::::::40:::::::|h[Oathstone of Ysera's Dragonflight]|h|r",Type="Quest"},["Demonslayer"]={SubType="Two-Handed Swords",Level=57,id=13044,StackCount=1,Rarity=3,MinLevel=52,SellPrice=52800,Texture=135273,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13044::::::::40:::::::|h[Demonslayer]|h|r"},["Keg of Thunderbrew"]={SubType="Consumable",Level=15,id=1262,StackCount=1,Rarity=1,MinLevel=0,SellPrice=111,Texture=132621,Link="|cffffffff|Hitem:1262::::::::40:::::::|h[Keg of Thunderbrew]|h|r",EquipLoc="",Type="Consumable"},["Pridewing Venom Sac"]={SubType="Quest",Level=1,id=5808,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,Link="|cffffffff|Hitem:5808::::::::40:::::::|h[Pridewing Venom Sac]|h|r",EquipLoc="",Type="Quest"},["Dark Iron Plate"]={SubType="Plate",Level=59,id=11604,StackCount=1,Rarity=3,MinLevel=54,SellPrice=19428,Texture=132743,Type="Armor",Link="|cff0070dd|Hitem:11604::::::::40:::::::|h[Dark Iron Plate]|h|r",EquipLoc="INVTYPE_CHEST"},["Thorium Boots"]={SubType="Plate",Level=56,id=12409,StackCount=1,Rarity=2,MinLevel=51,SellPrice=10336,Texture=132589,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:12409::::::::40:::::::|h[Thorium Boots]|h|r"},["Empty Water Tube"]={SubType="Quest",Level=1,id=14338,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134865,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14338::::::::40:::::::|h[Empty Water Tube]|h|r"},["Legionnaire's Mail Leggings"]={SubType="Mail",Level=63,id=16523,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17349,Texture=134589,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16523::::::::40:::::::|h[Legionnaire's Mail Leggings]|h|r",Type="Armor"},["Greenstone Talisman"]={SubType="Miscellaneous",Level=35,id=12029,StackCount=1,Rarity=2,MinLevel=30,SellPrice=5395,Texture=133288,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12029::::::::40:::::::|h[Greenstone Talisman]|h|r"},["PVP - Horde Tower Plans"]={SubType="Key",Level=1,id=6207,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134238,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:6207::::::::40:::::::|h[PVP - Horde Tower Plans]|h|r"},["Band of Icy Depths"]={SubType="Miscellaneous",Level=77,id=21526,StackCount=1,Rarity=4,MinLevel=60,SellPrice=828085,Texture=133377,Link="|cffa335ee|Hitem:21526::::::::40:::::::|h[Band of Icy Depths]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Heavy Sharpening Stone"]={SubType="Trade Goods",Level=25,id=2871,StackCount=20,Rarity=1,MinLevel=15,SellPrice=40,Texture=135250,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:2871::::::::40:::::::|h[Heavy Sharpening Stone]|h|r"},["Logging Rope"]={SubType="Quest",Level=1,id=16743,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133676,EquipLoc="",Link="|cffffffff|Hitem:16743::::::::40:::::::|h[Logging Rope]|h|r",Type="Quest"},["Flask of Supreme Power"]={SubType="Consumable",Level=60,id=13512,StackCount=5,Rarity=1,MinLevel=50,SellPrice=5000,Texture=134821,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13512::::::::40:::::::|h[Flask of Supreme Power]|h|r"},["Core Leather"]={SubType="Trade Goods",Level=60,id=17012,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1000,Texture=132386,EquipLoc="",Link="|cffffffff|Hitem:17012::::::::40:::::::|h[Core Leather]|h|r",Type="Trade Goods"},["Abjurer's Gloves"]={SubType="Cloth",Level=49,id=9939,StackCount=1,Rarity=2,MinLevel=44,SellPrice=4317,Texture=132951,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9939::::::::40:::::::|h[Abjurer's Gloves]|h|r"},["Dragonmaw Shortsword"]={SubType="One-Handed Swords",Level=28,id=753,StackCount=1,Rarity=2,MinLevel=23,SellPrice=3842,Texture=135346,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:753::::::::40:::::::|h[Dragonmaw Shortsword]|h|r",Type="Weapon"},["Boots of the Fallen Hero"]={SubType="Plate",Level=75,id=21688,StackCount=1,Rarity=4,MinLevel=60,SellPrice=39568,Texture=132582,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:21688::::::::40:::::::|h[Boots of the Fallen Hero]|h|r"},["Malice Stone Pendant"]={SubType="Miscellaneous",Level=83,id=22943,StackCount=1,Rarity=4,MinLevel=60,SellPrice=102777,Texture=133319,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:22943::::::::40:::::::|h[Malice Stone Pendant]|h|r"},["Tablet of Rockbiter Weapon V"]={SubType="Book",Level=58,id=9175,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9175::::::::40:::::::|h[Tablet of Rockbiter Weapon V]|h|r"},["Weatherworn Parchment"]={SubType="Quest",Level=1,id=6489,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6489::::::::40:::::::|h[Weatherworn Parchment]|h|r"},["General's Mail Bracers"]={SubType="Mail",Level=65,id=16576,StackCount=1,Rarity=4,MinLevel=60,SellPrice=12420,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16576::::::::40:::::::|h[General's Mail Bracers]|h|r",Type="Armor"},["QAEnchant Bracer +9 Stamina"]={SubType="Consumable",Level=1,id=17828,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17828::::::::40:::::::|h[QAEnchant Bracer +9 Stamina]|h|r",Type="Consumable"},["Runic Leather Pants"]={SubType="Leather",Level=60,id=15095,StackCount=1,Rarity=2,MinLevel=55,SellPrice=20885,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15095::::::::40:::::::|h[Runic Leather Pants]|h|r",Type="Armor"},["Overlord's Crimson Band"]={SubType="Miscellaneous",Level=71,id=19873,StackCount=1,Rarity=3,MinLevel=60,SellPrice=48660,Texture=133381,Link="|cff0070dd|Hitem:19873::::::::40:::::::|h[Overlord's Crimson Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Simple Branch"]={SubType="Miscellaneous",Level=15,id=15933,StackCount=1,Rarity=2,MinLevel=10,SellPrice=620,Texture=135139,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15933::::::::40:::::::|h[Simple Branch]|h|r",Type="Armor"},["Gemmed Copper Gauntlets"]={SubType="Mail",Level=15,id=3474,StackCount=1,Rarity=2,MinLevel=10,SellPrice=216,Texture=132939,Link="|cff1eff00|Hitem:3474::::::::40:::::::|h[Gemmed Copper Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Smokywood Supplies"]={SubType="Quest",Level=1,id=21545,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Link="|cffffffff|Hitem:21545::::::::40:::::::|h[Smokywood Supplies]|h|r",EquipLoc="",Type="Quest"},["Desecrated Pauldrons"]={SubType="Junk",Level=60,id=22354,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133835,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:22354::::::::40:::::::|h[Desecrated Pauldrons]|h|r"},["Recipe: Living Action Potion"]={SubType="Alchemy",Level=57,id=20013,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:20013::::::::40:::::::|h[Recipe: Living Action Potion]|h|r"},["Large Scorpid Claw"]={SubType="Junk",Level=1,id=19934,StackCount=10,Rarity=0,MinLevel=0,SellPrice=1400,Texture=133723,Link="|cff9d9d9d|Hitem:19934::::::::40:::::::|h[Large Scorpid Claw]|h|r",EquipLoc="",Type="Miscellaneous"},["Gift of Friendship: Darnassus"]={SubType="Consumable",Level=1,id=22167,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135449,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22167::::::::40:::::::|h[Gift of Friendship: Darnassus]|h|r"},["Test Shadow Resist Cloth LockBox"]={SubType="Junk",Level=1,id=16181,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16181::::::::40:::::::|h[Test Shadow Resist Cloth LockBox]|h|r",Type="Miscellaneous"},["Calico Pants"]={SubType="Cloth",Level=11,id=1499,StackCount=1,Rarity=0,MinLevel=6,SellPrice=51,Texture=134591,Link="|cff9d9d9d|Hitem:1499::::::::40:::::::|h[Calico Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Brilliant Mana Oil"]={SubType="Trade Goods",Level=55,id=20748,StackCount=1,Rarity=1,MinLevel=45,SellPrice=1000,Texture=134722,Link="|cffffffff|Hitem:20748::::::::40:::::::|h[Brilliant Mana Oil]|h|r",EquipLoc="",Type="Trade Goods"},["Cryptstalker Tunic"]={SubType="Mail",Level=92,id=22436,StackCount=1,Rarity=4,MinLevel=60,SellPrice=193311,Texture=132637,Link="|cffa335ee|Hitem:22436::::::::40:::::::|h[Cryptstalker Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Nemesis Gloves"]={SubType="Cloth",Level=76,id=16928,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27573,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16928::::::::40:::::::|h[Nemesis Gloves]|h|r",Type="Armor"},["Buckled Harness"]={SubType="Leather",Level=17,id=6523,StackCount=1,Rarity=1,MinLevel=12,SellPrice=284,Texture=132716,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:6523::::::::40:::::::|h[Buckled Harness]|h|r"},["Darnassus Gift Collection"]={SubType="Junk",Level=1,id=22133,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134141,Link="|cffffffff|Hitem:22133::::::::40:::::::|h[Darnassus Gift Collection]|h|r",EquipLoc="",Type="Miscellaneous"},["Icy Cloak"]={SubType="Cloth",Level=40,id=4327,StackCount=1,Rarity=3,MinLevel=35,SellPrice=3788,Texture=133756,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:4327::::::::40:::::::|h[Icy Cloak]|h|r"},["Monster - Dagger, Jeweled Hilt"]={SubType="Daggers",Level=1,id=5284,StackCount=1,Rarity=0,MinLevel=1,SellPrice=6,Texture=135641,Link="|cff9d9d9d|Hitem:5284::::::::40:::::::|h[Monster - Dagger, Jeweled Hilt]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Primal Hakkari Bindings"]={SubType="Quest",Level=1,id=19716,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=132604,Link="|cffa335ee|Hitem:19716::::::::40:::::::|h[Primal Hakkari Bindings]|h|r",EquipLoc="",Type="Quest"},["Gordok Ogre Suit"]={SubType="Consumable",Level=55,id=18258,StackCount=1,Rarity=2,MinLevel=55,SellPrice=0,Texture=132636,Type="Consumable",Link="|cff1eff00|Hitem:18258::::::::40:::::::|h[Gordok Ogre Suit]|h|r",EquipLoc=""},["Caged Worg Pup"]={SubType="Quest",Level=1,id=12263,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132599,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12263::::::::40:::::::|h[Caged Worg Pup]|h|r"},["90 Green Frost Neck"]={SubType="Miscellaneous",Level=90,id=20345,StackCount=1,Rarity=2,MinLevel=60,SellPrice=12157,Texture=133441,Link="|cff1eff00|Hitem:20345::::::::40:::::::|h[90 Green Frost Neck]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Monster - Axe, Horde Spiked A04"]={SubType="One-Handed Axes",Level=1,id=14877,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14877::::::::40:::::::|h[Monster - Axe, Horde Spiked A04]|h|r"},["Dreadmist Wraps"]={SubType="Cloth",Level=59,id=16705,StackCount=1,Rarity=3,MinLevel=54,SellPrice=9127,Texture=132966,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16705::::::::40:::::::|h[Dreadmist Wraps]|h|r",Type="Armor"},["Plagueheart Gloves"]={SubType="Cloth",Level=88,id=22509,StackCount=1,Rarity=4,MinLevel=60,SellPrice=53023,Texture=132951,Link="|cffa335ee|Hitem:22509::::::::40:::::::|h[Plagueheart Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Tyrande's Staff"]={SubType="Staves",Level=4,id=14083,StackCount=1,Rarity=1,MinLevel=1,SellPrice=20,Texture=135151,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:14083::::::::40:::::::|h[Tyrande's Staff]|h|r"},["Wanderer's Shoulders"]={SubType="Leather",Level=57,id=10113,StackCount=1,Rarity=2,MinLevel=52,SellPrice=13541,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10113::::::::40:::::::|h[Wanderer's Shoulders]|h|r",Type="Armor"},["Thick Scale Breastplate"]={SubType="Mail",Level=36,id=15546,StackCount=1,Rarity=2,MinLevel=31,SellPrice=4793,Texture=132647,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15546::::::::40:::::::|h[Thick Scale Breastplate]|h|r",Type="Armor"},["Smooth Leather Helmet"]={SubType="Leather",Level=57,id=8753,StackCount=1,Rarity=0,MinLevel=52,SellPrice=5198,Texture=133101,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:8753::::::::40:::::::|h[Smooth Leather Helmet]|h|r"},["Disciple's Pants"]={SubType="Cloth",Level=12,id=6267,StackCount=1,Rarity=2,MinLevel=7,SellPrice=149,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:6267::::::::40:::::::|h[Disciple's Pants]|h|r"},["Primal Leggings"]={SubType="Leather",Level=11,id=15009,StackCount=1,Rarity=2,MinLevel=6,SellPrice=162,Texture=134585,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15009::::::::40:::::::|h[Primal Leggings]|h|r",Type="Armor"},["Big Voodoo Mask"]={SubType="Leather",Level=44,id=8201,StackCount=1,Rarity=2,MinLevel=39,SellPrice=5350,Texture=132482,Link="|cff1eff00|Hitem:8201::::::::40:::::::|h[Big Voodoo Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Long Bo Staff"]={SubType="Staves",Level=8,id=767,StackCount=1,Rarity=1,MinLevel=3,SellPrice=100,Texture=135145,Type="Weapon",Link="|cffffffff|Hitem:767::::::::40:::::::|h[Long Bo Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Crusader's Cloak"]={SubType="Cloth",Level=50,id=10194,StackCount=1,Rarity=2,MinLevel=45,SellPrice=7345,Texture=133766,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10194::::::::40:::::::|h[Crusader's Cloak]|h|r",Type="Armor"},["Pattern: Cindercloth Pants"]={SubType="Tailoring",Level=56,id=14490,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14490::::::::40:::::::|h[Pattern: Cindercloth Pants]|h|r"},["Goblin Transponder"]={SubType="Quest",Level=1,id=9173,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132488,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9173::::::::40:::::::|h[Goblin Transponder]|h|r"},["Tome of Frostbolt VII"]={SubType="Book",Level=38,id=8842,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8842::::::::40:::::::|h[Tome of Frostbolt VII]|h|r"},["Bonecaster's Crown"]={SubType="Cloth",Level=59,id=14307,StackCount=1,Rarity=2,MinLevel=54,SellPrice=12064,Texture=132768,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14307::::::::40:::::::|h[Bonecaster's Crown]|h|r"},["Red Burlap Bandana"]={SubType="Quest",Level=1,id=752,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133694,Link="|cffffffff|Hitem:752::::::::40:::::::|h[Red Burlap Bandana]|h|r",EquipLoc="",Type="Quest"},["Serena's Head"]={SubType="Quest",Level=1,id=5067,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136220,EquipLoc="",Link="|cffffffff|Hitem:5067::::::::40:::::::|h[Serena's Head]|h|r",Type="Quest"},["Ravager's Shield"]={SubType="Shields",Level=44,id=14777,StackCount=1,Rarity=2,MinLevel=39,SellPrice=9710,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14777::::::::40:::::::|h[Ravager's Shield]|h|r"},["Pattern: Onyxia Scale Cloak"]={SubType="Leatherworking",Level=60,id=15769,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7500,Texture=134939,EquipLoc="",Link="|cff0070dd|Hitem:15769::::::::40:::::::|h[Pattern: Onyxia Scale Cloak]|h|r",Type="Recipe"},["Lesser Wizard Oil"]={SubType="Trade Goods",Level=40,id=20746,StackCount=1,Rarity=1,MinLevel=30,SellPrice=1000,Texture=134725,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:20746::::::::40:::::::|h[Lesser Wizard Oil]|h|r"},["Punctured Voodoo Doll"]={SubType="Junk",Level=1,id=19813,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134231,Link="|cff1eff00|Hitem:19813::::::::40:::::::|h[Punctured Voodoo Doll]|h|r",EquipLoc="",Type="Miscellaneous"},["Arcane Shard"]={SubType="Junk",Level=1,id=20085,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134137,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:20085::::::::40:::::::|h[Arcane Shard]|h|r"},["Zulian Defender"]={SubType="Shields",Level=68,id=19915,StackCount=1,Rarity=3,MinLevel=60,SellPrice=48826,Texture=134968,Link="|cff0070dd|Hitem:19915::::::::40:::::::|h[Zulian Defender]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Tablet of Flametongue Weapon"]={SubType="Book",Level=10,id=9059,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9059::::::::40:::::::|h[Tablet of Flametongue Weapon]|h|r"},["Indomitable Epaulets"]={SubType="Leather",Level=61,id=14688,StackCount=1,Rarity=2,MinLevel=56,SellPrice=16742,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14688::::::::40:::::::|h[Indomitable Epaulets]|h|r"},["Plans: Dazzling Mithril Rapier"]={SubType="Blacksmithing",Level=48,id=7993,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7993::::::::40:::::::|h[Plans: Dazzling Mithril Rapier]|h|r",Type="Recipe"},["Mark of the Dragon Lord"]={SubType="Miscellaneous",Level=61,id=13143,StackCount=1,Rarity=4,MinLevel=56,SellPrice=21372,Texture=133359,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:13143::::::::40:::::::|h[Mark of the Dragon Lord]|h|r"},["Genesis Trousers"]={SubType="Leather",Level=81,id=21356,StackCount=1,Rarity=4,MinLevel=60,SellPrice=90751,Texture=134626,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:21356::::::::40:::::::|h[Genesis Trousers]|h|r"},["Heavy Hammer"]={SubType="One-Handed Maces",Level=12,id=1510,StackCount=1,Rarity=0,MinLevel=7,SellPrice=150,Texture=133052,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:1510::::::::40:::::::|h[Heavy Hammer]|h|r"},["Scorpashi Sash"]={SubType="Leather",Level=45,id=14652,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4215,Texture=132501,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14652::::::::40:::::::|h[Scorpashi Sash]|h|r"},["Box of Souls"]={SubType="Soul Bag",Level=30,id=22244,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1000,Texture=134711,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:22244::::::::40:::::::|h[Box of Souls]|h|r"},["Death's Bargain"]={SubType="Shields",Level=83,id=23075,StackCount=1,Rarity=4,MinLevel=60,SellPrice=133426,Texture=132389,Link="|cffa335ee|Hitem:23075::::::::40:::::::|h[Death's Bargain]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Flimsy Male Troll Mask"]={SubType="Miscellaneous",Level=1,id=20568,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134177,Link="|cffffffff|Hitem:20568::::::::40:::::::|h[Flimsy Male Troll Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Mithril Bar"]={SubType="Trade Goods",Level=40,id=3860,StackCount=20,Rarity=1,MinLevel=0,SellPrice=400,Texture=133220,Link="|cffffffff|Hitem:3860::::::::40:::::::|h[Mithril Bar]|h|r",EquipLoc="",Type="Trade Goods"},["Kodo Horn Fragment"]={SubType="Junk",Level=1,id=4780,StackCount=5,Rarity=0,MinLevel=0,SellPrice=56,Texture=135232,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:4780::::::::40:::::::|h[Kodo Horn Fragment]|h|r"},["Monster - Mace2H, Horde Spiked Maul"]={SubType="Two-Handed Maces",Level=1,id=14818,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14818::::::::40:::::::|h[Monster - Mace2H, Horde Spiked Maul]|h|r"},["Tablet of Nullify Disease II"]={SubType="Book",Level=26,id=1063,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1500,Texture=134459,Type="Recipe",Link="|cffffffff|Hitem:1063::::::::40:::::::|h[Tablet of Nullify Disease II]|h|r",EquipLoc=""},["Elder's Cane"]={SubType="Staves",Level=5,id=5776,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30,Texture=135154,Link="|cffffffff|Hitem:5776::::::::40:::::::|h[Elder's Cane]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Level 20 Test Gear Leather - Druid/Shaman"]={SubType="Junk",Level=1,id=13660,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13660::::::::40:::::::|h[Level 20 Test Gear Leather - Druid/Shaman]|h|r"},["Wastewander Water Pouch"]={SubType="Junk",Level=1,id=8483,StackCount=20,Rarity=1,MinLevel=0,SellPrice=171,Texture=132816,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:8483::::::::40:::::::|h[Wastewander Water Pouch]|h|r"},["Frayed Shoes"]={SubType="Cloth",Level=4,id=1374,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:1374::::::::40:::::::|h[Frayed Shoes]|h|r"},["Untested Scorpid Sample"]={SubType="Quest",Level=0,id=9442,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136128,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9442::::::::40:::::::|h[Untested Scorpid Sample]|h|r"},["The Soul Harvester's Bindings"]={SubType="Cloth",Level=83,id=23021,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42608,Texture=132606,Link="|cffa335ee|Hitem:23021::::::::40:::::::|h[The Soul Harvester's Bindings]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Mighty Troll's Blood Potion"]={SubType="Consumable",Level=36,id=3826,StackCount=5,Rarity=1,MinLevel=26,SellPrice=105,Texture=134859,Type="Consumable",Link="|cffffffff|Hitem:3826::::::::40:::::::|h[Mighty Troll's Blood Potion]|h|r",EquipLoc=""},["Linked Chain Boots"]={SubType="Mail",Level=21,id=1747,StackCount=1,Rarity=0,MinLevel=16,SellPrice=302,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:1747::::::::40:::::::|h[Linked Chain Boots]|h|r",Type="Armor"},["Laminated Recurve Bow"]={SubType="Bows",Level=16,id=2507,StackCount=1,Rarity=1,MinLevel=11,SellPrice=350,Texture=135489,Link="|cffffffff|Hitem:2507::::::::40:::::::|h[Laminated Recurve Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Grunt's AnkleWraps"]={SubType="Mail",Level=21,id=15506,StackCount=1,Rarity=2,MinLevel=16,SellPrice=723,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15506::::::::40:::::::|h[Grunt's AnkleWraps]|h|r",Type="Armor"},["Ribsteel Footguards"]={SubType="Plate",Level=61,id=13259,StackCount=1,Rarity=3,MinLevel=56,SellPrice=16069,Texture=132589,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13259::::::::40:::::::|h[Ribsteel Footguards]|h|r"},["Battleforge Armor"]={SubType="Mail",Level=29,id=6592,StackCount=1,Rarity=2,MinLevel=24,SellPrice=2447,Texture=132629,Type="Armor",Link="|cff1eff00|Hitem:6592::::::::40:::::::|h[Battleforge Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Scepter of Beckoning: Water"]={SubType="Junk",Level=1,id=20450,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135473,Link="|cffffffff|Hitem:20450::::::::40:::::::|h[Scepter of Beckoning: Water]|h|r",EquipLoc="",Type="Miscellaneous"},["Stave of Equinex"]={SubType="Quest",Level=1,id=9306,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135157,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9306::::::::40:::::::|h[Stave of Equinex]|h|r"},["Burnt Hide Bracers"]={SubType="Leather",Level=12,id=3158,StackCount=1,Rarity=1,MinLevel=0,SellPrice=60,Texture=132607,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3158::::::::40:::::::|h[Burnt Hide Bracers]|h|r"},["Private's Tabard"]={SubType="Miscellaneous",Level=20,id=15196,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134472,EquipLoc="INVTYPE_TABARD",Link="|cffffffff|Hitem:15196::::::::40:::::::|h[Private's Tabard]|h|r",Type="Armor"},["Robes of Prophecy"]={SubType="Cloth",Level=66,id=16815,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33855,Texture=132644,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:16815::::::::40:::::::|h[Robes of Prophecy]|h|r",Type="Armor"},["Spitfire Gauntlets"]={SubType="Mail",Level=62,id=20480,StackCount=1,Rarity=3,MinLevel=57,SellPrice=17078,Texture=132945,Link="|cff0070dd|Hitem:20480::::::::40:::::::|h[Spitfire Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Hippogryph Muisek Vessel"]={SubType="Quest",Level=1,id=9619,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133841,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9619::::::::40:::::::|h[Hippogryph Muisek Vessel]|h|r"},["Archer's Longbow"]={SubType="Bows",Level=32,id=15285,StackCount=1,Rarity=2,MinLevel=27,SellPrice=4061,Texture=135491,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:15285::::::::40:::::::|h[Archer's Longbow]|h|r",Type="Weapon"},["Runed Golem Shackles"]={SubType="Plate",Level=53,id=12550,StackCount=1,Rarity=3,MinLevel=48,SellPrice=6464,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:12550::::::::40:::::::|h[Runed Golem Shackles]|h|r"},["Squire's Shirt"]={SubType="Miscellaneous",Level=1,id=45,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:45::::::::40:::::::|h[Squire's Shirt]|h|r"},["Dirty Leather Gloves"]={SubType="Leather",Level=5,id=714,StackCount=1,Rarity=1,MinLevel=1,SellPrice=6,Texture=132952,Link="|cffffffff|Hitem:714::::::::40:::::::|h[Dirty Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Medium Armor Kit"]={SubType="Consumable",Level=15,id=2313,StackCount=10,Rarity=1,MinLevel=5,SellPrice=200,Texture=133609,EquipLoc="",Link="|cffffffff|Hitem:2313::::::::40:::::::|h[Medium Armor Kit]|h|r",Type="Consumable"},["Gray Leather D02 Bracers"]={SubType="Leather",Level=1,id=3546,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132603,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3546::::::::40:::::::|h[Gray Leather D02 Bracers]|h|r",Type="Armor"},["Recipe: Crocolisk Gumbo"]={SubType="Cooking",Level=25,id=3681,StackCount=1,Rarity=1,MinLevel=0,SellPrice=400,Texture=134939,Link="|cffffffff|Hitem:3681::::::::40:::::::|h[Recipe: Crocolisk Gumbo]|h|r",EquipLoc="",Type="Recipe"},["Shovelphlange's Mining Axe"]={SubType="One-Handed Axes",Level=38,id=9378,StackCount=1,Rarity=3,MinLevel=33,SellPrice=11380,Texture=134708,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9378::::::::40:::::::|h[Shovelphlange's Mining Axe]|h|r"},["Large Moneybag"]={SubType="Bag",Level=15,id=6754,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=133639,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:6754::::::::40:::::::|h[Large Moneybag]|h|r"},["Wristguards of Elemental Fury"]={SubType="Mail",Level=88,id=21588,StackCount=1,Rarity=4,MinLevel=60,SellPrice=80408,Texture=132613,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:21588::::::::40:::::::|h[Wristguards of Elemental Fury]|h|r"},["Forged Steel Bars"]={SubType="Quest",Level=1,id=6534,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133233,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6534::::::::40:::::::|h[Forged Steel Bars]|h|r"},["Sathrah's Sacrifice"]={SubType="Quest",Level=1,id=8155,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135652,Link="|cffffffff|Hitem:8155::::::::40:::::::|h[Sathrah's Sacrifice]|h|r",EquipLoc="",Type="Quest"},["Frayed Belt"]={SubType="Cloth",Level=3,id=3363,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=132493,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:3363::::::::40:::::::|h[Frayed Belt]|h|r"},["Runed Arcanite Rod"]={SubType="Trade Goods",Level=58,id=16207,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=135471,EquipLoc="",Link="|cffffffff|Hitem:16207::::::::40:::::::|h[Runed Arcanite Rod]|h|r",Type="Trade Goods"},["Councillor's Tunic"]={SubType="Cloth",Level=59,id=10104,StackCount=1,Rarity=2,MinLevel=54,SellPrice=15137,Texture=132651,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10104::::::::40:::::::|h[Councillor's Tunic]|h|r",Type="Armor"},["Enchanted Mageweave Pouch"]={SubType="Enchanting Bag",Level=45,id=22246,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2500,Texture=133665,Link="|cff1eff00|Hitem:22246::::::::40:::::::|h[Enchanted Mageweave Pouch]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Bag of Water Elemental Bracers"]={SubType="Quest",Level=1,id=3960,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133633,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3960::::::::40:::::::|h[Bag of Water Elemental Bracers]|h|r"},["Pattern: Black Dragonscale Boots"]={SubType="Leatherworking",Level=60,id=17025,StackCount=1,Rarity=1,MinLevel=0,SellPrice=40000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:17025::::::::40:::::::|h[Pattern: Black Dragonscale Boots]|h|r",Type="Recipe"},["Imposing Bandana"]={SubType="Leather",Level=48,id=15167,StackCount=1,Rarity=2,MinLevel=43,SellPrice=7484,Texture=133694,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15167::::::::40:::::::|h[Imposing Bandana]|h|r",Type="Armor"},["Umbral Dagger"]={SubType="Daggers",Level=15,id=6981,StackCount=1,Rarity=2,MinLevel=0,SellPrice=680,Texture=135651,Type="Weapon",Link="|cff1eff00|Hitem:6981::::::::40:::::::|h[Umbral Dagger]|h|r",EquipLoc="INVTYPE_WEAPON"},["Monster - Mace, Horde A04 Pale - Bone Wrench"]={SubType="One-Handed Maces",Level=1,id=22341,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133483,Link="|cff9d9d9d|Hitem:22341::::::::40:::::::|h[Monster - Mace, Horde A04 Pale - Bone Wrench]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Orcish Cleaver"]={SubType="One-Handed Axes",Level=21,id=4949,StackCount=1,Rarity=2,MinLevel=16,SellPrice=1706,Texture=132414,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:4949::::::::40:::::::|h[Orcish Cleaver]|h|r"},["Black Lotus"]={SubType="Trade Goods",Level=60,id=13468,StackCount=20,Rarity=2,MinLevel=0,SellPrice=1000,Texture=134202,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:13468::::::::40:::::::|h[Black Lotus]|h|r"},["Level 55 Test Gear Mail - Hunter"]={SubType="Junk",Level=1,id=13689,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13689::::::::40:::::::|h[Level 55 Test Gear Mail - Hunter]|h|r"},["Sea Turtle Remains"]={SubType="Quest",Level=0,id=12289,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133724,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12289::::::::40:::::::|h[Sea Turtle Remains]|h|r"},["Fine Thread"]={SubType="Trade Goods",Level=20,id=2321,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=132912,EquipLoc="",Link="|cffffffff|Hitem:2321::::::::40:::::::|h[Fine Thread]|h|r",Type="Trade Goods"},["Test Frost Res Shoulders Leather"]={SubType="Leather",Level=35,id=16144,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2587,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16144::::::::40:::::::|h[Test Frost Res Shoulders Leather]|h|r",Type="Armor"},["Deprecated Heavy Blunderbuss"]={SubType="Guns",Level=1,id=1047,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=134537,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:1047::::::::40:::::::|h[Deprecated Heavy Blunderbuss]|h|r"},["A Small Pack"]={SubType="Quest",Level=1,id=11107,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133653,Type="Quest",Link="|cffffffff|Hitem:11107::::::::40:::::::|h[A Small Pack]|h|r",EquipLoc=""},["Stormshroud Pants"]={SubType="Leather",Level=55,id=15057,StackCount=1,Rarity=3,MinLevel=50,SellPrice=18728,Texture=134589,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:15057::::::::40:::::::|h[Stormshroud Pants]|h|r",Type="Armor"},["Acolyte Staff"]={SubType="Staves",Level=4,id=2487,StackCount=1,Rarity=1,MinLevel=1,SellPrice=20,Texture=135151,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:2487::::::::40:::::::|h[Acolyte Staff]|h|r"},["Recipe: Elixir of Tongues"]={SubType="Alchemy",Level=15,id=2556,StackCount=1,Rarity=1,MinLevel=0,SellPrice=40,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:2556::::::::40:::::::|h[Recipe: Elixir of Tongues]|h|r",EquipLoc=""},["Monster - Dagger, Claw of Chromaggus"]={SubType="Daggers",Level=1,id=23369,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135638,Link="|cff9d9d9d|Hitem:23369::::::::40:::::::|h[Monster - Dagger, Claw of Chromaggus]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Massive Iron Axe"]={SubType="Two-Handed Axes",Level=37,id=3855,StackCount=1,Rarity=2,MinLevel=32,SellPrice=11248,Texture=135423,Type="Weapon",Link="|cff1eff00|Hitem:3855::::::::40:::::::|h[Massive Iron Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Codex of Shadow Word: Pain III"]={SubType="Book",Level=18,id=1641,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=133741,Link="|cffffffff|Hitem:1641::::::::40:::::::|h[Codex of Shadow Word: Pain III]|h|r",EquipLoc="",Type="Recipe"},["Knightly Longsword"]={SubType="One-Handed Swords",Level=38,id=864,StackCount=1,Rarity=2,MinLevel=33,SellPrice=9716,Texture=135328,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:864::::::::40:::::::|h[Knightly Longsword]|h|r"},["Skyfury Helm"]={SubType="Mail",Level=62,id=20134,StackCount=1,Rarity=4,MinLevel=0,SellPrice=32440,Texture=133159,Link="|cffa335ee|Hitem:20134::::::::40:::::::|h[Skyfury Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Deprecated Sentinel Coif"]={SubType="Mail",Level=20,id=2275,StackCount=1,Rarity=3,MinLevel=15,SellPrice=795,Texture=133076,Link="|cff0070dd|Hitem:2275::::::::40:::::::|h[Deprecated Sentinel Coif]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Plans: Silvered Bronze Breastplate"]={SubType="Blacksmithing",Level=26,id=5578,StackCount=1,Rarity=2,MinLevel=0,SellPrice=300,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:5578::::::::40:::::::|h[Plans: Silvered Bronze Breastplate]|h|r",Type="Recipe"},["Kearnen's Journal"]={SubType="Book",Level=1,id=8046,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133736,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8046::::::::40:::::::|h[Kearnen's Journal]|h|r"},["Opal Runestone"]={SubType="Quest",Level=1,id=4844,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134116,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4844::::::::40:::::::|h[Opal Runestone]|h|r"},["A Letter to Grelin Whitebeard"]={SubType="Quest",Level=1,id=2188,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2188::::::::40:::::::|h[A Letter to Grelin Whitebeard]|h|r"},["Warmonger"]={SubType="Two-Handed Swords",Level=52,id=13052,StackCount=1,Rarity=3,MinLevel=47,SellPrice=41677,Texture=135356,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13052::::::::40:::::::|h[Warmonger]|h|r"},["Animist's Caress"]={SubType="Junk",Level=60,id=19790,StackCount=1,Rarity=3,MinLevel=60,SellPrice=0,Texture=136080,Link="|cff0070dd|Hitem:19790::::::::40:::::::|h[Animist's Caress]|h|r",EquipLoc="",Type="Miscellaneous"},["Libram: Holy Strike IV"]={SubType="Book",Level=24,id=8915,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133740,Link="|cffffffff|Hitem:8915::::::::40:::::::|h[Libram: Holy Strike IV]|h|r",EquipLoc="",Type="Recipe"},["Deprecated Ripped Vest"]={SubType="Miscellaneous",Level=1,id=3149,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:3149::::::::40:::::::|h[Deprecated Ripped Vest]|h|r",Type="Armor"},["Codex of Mind Control III"]={SubType="Book",Level=58,id=9024,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9024::::::::40:::::::|h[Codex of Mind Control III]|h|r"},["Kreeg's Mug"]={SubType="Miscellaneous",Level=60,id=18425,StackCount=1,Rarity=2,MinLevel=55,SellPrice=5537,Texture=132792,Type="Armor",Link="|cff1eff00|Hitem:18425::::::::40:::::::|h[Kreeg's Mug]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["TEST GUN Horde50"]={SubType="Guns",Level=52,id=18765,StackCount=1,Rarity=2,MinLevel=47,SellPrice=20113,Texture=135616,Type="Weapon",Link="|cff1eff00|Hitem:18765::::::::40:::::::|h[TEST GUN Horde50]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Embossed Plate Shield"]={SubType="Shields",Level=45,id=9935,StackCount=1,Rarity=2,MinLevel=40,SellPrice=10097,Texture=134951,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9935::::::::40:::::::|h[Embossed Plate Shield]|h|r"},["Venomshroud Belt"]={SubType="Cloth",Level=48,id=14446,StackCount=1,Rarity=2,MinLevel=43,SellPrice=4248,Texture=132514,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14446::::::::40:::::::|h[Venomshroud Belt]|h|r"},["Witherbark Skull"]={SubType="Quest",Level=1,id=9320,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133731,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9320::::::::40:::::::|h[Witherbark Skull]|h|r"},["Felheart Bracers"]={SubType="Cloth",Level=66,id=16804,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17517,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16804::::::::40:::::::|h[Felheart Bracers]|h|r",Type="Armor"},["High Warlord's Battle Axe"]={SubType="Two-Handed Axes",Level=78,id=18831,StackCount=1,Rarity=4,MinLevel=60,SellPrice=57448,Texture=132415,Type="Weapon",Link="|cffa335ee|Hitem:18831::::::::40:::::::|h[High Warlord's Battle Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Abjurer's Hood"]={SubType="Cloth",Level=50,id=9940,StackCount=1,Rarity=2,MinLevel=45,SellPrice=6954,Texture=133131,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9940::::::::40:::::::|h[Abjurer's Hood]|h|r"},["Argent Crusader"]={SubType="Staves",Level=62,id=13249,StackCount=1,Rarity=3,MinLevel=0,SellPrice=67782,Texture=135150,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13249::::::::40:::::::|h[Argent Crusader]|h|r"},["Breastplate of Valor"]={SubType="Plate",Level=63,id=16730,StackCount=1,Rarity=3,MinLevel=58,SellPrice=22609,Texture=132738,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16730::::::::40:::::::|h[Breastplate of Valor]|h|r",Type="Armor"},["Champion's Dreadweave Shoulders"]={SubType="Cloth",Level=63,id=17573,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8449,Texture=135032,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:17573::::::::40:::::::|h[Champion's Dreadweave Shoulders]|h|r",Type="Armor"},["Hatecrest Naga Scale"]={SubType="Quest",Level=0,id=9247,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134303,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9247::::::::40:::::::|h[Hatecrest Naga Scale]|h|r"},["QAEnchant Weapon Icy Chill"]={SubType="Consumable",Level=1,id=18667,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Type="Consumable",Link="|cffffffff|Hitem:18667::::::::40:::::::|h[QAEnchant Weapon Icy Chill]|h|r",EquipLoc=""},["Lifegiving Gem"]={SubType="Miscellaneous",Level=76,id=19341,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72039,Texture=134124,Link="|cffa335ee|Hitem:19341::::::::40:::::::|h[Lifegiving Gem]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Curative Animal Salve"]={SubType="Quest",Level=1,id=15826,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132801,EquipLoc="",Link="|cffffffff|Hitem:15826::::::::40:::::::|h[Curative Animal Salve]|h|r",Type="Quest"},["Bindings of Faith"]={SubType="Cloth",Level=88,id=22519,StackCount=1,Rarity=4,MinLevel=60,SellPrice=51109,Texture=132612,Link="|cffa335ee|Hitem:22519::::::::40:::::::|h[Bindings of Faith]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Radiant Gloves"]={SubType="Mail",Level=57,id=12418,StackCount=1,Rarity=2,MinLevel=52,SellPrice=10242,Texture=132960,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:12418::::::::40:::::::|h[Radiant Gloves]|h|r"},["Scaled Leather Shoulders"]={SubType="Leather",Level=32,id=9834,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2074,Texture=135039,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9834::::::::40:::::::|h[Scaled Leather Shoulders]|h|r"},["Bramblewood Helm"]={SubType="Leather",Level=70,id=22759,StackCount=1,Rarity=3,MinLevel=60,SellPrice=29190,Texture=133160,Link="|cff0070dd|Hitem:22759::::::::40:::::::|h[Bramblewood Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Ring of the Godslayer"]={SubType="Miscellaneous",Level=88,id=21596,StackCount=1,Rarity=4,MinLevel=60,SellPrice=89033,Texture=133428,Link="|cffa335ee|Hitem:21596::::::::40:::::::|h[Ring of the Godslayer]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Gryphonwing Long Bow"]={SubType="Bows",Level=55,id=13022,StackCount=1,Rarity=3,MinLevel=50,SellPrice=27990,Texture=135499,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff0070dd|Hitem:13022::::::::40:::::::|h[Gryphonwing Long Bow]|h|r"},["Spongy Morel"]={SubType="Consumable",Level=25,id=4606,StackCount=20,Rarity=1,MinLevel=15,SellPrice=25,Texture=134529,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:4606::::::::40:::::::|h[Spongy Morel]|h|r"},["Wanderer's Armor"]={SubType="Leather",Level=60,id=10105,StackCount=1,Rarity=2,MinLevel=55,SellPrice=19942,Texture=132725,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10105::::::::40:::::::|h[Wanderer's Armor]|h|r",Type="Armor"},["Arathi Basin Field Ration"]={SubType="Consumable",Level=35,id=20063,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=133951,Link="|cffffffff|Hitem:20063::::::::40:::::::|h[Arathi Basin Field Ration]|h|r",EquipLoc="",Type="Consumable"},["Fisherman Knife"]={SubType="Daggers",Level=14,id=2763,StackCount=1,Rarity=0,MinLevel=9,SellPrice=240,Texture=135637,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2763::::::::40:::::::|h[Fisherman Knife]|h|r"},["Murkwater Gauntlets"]={SubType="Mail",Level=46,id=10631,StackCount=1,Rarity=3,MinLevel=41,SellPrice=6086,Texture=132945,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:10631::::::::40:::::::|h[Murkwater Gauntlets]|h|r",Type="Armor"},["Handstitched Leather Pants"]={SubType="Leather",Level=10,id=2303,StackCount=1,Rarity=1,MinLevel=5,SellPrice=71,Texture=134706,Type="Armor",Link="|cffffffff|Hitem:2303::::::::40:::::::|h[Handstitched Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Handful of Rose Petals"]={SubType="Consumable",Level=1,id=22218,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133851,Link="|cffffffff|Hitem:22218::::::::40:::::::|h[Handful of Rose Petals]|h|r",EquipLoc="",Type="Consumable"},["Venture Co. Ledger"]={SubType="Quest",Level=1,id=7389,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133735,Link="|cffffffff|Hitem:7389::::::::40:::::::|h[Venture Co. Ledger]|h|r",EquipLoc="",Type="Quest"},["Prairie Alpha Tooth"]={SubType="Quest",Level=1,id=4803,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133725,EquipLoc="",Link="|cffffffff|Hitem:4803::::::::40:::::::|h[Prairie Alpha Tooth]|h|r",Type="Quest"},["Pillager's Bracers"]={SubType="Mail",Level=32,id=15556,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1697,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15556::::::::40:::::::|h[Pillager's Bracers]|h|r",Type="Armor"},["Deprecated Stonecloth Cowl"]={SubType="Cloth",Level=26,id=3077,StackCount=1,Rarity=0,MinLevel=21,SellPrice=368,Texture=133072,EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:3077::::::::40:::::::|h[Deprecated Stonecloth Cowl]|h|r",Type="Armor"},["Darksteel Bastard Sword"]={SubType="Two-Handed Swords",Level=30,id=2084,StackCount=1,Rarity=2,MinLevel=25,SellPrice=5709,Texture=135311,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:2084::::::::40:::::::|h[Darksteel Bastard Sword]|h|r",Type="Weapon"},["Sturdy Junkbox"]={SubType="Junk",Level=40,id=16884,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132596,EquipLoc="",Link="|cffffffff|Hitem:16884::::::::40:::::::|h[Sturdy Junkbox]|h|r",Type="Miscellaneous"},["Grimoire of Shadow Ward"]={SubType="Book",Level=30,id=4209,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2000,Texture=133738,Link="|cffffffff|Hitem:4209::::::::40:::::::|h[Grimoire of Shadow Ward]|h|r",EquipLoc="",Type="Recipe"},["Double-stitched Robes"]={SubType="Cloth",Level=13,id=2613,StackCount=1,Rarity=1,MinLevel=8,SellPrice=121,Texture=132665,Type="Armor",Link="|cffffffff|Hitem:2613::::::::40:::::::|h[Double-stitched Robes]|h|r",EquipLoc="INVTYPE_ROBE"},["Marshal's Dreadweave Sash"]={SubType="Cloth",Level=65,id=17585,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8878,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:17585::::::::40:::::::|h[Marshal's Dreadweave Sash]|h|r",Type="Armor"},["Tough Jerky"]={SubType="Consumable",Level=5,id=117,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=133972,Link="|cffffffff|Hitem:117::::::::40:::::::|h[Tough Jerky]|h|r",EquipLoc="",Type="Consumable"},["Steelgrill's Tools"]={SubType="Quest",Level=1,id=2999,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134068,Link="|cffffffff|Hitem:2999::::::::40:::::::|h[Steelgrill's Tools]|h|r",EquipLoc="",Type="Quest"},["Indomitable Cloak"]={SubType="Cloth",Level=59,id=14683,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11932,Texture=133769,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14683::::::::40:::::::|h[Indomitable Cloak]|h|r"},["Grimoire of Spell Lock (Rank 1)"]={SubType="Book",Level=36,id=16388,StackCount=1,Rarity=1,MinLevel=36,SellPrice=2250,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16388::::::::40:::::::|h[Grimoire of Spell Lock (Rank 1)]|h|r",Type="Recipe"},["Belt of the Sand Reaver"]={SubType="Plate",Level=71,id=21503,StackCount=1,Rarity=3,MinLevel=60,SellPrice=16334,Texture=132502,Link="|cff0070dd|Hitem:21503::::::::40:::::::|h[Belt of the Sand Reaver]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Codex of Shadow Protection II"]={SubType="Book",Level=42,id=8993,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8993::::::::40:::::::|h[Codex of Shadow Protection II]|h|r"},["Pridelord Cape"]={SubType="Cloth",Level=52,id=14673,StackCount=1,Rarity=2,MinLevel=47,SellPrice=8303,Texture=133762,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14673::::::::40:::::::|h[Pridelord Cape]|h|r"},["Tablet of Stoneskin Totem IV"]={SubType="Book",Level=34,id=9091,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9091::::::::40:::::::|h[Tablet of Stoneskin Totem IV]|h|r"},["Kodo Bone"]={SubType="Consumable",Level=1,id=13703,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133726,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13703::::::::40:::::::|h[Kodo Bone]|h|r"},["Warmonger's Belt"]={SubType="Mail",Level=47,id=9961,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5644,Texture=132497,Link="|cff1eff00|Hitem:9961::::::::40:::::::|h[Warmonger's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["SI:7 Insignia (Turyen)"]={SubType="Quest",Level=1,id=16002,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133599,EquipLoc="",Link="|cffffffff|Hitem:16002::::::::40:::::::|h[SI:7 Insignia (Turyen)]|h|r",Type="Quest"},["Dolanaar Delivery"]={SubType="Consumable",Level=1,id=7627,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132596,Link="|cffffffff|Hitem:7627::::::::40:::::::|h[Dolanaar Delivery]|h|r",EquipLoc="",Type="Consumable"},["Qiraji Regal Drape"]={SubType="Quest",Level=1,id=20889,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=132617,Link="|cff0070dd|Hitem:20889::::::::40:::::::|h[Qiraji Regal Drape]|h|r",EquipLoc="",Type="Quest"},["Taran Icebreaker"]={SubType="Two-Handed Maces",Level=52,id=2915,StackCount=1,Rarity=4,MinLevel=47,SellPrice=55289,Texture=133039,Type="Weapon",Link="|cffa335ee|Hitem:2915::::::::40:::::::|h[Taran Icebreaker]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Bullova"]={SubType="Two-Handed Axes",Level=35,id=2523,StackCount=1,Rarity=1,MinLevel=30,SellPrice=5657,Texture=135576,Link="|cffffffff|Hitem:2523::::::::40:::::::|h[Bullova]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Unused Black Leather D02 Gloves"]={SubType="Leather",Level=1,id=3543,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:3543::::::::40:::::::|h[Unused Black Leather D02 Gloves]|h|r"},["Merged Ooze Sample"]={SubType="Quest",Level=1,id=12291,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12291::::::::40:::::::|h[Merged Ooze Sample]|h|r"},["Cedar Walking Stick"]={SubType="Staves",Level=23,id=1822,StackCount=1,Rarity=0,MinLevel=18,SellPrice=1096,Texture=135145,Link="|cff9d9d9d|Hitem:1822::::::::40:::::::|h[Cedar Walking Stick]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Pattern: Stylish Green Shirt"]={SubType="Tailoring",Level=24,id=6391,StackCount=1,Rarity=2,MinLevel=0,SellPrice=150,Texture=134942,Link="|cff1eff00|Hitem:6391::::::::40:::::::|h[Pattern: Stylish Green Shirt]|h|r",EquipLoc="",Type="Recipe"},["Ironhide Pauldrons"]={SubType="Mail",Level=53,id=15647,StackCount=1,Rarity=2,MinLevel=48,SellPrice=13125,Texture=135055,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15647::::::::40:::::::|h[Ironhide Pauldrons]|h|r",Type="Armor"},["Stronghold Gauntlets"]={SubType="Plate",Level=62,id=12639,StackCount=1,Rarity=4,MinLevel=57,SellPrice=15271,Texture=132964,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:12639::::::::40:::::::|h[Stronghold Gauntlets]|h|r"},["Totem of Rebirth"]={SubType="Totems",Level=62,id=22345,StackCount=1,Rarity=3,MinLevel=57,SellPrice=15680,Texture=134920,Link="|cff0070dd|Hitem:22345::::::::40:::::::|h[Totem of Rebirth]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Gauntlets of Elements"]={SubType="Mail",Level=59,id=16672,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14059,Texture=132945,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16672::::::::40:::::::|h[Gauntlets of Elements]|h|r",Type="Armor"},["Electrified Dagger"]={SubType="Daggers",Level=65,id=19100,StackCount=1,Rarity=3,MinLevel=60,SellPrice=63300,Texture=135651,Link="|cff0070dd|Hitem:19100::::::::40:::::::|h[Electrified Dagger]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Frigid Ring"]={SubType="Miscellaneous",Level=61,id=18679,StackCount=1,Rarity=2,MinLevel=56,SellPrice=25136,Texture=133371,Type="Armor",Link="|cff1eff00|Hitem:18679::::::::40:::::::|h[Frigid Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Turtle Scale Leggings"]={SubType="Mail",Level=47,id=8185,StackCount=1,Rarity=2,MinLevel=42,SellPrice=10952,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:8185::::::::40:::::::|h[Turtle Scale Leggings]|h|r"},["Brackwater Boots"]={SubType="Mail",Level=15,id=3302,StackCount=1,Rarity=2,MinLevel=10,SellPrice=319,Texture=132537,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:3302::::::::40:::::::|h[Brackwater Boots]|h|r",Type="Armor"},["Rigid Buckler"]={SubType="Shields",Level=23,id=15113,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1361,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15113::::::::40:::::::|h[Rigid Buckler]|h|r",Type="Armor"},["Ashbringer Test 002"]={SubType="Quest",Level=1,id=16025,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135277,EquipLoc="",Link="|cffffffff|Hitem:16025::::::::40:::::::|h[Ashbringer Test 002]|h|r",Type="Quest"},["Pattern: Blue Overalls"]={SubType="Tailoring",Level=20,id=6274,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=134939,Link="|cffffffff|Hitem:6274::::::::40:::::::|h[Pattern: Blue Overalls]|h|r",EquipLoc="",Type="Recipe"},["Vanguard Headdress"]={SubType="Plate",Level=58,id=14858,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11740,Texture=133121,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14858::::::::40:::::::|h[Vanguard Headdress]|h|r"},["Insulated Sage Gloves"]={SubType="Cloth",Level=33,id=3759,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1216,Texture=132940,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:3759::::::::40:::::::|h[Insulated Sage Gloves]|h|r",Type="Armor"},["Thorny Vine"]={SubType="Junk",Level=1,id=18222,StackCount=20,Rarity=0,MinLevel=0,SellPrice=3070,Texture=134196,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18222::::::::40:::::::|h[Thorny Vine]|h|r",EquipLoc=""},["Band of Mending"]={SubType="Miscellaneous",Level=62,id=22334,StackCount=1,Rarity=3,MinLevel=57,SellPrice=13782,Texture=133347,Link="|cff0070dd|Hitem:22334::::::::40:::::::|h[Band of Mending]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Tablet of Lightning Bolt III"]={SubType="Book",Level=18,id=1058,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=134459,Link="|cffffffff|Hitem:1058::::::::40:::::::|h[Tablet of Lightning Bolt III]|h|r",EquipLoc="",Type="Recipe"},["Shackles of the Unscarred"]={SubType="Cloth",Level=72,id=21464,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22963,Texture=132606,Link="|cffa335ee|Hitem:21464::::::::40:::::::|h[Shackles of the Unscarred]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Marshal's Plate Bracers"]={SubType="Plate",Level=65,id=16481,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8216,Texture=132617,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16481::::::::40:::::::|h[Marshal's Plate Bracers]|h|r",Type="Armor"},["Silver Shafted Arrow"]={SubType="Junk",Level=1,id=22200,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132382,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22200::::::::40:::::::|h[Silver Shafted Arrow]|h|r"},["Glowing Brightwood Staff"]={SubType="Staves",Level=54,id=812,StackCount=1,Rarity=4,MinLevel=49,SellPrice=57018,Texture=135166,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:812::::::::40:::::::|h[Glowing Brightwood Staff]|h|r"},["Gnoll Spittle"]={SubType="Junk",Level=15,id=1212,StackCount=5,Rarity=0,MinLevel=0,SellPrice=21,Texture=134437,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:1212::::::::40:::::::|h[Gnoll Spittle]|h|r"},["Magnificent Leggings"]={SubType="Mail",Level=61,id=15676,StackCount=1,Rarity=2,MinLevel=56,SellPrice=25928,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15676::::::::40:::::::|h[Magnificent Leggings]|h|r",Type="Armor"},["Red Ribboned Gift"]={SubType="Consumable",Level=5,id=5043,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134140,EquipLoc="",Link="|cffffffff|Hitem:5043::::::::40:::::::|h[Red Ribboned Gift]|h|r",Type="Consumable"},["Hyperion Greaves"]={SubType="Plate",Level=62,id=10385,StackCount=1,Rarity=2,MinLevel=57,SellPrice=13247,Texture=132589,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10385::::::::40:::::::|h[Hyperion Greaves]|h|r",Type="Armor"},["Libram of Fervor"]={SubType="Librams",Level=65,id=23203,StackCount=1,Rarity=3,MinLevel=60,SellPrice=19138,Texture=134917,Link="|cff0070dd|Hitem:23203::::::::40:::::::|h[Libram of Fervor]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Breath of Wind"]={SubType="Reagent",Level=45,id=7081,StackCount=10,Rarity=1,MinLevel=0,SellPrice=400,Texture=136018,EquipLoc="",Link="|cffffffff|Hitem:7081::::::::40:::::::|h[Breath of Wind]|h|r",Type="Reagent"},["Thug Pants"]={SubType="Cloth",Level=1,id=120,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Type="Armor",Link="|cff9d9d9d|Hitem:120::::::::40:::::::|h[Thug Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Brutish Legguards"]={SubType="Plate",Level=48,id=14908,StackCount=1,Rarity=2,MinLevel=43,SellPrice=8195,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14908::::::::40:::::::|h[Brutish Legguards]|h|r"},["Eskhandar's Collar"]={SubType="Miscellaneous",Level=71,id=18205,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33287,Texture=132501,Type="Armor",Link="|cffa335ee|Hitem:18205::::::::40:::::::|h[Eskhandar's Collar]|h|r",EquipLoc="INVTYPE_NECK"},["Maddening Gauntlets"]={SubType="Mail",Level=53,id=11867,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8769,Texture=132960,Type="Armor",Link="|cff1eff00|Hitem:11867::::::::40:::::::|h[Maddening Gauntlets]|h|r",EquipLoc="INVTYPE_HAND"},["Braced Handguards"]={SubType="Leather",Level=36,id=6784,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2031,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:6784::::::::40:::::::|h[Braced Handguards]|h|r",Type="Armor"},["Faranell's Parcel"]={SubType="Quest",Level=1,id=9436,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133472,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9436::::::::40:::::::|h[Faranell's Parcel]|h|r"},["Claw Key"]={SubType="Quest",Level=1,id=5690,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134236,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5690::::::::40:::::::|h[Claw Key]|h|r"},["Sorcerer Drape"]={SubType="Cloth",Level=43,id=9874,StackCount=1,Rarity=2,MinLevel=38,SellPrice=5801,Texture=135017,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9874::::::::40:::::::|h[Sorcerer Drape]|h|r"},["Taut Compound Bow"]={SubType="Bows",Level=31,id=3778,StackCount=1,Rarity=0,MinLevel=26,SellPrice=1541,Texture=135490,Link="|cff9d9d9d|Hitem:3778::::::::40:::::::|h[Taut Compound Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Pattern: Molten Belt"]={SubType="Leatherworking",Level=70,id=19333,StackCount=1,Rarity=1,MinLevel=0,SellPrice=22500,Texture=134939,Link="|cffffffff|Hitem:19333::::::::40:::::::|h[Pattern: Molten Belt]|h|r",EquipLoc="",Type="Recipe"},["Field Plate Pauldrons"]={SubType="Plate",Level=42,id=9292,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3684,Texture=135040,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9292::::::::40:::::::|h[Field Plate Pauldrons]|h|r"},["Imbued Plate Vambraces"]={SubType="Plate",Level=57,id=10375,StackCount=1,Rarity=2,MinLevel=52,SellPrice=7116,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10375::::::::40:::::::|h[Imbued Plate Vambraces]|h|r",Type="Armor"},["Tome of Ice Armor II"]={SubType="Book",Level=40,id=3099,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:3099::::::::40:::::::|h[Tome of Ice Armor II]|h|r",EquipLoc=""},["Bleeding Crescent"]={SubType="One-Handed Axes",Level=35,id=6738,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7040,Texture=132403,Type="Weapon",Link="|cff1eff00|Hitem:6738::::::::40:::::::|h[Bleeding Crescent]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Deprecated Resonant Gem"]={SubType="Quest",Level=1,id=4452,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134095,EquipLoc="",Link="|cffffffff|Hitem:4452::::::::40:::::::|h[Deprecated Resonant Gem]|h|r",Type="Quest"},["Desecrated Tunic"]={SubType="Junk",Level=60,id=22350,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133823,Link="|cffa335ee|Hitem:22350::::::::40:::::::|h[Desecrated Tunic]|h|r",EquipLoc="",Type="Miscellaneous"},["Veteran Boots"]={SubType="Mail",Level=14,id=2979,StackCount=1,Rarity=1,MinLevel=9,SellPrice=157,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:2979::::::::40:::::::|h[Veteran Boots]|h|r"},["Monster - Gun, PvP Horde"]={SubType="Guns",Level=1,id=21554,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135612,Link="|cff9d9d9d|Hitem:21554::::::::40:::::::|h[Monster - Gun, PvP Horde]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Tome of Frost Ward III"]={SubType="Book",Level=42,id=8825,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133739,Link="|cffffffff|Hitem:8825::::::::40:::::::|h[Tome of Frost Ward III]|h|r",EquipLoc="",Type="Recipe"},["Tome of Fireball II"]={SubType="Book",Level=12,id=973,StackCount=1,Rarity=1,MinLevel=12,SellPrice=250,Texture=133739,Link="|cffffffff|Hitem:973::::::::40:::::::|h[Tome of Fireball II]|h|r",EquipLoc="",Type="Recipe"},["Field Plate Girdle"]={SubType="Plate",Level=41,id=9288,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2414,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9288::::::::40:::::::|h[Field Plate Girdle]|h|r"},["Intrepid Strongbox Key"]={SubType="Key",Level=1,id=2629,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134238,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:2629::::::::40:::::::|h[Intrepid Strongbox Key]|h|r"},["Thick Spider's Silk"]={SubType="Trade Goods",Level=35,id=4337,StackCount=10,Rarity=1,MinLevel=0,SellPrice=750,Texture=136113,Link="|cffffffff|Hitem:4337::::::::40:::::::|h[Thick Spider's Silk]|h|r",EquipLoc="",Type="Trade Goods"},["Rugwood Mantle"]={SubType="Leather",Level=48,id=16739,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7300,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16739::::::::40:::::::|h[Rugwood Mantle]|h|r",Type="Armor"},["Vessel of Tainted Blood"]={SubType="Quest",Level=1,id=19071,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134514,Link="|cffffffff|Hitem:19071::::::::40:::::::|h[Vessel of Tainted Blood]|h|r",EquipLoc="",Type="Quest"},["Celebrian Diamond"]={SubType="Quest",Level=1,id=17703,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133441,EquipLoc="",Link="|cffffffff|Hitem:17703::::::::40:::::::|h[Celebrian Diamond]|h|r",Type="Quest"},["Reinforced Chain Belt"]={SubType="Mail",Level=26,id=1754,StackCount=1,Rarity=0,MinLevel=21,SellPrice=359,Texture=132495,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:1754::::::::40:::::::|h[Reinforced Chain Belt]|h|r"},["Cloak of Revanchion"]={SubType="Cloth",Level=63,id=23127,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16476,Texture=133754,Link="|cff0070dd|Hitem:23127::::::::40:::::::|h[Cloak of Revanchion]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Gnomebot Operating Boots"]={SubType="Leather",Level=33,id=9450,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2181,Texture=132537,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9450::::::::40:::::::|h[Gnomebot Operating Boots]|h|r"},["Schematic: Large Red Rocket Cluster"]={SubType="Engineering",Level=55,id=21735,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:21735::::::::40:::::::|h[Schematic: Large Red Rocket Cluster]|h|r"},["Tough Scorpid Shoulders"]={SubType="Mail",Level=48,id=8207,StackCount=1,Rarity=2,MinLevel=43,SellPrice=8978,Texture=135035,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:8207::::::::40:::::::|h[Tough Scorpid Shoulders]|h|r"},["Skull of Impending Doom"]={SubType="Miscellaneous",Level=41,id=4984,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5630,Texture=133729,Link="|cff1eff00|Hitem:4984::::::::40:::::::|h[Skull of Impending Doom]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Ring of the Gathering Storm"]={SubType="Miscellaneous",Level=65,id=21399,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133425,Link="|cffa335ee|Hitem:21399::::::::40:::::::|h[Ring of the Gathering Storm]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Sturdy Female Gnome Mask"]={SubType="Miscellaneous",Level=45,id=20584,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4756,Texture=134165,Link="|cff1eff00|Hitem:20584::::::::40:::::::|h[Sturdy Female Gnome Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Shadowcraft Boots"]={SubType="Leather",Level=59,id=16711,StackCount=1,Rarity=3,MinLevel=54,SellPrice=17505,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16711::::::::40:::::::|h[Shadowcraft Boots]|h|r",Type="Armor"},["Banshee Finger"]={SubType="Wands",Level=60,id=13534,StackCount=1,Rarity=3,MinLevel=55,SellPrice=37727,Texture=135654,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13534::::::::40:::::::|h[Banshee Finger]|h|r"},["Sandrunner Wristguards"]={SubType="Leather",Level=8,id=4928,StackCount=1,Rarity=1,MinLevel=0,SellPrice=20,Texture=132611,Link="|cffffffff|Hitem:4928::::::::40:::::::|h[Sandrunner Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Fall/Winter Night"]={SubType="Junk",Level=25,id=13845,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13845::::::::40:::::::|h[Fall/Winter Night]|h|r"},["Noxious Shooter"]={SubType="Wands",Level=51,id=17745,StackCount=1,Rarity=3,MinLevel=46,SellPrice=22519,Texture=135466,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:17745::::::::40:::::::|h[Noxious Shooter]|h|r",Type="Weapon"},["Tome of Sleep II"]={SubType="Book",Level=20,id=8810,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133739,Link="|cffffffff|Hitem:8810::::::::40:::::::|h[Tome of Sleep II]|h|r",EquipLoc="",Type="Recipe"},["Tome of Sacrifice"]={SubType="Miscellaneous",Level=60,id=18602,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133738,Type="Armor",Link="|cff0070dd|Hitem:18602::::::::40:::::::|h[Tome of Sacrifice]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Rune Thread"]={SubType="Trade Goods",Level=50,id=14341,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1250,Texture=136120,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:14341::::::::40:::::::|h[Rune Thread]|h|r"},["Overlinked Chain Cloak"]={SubType="Cloth",Level=49,id=4003,StackCount=1,Rarity=0,MinLevel=44,SellPrice=4090,Texture=133759,Type="Armor",Link="|cff9d9d9d|Hitem:4003::::::::40:::::::|h[Overlinked Chain Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Gallan Cuffs"]={SubType="Cloth",Level=36,id=2032,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1665,Texture=132609,Link="|cff1eff00|Hitem:2032::::::::40:::::::|h[Gallan Cuffs]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Book of Rejuvenation X"]={SubType="Book",Level=58,id=8797,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8797::::::::40:::::::|h[Book of Rejuvenation X]|h|r"},["Templar Boots"]={SubType="Plate",Level=55,id=10167,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9429,Texture=132584,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10167::::::::40:::::::|h[Templar Boots]|h|r",Type="Armor"},["Warsong Report"]={SubType="Quest",Level=1,id=16746,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134942,EquipLoc="",Link="|cffffffff|Hitem:16746::::::::40:::::::|h[Warsong Report]|h|r",Type="Quest"},["Legionnaire's Dreadweave Tunic"]={SubType="Cloth",Level=68,id=22884,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14768,Texture=132716,Link="|cff0070dd|Hitem:22884::::::::40:::::::|h[Legionnaire's Dreadweave Tunic]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Holy Diadem"]={SubType="Cloth",Level=41,id=2623,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3554,Texture=132767,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:2623::::::::40:::::::|h[Holy Diadem]|h|r"},["Prairie Wolf Paw"]={SubType="Quest",Level=1,id=4758,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134297,Type="Quest",Link="|cffffffff|Hitem:4758::::::::40:::::::|h[Prairie Wolf Paw]|h|r",EquipLoc=""},["Raw Rainbow Fin Albacore"]={SubType="Consumable",Level=15,id=6361,StackCount=20,Rarity=1,MinLevel=5,SellPrice=2,Texture=133911,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6361::::::::40:::::::|h[Raw Rainbow Fin Albacore]|h|r"},["Chilton Wand"]={SubType="Wands",Level=53,id=12468,StackCount=1,Rarity=0,MinLevel=1,SellPrice=8644,Texture=135139,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:12468::::::::40:::::::|h[Chilton Wand]|h|r"},["Hard Crawler Carapace"]={SubType="Leather",Level=13,id=2087,StackCount=1,Rarity=2,MinLevel=8,SellPrice=252,Texture=132760,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:2087::::::::40:::::::|h[Hard Crawler Carapace]|h|r"},["Pale Moon Cloak"]={SubType="Cloth",Level=62,id=18734,StackCount=1,Rarity=3,MinLevel=57,SellPrice=17194,Texture=133763,Type="Armor",Link="|cff0070dd|Hitem:18734::::::::40:::::::|h[Pale Moon Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Exalted Girdle"]={SubType="Plate",Level=60,id=14977,StackCount=1,Rarity=2,MinLevel=55,SellPrice=7982,Texture=132513,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14977::::::::40:::::::|h[Exalted Girdle]|h|r"},["The Eye of Shadow"]={SubType="Miscellaneous",Level=71,id=18665,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=136224,Type="Armor",Link="|cffa335ee|Hitem:18665::::::::40:::::::|h[The Eye of Shadow]|h|r",EquipLoc="INVTYPE_TRINKET"},["Deprecated Fine Pointed Dagger"]={SubType="Daggers",Level=22,id=2206,StackCount=1,Rarity=0,MinLevel=17,SellPrice=734,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2206::::::::40:::::::|h[Deprecated Fine Pointed Dagger]|h|r",Type="Weapon"},["Evergreen Gloves"]={SubType="Cloth",Level=18,id=7738,StackCount=1,Rarity=2,MinLevel=0,SellPrice=211,Texture=132952,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7738::::::::40:::::::|h[Evergreen Gloves]|h|r",Type="Armor"},["Test Glaive G"]={SubType="One-Handed Swords",Level=5,id=14889,StackCount=1,Rarity=1,MinLevel=1,SellPrice=25,Texture=135643,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:14889::::::::40:::::::|h[Test Glaive G]|h|r"},["Spring/Summer Afternoon"]={SubType="Junk",Level=25,id=13847,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13847::::::::40:::::::|h[Spring/Summer Afternoon]|h|r"},["Highborne Bracelets"]={SubType="Cloth",Level=52,id=14448,StackCount=1,Rarity=2,MinLevel=47,SellPrice=5555,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14448::::::::40:::::::|h[Highborne Bracelets]|h|r"},["Tome of Arcane Missiles VI"]={SubType="Book",Level=48,id=8862,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8862::::::::40:::::::|h[Tome of Arcane Missiles VI]|h|r"},["Fishbone Toothpick"]={SubType="Junk",Level=1,id=5361,StackCount=10,Rarity=0,MinLevel=0,SellPrice=16,Texture=133723,EquipLoc="",Link="|cff9d9d9d|Hitem:5361::::::::40:::::::|h[Fishbone Toothpick]|h|r",Type="Miscellaneous"},["Codex of Mind Vision II"]={SubType="Book",Level=44,id=8998,StackCount=1,Rarity=1,MinLevel=44,SellPrice=6250,Texture=133741,Link="|cffffffff|Hitem:8998::::::::40:::::::|h[Codex of Mind Vision II]|h|r",EquipLoc="",Type="Recipe"},["Jade Belt"]={SubType="Plate",Level=47,id=14918,StackCount=1,Rarity=2,MinLevel=42,SellPrice=3654,Texture=132506,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14918::::::::40:::::::|h[Jade Belt]|h|r"},["Diary of Weavil"]={SubType="Junk",Level=1,id=21130,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133742,Link="|cffffffff|Hitem:21130::::::::40:::::::|h[Diary of Weavil]|h|r",EquipLoc="",Type="Miscellaneous"},["Ornate Mirror"]={SubType="Quest",Level=1,id=16191,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134961,EquipLoc="",Link="|cffffffff|Hitem:16191::::::::40:::::::|h[Ornate Mirror]|h|r",Type="Quest"},["Hawkeye's Bracers"]={SubType="Leather",Level=35,id=14590,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1821,Texture=132603,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14590::::::::40:::::::|h[Hawkeye's Bracers]|h|r"},["Wristwraps of Undead Slaying"]={SubType="Leather",Level=63,id=23093,StackCount=1,Rarity=3,MinLevel=58,SellPrice=14624,Texture=132607,Link="|cff0070dd|Hitem:23093::::::::40:::::::|h[Wristwraps of Undead Slaying]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Truefaith Vestments"]={SubType="Cloth",Level=62,id=14154,StackCount=1,Rarity=4,MinLevel=57,SellPrice=29028,Texture=132672,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:14154::::::::40:::::::|h[Truefaith Vestments]|h|r"},["Sharpshooter Harquebus"]={SubType="Guns",Level=60,id=15325,StackCount=1,Rarity=2,MinLevel=55,SellPrice=31784,Texture=135615,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15325::::::::40:::::::|h[Sharpshooter Harquebus]|h|r",Type="Weapon"},["Pamela's Doll's Right Side"]={SubType="Quest",Level=1,id=12888,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134230,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12888::::::::40:::::::|h[Pamela's Doll's Right Side]|h|r"},["Mark of Resolution"]={SubType="Miscellaneous",Level=60,id=17759,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10307,Texture=133440,EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:17759::::::::40:::::::|h[Mark of Resolution]|h|r",Type="Armor"},["Searing Tongue"]={SubType="Quest",Level=1,id=5840,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134317,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5840::::::::40:::::::|h[Searing Tongue]|h|r"},["Herb Pouch"]={SubType="Herb Bag",Level=20,id=22250,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=133668,Link="|cff1eff00|Hitem:22250::::::::40:::::::|h[Herb Pouch]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Inscribed Gold Ring"]={SubType="Miscellaneous",Level=40,id=5010,StackCount=1,Rarity=2,MinLevel=35,SellPrice=1803,Texture=133345,Link="|cff1eff00|Hitem:5010::::::::40:::::::|h[Inscribed Gold Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Recipe: Mightfish Steak"]={SubType="Cooking",Level=55,id=13948,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13948::::::::40:::::::|h[Recipe: Mightfish Steak]|h|r"},["Fake Mistletoe"]={SubType="Junk",Level=5,id=17195,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133749,EquipLoc="",Link="|cffffffff|Hitem:17195::::::::40:::::::|h[Fake Mistletoe]|h|r",Type="Miscellaneous"},["Wolfshead Helm"]={SubType="Leather",Level=45,id=8345,StackCount=1,Rarity=3,MinLevel=40,SellPrice=7421,Texture=133072,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:8345::::::::40:::::::|h[Wolfshead Helm]|h|r"},["Fiendish Skiv"]={SubType="Daggers",Level=45,id=10703,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16792,Texture=135322,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:10703::::::::40:::::::|h[Fiendish Skiv]|h|r",Type="Weapon"},["Dalaran Sharp"]={SubType="Consumable",Level=15,id=414,StackCount=20,Rarity=1,MinLevel=5,SellPrice=6,Texture=133995,EquipLoc="",Link="|cffffffff|Hitem:414::::::::40:::::::|h[Dalaran Sharp]|h|r",Type="Consumable"},["Ritual Leggings"]={SubType="Cloth",Level=21,id=14125,StackCount=1,Rarity=2,MinLevel=16,SellPrice=676,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14125::::::::40:::::::|h[Ritual Leggings]|h|r"},["Stormpike Lieutenant's Flesh"]={SubType="Quest",Level=1,id=17327,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=134028,EquipLoc="",Link="|cffffffff|Hitem:17327::::::::40:::::::|h[Stormpike Lieutenant's Flesh]|h|r",Type="Quest"},["Grizzly Gloves"]={SubType="Leather",Level=14,id=15300,StackCount=1,Rarity=1,MinLevel=9,SellPrice=86,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:15300::::::::40:::::::|h[Grizzly Gloves]|h|r",Type="Armor"},["Depricated Whipwood Arrow"]={SubType="Arrow",Level=20,id=3029,StackCount=200,Rarity=1,MinLevel=15,SellPrice=0,Texture=132382,EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:3029::::::::40:::::::|h[Depricated Whipwood Arrow]|h|r",Type="Projectile"},["Gadgetzan Water Co. Care Package"]={SubType="Junk",Level=1,id=8484,StackCount=1,Rarity=1,MinLevel=0,SellPrice=68,Texture=132764,Link="|cffffffff|Hitem:8484::::::::40:::::::|h[Gadgetzan Water Co. Care Package]|h|r",EquipLoc="",Type="Miscellaneous"},["Infantry Belt"]={SubType="Mail",Level=10,id=6509,StackCount=1,Rarity=1,MinLevel=5,SellPrice=44,Texture=132511,Link="|cffffffff|Hitem:6509::::::::40:::::::|h[Infantry Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Codex of Shadow Protection"]={SubType="Book",Level=30,id=4281,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133741,Link="|cffffffff|Hitem:4281::::::::40:::::::|h[Codex of Shadow Protection]|h|r",EquipLoc="",Type="Recipe"},["Unlit Poor Torch"]={SubType="Consumable",Level=10,id=6183,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2,Texture=135434,Link="|cffffffff|Hitem:6183::::::::40:::::::|h[Unlit Poor Torch]|h|r",EquipLoc="",Type="Consumable"},["Hunting Rifle"]={SubType="Guns",Level=9,id=8181,StackCount=1,Rarity=1,MinLevel=4,SellPrice=79,Texture=135613,Link="|cffffffff|Hitem:8181::::::::40:::::::|h[Hunting Rifle]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Plans: Runic Plate Shoulders"]={SubType="Blacksmithing",Level=60,id=12706,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12706::::::::40:::::::|h[Plans: Runic Plate Shoulders]|h|r"},["Test Potion LockBox (Mage/Priest/Warlock)"]={SubType="Junk",Level=1,id=16080,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16080::::::::40:::::::|h[Test Potion LockBox (Mage/Priest/Warlock)]|h|r",Type="Miscellaneous"},["Breakwater Girdle"]={SubType="Mail",Level=18,id=15404,StackCount=1,Rarity=2,MinLevel=0,SellPrice=337,Texture=132499,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15404::::::::40:::::::|h[Breakwater Girdle]|h|r",Type="Armor"},["Anchorhold Buckler"]={SubType="Shields",Level=39,id=15865,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6562,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15865::::::::40:::::::|h[Anchorhold Buckler]|h|r",Type="Armor"},["Deprecated Hex Doll"]={SubType="Miscellaneous",Level=40,id=1350,StackCount=1,Rarity=0,MinLevel=0,SellPrice=171,Texture=134231,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff9d9d9d|Hitem:1350::::::::40:::::::|h[Deprecated Hex Doll]|h|r"},["Necklace of Sanctuary"]={SubType="Miscellaneous",Level=60,id=10778,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16930,Texture=133280,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:10778::::::::40:::::::|h[Necklace of Sanctuary]|h|r",Type="Armor"},["Constable Buckler"]={SubType="Shields",Level=27,id=6676,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2245,Texture=134955,Type="Armor",Link="|cff1eff00|Hitem:6676::::::::40:::::::|h[Constable Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Tablet of Lightning Shield IV"]={SubType="Book",Level=32,id=4175,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=134459,Type="Recipe",Link="|cffffffff|Hitem:4175::::::::40:::::::|h[Tablet of Lightning Shield IV]|h|r",EquipLoc=""},["Pathfinder Gloves"]={SubType="Leather",Level=30,id=15343,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1139,Texture=132958,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15343::::::::40:::::::|h[Pathfinder Gloves]|h|r",Type="Armor"},["High Chief's Legguards"]={SubType="Plate",Level=54,id=14962,StackCount=1,Rarity=2,MinLevel=49,SellPrice=11690,Texture=134588,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14962::::::::40:::::::|h[High Chief's Legguards]|h|r"},["Sterling Chain Shoulderpads"]={SubType="Mail",Level=69,id=4014,StackCount=1,Rarity=0,MinLevel=64,SellPrice=11349,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:4014::::::::40:::::::|h[Sterling Chain Shoulderpads]|h|r"},["Coal Miner Boots"]={SubType="Leather",Level=57,id=18043,StackCount=1,Rarity=3,MinLevel=52,SellPrice=15495,Texture=132542,Type="Armor",Link="|cff0070dd|Hitem:18043::::::::40:::::::|h[Coal Miner Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Glowing Lizardscale Cloak"]={SubType="Cloth",Level=22,id=6449,StackCount=1,Rarity=3,MinLevel=17,SellPrice=701,Texture=132656,Link="|cff0070dd|Hitem:6449::::::::40:::::::|h[Glowing Lizardscale Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Fandral's Message"]={SubType="Quest",Level=1,id=5390,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,EquipLoc="",Link="|cffffffff|Hitem:5390::::::::40:::::::|h[Fandral's Message]|h|r",Type="Quest"},["Exalted Helmet"]={SubType="Plate",Level=64,id=14979,StackCount=1,Rarity=2,MinLevel=59,SellPrice=14664,Texture=133078,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14979::::::::40:::::::|h[Exalted Helmet]|h|r"},["Robe of Solomon"]={SubType="Cloth",Level=25,id=3555,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1032,Texture=132681,Type="Armor",Link="|cff1eff00|Hitem:3555::::::::40:::::::|h[Robe of Solomon]|h|r",EquipLoc="INVTYPE_ROBE"},["Warped Leather Gloves"]={SubType="Leather",Level=13,id=1506,StackCount=1,Rarity=0,MinLevel=8,SellPrice=51,Texture=132952,Type="Armor",Link="|cff9d9d9d|Hitem:1506::::::::40:::::::|h[Warped Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Rose Colored Goggles"]={SubType="Cloth",Level=46,id=10503,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5169,Texture=133149,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10503::::::::40:::::::|h[Rose Colored Goggles]|h|r",Type="Armor"},["Houndmaster's Bow"]={SubType="Bows",Level=53,id=11628,StackCount=1,Rarity=3,MinLevel=48,SellPrice=24433,Texture=135492,Type="Weapon",Link="|cff0070dd|Hitem:11628::::::::40:::::::|h[Houndmaster's Bow]|h|r",EquipLoc="INVTYPE_RANGED"},["Monster - Item, Tankard Metal"]={SubType="Miscellaneous",Level=1,id=2705,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132800,Type="Weapon",Link="|cff9d9d9d|Hitem:2705::::::::40:::::::|h[Monster - Item, Tankard Metal]|h|r",EquipLoc="INVTYPE_WEAPON"},["Caverndeep Trudgers"]={SubType="Mail",Level=32,id=9510,StackCount=1,Rarity=3,MinLevel=27,SellPrice=2945,Texture=132535,Link="|cff0070dd|Hitem:9510::::::::40:::::::|h[Caverndeep Trudgers]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Book of Moonfire IX"]={SubType="Book",Level=52,id=8777,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=133743,Link="|cffffffff|Hitem:8777::::::::40:::::::|h[Book of Moonfire IX]|h|r",EquipLoc="",Type="Recipe"},["Smooth Raptor Skin"]={SubType="Junk",Level=1,id=4586,StackCount=5,Rarity=0,MinLevel=0,SellPrice=713,Texture=134304,EquipLoc="",Link="|cff9d9d9d|Hitem:4586::::::::40:::::::|h[Smooth Raptor Skin]|h|r",Type="Miscellaneous"},["Hardened Cloak"]={SubType="Cloth",Level=38,id=3803,StackCount=1,Rarity=0,MinLevel=33,SellPrice=1086,Texture=133150,Type="Armor",Link="|cff9d9d9d|Hitem:3803::::::::40:::::::|h[Hardened Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Forsaken Shortsword"]={SubType="One-Handed Swords",Level=5,id=3267,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=135274,Link="|cffffffff|Hitem:3267::::::::40:::::::|h[Forsaken Shortsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Kindling Stave"]={SubType="Staves",Level=53,id=11750,StackCount=1,Rarity=3,MinLevel=48,SellPrice=43234,Texture=135155,Type="Weapon",Link="|cff0070dd|Hitem:11750::::::::40:::::::|h[Kindling Stave]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["The Traitor's Heart"]={SubType="Quest",Level=1,id=18719,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Type="Quest",Link="|cffffffff|Hitem:18719::::::::40:::::::|h[The Traitor's Heart]|h|r",EquipLoc=""},["Plans: Ironforge Chain"]={SubType="Blacksmithing",Level=16,id=6734,StackCount=1,Rarity=2,MinLevel=0,SellPrice=62,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:6734::::::::40:::::::|h[Plans: Ironforge Chain]|h|r",EquipLoc=""},["The Butcher"]={SubType="One-Handed Swords",Level=31,id=8226,StackCount=1,Rarity=3,MinLevel=26,SellPrice=5747,Texture=135316,Link="|cff0070dd|Hitem:8226::::::::40:::::::|h[The Butcher]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Astral Orb"]={SubType="Miscellaneous",Level=61,id=15987,StackCount=1,Rarity=2,MinLevel=56,SellPrice=10996,Texture=134333,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15987::::::::40:::::::|h[Astral Orb]|h|r",Type="Armor"},["Petrified Shinbone"]={SubType="One-Handed Maces",Level=17,id=1958,StackCount=1,Rarity=2,MinLevel=12,SellPrice=975,Texture=133718,Type="Weapon",Link="|cff1eff00|Hitem:1958::::::::40:::::::|h[Petrified Shinbone]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Pestilent Wand"]={SubType="Wands",Level=35,id=5347,StackCount=1,Rarity=1,MinLevel=30,SellPrice=3142,Texture=135466,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:5347::::::::40:::::::|h[Pestilent Wand]|h|r",Type="Weapon"},["Gromsblood"]={SubType="Trade Goods",Level=50,id=8846,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=134197,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:8846::::::::40:::::::|h[Gromsblood]|h|r"},["Grunt's Card"]={SubType="Consumable",Level=1,id=22142,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135454,Link="|cffffffff|Hitem:22142::::::::40:::::::|h[Grunt's Card]|h|r",EquipLoc="",Type="Consumable"},["Iron Buckle"]={SubType="Reagent",Level=30,id=7071,StackCount=5,Rarity=1,MinLevel=0,SellPrice=100,Texture=133607,EquipLoc="",Link="|cffffffff|Hitem:7071::::::::40:::::::|h[Iron Buckle]|h|r",Type="Reagent"},["Filled Blue Waterskin"]={SubType="Quest",Level=0,id=7770,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132820,EquipLoc="",Link="|cffffffff|Hitem:7770::::::::40:::::::|h[Filled Blue Waterskin]|h|r",Type="Quest"},["Pattern: Greater Adept's Robe"]={SubType="Tailoring",Level=23,id=6275,StackCount=1,Rarity=1,MinLevel=0,SellPrice=200,Texture=134939,Link="|cffffffff|Hitem:6275::::::::40:::::::|h[Pattern: Greater Adept's Robe]|h|r",EquipLoc="",Type="Recipe"},["Pitchfork"]={SubType="Polearms",Level=25,id=1485,StackCount=1,Rarity=0,MinLevel=20,SellPrice=1410,Texture=135127,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1485::::::::40:::::::|h[Pitchfork]|h|r",Type="Weapon"},["Grunt Axe"]={SubType="One-Handed Axes",Level=21,id=4568,StackCount=1,Rarity=2,MinLevel=16,SellPrice=1694,Texture=132403,Type="Weapon",Link="|cff1eff00|Hitem:4568::::::::40:::::::|h[Grunt Axe]|h|r",EquipLoc="INVTYPE_WEAPON"},["Turtle Scale Gloves"]={SubType="Mail",Level=41,id=8187,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3477,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:8187::::::::40:::::::|h[Turtle Scale Gloves]|h|r"},["Monster - Mace2H, Horde C01 Steel (Green)"]={SubType="Two-Handed Maces",Level=1,id=19988,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,Link="|cff9d9d9d|Hitem:19988::::::::40:::::::|h[Monster - Mace2H, Horde C01 Steel (Green)]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Tome of Slow"]={SubType="Book",Level=28,id=3098,StackCount=1,Rarity=1,MinLevel=28,SellPrice=1750,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:3098::::::::40:::::::|h[Tome of Slow]|h|r",EquipLoc=""},["Deprecated Longsnout Hide"]={SubType="Trade Goods",Level=10,id=2323,StackCount=10,Rarity=1,MinLevel=0,SellPrice=55,Texture=134366,EquipLoc="",Link="|cffffffff|Hitem:2323::::::::40:::::::|h[Deprecated Longsnout Hide]|h|r",Type="Trade Goods"},["Thick Bear Fur"]={SubType="Quest",Level=1,id=6952,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134353,Type="Quest",Link="|cffffffff|Hitem:6952::::::::40:::::::|h[Thick Bear Fur]|h|r",EquipLoc=""},["Thorium Rifle"]={SubType="Guns",Level=52,id=15995,StackCount=1,Rarity=2,MinLevel=47,SellPrice=19739,Texture=135616,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15995::::::::40:::::::|h[Thorium Rifle]|h|r",Type="Weapon"},["Five of Elementals"]={SubType="Junk",Level=1,id=19272,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134486,Link="|cff0070dd|Hitem:19272::::::::40:::::::|h[Five of Elementals]|h|r",EquipLoc="",Type="Miscellaneous"},["Boorguard Tunic"]={SubType="Leather",Level=27,id=17005,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1632,Texture=135017,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:17005::::::::40:::::::|h[Boorguard Tunic]|h|r",Type="Armor"},["Schematic: Truesilver Transformer"]={SubType="Engineering",Level=52,id=18651,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:18651::::::::40:::::::|h[Schematic: Truesilver Transformer]|h|r",EquipLoc=""},["Burstshot Harquebus"]={SubType="Guns",Level=56,id=13248,StackCount=1,Rarity=3,MinLevel=51,SellPrice=29670,Texture=135615,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13248::::::::40:::::::|h[Burstshot Harquebus]|h|r"},["Gordok Chew Toy"]={SubType="Junk",Level=1,id=18236,StackCount=20,Rarity=0,MinLevel=0,SellPrice=2716,Texture=133854,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18236::::::::40:::::::|h[Gordok Chew Toy]|h|r",EquipLoc=""},["10% Test Speed Boots"]={SubType="Miscellaneous",Level=1,id=18163,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132538,Type="Armor",Link="|cffffffff|Hitem:18163::::::::40:::::::|h[10% Test Speed Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Privateer Musket"]={SubType="Guns",Level=20,id=5309,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1038,Texture=135613,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5309::::::::40:::::::|h[Privateer Musket]|h|r"},["Frostwhisper's Embalming Fluid"]={SubType="Quest",Level=1,id=12736,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=132804,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12736::::::::40:::::::|h[Frostwhisper's Embalming Fluid]|h|r"},["Bristleback Belt"]={SubType="Quest",Level=1,id=4770,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132494,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4770::::::::40:::::::|h[Bristleback Belt]|h|r"},["Atal'ai Tablet"]={SubType="Quest",Level=1,id=6288,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134458,Link="|cffffffff|Hitem:6288::::::::40:::::::|h[Atal'ai Tablet]|h|r",EquipLoc="",Type="Quest"},["Painted Gnoll Armband"]={SubType="Quest",Level=1,id=782,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133693,Link="|cffffffff|Hitem:782::::::::40:::::::|h[Painted Gnoll Armband]|h|r",EquipLoc="",Type="Quest"},["Emerald Legplates"]={SubType="Plate",Level=59,id=10280,StackCount=1,Rarity=2,MinLevel=54,SellPrice=15723,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10280::::::::40:::::::|h[Emerald Legplates]|h|r",Type="Armor"},["Furen's Boots"]={SubType="Cloth",Level=44,id=13100,StackCount=1,Rarity=3,MinLevel=39,SellPrice=5421,Texture=132537,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13100::::::::40:::::::|h[Furen's Boots]|h|r"},["Tome of Counterspell"]={SubType="Book",Level=24,id=4148,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133739,Link="|cffffffff|Hitem:4148::::::::40:::::::|h[Tome of Counterspell]|h|r",EquipLoc="",Type="Recipe"},["Blue Linen Shirt"]={SubType="Miscellaneous",Level=10,id=2577,StackCount=1,Rarity=1,MinLevel=0,SellPrice=75,Texture=135023,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:2577::::::::40:::::::|h[Blue Linen Shirt]|h|r"},["Flying Tiger Goggles"]={SubType="Cloth",Level=20,id=4368,StackCount=1,Rarity=2,MinLevel=0,SellPrice=408,Texture=133149,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:4368::::::::40:::::::|h[Flying Tiger Goggles]|h|r",Type="Armor"},["Presence of Might"]={SubType="Junk",Level=60,id=19782,StackCount=1,Rarity=3,MinLevel=60,SellPrice=0,Texture=135971,Link="|cff0070dd|Hitem:19782::::::::40:::::::|h[Presence of Might]|h|r",EquipLoc="",Type="Miscellaneous"},["Sarah's Ring"]={SubType="Quest",Level=1,id=2162,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133345,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2162::::::::40:::::::|h[Sarah's Ring]|h|r"},["13% Test Speed Boots"]={SubType="Miscellaneous",Level=1,id=18164,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132538,Type="Armor",Link="|cffffffff|Hitem:18164::::::::40:::::::|h[13% Test Speed Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Tattered Parchment"]={SubType="Quest",Level=1,id=6493,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",Link="|cffffffff|Hitem:6493::::::::40:::::::|h[Tattered Parchment]|h|r",EquipLoc=""},["Cape of the Trinity"]={SubType="Cloth",Level=75,id=21697,StackCount=1,Rarity=4,MinLevel=60,SellPrice=40937,Texture=133770,Link="|cffa335ee|Hitem:21697::::::::40:::::::|h[Cape of the Trinity]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Glyphed Buckler"]={SubType="Shields",Level=39,id=4067,StackCount=1,Rarity=2,MinLevel=34,SellPrice=6381,Texture=134956,Type="Armor",Link="|cff1eff00|Hitem:4067::::::::40:::::::|h[Glyphed Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Recipe: Wildvine Potion"]={SubType="Alchemy",Level=45,id=9294,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:9294::::::::40:::::::|h[Recipe: Wildvine Potion]|h|r"},["Red & Blue Mechanostrider"]={SubType="Junk",Level=40,id=13324,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132247,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:13324::::::::40:::::::|h[Red & Blue Mechanostrider]|h|r"},["Pattern: Wild Leather Vest"]={SubType="Leatherworking",Level=45,id=8404,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:8404::::::::40:::::::|h[Pattern: Wild Leather Vest]|h|r",EquipLoc="",Type="Recipe"},["Recipe: Soothing Turtle Bisque"]={SubType="Cooking",Level=30,id=3737,StackCount=1,Rarity=1,MinLevel=0,SellPrice=550,Texture=134939,Link="|cffffffff|Hitem:3737::::::::40:::::::|h[Recipe: Soothing Turtle Bisque]|h|r",EquipLoc="",Type="Recipe"},["Protector Cape"]={SubType="Cloth",Level=48,id=14791,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6056,Texture=133757,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14791::::::::40:::::::|h[Protector Cape]|h|r"},["Nightmare Shard"]={SubType="Quest",Level=1,id=10649,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135229,EquipLoc="",Link="|cffffffff|Hitem:10649::::::::40:::::::|h[Nightmare Shard]|h|r",Type="Quest"},["Plans: Barbaric Iron Shoulders"]={SubType="Blacksmithing",Level=32,id=7978,StackCount=1,Rarity=2,MinLevel=0,SellPrice=750,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:7978::::::::40:::::::|h[Plans: Barbaric Iron Shoulders]|h|r"},["Pattern: Core Armor Kit"]={SubType="Leatherworking",Level=60,id=18252,StackCount=1,Rarity=3,MinLevel=0,SellPrice=50000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18252::::::::40:::::::|h[Pattern: Core Armor Kit]|h|r",EquipLoc=""},["Scarlet Wristguards"]={SubType="Mail",Level=36,id=10333,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2314,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10333::::::::40:::::::|h[Scarlet Wristguards]|h|r"},["Feral Shoes"]={SubType="Leather",Level=18,id=15305,StackCount=1,Rarity=2,MinLevel=13,SellPrice=412,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15305::::::::40:::::::|h[Feral Shoes]|h|r",Type="Armor"},["Club"]={SubType="One-Handed Maces",Level=3,id=2130,StackCount=1,Rarity=1,MinLevel=1,SellPrice=10,Texture=133485,Type="Weapon",Link="|cffffffff|Hitem:2130::::::::40:::::::|h[Club]|h|r",EquipLoc="INVTYPE_WEAPON"},["Gorishi Sting"]={SubType="Junk",Level=1,id=22435,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=136067,Link="|cffffffff|Hitem:22435::::::::40:::::::|h[Gorishi Sting]|h|r",EquipLoc="",Type="Miscellaneous"},["Soft Wool Vest"]={SubType="Cloth",Level=5,id=4916,StackCount=1,Rarity=1,MinLevel=0,SellPrice=9,Texture=135018,Type="Armor",Link="|cffffffff|Hitem:4916::::::::40:::::::|h[Soft Wool Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Elegant Letter"]={SubType="Quest",Level=1,id=17126,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133460,EquipLoc="",Link="|cffffffff|Hitem:17126::::::::40:::::::|h[Elegant Letter]|h|r",Type="Quest"},["Kreeg's Stout Beatdown"]={SubType="Consumable",Level=1,id=18284,StackCount=10,Rarity=2,MinLevel=0,SellPrice=375,Texture=132792,Type="Consumable",Link="|cff1eff00|Hitem:18284::::::::40:::::::|h[Kreeg's Stout Beatdown]|h|r",EquipLoc=""},["The Postmaster's Band"]={SubType="Cloth",Level=61,id=13390,StackCount=1,Rarity=3,MinLevel=56,SellPrice=16367,Texture=133685,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:13390::::::::40:::::::|h[The Postmaster's Band]|h|r"},["Elder's Robe"]={SubType="Cloth",Level=35,id=7369,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2955,Texture=132658,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:7369::::::::40:::::::|h[Elder's Robe]|h|r",Type="Armor"},["Hetaera's Beaten Head"]={SubType="Quest",Level=1,id=10599,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134300,EquipLoc="",Link="|cffffffff|Hitem:10599::::::::40:::::::|h[Hetaera's Beaten Head]|h|r",Type="Quest"},["Field Marshal's Satin Vestments"]={SubType="Cloth",Level=74,id=17605,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27544,Texture=132643,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:17605::::::::40:::::::|h[Field Marshal's Satin Vestments]|h|r",Type="Armor"},["Highborne Pauldrons"]={SubType="Cloth",Level=54,id=14452,StackCount=1,Rarity=2,MinLevel=49,SellPrice=8836,Texture=135055,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14452::::::::40:::::::|h[Highborne Pauldrons]|h|r"},["JEFF TEST GLOVES"]={SubType="Leather",Level=1,id=12962,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132946,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:12962::::::::40:::::::|h[JEFF TEST GLOVES]|h|r"},["Reinforced Leather Bracers"]={SubType="Leather",Level=50,id=2474,StackCount=1,Rarity=1,MinLevel=45,SellPrice=3446,Texture=132602,Type="Armor",Link="|cffffffff|Hitem:2474::::::::40:::::::|h[Reinforced Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Charred Razormane Wand"]={SubType="Wands",Level=23,id=5092,StackCount=1,Rarity=1,MinLevel=18,SellPrice=240,Texture=135139,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:5092::::::::40:::::::|h[Charred Razormane Wand]|h|r",Type="Weapon"},["Battleworn Axe"]={SubType="Quest",Level=1,id=3014,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132392,EquipLoc="",Link="|cffffffff|Hitem:3014::::::::40:::::::|h[Battleworn Axe]|h|r",Type="Quest"},["Thin Cloth Armor"]={SubType="Cloth",Level=5,id=2121,StackCount=1,Rarity=1,MinLevel=1,SellPrice=10,Texture=135029,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:2121::::::::40:::::::|h[Thin Cloth Armor]|h|r",Type="Armor"},["Pattern: Flarecore Leggings"]={SubType="Tailoring",Level=70,id=19220,StackCount=1,Rarity=1,MinLevel=0,SellPrice=22500,Texture=134939,Link="|cffffffff|Hitem:19220::::::::40:::::::|h[Pattern: Flarecore Leggings]|h|r",EquipLoc="",Type="Recipe"},["Archon Chestpiece"]={SubType="Mail",Level=38,id=7759,StackCount=1,Rarity=3,MinLevel=33,SellPrice=6723,Texture=132633,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:7759::::::::40:::::::|h[Archon Chestpiece]|h|r",Type="Armor"},["Monster - Shield, Stromgarde"]={SubType="Shields",Level=1,id=6434,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:6434::::::::40:::::::|h[Monster - Shield, Stromgarde]|h|r"},["Tail Spike"]={SubType="Daggers",Level=22,id=6448,StackCount=1,Rarity=2,MinLevel=17,SellPrice=1942,Texture=135646,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:6448::::::::40:::::::|h[Tail Spike]|h|r"},["Grimoire of Shadow Bolt IV"]={SubType="Book",Level=20,id=3138,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:3138::::::::40:::::::|h[Grimoire of Shadow Bolt IV]|h|r"},["Recruitment Letter"]={SubType="Quest",Level=1,id=4992,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133473,EquipLoc="",Link="|cffffffff|Hitem:4992::::::::40:::::::|h[Recruitment Letter]|h|r",Type="Quest"},["15% Test Speed Boots"]={SubType="Miscellaneous",Level=1,id=18165,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132538,Type="Armor",Link="|cffffffff|Hitem:18165::::::::40:::::::|h[15% Test Speed Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Deprecated Trogg Vest"]={SubType="Cloth",Level=15,id=2574,StackCount=1,Rarity=0,MinLevel=10,SellPrice=117,Texture=135005,Link="|cff9d9d9d|Hitem:2574::::::::40:::::::|h[Deprecated Trogg Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Ancestral Orb"]={SubType="Miscellaneous",Level=12,id=15944,StackCount=1,Rarity=2,MinLevel=7,SellPrice=512,Texture=134335,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15944::::::::40:::::::|h[Ancestral Orb]|h|r",Type="Armor"},["Footpad's Shirt"]={SubType="Miscellaneous",Level=1,id=49,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135009,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:49::::::::40:::::::|h[Footpad's Shirt]|h|r",Type="Armor"},["Deprecated Drake-scale Leggings"]={SubType="Mail",Level=33,id=3232,StackCount=1,Rarity=0,MinLevel=28,SellPrice=1486,Texture=134583,Type="Armor",Link="|cff9d9d9d|Hitem:3232::::::::40:::::::|h[Deprecated Drake-scale Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Calico Cloak"]={SubType="Cloth",Level=14,id=1497,StackCount=1,Rarity=0,MinLevel=9,SellPrice=71,Texture=133754,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:1497::::::::40:::::::|h[Calico Cloak]|h|r"},["Techbot CPU Shell"]={SubType="Shields",Level=26,id=9444,StackCount=1,Rarity=1,MinLevel=21,SellPrice=1120,Texture=134955,Link="|cffffffff|Hitem:9444::::::::40:::::::|h[Techbot CPU Shell]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Maybell's Love Letter"]={SubType="Quest",Level=1,id=1208,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Link="|cffffffff|Hitem:1208::::::::40:::::::|h[Maybell's Love Letter]|h|r",EquipLoc="",Type="Quest"},["Huge Emerald"]={SubType="Trade Goods",Level=60,id=12364,StackCount=20,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134104,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:12364::::::::40:::::::|h[Huge Emerald]|h|r"},["Deprecated Deepwood Helm"]={SubType="Leather",Level=27,id=3063,StackCount=1,Rarity=0,MinLevel=22,SellPrice=518,Texture=133071,Type="Armor",Link="|cff9d9d9d|Hitem:3063::::::::40:::::::|h[Deprecated Deepwood Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Aurastone Hammer"]={SubType="One-Handed Maces",Level=69,id=17105,StackCount=1,Rarity=4,MinLevel=60,SellPrice=102178,Texture=133042,EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:17105::::::::40:::::::|h[Aurastone Hammer]|h|r",Type="Weapon"},["Feralheart Boots"]={SubType="Leather",Level=60,id=22107,StackCount=1,Rarity=4,MinLevel=0,SellPrice=24438,Texture=132542,Link="|cffa335ee|Hitem:22107::::::::40:::::::|h[Feralheart Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Letter to Delgren"]={SubType="Quest",Level=1,id=5354,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,EquipLoc="",Link="|cffffffff|Hitem:5354::::::::40:::::::|h[Letter to Delgren]|h|r",Type="Quest"},["Ironforge Breastplate"]={SubType="Mail",Level=20,id=6731,StackCount=1,Rarity=2,MinLevel=15,SellPrice=871,Texture=132740,Type="Armor",Link="|cff1eff00|Hitem:6731::::::::40:::::::|h[Ironforge Breastplate]|h|r",EquipLoc="INVTYPE_CHEST"},["Dragon's Eye"]={SubType="Miscellaneous",Level=56,id=10829,StackCount=1,Rarity=3,MinLevel=51,SellPrice=10680,Texture=133279,EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:10829::::::::40:::::::|h[Dragon's Eye]|h|r",Type="Armor"},["Stratholme Militia Shoulderguard"]={SubType="Mail",Level=60,id=18742,StackCount=1,Rarity=3,MinLevel=55,SellPrice=22503,Texture=135045,Type="Armor",Link="|cff0070dd|Hitem:18742::::::::40:::::::|h[Stratholme Militia Shoulderguard]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Enduring Cape"]={SubType="Cloth",Level=32,id=14763,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1685,Texture=133754,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14763::::::::40:::::::|h[Enduring Cape]|h|r"},["Dreadnaught Sabatons"]={SubType="Plate",Level=86,id=22420,StackCount=1,Rarity=4,MinLevel=60,SellPrice=73173,Texture=132587,Link="|cffa335ee|Hitem:22420::::::::40:::::::|h[Dreadnaught Sabatons]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Nezzliok's Head"]={SubType="Quest",Level=1,id=3905,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Link="|cffffffff|Hitem:3905::::::::40:::::::|h[Nezzliok's Head]|h|r",EquipLoc="",Type="Quest"},["Empty Vial Labeled #2"]={SubType="Consumable",Level=1,id=10688,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132793,EquipLoc="",Link="|cffffffff|Hitem:10688::::::::40:::::::|h[Empty Vial Labeled #2]|h|r",Type="Consumable"},["Tablet of Healing Wave III"]={SubType="Book",Level=12,id=9050,StackCount=1,Rarity=1,MinLevel=12,SellPrice=150,Texture=134459,Link="|cffffffff|Hitem:9050::::::::40:::::::|h[Tablet of Healing Wave III]|h|r",EquipLoc="",Type="Recipe"},["Earthweave Cloak"]={SubType="Cloth",Level=62,id=21187,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16409,Texture=133759,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:21187::::::::40:::::::|h[Earthweave Cloak]|h|r"},["Grimoire of Blood Boil III"]={SubType="Book",Level=30,id=4220,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2000,Texture=133738,Type="Recipe",Link="|cffffffff|Hitem:4220::::::::40:::::::|h[Grimoire of Blood Boil III]|h|r",EquipLoc=""},["High Robe of the Adjudicator"]={SubType="Cloth",Level=24,id=3461,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1005,Texture=132659,Link="|cff1eff00|Hitem:3461::::::::40:::::::|h[High Robe of the Adjudicator]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Guardian Gloves"]={SubType="Leather",Level=38,id=5966,StackCount=1,Rarity=1,MinLevel=33,SellPrice=1374,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:5966::::::::40:::::::|h[Guardian Gloves]|h|r"},["Infused Burning Gem"]={SubType="Quest",Level=1,id=6435,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134117,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6435::::::::40:::::::|h[Infused Burning Gem]|h|r"},["Necrology Robes"]={SubType="Cloth",Level=25,id=2292,StackCount=1,Rarity=3,MinLevel=20,SellPrice=1334,Texture=132677,Link="|cff0070dd|Hitem:2292::::::::40:::::::|h[Necrology Robes]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Lieutenant Commander's Diadem"]={SubType="Cloth",Level=63,id=17598,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8607,Texture=133126,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:17598::::::::40:::::::|h[Lieutenant Commander's Diadem]|h|r",Type="Armor"},["Gem of Serpentis"]={SubType="Quest",Level=1,id=9741,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134134,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9741::::::::40:::::::|h[Gem of Serpentis]|h|r"},["Grimoire of Create Bloodstone"]={SubType="Book",Level=26,id=4218,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:4218::::::::40:::::::|h[Grimoire of Create Bloodstone]|h|r",Type="Recipe"},["Canvas Shoes"]={SubType="Cloth",Level=17,id=1764,StackCount=1,Rarity=0,MinLevel=12,SellPrice=113,Texture=132543,Type="Armor",Link="|cff9d9d9d|Hitem:1764::::::::40:::::::|h[Canvas Shoes]|h|r",EquipLoc="INVTYPE_FEET"},["Deprecated Skullsplitter Idol"]={SubType="Consumable",Level=38,id=1612,StackCount=1,Rarity=1,MinLevel=28,SellPrice=65,Texture=134232,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:1612::::::::40:::::::|h[Deprecated Skullsplitter Idol]|h|r"},["Tome of Fiery Arcana"]={SubType="Miscellaneous",Level=65,id=19311,StackCount=1,Rarity=4,MinLevel=60,SellPrice=125000,Texture=133741,Link="|cffa335ee|Hitem:19311::::::::40:::::::|h[Tome of Fiery Arcana]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Elaborate Parchment"]={SubType="Quest",Level=1,id=6620,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",Link="|cffffffff|Hitem:6620::::::::40:::::::|h[Elaborate Parchment]|h|r",EquipLoc=""},["Outrider's Mail Leggings"]={SubType="Mail",Level=65,id=22676,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50650,Texture=134583,Link="|cffa335ee|Hitem:22676::::::::40:::::::|h[Outrider's Mail Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Toxic Fogger"]={SubType="Quest",Level=1,id=5638,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132620,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5638::::::::40:::::::|h[Toxic Fogger]|h|r"},["Perfect Deviate Scale"]={SubType="Reagent",Level=1,id=6471,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134303,Type="Reagent",Link="|cffffffff|Hitem:6471::::::::40:::::::|h[Perfect Deviate Scale]|h|r",EquipLoc=""},["Grimoire of Suffering (Rank 1)"]={SubType="Book",Level=24,id=16363,StackCount=1,Rarity=1,MinLevel=24,SellPrice=750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16363::::::::40:::::::|h[Grimoire of Suffering (Rank 1)]|h|r",Type="Recipe"},["Heavy Woolen Pants"]={SubType="Cloth",Level=22,id=4316,StackCount=1,Rarity=2,MinLevel=17,SellPrice=743,Texture=134581,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:4316::::::::40:::::::|h[Heavy Woolen Pants]|h|r"},["Renegade Gauntlets"]={SubType="Mail",Level=35,id=9868,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2160,Texture=132962,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9868::::::::40:::::::|h[Renegade Gauntlets]|h|r"},["Elder's Padded Armor"]={SubType="Cloth",Level=35,id=7353,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2998,Texture=135020,Link="|cff1eff00|Hitem:7353::::::::40:::::::|h[Elder's Padded Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Pattern: Robe of the Archmage"]={SubType="Tailoring",Level=62,id=14513,StackCount=1,Rarity=4,MinLevel=0,SellPrice=15000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffa335ee|Hitem:14513::::::::40:::::::|h[Pattern: Robe of the Archmage]|h|r"},["Steelclaw Reaver"]={SubType="One-Handed Axes",Level=38,id=7761,StackCount=1,Rarity=3,MinLevel=33,SellPrice=11290,Texture=132397,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:7761::::::::40:::::::|h[Steelclaw Reaver]|h|r"},["Monster - Mace, Standard Serpent"]={SubType="One-Handed Maces",Level=1,id=2810,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=136040,Type="Weapon",Link="|cff9d9d9d|Hitem:2810::::::::40:::::::|h[Monster - Mace, Standard Serpent]|h|r",EquipLoc="INVTYPE_WEAPON"},["Pattern: Runic Leather Shoulders"]={SubType="Leatherworking",Level=62,id=15777,StackCount=1,Rarity=2,MinLevel=0,SellPrice=15000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15777::::::::40:::::::|h[Pattern: Runic Leather Shoulders]|h|r",Type="Recipe"},["Monster - Mace2H, Fist of Omokk"]={SubType="Two-Handed Maces",Level=1,id=14586,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133041,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14586::::::::40:::::::|h[Monster - Mace2H, Fist of Omokk]|h|r"},["Darkmist Cape"]={SubType="Cloth",Level=39,id=14239,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3176,Texture=133756,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14239::::::::40:::::::|h[Darkmist Cape]|h|r"},["Heliotrope Cloak"]={SubType="Cloth",Level=60,id=18496,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14233,Texture=133754,Type="Armor",Link="|cff0070dd|Hitem:18496::::::::40:::::::|h[Heliotrope Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Tablet of Molten Blast V"]={SubType="Book",Level=38,id=4184,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:4184::::::::40:::::::|h[Tablet of Molten Blast V]|h|r",Type="Recipe"},["Cobalt Legguards"]={SubType="Mail",Level=27,id=17006,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1966,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:17006::::::::40:::::::|h[Cobalt Legguards]|h|r",Type="Armor"},["[PH] Mail Leggings of the Brilliant Dawn"]={SubType="Mail",Level=100,id=13780,StackCount=1,Rarity=1,MinLevel=100,SellPrice=106220,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:13780::::::::40:::::::|h[[PH] Mail Leggings of the Brilliant Dawn]|h|r"},["Plans: Inlaid Mithril Cylinder"]={SubType="Blacksmithing",Level=40,id=10713,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134941,EquipLoc="",Link="|cffffffff|Hitem:10713::::::::40:::::::|h[Plans: Inlaid Mithril Cylinder]|h|r",Type="Recipe"},["Great Goretusk Snout"]={SubType="Trade Goods",Level=16,id=2296,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=134172,Type="Trade Goods",Link="|cffffffff|Hitem:2296::::::::40:::::::|h[Great Goretusk Snout]|h|r",EquipLoc=""},["Knight's Gauntlets"]={SubType="Mail",Level=37,id=7457,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2564,Texture=132962,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7457::::::::40:::::::|h[Knight's Gauntlets]|h|r",Type="Armor"},["Goblin Rumors"]={SubType="Quest",Level=1,id=5804,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,Link="|cffffffff|Hitem:5804::::::::40:::::::|h[Goblin Rumors]|h|r",EquipLoc="",Type="Quest"},["Ordinary Egg"]={SubType="Quest",Level=1,id=8645,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=132832,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:8645::::::::40:::::::|h[Ordinary Egg]|h|r"},["Black Malice"]={SubType="Two-Handed Maces",Level=21,id=3194,StackCount=1,Rarity=3,MinLevel=16,SellPrice=2495,Texture=133476,Link="|cff0070dd|Hitem:3194::::::::40:::::::|h[Black Malice]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Silithid Ripper"]={SubType="One-Handed Swords",Level=36,id=8224,StackCount=1,Rarity=2,MinLevel=31,SellPrice=7655,Texture=135662,Link="|cff1eff00|Hitem:8224::::::::40:::::::|h[Silithid Ripper]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Crystal Breeze Mantle"]={SubType="Cloth",Level=59,id=15784,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11541,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15784::::::::40:::::::|h[Crystal Breeze Mantle]|h|r",Type="Armor"},["Tactical Task Briefing VII"]={SubType="Quest",Level=60,id=21166,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21166::::::::40:::::::|h[Tactical Task Briefing VII]|h|r",EquipLoc="",Type="Quest"},["Defiler's Lamellar Girdle"]={SubType="Plate",Level=63,id=20177,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11783,Texture=132503,Link="|cff0070dd|Hitem:20177::::::::40:::::::|h[Defiler's Lamellar Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Master's Cloak"]={SubType="Cloth",Level=61,id=10249,StackCount=1,Rarity=2,MinLevel=56,SellPrice=13435,Texture=133772,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10249::::::::40:::::::|h[Master's Cloak]|h|r",Type="Armor"},["Plans: Blue Glittering Axe"]={SubType="Blacksmithing",Level=44,id=7992,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7992::::::::40:::::::|h[Plans: Blue Glittering Axe]|h|r",Type="Recipe"},["Tablet of Nature Resistance"]={SubType="Book",Level=32,id=4177,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2500,Texture=134459,Link="|cffffffff|Hitem:4177::::::::40:::::::|h[Tablet of Nature Resistance]|h|r",EquipLoc="",Type="Recipe"},["Internal Warrior Equipment Kit L25"]={SubType="Junk",Level=1,id=9529,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:9529::::::::40:::::::|h[Internal Warrior Equipment Kit L25]|h|r"},["Codex of Inner Fire VI"]={SubType="Book",Level=60,id=9033,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9033::::::::40:::::::|h[Codex of Inner Fire VI]|h|r"},["Goblin Fishing Pole"]={SubType="Consumable",Level=35,id=4598,StackCount=10,Rarity=1,MinLevel=0,SellPrice=212,Texture=133711,Link="|cffffffff|Hitem:4598::::::::40:::::::|h[Goblin Fishing Pole]|h|r",EquipLoc="",Type="Consumable"},["Dal'Rend's Tribal Guardian"]={SubType="One-Handed Swords",Level=63,id=12939,StackCount=1,Rarity=3,MinLevel=58,SellPrice=60363,Texture=135350,Type="Weapon",EquipLoc="INVTYPE_WEAPONOFFHAND",Link="|cff0070dd|Hitem:12939::::::::40:::::::|h[Dal'Rend's Tribal Guardian]|h|r"},["Primal Mitts"]={SubType="Leather",Level=10,id=15008,StackCount=1,Rarity=1,MinLevel=5,SellPrice=37,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:15008::::::::40:::::::|h[Primal Mitts]|h|r",Type="Armor"},["Monster - Gun, Tauren Scope Blade Feathered Silver Deluxe"]={SubType="Guns",Level=1,id=13924,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135612,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:13924::::::::40:::::::|h[Monster - Gun, Tauren Scope Blade Feathered Silver Deluxe]|h|r"},["Woodland Robes"]={SubType="Cloth",Level=5,id=11189,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10,Texture=132663,Type="Armor",Link="|cffffffff|Hitem:11189::::::::40:::::::|h[Woodland Robes]|h|r",EquipLoc="INVTYPE_ROBE"},["Simple Parchment"]={SubType="Quest",Level=1,id=6497,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",Link="|cffffffff|Hitem:6497::::::::40:::::::|h[Simple Parchment]|h|r",EquipLoc=""},["Legionnaire's Mail Cinch"]={SubType="Mail",Level=60,id=16520,StackCount=1,Rarity=3,MinLevel=55,SellPrice=7213,Texture=132503,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16520::::::::40:::::::|h[Legionnaire's Mail Cinch]|h|r",Type="Armor"},["Tirion's Gift"]={SubType="Quest",Level=1,id=14872,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14872::::::::40:::::::|h[Tirion's Gift]|h|r"},["Disciple's Boots"]={SubType="Cloth",Level=11,id=7351,StackCount=1,Rarity=1,MinLevel=6,SellPrice=58,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:7351::::::::40:::::::|h[Disciple's Boots]|h|r"},["Demon Howl Wristguards"]={SubType="Mail",Level=62,id=18394,StackCount=1,Rarity=3,MinLevel=57,SellPrice=17133,Texture=132604,Type="Armor",Link="|cff0070dd|Hitem:18394::::::::40:::::::|h[Demon Howl Wristguards]|h|r",EquipLoc="INVTYPE_WRIST"},["Zandalar Demoniac's Mantle"]={SubType="Cloth",Level=61,id=19849,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=135048,Link="|cffa335ee|Hitem:19849::::::::40:::::::|h[Zandalar Demoniac's Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Monster - Shield, Ironforge"]={SubType="Shields",Level=1,id=6254,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:6254::::::::40:::::::|h[Monster - Shield, Ironforge]|h|r"},["Shifting Cloak"]={SubType="Cloth",Level=62,id=18511,StackCount=1,Rarity=4,MinLevel=57,SellPrice=20971,Texture=133772,Type="Armor",Link="|cffa335ee|Hitem:18511::::::::40:::::::|h[Shifting Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Hunting Spear"]={SubType="Polearms",Level=52,id=20083,StackCount=1,Rarity=3,MinLevel=0,SellPrice=40524,Texture=135125,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:20083::::::::40:::::::|h[Hunting Spear]|h|r"},["Flanged Mace"]={SubType="One-Handed Maces",Level=7,id=766,StackCount=1,Rarity=1,MinLevel=2,SellPrice=57,Texture=133482,Type="Weapon",Link="|cffffffff|Hitem:766::::::::40:::::::|h[Flanged Mace]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Monster - Spear, Badass Red"]={SubType="Polearms",Level=1,id=13631,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13631::::::::40:::::::|h[Monster - Spear, Badass Red]|h|r"},["Malicious Axe"]={SubType="Two-Handed Axes",Level=62,id=18759,StackCount=1,Rarity=3,MinLevel=57,SellPrice=67844,Texture=132409,Type="Weapon",Link="|cff0070dd|Hitem:18759::::::::40:::::::|h[Malicious Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Stormrage Belt"]={SubType="Leather",Level=76,id=16903,StackCount=1,Rarity=4,MinLevel=60,SellPrice=36472,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16903::::::::40:::::::|h[Stormrage Belt]|h|r",Type="Armor"},["Fine Shortbow"]={SubType="Bows",Level=16,id=11303,StackCount=1,Rarity=2,MinLevel=11,SellPrice=636,Texture=135495,Type="Weapon",Link="|cff1eff00|Hitem:11303::::::::40:::::::|h[Fine Shortbow]|h|r",EquipLoc="INVTYPE_RANGED"},["Gothic Plate Helmet"]={SubType="Plate",Level=46,id=10090,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5148,Texture=133078,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10090::::::::40:::::::|h[Gothic Plate Helmet]|h|r",Type="Armor"},["Steel Bar"]={SubType="Trade Goods",Level=35,id=3859,StackCount=20,Rarity=1,MinLevel=0,SellPrice=60,Texture=133234,EquipLoc="",Link="|cffffffff|Hitem:3859::::::::40:::::::|h[Steel Bar]|h|r",Type="Trade Goods"},["Monster - Staff, Ornate Warlock Staff Black Glow Low"]={SubType="Staves",Level=1,id=13698,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13698::::::::40:::::::|h[Monster - Staff, Ornate Warlock Staff Black Glow Low]|h|r"},["Warden's Gloves"]={SubType="Leather",Level=41,id=14606,StackCount=1,Rarity=2,MinLevel=36,SellPrice=2955,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14606::::::::40:::::::|h[Warden's Gloves]|h|r"},["Glorious Gauntlets"]={SubType="Plate",Level=56,id=14967,StackCount=1,Rarity=2,MinLevel=51,SellPrice=6867,Texture=132944,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14967::::::::40:::::::|h[Glorious Gauntlets]|h|r"},["King's Square Postbox Key"]={SubType="Key",Level=1,id=13306,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:13306::::::::40:::::::|h[King's Square Postbox Key]|h|r"},["Dragonstalker's Bracers"]={SubType="Mail",Level=76,id=16935,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42481,Texture=132616,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16935::::::::40:::::::|h[Dragonstalker's Bracers]|h|r",Type="Armor"},["Bouquet of White Roses"]={SubType="Miscellaneous",Level=50,id=3423,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=133939,EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:3423::::::::40:::::::|h[Bouquet of White Roses]|h|r",Type="Armor"},["Gray Woolen Shirt"]={SubType="Miscellaneous",Level=20,id=2587,StackCount=1,Rarity=1,MinLevel=0,SellPrice=200,Texture=135025,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:2587::::::::40:::::::|h[Gray Woolen Shirt]|h|r",Type="Armor"},["Dirk"]={SubType="Daggers",Level=3,id=2139,StackCount=1,Rarity=1,MinLevel=1,SellPrice=11,Texture=135650,Link="|cffffffff|Hitem:2139::::::::40:::::::|h[Dirk]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Bristlebark Blouse"]={SubType="Leather",Level=28,id=14570,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1870,Texture=132723,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14570::::::::40:::::::|h[Bristlebark Blouse]|h|r"},["General's Satin Leggings"]={SubType="Cloth",Level=71,id=17625,StackCount=1,Rarity=4,MinLevel=60,SellPrice=23789,Texture=134587,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:17625::::::::40:::::::|h[General's Satin Leggings]|h|r",Type="Armor"},["Thistlefur Belt"]={SubType="Cloth",Level=32,id=14205,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1042,Texture=132512,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14205::::::::40:::::::|h[Thistlefur Belt]|h|r"},["QATest +1000 Spell Dmg Ring"]={SubType="Miscellaneous",Level=6,id=24358,StackCount=1,Rarity=4,MinLevel=1,SellPrice=91453,Texture=133380,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:24358::::::::40:::::::|h[QATest +1000 Spell Dmg Ring]|h|r"},["Peerless Shoulders"]={SubType="Leather",Level=58,id=15432,StackCount=1,Rarity=2,MinLevel=53,SellPrice=14104,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15432::::::::40:::::::|h[Peerless Shoulders]|h|r",Type="Armor"},["Schematic: Spellpower Goggles Xtreme Plus"]={SubType="Engineering",Level=54,id=16045,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:16045::::::::40:::::::|h[Schematic: Spellpower Goggles Xtreme Plus]|h|r",Type="Recipe"},["The Story With No Conclusion"]={SubType="Consumable",Level=1,id=13152,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133742,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13152::::::::40:::::::|h[The Story With No Conclusion]|h|r"},["Deathmist Robe"]={SubType="Cloth",Level=60,id=22075,StackCount=1,Rarity=4,MinLevel=0,SellPrice=26852,Texture=132690,Link="|cffa335ee|Hitem:22075::::::::40:::::::|h[Deathmist Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Robes of the Lich"]={SubType="Cloth",Level=44,id=10762,StackCount=1,Rarity=3,MinLevel=39,SellPrice=6903,Texture=132658,EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:10762::::::::40:::::::|h[Robes of the Lich]|h|r",Type="Armor"},["Living Leggings"]={SubType="Leather",Level=57,id=15060,StackCount=1,Rarity=3,MinLevel=52,SellPrice=21277,Texture=134585,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:15060::::::::40:::::::|h[Living Leggings]|h|r",Type="Armor"},["Demon Band"]={SubType="Miscellaneous",Level=24,id=12054,StackCount=1,Rarity=2,MinLevel=19,SellPrice=837,Texture=133346,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12054::::::::40:::::::|h[Demon Band]|h|r"},["Dark Iron Rifle"]={SubType="Guns",Level=55,id=16004,StackCount=1,Rarity=3,MinLevel=50,SellPrice=29152,Texture=135617,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:16004::::::::40:::::::|h[Dark Iron Rifle]|h|r",Type="Weapon"},["Peerless Boots"]={SubType="Leather",Level=58,id=15426,StackCount=1,Rarity=2,MinLevel=53,SellPrice=13419,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15426::::::::40:::::::|h[Peerless Boots]|h|r",Type="Armor"},["Interlaced Shadow Jerkin"]={SubType="Leather",Level=71,id=19439,StackCount=1,Rarity=4,MinLevel=60,SellPrice=56552,Texture=132718,Link="|cffa335ee|Hitem:19439::::::::40:::::::|h[Interlaced Shadow Jerkin]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["The Fourth Troll Legend"]={SubType="Quest",Level=1,id=2008,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Link="|cffffffff|Hitem:2008::::::::40:::::::|h[The Fourth Troll Legend]|h|r",EquipLoc="",Type="Quest"},["Clamlette Surprise"]={SubType="Consumable",Level=45,id=16971,StackCount=20,Rarity=1,MinLevel=40,SellPrice=300,Texture=134433,EquipLoc="",Link="|cffffffff|Hitem:16971::::::::40:::::::|h[Clamlette Surprise]|h|r",Type="Consumable"},["Nightsky Cloak"]={SubType="Cloth",Level=32,id=4719,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1676,Texture=132682,Type="Armor",Link="|cff1eff00|Hitem:4719::::::::40:::::::|h[Nightsky Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Onyxia Blood Talisman"]={SubType="Miscellaneous",Level=74,id=18406,StackCount=1,Rarity=4,MinLevel=0,SellPrice=46030,Texture=136168,Type="Armor",Link="|cffa335ee|Hitem:18406::::::::40:::::::|h[Onyxia Blood Talisman]|h|r",EquipLoc="INVTYPE_TRINKET"},["Codex of Renew IX"]={SubType="Book",Level=56,id=9019,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9019::::::::40:::::::|h[Codex of Renew IX]|h|r"},["Glacial Blade"]={SubType="Daggers",Level=65,id=19099,StackCount=1,Rarity=3,MinLevel=60,SellPrice=63065,Texture=135642,Link="|cff0070dd|Hitem:19099::::::::40:::::::|h[Glacial Blade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Black Ash Robe"]={SubType="Cloth",Level=75,id=19399,StackCount=1,Rarity=4,MinLevel=60,SellPrice=53541,Texture=132691,Link="|cffa335ee|Hitem:19399::::::::40:::::::|h[Black Ash Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Test Fire Resist Plate LockBox"]={SubType="Junk",Level=1,id=16071,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16071::::::::40:::::::|h[Test Fire Resist Plate LockBox]|h|r",Type="Miscellaneous"},["Gloves of Prophecy"]={SubType="Cloth",Level=66,id=16812,StackCount=1,Rarity=4,MinLevel=60,SellPrice=18040,Texture=132948,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16812::::::::40:::::::|h[Gloves of Prophecy]|h|r",Type="Armor"},["Viking Warhammer"]={SubType="One-Handed Maces",Level=54,id=1721,StackCount=1,Rarity=3,MinLevel=49,SellPrice=35815,Texture=133046,Link="|cff0070dd|Hitem:1721::::::::40:::::::|h[Viking Warhammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Prowler Claws"]={SubType="Quest",Level=1,id=5096,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132935,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5096::::::::40:::::::|h[Prowler Claws]|h|r"},["Southwind's Grasp"]={SubType="Leather",Level=71,id=21494,StackCount=1,Rarity=3,MinLevel=60,SellPrice=21845,Texture=132514,Link="|cff0070dd|Hitem:21494::::::::40:::::::|h[Southwind's Grasp]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Bonelink Armor"]={SubType="Mail",Level=47,id=15609,StackCount=1,Rarity=2,MinLevel=42,SellPrice=11806,Texture=132627,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15609::::::::40:::::::|h[Bonelink Armor]|h|r",Type="Armor"},["Abyssal Cloth Sash"]={SubType="Cloth",Level=65,id=20664,StackCount=1,Rarity=2,MinLevel=60,SellPrice=10628,Texture=132495,Link="|cff1eff00|Hitem:20664::::::::40:::::::|h[Abyssal Cloth Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["90 Epic Warrior Helm"]={SubType="Plate",Level=90,id=20138,StackCount=1,Rarity=4,MinLevel=60,SellPrice=86044,Texture=133077,Link="|cffa335ee|Hitem:20138::::::::40:::::::|h[90 Epic Warrior Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Tablet of Stoneclaw Totem III"]={SubType="Book",Level=18,id=9077,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9077::::::::40:::::::|h[Tablet of Stoneclaw Totem III]|h|r"},["Legionnaire's Dreadweave Legguards"]={SubType="Cloth",Level=68,id=22881,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14605,Texture=134586,Link="|cff0070dd|Hitem:22881::::::::40:::::::|h[Legionnaire's Dreadweave Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Native Bands"]={SubType="Cloth",Level=11,id=14095,StackCount=1,Rarity=1,MinLevel=6,SellPrice=36,Texture=132607,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:14095::::::::40:::::::|h[Native Bands]|h|r"},["Master's Mantle"]={SubType="Cloth",Level=63,id=10253,StackCount=1,Rarity=2,MinLevel=58,SellPrice=15024,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10253::::::::40:::::::|h[Master's Mantle]|h|r",Type="Armor"},["Sniper Rifle"]={SubType="Guns",Level=44,id=3430,StackCount=1,Rarity=2,MinLevel=39,SellPrice=11026,Texture=135614,Link="|cff1eff00|Hitem:3430::::::::40:::::::|h[Sniper Rifle]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Master's Leggings"]={SubType="Cloth",Level=64,id=10252,StackCount=1,Rarity=2,MinLevel=59,SellPrice=20959,Texture=134589,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10252::::::::40:::::::|h[Master's Leggings]|h|r",Type="Armor"},["Qiraji Glyphed Jewel"]={SubType="Quest",Level=1,id=20883,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=132617,Link="|cffa335ee|Hitem:20883::::::::40:::::::|h[Qiraji Glyphed Jewel]|h|r",EquipLoc="",Type="Quest"},["Light Hide"]={SubType="Trade Goods",Level=10,id=783,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=134369,EquipLoc="",Link="|cffffffff|Hitem:783::::::::40:::::::|h[Light Hide]|h|r",Type="Trade Goods"},["Brutish Shoulders"]={SubType="Plate",Level=45,id=14909,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4897,Texture=135042,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14909::::::::40:::::::|h[Brutish Shoulders]|h|r"},["Deprecated Soft Leather Hood"]={SubType="Leather",Level=19,id=1279,StackCount=1,Rarity=0,MinLevel=0,SellPrice=192,Texture=133072,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:1279::::::::40:::::::|h[Deprecated Soft Leather Hood]|h|r"},["Lesser Magic Wand"]={SubType="Wands",Level=15,id=11287,StackCount=1,Rarity=2,MinLevel=5,SellPrice=508,Texture=135139,Type="Weapon",Link="|cff1eff00|Hitem:11287::::::::40:::::::|h[Lesser Magic Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Waistband of Wrath"]={SubType="Plate",Level=76,id=16960,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29614,Texture=132498,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16960::::::::40:::::::|h[Waistband of Wrath]|h|r",Type="Armor"},["Mesh Belt"]={SubType="Cloth",Level=68,id=3952,StackCount=1,Rarity=0,MinLevel=63,SellPrice=5109,Texture=132504,Link="|cff9d9d9d|Hitem:3952::::::::40:::::::|h[Mesh Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Dirty Leather Bracers"]={SubType="Leather",Level=5,id=1836,StackCount=1,Rarity=1,MinLevel=1,SellPrice=6,Texture=132603,Type="Armor",Link="|cffffffff|Hitem:1836::::::::40:::::::|h[Dirty Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Grimoire of Blood Pact (Rank 2)"]={SubType="Book",Level=14,id=16322,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16322::::::::40:::::::|h[Grimoire of Blood Pact (Rank 2)]|h|r",Type="Recipe"},["Cutthroat's Mantle"]={SubType="Leather",Level=34,id=15140,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2529,Texture=135042,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15140::::::::40:::::::|h[Cutthroat's Mantle]|h|r",Type="Armor"},["Dirty Blunderbuss"]={SubType="Guns",Level=18,id=2781,StackCount=1,Rarity=0,MinLevel=13,SellPrice=335,Texture=135610,Link="|cff9d9d9d|Hitem:2781::::::::40:::::::|h[Dirty Blunderbuss]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Cooked Glossy Mightfish"]={SubType="Consumable",Level=45,id=13927,StackCount=20,Rarity=1,MinLevel=35,SellPrice=8,Texture=134301,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13927::::::::40:::::::|h[Cooked Glossy Mightfish]|h|r"},["Cross-stitched Cloak"]={SubType="Cloth",Level=30,id=1782,StackCount=1,Rarity=0,MinLevel=25,SellPrice=541,Texture=133766,EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:1782::::::::40:::::::|h[Cross-stitched Cloak]|h|r",Type="Armor"},["Manual of Revenge VI"]={SubType="Book",Level=60,id=21299,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133735,Link="|cff0070dd|Hitem:21299::::::::40:::::::|h[Manual of Revenge VI]|h|r",EquipLoc="",Type="Recipe"},["Bonecaster Sash"]={SubType="Cloth",Level=9,id=3320,StackCount=1,Rarity=1,MinLevel=4,SellPrice=22,Texture=133693,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:3320::::::::40:::::::|h[Bonecaster Sash]|h|r"},["Formula: Enchant Bracer - Superior Stamina"]={SubType="Enchanting",Level=60,id=16251,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16251::::::::40:::::::|h[Formula: Enchant Bracer - Superior Stamina]|h|r",Type="Recipe"},["Defias Mage Staff"]={SubType="Staves",Level=16,id=1928,StackCount=1,Rarity=2,MinLevel=11,SellPrice=995,Texture=135155,Link="|cff1eff00|Hitem:1928::::::::40:::::::|h[Defias Mage Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Grimoire of Life Tap III"]={SubType="Book",Level=30,id=9217,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9217::::::::40:::::::|h[Grimoire of Life Tap III]|h|r"},["Heavy Weave Armor"]={SubType="Cloth",Level=17,id=837,StackCount=1,Rarity=1,MinLevel=12,SellPrice=224,Texture=135010,Link="|cffffffff|Hitem:837::::::::40:::::::|h[Heavy Weave Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Monster - Staff, Feathered Black"]={SubType="Staves",Level=1,id=13336,StackCount=1,Rarity=0,MinLevel=0,SellPrice=2,Texture=135225,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13336::::::::40:::::::|h[Monster - Staff, Feathered Black]|h|r"},["Dried Seeds"]={SubType="Quest",Level=1,id=5068,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,EquipLoc="",Link="|cffffffff|Hitem:5068::::::::40:::::::|h[Dried Seeds]|h|r",Type="Quest"},["Cobrahn's Grasp"]={SubType="Mail",Level=24,id=6460,StackCount=1,Rarity=3,MinLevel=19,SellPrice=844,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:6460::::::::40:::::::|h[Cobrahn's Grasp]|h|r"},["Breastplate of Bloodthirst"]={SubType="Leather",Level=62,id=12757,StackCount=1,Rarity=4,MinLevel=0,SellPrice=35192,Texture=132635,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:12757::::::::40:::::::|h[Breastplate of Bloodthirst]|h|r"},["Humbert's Chestpiece"]={SubType="Mail",Level=28,id=3053,StackCount=1,Rarity=2,MinLevel=23,SellPrice=2140,Texture=132624,Type="Armor",Link="|cff1eff00|Hitem:3053::::::::40:::::::|h[Humbert's Chestpiece]|h|r",EquipLoc="INVTYPE_CHEST"},["Supply Bag"]={SubType="Bag",Level=60,id=22679,StackCount=1,Rarity=3,MinLevel=0,SellPrice=8750,Texture=133650,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cff0070dd|Hitem:22679::::::::40:::::::|h[Supply Bag]|h|r"},["War Horn Mouthpiece"]={SubType="Consumable",Level=1,id=6074,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134374,Type="Consumable",Link="|cffffffff|Hitem:6074::::::::40:::::::|h[War Horn Mouthpiece]|h|r",EquipLoc=""},["Eternal Cloak"]={SubType="Cloth",Level=58,id=14331,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11654,Texture=133756,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14331::::::::40:::::::|h[Eternal Cloak]|h|r"},["Deprecated Gnoll War Beads"]={SubType="Quest",Level=1,id=527,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=133280,Type="Quest",Link="|cffffffff|Hitem:527::::::::40:::::::|h[Deprecated Gnoll War Beads]|h|r",EquipLoc=""},["Steamwheedle Fizzy Spirits"]={SubType="Consumable",Level=15,id=17403,StackCount=20,Rarity=1,MinLevel=0,SellPrice=37,Texture=132798,EquipLoc="",Link="|cffffffff|Hitem:17403::::::::40:::::::|h[Steamwheedle Fizzy Spirits]|h|r",Type="Consumable"},["Elegant Shortsword"]={SubType="One-Handed Swords",Level=20,id=5321,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1484,Texture=135276,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:5321::::::::40:::::::|h[Elegant Shortsword]|h|r",Type="Weapon"},["Schematic: Small Red Rocket"]={SubType="Engineering",Level=25,id=21726,StackCount=1,Rarity=2,MinLevel=0,SellPrice=175,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:21726::::::::40:::::::|h[Schematic: Small Red Rocket]|h|r"},["Chainmail Belt"]={SubType="Mail",Level=17,id=1845,StackCount=1,Rarity=1,MinLevel=12,SellPrice=175,Texture=132492,Link="|cffffffff|Hitem:1845::::::::40:::::::|h[Chainmail Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Carrot on a Stick"]={SubType="Miscellaneous",Level=50,id=11122,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7162,Texture=134010,Type="Armor",Link="|cff1eff00|Hitem:11122::::::::40:::::::|h[Carrot on a Stick]|h|r",EquipLoc="INVTYPE_TRINKET"},["Wicked Chain Helmet"]={SubType="Mail",Level=34,id=15540,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2827,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15540::::::::40:::::::|h[Wicked Chain Helmet]|h|r",Type="Armor"},["Double Mail Gloves"]={SubType="Mail",Level=36,id=3812,StackCount=1,Rarity=0,MinLevel=31,SellPrice=971,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:3812::::::::40:::::::|h[Double Mail Gloves]|h|r",Type="Armor"},["Mercurial Legguards"]={SubType="Mail",Level=63,id=10162,StackCount=1,Rarity=2,MinLevel=58,SellPrice=28137,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10162::::::::40:::::::|h[Mercurial Legguards]|h|r",Type="Armor"},["Belt of Ten Storms"]={SubType="Mail",Level=76,id=16944,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45065,Texture=132503,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16944::::::::40:::::::|h[Belt of Ten Storms]|h|r",Type="Armor"},["Madwolf Bracers"]={SubType="Leather",Level=29,id=897,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1022,Texture=132604,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:897::::::::40:::::::|h[Madwolf Bracers]|h|r"},["Cassandra's Grace"]={SubType="Cloth",Level=47,id=13102,StackCount=1,Rarity=3,MinLevel=42,SellPrice=6879,Texture=133345,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:13102::::::::40:::::::|h[Cassandra's Grace]|h|r"},["Nugget Slug"]={SubType="Quest",Level=1,id=11143,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134063,Type="Quest",Link="|cffffffff|Hitem:11143::::::::40:::::::|h[Nugget Slug]|h|r",EquipLoc=""},["Human Bone Chip"]={SubType="Quest",Level=60,id=18144,StackCount=100,Rarity=1,MinLevel=1,SellPrice=0,Texture=133724,Type="Quest",Link="|cffffffff|Hitem:18144::::::::40:::::::|h[Human Bone Chip]|h|r",EquipLoc=""},["Test AQ Resource - Heavy Leather"]={SubType="Junk",Level=1,id=21655,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21655::::::::40:::::::|h[Test AQ Resource - Heavy Leather]|h|r",EquipLoc="",Type="Miscellaneous"},["Well-used Sword"]={SubType="One-Handed Swords",Level=10,id=1008,StackCount=1,Rarity=1,MinLevel=0,SellPrice=144,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:1008::::::::40:::::::|h[Well-used Sword]|h|r"},["Protective Pavise"]={SubType="Shields",Level=48,id=3986,StackCount=1,Rarity=0,MinLevel=43,SellPrice=5332,Texture=134952,Type="Armor",Link="|cff9d9d9d|Hitem:3986::::::::40:::::::|h[Protective Pavise]|h|r",EquipLoc="INVTYPE_SHIELD"},["Greenweave Mantle"]={SubType="Cloth",Level=26,id=10287,StackCount=1,Rarity=2,MinLevel=21,SellPrice=964,Texture=135044,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10287::::::::40:::::::|h[Greenweave Mantle]|h|r",Type="Armor"},["Modified Seaforium Booster"]={SubType="Quest",Level=1,id=5865,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132385,Link="|cffffffff|Hitem:5865::::::::40:::::::|h[Modified Seaforium Booster]|h|r",EquipLoc="",Type="Quest"},["Gloves of the Fallen Prophet"]={SubType="Mail",Level=75,id=21890,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42013,Texture=132945,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:21890::::::::40:::::::|h[Gloves of the Fallen Prophet]|h|r"},["Punctured Dew Gland"]={SubType="Junk",Level=0,id=8429,StackCount=10,Rarity=0,MinLevel=0,SellPrice=31,Texture=134437,Link="|cff9d9d9d|Hitem:8429::::::::40:::::::|h[Punctured Dew Gland]|h|r",EquipLoc="",Type="Miscellaneous"},["Highlander's Leather Shoulders"]={SubType="Leather",Level=65,id=20059,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31894,Texture=135055,Link="|cffa335ee|Hitem:20059::::::::40:::::::|h[Highlander's Leather Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Sickle Axe"]={SubType="One-Handed Axes",Level=39,id=1602,StackCount=1,Rarity=3,MinLevel=34,SellPrice=11685,Texture=132397,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:1602::::::::40:::::::|h[Sickle Axe]|h|r",Type="Weapon"},["Lean Wolf Steak"]={SubType="Consumable",Level=25,id=12209,StackCount=20,Rarity=1,MinLevel=15,SellPrice=95,Texture=134003,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12209::::::::40:::::::|h[Lean Wolf Steak]|h|r"},["Turtle Scale Bracers"]={SubType="Mail",Level=42,id=8198,StackCount=1,Rarity=2,MinLevel=37,SellPrice=4013,Texture=132605,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:8198::::::::40:::::::|h[Turtle Scale Bracers]|h|r"},["Brigade Breastplate"]={SubType="Mail",Level=45,id=9928,StackCount=1,Rarity=2,MinLevel=40,SellPrice=9930,Texture=132750,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9928::::::::40:::::::|h[Brigade Breastplate]|h|r"},["Gloves of Earthen Power"]={SubType="Leather",Level=62,id=21178,StackCount=1,Rarity=3,MinLevel=0,SellPrice=14231,Texture=132952,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:21178::::::::40:::::::|h[Gloves of Earthen Power]|h|r"},["Market Row Postbox Key"]={SubType="Key",Level=1,id=13302,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:13302::::::::40:::::::|h[Market Row Postbox Key]|h|r"},["Heraldic Gloves"]={SubType="Leather",Level=47,id=8121,StackCount=1,Rarity=2,MinLevel=42,SellPrice=4843,Texture=132949,Link="|cff1eff00|Hitem:8121::::::::40:::::::|h[Heraldic Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Schematic: Flash Bomb"]={SubType="Engineering",Level=37,id=6672,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:6672::::::::40:::::::|h[Schematic: Flash Bomb]|h|r"},["Electromagnetic Gigaflux Reactivator"]={SubType="Cloth",Level=37,id=9492,StackCount=1,Rarity=3,MinLevel=32,SellPrice=3172,Texture=132995,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:9492::::::::40:::::::|h[Electromagnetic Gigaflux Reactivator]|h|r"},["Craftsman's Writ - Runn Tum Tuber Surprise"]={SubType="Junk",Level=60,id=22626,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22626::::::::40:::::::|h[Craftsman's Writ - Runn Tum Tuber Surprise]|h|r"},["Right-Handed Blades"]={SubType="Fist Weapons",Level=35,id=15904,StackCount=1,Rarity=1,MinLevel=30,SellPrice=4341,Texture=132941,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:15904::::::::40:::::::|h[Right-Handed Blades]|h|r",Type="Weapon"},["Book of Starfire"]={SubType="Book",Level=20,id=8757,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133743,Link="|cffffffff|Hitem:8757::::::::40:::::::|h[Book of Starfire]|h|r",EquipLoc="",Type="Recipe"},["Tribal Cloak"]={SubType="Cloth",Level=9,id=4674,StackCount=1,Rarity=1,MinLevel=4,SellPrice=32,Texture=133150,Link="|cffffffff|Hitem:4674::::::::40:::::::|h[Tribal Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Azurite Fists"]={SubType="Mail",Level=52,id=20369,StackCount=1,Rarity=3,MinLevel=0,SellPrice=9975,Texture=132964,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:20369::::::::40:::::::|h[Azurite Fists]|h|r"},["Schematic: Mechanical Squirrel"]={SubType="Engineering",Level=15,id=4408,StackCount=1,Rarity=2,MinLevel=0,SellPrice=162,Texture=134942,Link="|cff1eff00|Hitem:4408::::::::40:::::::|h[Schematic: Mechanical Squirrel]|h|r",EquipLoc="",Type="Recipe"},["Windchaser Woolies"]={SubType="Cloth",Level=46,id=14433,StackCount=1,Rarity=2,MinLevel=41,SellPrice=6764,Texture=134592,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14433::::::::40:::::::|h[Windchaser Woolies]|h|r"},["Redemption Spaulders"]={SubType="Plate",Level=86,id=22429,StackCount=1,Rarity=4,MinLevel=60,SellPrice=70300,Texture=135045,Link="|cffa335ee|Hitem:22429::::::::40:::::::|h[Redemption Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Stylish Red Shirt"]={SubType="Miscellaneous",Level=22,id=4330,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=135029,Link="|cffffffff|Hitem:4330::::::::40:::::::|h[Stylish Red Shirt]|h|r",EquipLoc="INVTYPE_BODY",Type="Armor"},["Book of Starfire IV"]={SubType="Book",Level=42,id=8907,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133743,Link="|cffffffff|Hitem:8907::::::::40:::::::|h[Book of Starfire IV]|h|r",EquipLoc="",Type="Recipe"},["Elunarian Diadem"]={SubType="Cloth",Level=63,id=14460,StackCount=1,Rarity=2,MinLevel=58,SellPrice=14661,Texture=133123,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14460::::::::40:::::::|h[Elunarian Diadem]|h|r"},["Ranger Helm"]={SubType="Leather",Level=42,id=7479,StackCount=1,Rarity=2,MinLevel=37,SellPrice=4873,Texture=133111,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7479::::::::40:::::::|h[Ranger Helm]|h|r",Type="Armor"},["Taretha's Necklace"]={SubType="Quest",Level=1,id=3498,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133298,Link="|cffffffff|Hitem:3498::::::::40:::::::|h[Taretha's Necklace]|h|r",EquipLoc="",Type="Quest"},["Stable Boots"]={SubType="Leather",Level=18,id=4789,StackCount=1,Rarity=2,MinLevel=13,SellPrice=399,Texture=132537,Type="Armor",Link="|cff1eff00|Hitem:4789::::::::40:::::::|h[Stable Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Kreenig Snarlsnout's Tusk"]={SubType="Quest",Level=1,id=5063,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133722,EquipLoc="",Link="|cffffffff|Hitem:5063::::::::40:::::::|h[Kreenig Snarlsnout's Tusk]|h|r",Type="Quest"},["Elemental Earth"]={SubType="Reagent",Level=25,id=7067,StackCount=10,Rarity=1,MinLevel=0,SellPrice=400,Texture=134572,Link="|cffffffff|Hitem:7067::::::::40:::::::|h[Elemental Earth]|h|r",EquipLoc="",Type="Reagent"},["Flame Wrath"]={SubType="Polearms",Level=56,id=11809,StackCount=1,Rarity=3,MinLevel=51,SellPrice=51287,Texture=135124,Type="Weapon",Link="|cff0070dd|Hitem:11809::::::::40:::::::|h[Flame Wrath]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Codex of Flash Heal"]={SubType="Book",Level=20,id=8964,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133741,Link="|cffffffff|Hitem:8964::::::::40:::::::|h[Codex of Flash Heal]|h|r",EquipLoc="",Type="Recipe"},["Dervish Gloves"]={SubType="Leather",Level=28,id=6605,StackCount=1,Rarity=2,MinLevel=23,SellPrice=971,Texture=132958,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:6605::::::::40:::::::|h[Dervish Gloves]|h|r"},["Lightning Gland"]={SubType="Quest",Level=1,id=4898,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,Type="Quest",Link="|cffffffff|Hitem:4898::::::::40:::::::|h[Lightning Gland]|h|r",EquipLoc=""},["Masterwork Stormhammer"]={SubType="One-Handed Maces",Level=63,id=12794,StackCount=1,Rarity=3,MinLevel=57,SellPrice=56304,Texture=133041,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:12794::::::::40:::::::|h[Masterwork Stormhammer]|h|r"},["Stinger of Ayamiss"]={SubType="One-Handed Maces",Level=69,id=21466,StackCount=1,Rarity=4,MinLevel=60,SellPrice=99935,Texture=2245030,Link="|cffa335ee|Hitem:21466::::::::40:::::::|h[Stinger of Ayamiss]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Slitherscale Boots"]={SubType="Leather",Level=52,id=10801,StackCount=1,Rarity=3,MinLevel=47,SellPrice=11704,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:10801::::::::40:::::::|h[Slitherscale Boots]|h|r",Type="Armor"},["Gargoyle Leggings"]={SubType="Mail",Level=18,id=15451,StackCount=1,Rarity=2,MinLevel=0,SellPrice=643,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15451::::::::40:::::::|h[Gargoyle Leggings]|h|r",Type="Armor"},["Gauntlets of Ten Storms"]={SubType="Mail",Level=76,id=16948,StackCount=1,Rarity=4,MinLevel=60,SellPrice=41356,Texture=132945,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16948::::::::40:::::::|h[Gauntlets of Ten Storms]|h|r",Type="Armor"},["Mithril Scale Shoulders"]={SubType="Mail",Level=47,id=7932,StackCount=1,Rarity=2,MinLevel=42,SellPrice=8661,Texture=135043,Link="|cff1eff00|Hitem:7932::::::::40:::::::|h[Mithril Scale Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Elixir of Detect Undead"]={SubType="Consumable",Level=46,id=9154,StackCount=5,Rarity=1,MinLevel=36,SellPrice=300,Texture=134833,Link="|cffffffff|Hitem:9154::::::::40:::::::|h[Elixir of Detect Undead]|h|r",EquipLoc="",Type="Consumable"},["Moonglow"]={SubType="Consumable",Level=1,id=21721,StackCount=10,Rarity=1,MinLevel=0,SellPrice=3,Texture=134800,Link="|cffffffff|Hitem:21721::::::::40:::::::|h[Moonglow]|h|r",EquipLoc="",Type="Consumable"},["The Widow's Embrace"]={SubType="One-Handed Maces",Level=81,id=22942,StackCount=1,Rarity=4,MinLevel=60,SellPrice=189114,Texture=133506,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:22942::::::::40:::::::|h[The Widow's Embrace]|h|r"},["The Chief's Enforcer"]={SubType="Staves",Level=50,id=9477,StackCount=1,Rarity=3,MinLevel=45,SellPrice=35936,Texture=135225,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9477::::::::40:::::::|h[The Chief's Enforcer]|h|r"},["Coldstone Slippers"]={SubType="Cloth",Level=55,id=18697,StackCount=1,Rarity=3,MinLevel=50,SellPrice=10867,Texture=132579,Type="Armor",Link="|cff0070dd|Hitem:18697::::::::40:::::::|h[Coldstone Slippers]|h|r",EquipLoc="INVTYPE_FEET"},["Eskhandar's Pelt"]={SubType="Cloth",Level=66,id=18204,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27370,Texture=133759,Type="Armor",Link="|cffa335ee|Hitem:18204::::::::40:::::::|h[Eskhandar's Pelt]|h|r",EquipLoc="INVTYPE_CLOAK"},["Red, White and Blue Firework"]={SubType="Consumable",Level=20,id=9317,StackCount=5,Rarity=1,MinLevel=0,SellPrice=25,Texture=135934,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9317::::::::40:::::::|h[Red, White and Blue Firework]|h|r"},["Flax Bracers"]={SubType="Cloth",Level=5,id=6060,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4,Texture=132609,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:6060::::::::40:::::::|h[Flax Bracers]|h|r"},["Basket of Flowers"]={SubType="Consumable",Level=1,id=22296,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133938,Link="|cffffffff|Hitem:22296::::::::40:::::::|h[Basket of Flowers]|h|r",EquipLoc="",Type="Consumable"},["Tea with Sugar"]={SubType="Consumable",Level=60,id=15723,StackCount=1,Rarity=2,MinLevel=50,SellPrice=2825,Texture=132802,EquipLoc="",Link="|cff1eff00|Hitem:15723::::::::40:::::::|h[Tea with Sugar]|h|r",Type="Consumable"},["Fortified Gauntlets"]={SubType="Mail",Level=25,id=9813,StackCount=1,Rarity=2,MinLevel=20,SellPrice=825,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9813::::::::40:::::::|h[Fortified Gauntlets]|h|r"},["Patched Leather Jerkin"]={SubType="Leather",Level=20,id=1794,StackCount=1,Rarity=0,MinLevel=15,SellPrice=277,Texture=132760,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:1794::::::::40:::::::|h[Patched Leather Jerkin]|h|r"},["Champion's Dreadweave Spaulders"]={SubType="Cloth",Level=71,id=23256,StackCount=1,Rarity=3,MinLevel=60,SellPrice=12490,Texture=135032,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:23256::::::::40:::::::|h[Champion's Dreadweave Spaulders]|h|r"},["Wolfmaster Cape"]={SubType="Cloth",Level=27,id=6314,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1268,Texture=133762,Type="Armor",Link="|cff1eff00|Hitem:6314::::::::40:::::::|h[Wolfmaster Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Glyphed Breastplate"]={SubType="Leather",Level=41,id=4058,StackCount=1,Rarity=2,MinLevel=36,SellPrice=6056,Texture=132722,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:4058::::::::40:::::::|h[Glyphed Breastplate]|h|r",Type="Armor"},["Deprecated Codex of Sustenance III"]={SubType="Book",Level=29,id=1655,StackCount=1,Rarity=1,MinLevel=29,SellPrice=1900,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:1655::::::::40:::::::|h[Deprecated Codex of Sustenance III]|h|r",Type="Recipe"},["Mongoose Boots"]={SubType="Leather",Level=62,id=18506,StackCount=1,Rarity=3,MinLevel=57,SellPrice=21340,Texture=132542,Type="Armor",Link="|cff0070dd|Hitem:18506::::::::40:::::::|h[Mongoose Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Deathdealer's Leggings"]={SubType="Leather",Level=81,id=21362,StackCount=1,Rarity=4,MinLevel=60,SellPrice=95240,Texture=134632,Link="|cffa335ee|Hitem:21362::::::::40:::::::|h[Deathdealer's Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Chunk of Boar Meat"]={SubType="Trade Goods",Level=5,id=769,StackCount=10,Rarity=1,MinLevel=0,SellPrice=3,Texture=133970,Link="|cffffffff|Hitem:769::::::::40:::::::|h[Chunk of Boar Meat]|h|r",EquipLoc="",Type="Trade Goods"},["Silver Star"]={SubType="Thrown",Level=37,id=3463,StackCount=200,Rarity=2,MinLevel=0,SellPrice=9,Texture=132330,Type="Weapon",Link="|cff1eff00|Hitem:3463::::::::40:::::::|h[Silver Star]|h|r",EquipLoc="INVTYPE_THROWN"},["Skin of Shadow"]={SubType="Quest",Level=1,id=12753,StackCount=10,Rarity=2,MinLevel=0,SellPrice=0,Texture=134430,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:12753::::::::40:::::::|h[Skin of Shadow]|h|r"},["Tome of Arcane Explosion"]={SubType="Book",Level=14,id=8804,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8804::::::::40:::::::|h[Tome of Arcane Explosion]|h|r"},["Giant Mace"]={SubType="Two-Handed Maces",Level=15,id=1197,StackCount=1,Rarity=1,MinLevel=10,SellPrice=533,Texture=133477,Link="|cffffffff|Hitem:1197::::::::40:::::::|h[Giant Mace]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Head of Onyxia"]={SubType="Quest",Level=60,id=18422,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=134153,Type="Quest",Link="|cffa335ee|Hitem:18422::::::::40:::::::|h[Head of Onyxia]|h|r",EquipLoc=""},["Ancient Crown"]={SubType="Mail",Level=45,id=15602,StackCount=1,Rarity=2,MinLevel=40,SellPrice=7211,Texture=133090,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15602::::::::40:::::::|h[Ancient Crown]|h|r",Type="Armor"},["Hyena Hide Belt"]={SubType="Leather",Level=60,id=18451,StackCount=1,Rarity=2,MinLevel=55,SellPrice=9884,Texture=132505,Type="Armor",Link="|cff1eff00|Hitem:18451::::::::40:::::::|h[Hyena Hide Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Lesser Arcanum of Tenacity"]={SubType="Quest",Level=50,id=11643,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134073,Type="Quest",Link="|cff1eff00|Hitem:11643::::::::40:::::::|h[Lesser Arcanum of Tenacity]|h|r",EquipLoc=""},["Alabaster Plate Gauntlets"]={SubType="Plate",Level=53,id=8314,StackCount=1,Rarity=2,MinLevel=48,SellPrice=5344,Texture=132960,Link="|cff1eff00|Hitem:8314::::::::40:::::::|h[Alabaster Plate Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Pauldrons of Wrath"]={SubType="Plate",Level=76,id=16961,StackCount=1,Rarity=4,MinLevel=60,SellPrice=44583,Texture=135065,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16961::::::::40:::::::|h[Pauldrons of Wrath]|h|r",Type="Armor"},["Bind On Use Test Item"]={SubType="Miscellaneous",Level=40,id=1258,StackCount=1,Rarity=0,MinLevel=35,SellPrice=1087,Texture=135279,Type="Armor",Link="|cff9d9d9d|Hitem:1258::::::::40:::::::|h[Bind On Use Test Item]|h|r",EquipLoc="INVTYPE_TRINKET"},["Meditative Sash"]={SubType="Leather",Level=30,id=3747,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1092,Texture=132499,Link="|cff1eff00|Hitem:3747::::::::40:::::::|h[Meditative Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Mangy Claw"]={SubType="Quest",Level=1,id=3183,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134297,Link="|cffffffff|Hitem:3183::::::::40:::::::|h[Mangy Claw]|h|r",EquipLoc="",Type="Quest"},["Biznicks 247x128 Accurascope"]={SubType="Devices",Level=60,id=18283,StackCount=5,Rarity=3,MinLevel=50,SellPrice=25000,Texture=134441,Type="Trade Goods",Link="|cff0070dd|Hitem:18283::::::::40:::::::|h[Biznicks 247x128 Accurascope]|h|r",EquipLoc=""},["Pattern: Tuxedo Jacket"]={SubType="Tailoring",Level=50,id=10326,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10326::::::::40:::::::|h[Pattern: Tuxedo Jacket]|h|r",Type="Recipe"},["General's Leather Mitts"]={SubType="Leather",Level=71,id=16560,StackCount=1,Rarity=4,MinLevel=60,SellPrice=14080,Texture=132959,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16560::::::::40:::::::|h[General's Leather Mitts]|h|r",Type="Armor"},["Veildust Medicine Bag"]={SubType="Miscellaneous",Level=15,id=15866,StackCount=1,Rarity=2,MinLevel=0,SellPrice=562,Texture=133639,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15866::::::::40:::::::|h[Veildust Medicine Bag]|h|r",Type="Armor"},["Pledge of Loyalty: Thunder Bluff"]={SubType="Consumable",Level=1,id=22122,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:22122::::::::40:::::::|h[Pledge of Loyalty: Thunder Bluff]|h|r",EquipLoc="",Type="Consumable"},["Formula: Minor Wizard Oil"]={SubType="Enchanting",Level=15,id=20758,StackCount=1,Rarity=1,MinLevel=0,SellPrice=125,Texture=134327,Link="|cffffffff|Hitem:20758::::::::40:::::::|h[Formula: Minor Wizard Oil]|h|r",EquipLoc="",Type="Recipe"},["Beaded Cord"]={SubType="Cloth",Level=9,id=14093,StackCount=1,Rarity=1,MinLevel=4,SellPrice=21,Texture=132491,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:14093::::::::40:::::::|h[Beaded Cord]|h|r"},["Cracked Sledge"]={SubType="Two-Handed Maces",Level=9,id=1414,StackCount=1,Rarity=0,MinLevel=4,SellPrice=97,Texture=133046,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1414::::::::40:::::::|h[Cracked Sledge]|h|r",Type="Weapon"},["Praetorian Pauldrons"]={SubType="Leather",Level=54,id=15187,StackCount=1,Rarity=2,MinLevel=49,SellPrice=10918,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15187::::::::40:::::::|h[Praetorian Pauldrons]|h|r",Type="Armor"},["Monster - Shield, Scarlet Crusade A01/A02 Model"]={SubType="Shields",Level=1,id=12931,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:12931::::::::40:::::::|h[Monster - Shield, Scarlet Crusade A01/A02 Model]|h|r"},["Spineshatter"]={SubType="One-Handed Maces",Level=73,id=19335,StackCount=1,Rarity=4,MinLevel=60,SellPrice=128825,Texture=133481,Link="|cffa335ee|Hitem:19335::::::::40:::::::|h[Spineshatter]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Enchanted Scarlet Thread"]={SubType="Quest",Level=1,id=12734,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=132906,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12734::::::::40:::::::|h[Enchanted Scarlet Thread]|h|r"},["Feral Harness"]={SubType="Leather",Level=22,id=15311,StackCount=1,Rarity=2,MinLevel=17,SellPrice=982,Texture=132719,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15311::::::::40:::::::|h[Feral Harness]|h|r",Type="Armor"},["Monster - Dagger Basic"]={SubType="Daggers",Level=1,id=2184,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135641,Type="Weapon",Link="|cff9d9d9d|Hitem:2184::::::::40:::::::|h[Monster - Dagger Basic]|h|r",EquipLoc="INVTYPE_WEAPON"},["Brazecore Armguards"]={SubType="Mail",Level=60,id=13179,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14916,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13179::::::::40:::::::|h[Brazecore Armguards]|h|r"},["Swift White Steed"]={SubType="Junk",Level=60,id=18778,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132261,Type="Miscellaneous",Link="|cffa335ee|Hitem:18778::::::::40:::::::|h[Swift White Steed]|h|r",EquipLoc=""},["Infantry Leggings"]={SubType="Mail",Level=12,id=6337,StackCount=1,Rarity=2,MinLevel=7,SellPrice=245,Texture=134583,Link="|cff1eff00|Hitem:6337::::::::40:::::::|h[Infantry Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Second Relic Fragment"]={SubType="Quest",Level=1,id=12897,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135152,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12897::::::::40:::::::|h[Second Relic Fragment]|h|r"},["Swashbuckler's Cape"]={SubType="Cloth",Level=51,id=10185,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7412,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10185::::::::40:::::::|h[Swashbuckler's Cape]|h|r",Type="Armor"},["Monster - Staff, Special NPC (Whitemane)"]={SubType="Staves",Level=1,id=7826,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:7826::::::::40:::::::|h[Monster - Staff, Special NPC (Whitemane)]|h|r"},["Sawtooth Snapper Claw"]={SubType="Quest",Level=1,id=6168,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134295,Type="Quest",Link="|cffffffff|Hitem:6168::::::::40:::::::|h[Sawtooth Snapper Claw]|h|r",EquipLoc=""},["Gilded Gauntlets"]={SubType="Mail",Level=60,id=13244,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14482,Texture=132963,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13244::::::::40:::::::|h[Gilded Gauntlets]|h|r"},["Kroshius' Infernal Core"]={SubType="Quest",Level=1,id=18625,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135231,Type="Quest",Link="|cffffffff|Hitem:18625::::::::40:::::::|h[Kroshius' Infernal Core]|h|r",EquipLoc=""},["Recipe: Crispy Lizard Tail"]={SubType="Cooking",Level=20,id=5488,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=134939,Link="|cffffffff|Hitem:5488::::::::40:::::::|h[Recipe: Crispy Lizard Tail]|h|r",EquipLoc="",Type="Recipe"},["Great Gray Kodo"]={SubType="Junk",Level=60,id=18795,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132243,Type="Miscellaneous",Link="|cffa335ee|Hitem:18795::::::::40:::::::|h[Great Gray Kodo]|h|r",EquipLoc=""},["Foresight Girdle"]={SubType="Mail",Level=61,id=13387,StackCount=1,Rarity=3,MinLevel=56,SellPrice=15779,Texture=132510,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13387::::::::40:::::::|h[Foresight Girdle]|h|r"},["Cold Basilisk Eye"]={SubType="Miscellaneous",Level=40,id=5079,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4642,Texture=133884,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:5079::::::::40:::::::|h[Cold Basilisk Eye]|h|r"},["Noxxion's Shackles"]={SubType="Plate",Level=51,id=17746,StackCount=1,Rarity=3,MinLevel=46,SellPrice=5723,Texture=132605,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:17746::::::::40:::::::|h[Noxxion's Shackles]|h|r",Type="Armor"},["A Short Note"]={SubType="Quest",Level=1,id=9329,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9329::::::::40:::::::|h[A Short Note]|h|r"},["Pattern: Runic Leather Headband"]={SubType="Leatherworking",Level=58,id=15756,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5500,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15756::::::::40:::::::|h[Pattern: Runic Leather Headband]|h|r",Type="Recipe"},["Truefaith Gloves"]={SubType="Cloth",Level=30,id=7049,StackCount=1,Rarity=2,MinLevel=25,SellPrice=914,Texture=132950,Link="|cff1eff00|Hitem:7049::::::::40:::::::|h[Truefaith Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Thistlefur Cap"]={SubType="Cloth",Level=35,id=14200,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2258,Texture=133133,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14200::::::::40:::::::|h[Thistlefur Cap]|h|r"},["Minor Healing Potion"]={SubType="Consumable",Level=5,id=118,StackCount=5,Rarity=1,MinLevel=1,SellPrice=5,Texture=134829,Type="Consumable",Link="|cffffffff|Hitem:118::::::::40:::::::|h[Minor Healing Potion]|h|r",EquipLoc=""},["Tablet of Healing Stream Totem III"]={SubType="Book",Level=40,id=9103,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9103::::::::40:::::::|h[Tablet of Healing Stream Totem III]|h|r"},["Troll Sweat"]={SubType="Junk",Level=1,id=1520,StackCount=5,Rarity=0,MinLevel=0,SellPrice=71,Texture=134776,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:1520::::::::40:::::::|h[Troll Sweat]|h|r"},["Test Potion LockBox (Druid)"]={SubType="Junk",Level=1,id=16078,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16078::::::::40:::::::|h[Test Potion LockBox (Druid)]|h|r",Type="Miscellaneous"},["Patch of Tainted Skin"]={SubType="Quest",Level=1,id=11512,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134346,Type="Quest",Link="|cffffffff|Hitem:11512::::::::40:::::::|h[Patch of Tainted Skin]|h|r",EquipLoc=""},["Cenarion Plant Salve"]={SubType="Quest",Level=1,id=11516,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=132804,Type="Quest",Link="|cffffffff|Hitem:11516::::::::40:::::::|h[Cenarion Plant Salve]|h|r",EquipLoc=""},["Libram: Fist of Justice"]={SubType="Book",Level=10,id=8911,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133740,Link="|cffffffff|Hitem:8911::::::::40:::::::|h[Libram: Fist of Justice]|h|r",EquipLoc="",Type="Recipe"},["Thick Leather Belt"]={SubType="Leather",Level=44,id=3961,StackCount=1,Rarity=0,MinLevel=39,SellPrice=1503,Texture=132512,Type="Armor",Link="|cff9d9d9d|Hitem:3961::::::::40:::::::|h[Thick Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Elunarian Spaulders"]={SubType="Cloth",Level=62,id=14463,StackCount=1,Rarity=2,MinLevel=57,SellPrice=14114,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14463::::::::40:::::::|h[Elunarian Spaulders]|h|r"},["Enchanted Thorium Helm"]={SubType="Plate",Level=62,id=12620,StackCount=1,Rarity=3,MinLevel=57,SellPrice=17245,Texture=133070,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:12620::::::::40:::::::|h[Enchanted Thorium Helm]|h|r"},["Reticulated Bone Gauntlets"]={SubType="Mail",Level=36,id=9435,StackCount=1,Rarity=3,MinLevel=31,SellPrice=2916,Texture=132945,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:9435::::::::40:::::::|h[Reticulated Bone Gauntlets]|h|r"},["Gypsy Gloves"]={SubType="Leather",Level=13,id=9755,StackCount=1,Rarity=1,MinLevel=8,SellPrice=73,Texture=132939,Link="|cffffffff|Hitem:9755::::::::40:::::::|h[Gypsy Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Golden Scale Leggings"]={SubType="Mail",Level=34,id=3843,StackCount=1,Rarity=2,MinLevel=29,SellPrice=3882,Texture=134584,Type="Armor",Link="|cff1eff00|Hitem:3843::::::::40:::::::|h[Golden Scale Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["TEST 1H Benediction"]={SubType="Staves",Level=75,id=18801,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135167,Type="Weapon",Link="|cffa335ee|Hitem:18801::::::::40:::::::|h[TEST 1H Benediction]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Interlaced Belt"]={SubType="Cloth",Level=34,id=3792,StackCount=1,Rarity=0,MinLevel=29,SellPrice=521,Texture=132493,Type="Armor",Link="|cff9d9d9d|Hitem:3792::::::::40:::::::|h[Interlaced Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Radiant Belt"]={SubType="Mail",Level=52,id=12416,StackCount=1,Rarity=2,MinLevel=47,SellPrice=7595,Texture=132500,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:12416::::::::40:::::::|h[Radiant Belt]|h|r"},["Lily Root"]={SubType="Consumable",Level=51,id=14894,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134182,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:14894::::::::40:::::::|h[Lily Root]|h|r"},["Gracious Cape"]={SubType="Cloth",Level=59,id=18743,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14275,Texture=133770,Type="Armor",Link="|cff0070dd|Hitem:18743::::::::40:::::::|h[Gracious Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Human Head of Ras Frostwhisper"]={SubType="Quest",Level=1,id=13626,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134173,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13626::::::::40:::::::|h[Human Head of Ras Frostwhisper]|h|r"},["Simple Bands"]={SubType="Cloth",Level=12,id=9744,StackCount=1,Rarity=1,MinLevel=7,SellPrice=44,Texture=132609,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:9744::::::::40:::::::|h[Simple Bands]|h|r"},["Doomhide Gauntlets"]={SubType="Leather",Level=71,id=18544,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29212,Texture=132956,Type="Armor",Link="|cffa335ee|Hitem:18544::::::::40:::::::|h[Doomhide Gauntlets]|h|r",EquipLoc="INVTYPE_HAND"},["Box of Empty Vials"]={SubType="Junk",Level=1,id=10695,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,EquipLoc="",Link="|cffffffff|Hitem:10695::::::::40:::::::|h[Box of Empty Vials]|h|r",Type="Miscellaneous"},["[PH] Legendary Arcane Amalgamation (Caster)"]={SubType="Quest",Level=50,id=11683,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=134094,Type="Quest",Link="|cffa335ee|Hitem:11683::::::::40:::::::|h[[PH] Legendary Arcane Amalgamation (Caster)]|h|r",EquipLoc=""},["Pattern: Heavy Woolen Cloak"]={SubType="Tailoring",Level=20,id=4346,StackCount=1,Rarity=2,MinLevel=0,SellPrice=100,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:4346::::::::40:::::::|h[Pattern: Heavy Woolen Cloak]|h|r",EquipLoc=""},["Warlord's Dreadweave Robe"]={SubType="Cloth",Level=74,id=17592,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25593,Texture=132716,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:17592::::::::40:::::::|h[Warlord's Dreadweave Robe]|h|r",Type="Armor"},["Thornspike"]={SubType="Daggers",Level=32,id=6681,StackCount=1,Rarity=1,MinLevel=27,SellPrice=3124,Texture=135646,Type="Weapon",Link="|cffffffff|Hitem:6681::::::::40:::::::|h[Thornspike]|h|r",EquipLoc="INVTYPE_WEAPON"},["The Shatterer"]={SubType="One-Handed Maces",Level=47,id=7954,StackCount=1,Rarity=3,MinLevel=42,SellPrice=23159,Texture=133055,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:7954::::::::40:::::::|h[The Shatterer]|h|r"},["Hero's Leggings"]={SubType="Mail",Level=61,id=8309,StackCount=1,Rarity=2,MinLevel=56,SellPrice=26278,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:8309::::::::40:::::::|h[Hero's Leggings]|h|r"},["Pound of Flesh"]={SubType="Junk",Level=25,id=887,StackCount=5,Rarity=0,MinLevel=0,SellPrice=82,Texture=133970,Link="|cff9d9d9d|Hitem:887::::::::40:::::::|h[Pound of Flesh]|h|r",EquipLoc="",Type="Miscellaneous"},["Runecloth Tunic"]={SubType="Cloth",Level=52,id=13857,StackCount=1,Rarity=2,MinLevel=47,SellPrice=10878,Texture=132645,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:13857::::::::40:::::::|h[Runecloth Tunic]|h|r"},["Glittering Dust"]={SubType="Quest",Level=1,id=20028,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133848,Link="|cffffffff|Hitem:20028::::::::40:::::::|h[Glittering Dust]|h|r",EquipLoc="",Type="Quest"},["Glowing Eye of Mordresh"]={SubType="Miscellaneous",Level=41,id=10769,StackCount=1,Rarity=3,MinLevel=36,SellPrice=5277,Texture=134335,EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:10769::::::::40:::::::|h[Glowing Eye of Mordresh]|h|r",Type="Armor"},["Rune-inscribed Pendant"]={SubType="Quest",Level=1,id=3353,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133438,Link="|cffffffff|Hitem:3353::::::::40:::::::|h[Rune-inscribed Pendant]|h|r",EquipLoc="",Type="Quest"},["Tabard of the Scarlet Crusade"]={SubType="Miscellaneous",Level=1,id=23192,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7143,Texture=133770,Link="|cffffffff|Hitem:23192::::::::40:::::::|h[Tabard of the Scarlet Crusade]|h|r",EquipLoc="INVTYPE_TABARD",Type="Armor"},["Moontouched Feather"]={SubType="Quest",Level=1,id=12383,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132926,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12383::::::::40:::::::|h[Moontouched Feather]|h|r"},["Monster - Staff, Wooden Handle Rounded Head Low Yellow Glow"]={SubType="Staves",Level=1,id=14845,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135138,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14845::::::::40:::::::|h[Monster - Staff, Wooden Handle Rounded Head Low Yellow Glow]|h|r"},["Stoneform Shoulders"]={SubType="Plate",Level=61,id=13955,StackCount=1,Rarity=3,MinLevel=56,SellPrice=16367,Texture=135056,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13955::::::::40:::::::|h[Stoneform Shoulders]|h|r"},["Winteraxe Epaulets"]={SubType="Mail",Level=63,id=19111,StackCount=1,Rarity=3,MinLevel=58,SellPrice=24824,Texture=135043,Link="|cff0070dd|Hitem:19111::::::::40:::::::|h[Winteraxe Epaulets]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Monster - Dagger, Curvey Green Blade"]={SubType="Daggers",Level=1,id=12991,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135641,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12991::::::::40:::::::|h[Monster - Dagger, Curvey Green Blade]|h|r"},["Signet of Unyielding Strength"]={SubType="Miscellaneous",Level=65,id=21393,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133425,Link="|cffa335ee|Hitem:21393::::::::40:::::::|h[Signet of Unyielding Strength]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Gently Shaken Gift"]={SubType="Junk",Level=1,id=21270,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133202,Link="|cffffffff|Hitem:21270::::::::40:::::::|h[Gently Shaken Gift]|h|r",EquipLoc="",Type="Miscellaneous"},["Robe of Combustion"]={SubType="Cloth",Level=60,id=18450,StackCount=1,Rarity=2,MinLevel=55,SellPrice=15814,Texture=132665,Type="Armor",Link="|cff1eff00|Hitem:18450::::::::40:::::::|h[Robe of Combustion]|h|r",EquipLoc="INVTYPE_ROBE"},["Symbol of Love"]={SubType="Junk",Level=1,id=22130,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134128,Link="|cffffffff|Hitem:22130::::::::40:::::::|h[Symbol of Love]|h|r",EquipLoc="",Type="Miscellaneous"},["Elemental Circle"]={SubType="Miscellaneous",Level=62,id=17001,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10314,Texture=133371,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:17001::::::::40:::::::|h[Elemental Circle]|h|r",Type="Armor"},["Infiltrator Bracers"]={SubType="Leather",Level=31,id=7410,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1174,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:7410::::::::40:::::::|h[Infiltrator Bracers]|h|r",Type="Armor"},["Damp Diary Page (Day 4)"]={SubType="Junk",Level=1,id=6304,StackCount=1,Rarity=0,MinLevel=0,SellPrice=25,Texture=134332,Link="|cff9d9d9d|Hitem:6304::::::::40:::::::|h[Damp Diary Page (Day 4)]|h|r",EquipLoc="",Type="Miscellaneous"},["Plagueheart Bindings"]={SubType="Cloth",Level=88,id=22511,StackCount=1,Rarity=4,MinLevel=60,SellPrice=53407,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:22511::::::::40:::::::|h[Plagueheart Bindings]|h|r"},["Commander's Crest"]={SubType="Shields",Level=28,id=6320,StackCount=1,Rarity=3,MinLevel=23,SellPrice=2711,Texture=134949,Link="|cff0070dd|Hitem:6320::::::::40:::::::|h[Commander's Crest]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Slitherskin Mackerel"]={SubType="Consumable",Level=5,id=787,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=133910,Link="|cffffffff|Hitem:787::::::::40:::::::|h[Slitherskin Mackerel]|h|r",EquipLoc="",Type="Consumable"},["Infiltrator Cloak"]={SubType="Cloth",Level=31,id=7411,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1769,Texture=133754,Link="|cff1eff00|Hitem:7411::::::::40:::::::|h[Infiltrator Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Master Dragonslayer's Orb"]={SubType="Miscellaneous",Level=83,id=19366,StackCount=1,Rarity=4,MinLevel=60,SellPrice=203059,Texture=134335,Link="|cffa335ee|Hitem:19366::::::::40:::::::|h[Master Dragonslayer's Orb]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Westfall Stew"]={SubType="Consumable",Level=15,id=733,StackCount=20,Rarity=1,MinLevel=5,SellPrice=100,Texture=133748,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:733::::::::40:::::::|h[Westfall Stew]|h|r"},["Fenrus' Hide"]={SubType="Cloth",Level=26,id=6340,StackCount=1,Rarity=2,MinLevel=21,SellPrice=875,Texture=134367,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:6340::::::::40:::::::|h[Fenrus' Hide]|h|r"},["Sentry's Cape"]={SubType="Cloth",Level=24,id=15526,StackCount=1,Rarity=2,MinLevel=19,SellPrice=704,Texture=133763,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15526::::::::40:::::::|h[Sentry's Cape]|h|r",Type="Armor"},["Emerald Pauldrons"]={SubType="Plate",Level=58,id=10281,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11272,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10281::::::::40:::::::|h[Emerald Pauldrons]|h|r",Type="Armor"},["Deadman Club"]={SubType="One-Handed Maces",Level=3,id=3294,StackCount=1,Rarity=1,MinLevel=1,SellPrice=11,Texture=133485,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:3294::::::::40:::::::|h[Deadman Club]|h|r",Type="Weapon"},["Wand of Arcane Potency"]={SubType="Wands",Level=59,id=18338,StackCount=1,Rarity=3,MinLevel=54,SellPrice=36595,Texture=135464,Type="Weapon",Link="|cff0070dd|Hitem:18338::::::::40:::::::|h[Wand of Arcane Potency]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Book of Healing Touch IV"]={SubType="Book",Level=20,id=5152,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133743,Link="|cffffffff|Hitem:5152::::::::40:::::::|h[Book of Healing Touch IV]|h|r",EquipLoc="",Type="Recipe"},["Gold-plated Buckler"]={SubType="Shields",Level=20,id=5443,StackCount=1,Rarity=3,MinLevel=15,SellPrice=1067,Texture=134948,EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:5443::::::::40:::::::|h[Gold-plated Buckler]|h|r",Type="Armor"},["Tactical Task Briefing VI"]={SubType="Quest",Level=60,id=21165,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21165::::::::40:::::::|h[Tactical Task Briefing VI]|h|r",EquipLoc="",Type="Quest"},["Seal of the Archmagus"]={SubType="Miscellaneous",Level=70,id=17110,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24648,Texture=133363,EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:17110::::::::40:::::::|h[Seal of the Archmagus]|h|r",Type="Armor"},["Crystal Slugthrower"]={SubType="Guns",Level=65,id=20722,StackCount=1,Rarity=3,MinLevel=60,SellPrice=45413,Texture=135612,Link="|cff0070dd|Hitem:20722::::::::40:::::::|h[Crystal Slugthrower]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Gnomish Cloaking Device"]={SubType="Devices",Level=40,id=4397,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=132995,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:4397::::::::40:::::::|h[Gnomish Cloaking Device]|h|r",Type="Trade Goods"},["Gossamer Headpiece"]={SubType="Cloth",Level=47,id=7520,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5747,Texture=133111,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7520::::::::40:::::::|h[Gossamer Headpiece]|h|r",Type="Armor"},["Shadefiend Boots"]={SubType="Leather",Level=55,id=11675,StackCount=1,Rarity=3,MinLevel=50,SellPrice=14464,Texture=132535,Type="Armor",Link="|cff0070dd|Hitem:11675::::::::40:::::::|h[Shadefiend Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Nightsky Robe"]={SubType="Cloth",Level=37,id=4038,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3562,Texture=132669,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:4038::::::::40:::::::|h[Nightsky Robe]|h|r"},["Unpainted Mechanostrider"]={SubType="Junk",Level=40,id=13322,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132247,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:13322::::::::40:::::::|h[Unpainted Mechanostrider]|h|r"},["Bernice's Necklace"]={SubType="Quest",Level=1,id=981,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133280,Link="|cffffffff|Hitem:981::::::::40:::::::|h[Bernice's Necklace]|h|r",EquipLoc="",Type="Quest"},["Hardened Leather Pants"]={SubType="Leather",Level=32,id=3805,StackCount=1,Rarity=0,MinLevel=27,SellPrice=1049,Texture=134586,Link="|cff9d9d9d|Hitem:3805::::::::40:::::::|h[Hardened Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["X'caliboar"]={SubType="Two-Handed Swords",Level=42,id=10758,StackCount=1,Rarity=3,MinLevel=35,SellPrice=20144,Texture=135355,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:10758::::::::40:::::::|h[X'caliboar]|h|r",Type="Weapon"},["Bloodscalp Scalp"]={SubType="Quest",Level=1,id=6850,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134361,Type="Quest",Link="|cffffffff|Hitem:6850::::::::40:::::::|h[Bloodscalp Scalp]|h|r",EquipLoc=""},["Formula: Enchant 2H Weapon - Lesser Intellect"]={SubType="Enchanting",Level=20,id=6349,StackCount=1,Rarity=1,MinLevel=0,SellPrice=125,Texture=134327,Link="|cffffffff|Hitem:6349::::::::40:::::::|h[Formula: Enchant 2H Weapon - Lesser Intellect]|h|r",EquipLoc="",Type="Recipe"},["Codex of Holy Word: Shield X"]={SubType="Book",Level=60,id=9035,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9035::::::::40:::::::|h[Codex of Holy Word: Shield X]|h|r"},["Earthfury Gauntlets"]={SubType="Mail",Level=66,id=16839,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25781,Texture=132945,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16839::::::::40:::::::|h[Earthfury Gauntlets]|h|r",Type="Armor"},["Ambassador's Boots"]={SubType="Leather",Level=25,id=2033,StackCount=1,Rarity=2,MinLevel=0,SellPrice=967,Texture=132542,Type="Armor",Link="|cff1eff00|Hitem:2033::::::::40:::::::|h[Ambassador's Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Tome of Arcane Domination"]={SubType="Miscellaneous",Level=65,id=19308,StackCount=1,Rarity=4,MinLevel=60,SellPrice=125000,Texture=133733,Link="|cffa335ee|Hitem:19308::::::::40:::::::|h[Tome of Arcane Domination]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Dacian Falx"]={SubType="Two-Handed Swords",Level=26,id=922,StackCount=1,Rarity=1,MinLevel=21,SellPrice=2407,Texture=135280,Type="Weapon",Link="|cffffffff|Hitem:922::::::::40:::::::|h[Dacian Falx]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Test Frost Res Neck"]={SubType="Miscellaneous",Level=35,id=16124,StackCount=1,Rarity=2,MinLevel=30,SellPrice=5395,Texture=133288,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:16124::::::::40:::::::|h[Test Frost Res Neck]|h|r",Type="Armor"},["Blight Leather Gloves"]={SubType="Leather",Level=58,id=15708,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8965,Texture=132959,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15708::::::::40:::::::|h[Blight Leather Gloves]|h|r",Type="Armor"},["Elemental Rockridge Leggings"]={SubType="Plate",Level=54,id=17711,StackCount=1,Rarity=3,MinLevel=49,SellPrice=14244,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:17711::::::::40:::::::|h[Elemental Rockridge Leggings]|h|r",Type="Armor"},["Monster - Sword, Horde Jagged Red w/ Low Yellow Glow"]={SubType="One-Handed Swords",Level=1,id=13719,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13719::::::::40:::::::|h[Monster - Sword, Horde Jagged Red w/ Low Yellow Glow]|h|r"},["Overlinked Chain Shoulderpads"]={SubType="Mail",Level=42,id=4006,StackCount=1,Rarity=0,MinLevel=37,SellPrice=2434,Texture=135046,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:4006::::::::40:::::::|h[Overlinked Chain Shoulderpads]|h|r",Type="Armor"},["Scarlet Belt"]={SubType="Mail",Level=37,id=10329,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2507,Texture=132495,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10329::::::::40:::::::|h[Scarlet Belt]|h|r"},["Gordok Green Grog"]={SubType="Consumable",Level=1,id=18269,StackCount=10,Rarity=2,MinLevel=0,SellPrice=375,Texture=132790,Type="Consumable",Link="|cff1eff00|Hitem:18269::::::::40:::::::|h[Gordok Green Grog]|h|r",EquipLoc=""},["Deprecated Fire Eyed Skull"]={SubType="Quest",Level=1,id=883,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=133565,Link="|cffffffff|Hitem:883::::::::40:::::::|h[Deprecated Fire Eyed Skull]|h|r",EquipLoc="",Type="Quest"},["Large Green Sack"]={SubType="Bag",Level=25,id=5575,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133642,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:5575::::::::40:::::::|h[Large Green Sack]|h|r",Type="Container"},["Glimmering Mail Legguards"]={SubType="Mail",Level=30,id=6386,StackCount=1,Rarity=2,MinLevel=25,SellPrice=2692,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:6386::::::::40:::::::|h[Glimmering Mail Legguards]|h|r"},["Seedcloud Buckler"]={SubType="Shields",Level=25,id=6630,StackCount=1,Rarity=3,MinLevel=20,SellPrice=2067,Texture=134956,Type="Armor",Link="|cff0070dd|Hitem:6630::::::::40:::::::|h[Seedcloud Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Tome of the Ice Lord"]={SubType="Miscellaneous",Level=65,id=19310,StackCount=1,Rarity=4,MinLevel=60,SellPrice=125000,Texture=133743,Link="|cffa335ee|Hitem:19310::::::::40:::::::|h[Tome of the Ice Lord]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Reinforced Chain Bracers"]={SubType="Mail",Level=28,id=1756,StackCount=1,Rarity=0,MinLevel=23,SellPrice=438,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:1756::::::::40:::::::|h[Reinforced Chain Bracers]|h|r"},["Green Woolen Vest"]={SubType="Cloth",Level=17,id=2582,StackCount=1,Rarity=1,MinLevel=12,SellPrice=216,Texture=132680,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:2582::::::::40:::::::|h[Green Woolen Vest]|h|r",Type="Armor"},["Soulforge Spaulders"]={SubType="Plate",Level=65,id=22093,StackCount=1,Rarity=3,MinLevel=0,SellPrice=19136,Texture=135041,Link="|cff0070dd|Hitem:22093::::::::40:::::::|h[Soulforge Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Gordok's Handguards"]={SubType="Plate",Level=60,id=18366,StackCount=1,Rarity=3,MinLevel=0,SellPrice=9805,Texture=132943,Type="Armor",Link="|cff0070dd|Hitem:18366::::::::40:::::::|h[Gordok's Handguards]|h|r",EquipLoc="INVTYPE_HAND"},["First Sergeant's Leather Armguards"]={SubType="Leather",Level=63,id=16497,StackCount=1,Rarity=3,MinLevel=58,SellPrice=6880,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16497::::::::40:::::::|h[First Sergeant's Leather Armguards]|h|r",Type="Armor"},["Recipe: Gooey Spider Cake"]={SubType="Cooking",Level=25,id=3683,StackCount=1,Rarity=1,MinLevel=0,SellPrice=400,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:3683::::::::40:::::::|h[Recipe: Gooey Spider Cake]|h|r",Type="Recipe"},["Bonescythe Helmet"]={SubType="Leather",Level=88,id=22478,StackCount=1,Rarity=4,MinLevel=60,SellPrice=92905,Texture=133160,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:22478::::::::40:::::::|h[Bonescythe Helmet]|h|r"},["White Moro'gai Gem"]={SubType="Quest",Level=1,id=18159,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133367,Type="Quest",Link="|cff1eff00|Hitem:18159::::::::40:::::::|h[White Moro'gai Gem]|h|r",EquipLoc=""},["Nitroglycerin"]={SubType="Quest",Level=1,id=5017,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134719,EquipLoc="",Link="|cffffffff|Hitem:5017::::::::40:::::::|h[Nitroglycerin]|h|r",Type="Quest"},["Skul's Ghastly Touch"]={SubType="Wands",Level=57,id=13396,StackCount=1,Rarity=3,MinLevel=52,SellPrice=30853,Texture=133729,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13396::::::::40:::::::|h[Skul's Ghastly Touch]|h|r"},["Worg Carrier"]={SubType="Junk",Level=59,id=12264,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=132599,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:12264::::::::40:::::::|h[Worg Carrier]|h|r"},["Tanned Leather Gloves"]={SubType="Leather",Level=17,id=844,StackCount=1,Rarity=1,MinLevel=12,SellPrice=144,Texture=132939,Type="Armor",Link="|cffffffff|Hitem:844::::::::40:::::::|h[Tanned Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Violet Tragan"]={SubType="Quest",Level=1,id=8526,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134527,Link="|cffffffff|Hitem:8526::::::::40:::::::|h[Violet Tragan]|h|r",EquipLoc="",Type="Quest"},["Tome of Arcane Brilliance"]={SubType="Book",Level=56,id=18600,StackCount=1,Rarity=3,MinLevel=56,SellPrice=12000,Texture=133739,Type="Recipe",Link="|cff0070dd|Hitem:18600::::::::40:::::::|h[Tome of Arcane Brilliance]|h|r",EquipLoc=""},["Ring of Precision"]={SubType="Miscellaneous",Level=25,id=1491,StackCount=1,Rarity=3,MinLevel=20,SellPrice=2207,Texture=133356,Link="|cff0070dd|Hitem:1491::::::::40:::::::|h[Ring of Precision]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Vest of Swift Execution"]={SubType="Leather",Level=78,id=21680,StackCount=1,Rarity=4,MinLevel=60,SellPrice=79870,Texture=132686,Link="|cffa335ee|Hitem:21680::::::::40:::::::|h[Vest of Swift Execution]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Cloak of the Savior"]={SubType="Cloth",Level=74,id=21470,StackCount=1,Rarity=3,MinLevel=60,SellPrice=29132,Texture=133768,Link="|cff0070dd|Hitem:21470::::::::40:::::::|h[Cloak of the Savior]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Silver-thread Sash"]={SubType="Cloth",Level=27,id=4714,StackCount=1,Rarity=2,MinLevel=22,SellPrice=681,Texture=132492,Link="|cff1eff00|Hitem:4714::::::::40:::::::|h[Silver-thread Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Deprecated Tattered Pants"]={SubType="Cloth",Level=1,id=3150,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134581,Link="|cff9d9d9d|Hitem:3150::::::::40:::::::|h[Deprecated Tattered Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Pattern: Tough Scorpid Gloves"]={SubType="Leatherworking",Level=45,id=8398,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1125,Texture=134942,Link="|cff1eff00|Hitem:8398::::::::40:::::::|h[Pattern: Tough Scorpid Gloves]|h|r",EquipLoc="",Type="Recipe"},["Plans: Ornate Mithril Boots"]={SubType="Blacksmithing",Level=49,id=7988,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7988::::::::40:::::::|h[Plans: Ornate Mithril Boots]|h|r",Type="Recipe"},["Level 65 Test Gear Plate - Warrior"]={SubType="Junk",Level=1,id=17826,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17826::::::::40:::::::|h[Level 65 Test Gear Plate - Warrior]|h|r",Type="Miscellaneous"},["Tablet of Searing Totem III"]={SubType="Book",Level=30,id=9083,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9083::::::::40:::::::|h[Tablet of Searing Totem III]|h|r"},["Flamescarred Shoulders"]={SubType="Leather",Level=62,id=18374,StackCount=1,Rarity=3,MinLevel=57,SellPrice=21418,Texture=135055,Type="Armor",Link="|cff0070dd|Hitem:18374::::::::40:::::::|h[Flamescarred Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Darkmoon Faire Fortune"]={SubType="Junk",Level=1,id=19422,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133672,Link="|cffffffff|Hitem:19422::::::::40:::::::|h[Darkmoon Faire Fortune]|h|r",EquipLoc="",Type="Miscellaneous"},["Redoubt Cloak"]={SubType="Cloth",Level=63,id=18495,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16770,Texture=133773,Type="Armor",Link="|cff0070dd|Hitem:18495::::::::40:::::::|h[Redoubt Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Lieutenant Commander's Dragonhide Epaulets"]={SubType="Leather",Level=63,id=16423,StackCount=1,Rarity=3,MinLevel=58,SellPrice=10278,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16423::::::::40:::::::|h[Lieutenant Commander's Dragonhide Epaulets]|h|r",Type="Armor"},["Ranger Tunic"]={SubType="Leather",Level=45,id=7477,StackCount=1,Rarity=2,MinLevel=40,SellPrice=8124,Texture=132723,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7477::::::::40:::::::|h[Ranger Tunic]|h|r",Type="Armor"},["Bloodstained Coif"]={SubType="Mail",Level=71,id=19875,StackCount=1,Rarity=3,MinLevel=60,SellPrice=38739,Texture=133141,Link="|cff0070dd|Hitem:19875::::::::40:::::::|h[Bloodstained Coif]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Threshadon Ambergris"]={SubType="Junk",Level=10,id=2608,StackCount=5,Rarity=0,MinLevel=0,SellPrice=63,Texture=134437,EquipLoc="",Link="|cff9d9d9d|Hitem:2608::::::::40:::::::|h[Threshadon Ambergris]|h|r",Type="Miscellaneous"},["Thick Leather Pants"]={SubType="Leather",Level=42,id=3966,StackCount=1,Rarity=0,MinLevel=37,SellPrice=2625,Texture=134593,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:3966::::::::40:::::::|h[Thick Leather Pants]|h|r",Type="Armor"},["Large Candle"]={SubType="Quest",Level=1,id=772,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133750,EquipLoc="",Link="|cffffffff|Hitem:772::::::::40:::::::|h[Large Candle]|h|r",Type="Quest"},["Warden's Footpads"]={SubType="Leather",Level=42,id=14599,StackCount=1,Rarity=2,MinLevel=37,SellPrice=4663,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14599::::::::40:::::::|h[Warden's Footpads]|h|r"},["Clutch of Foresight"]={SubType="Consumable",Level=60,id=13509,StackCount=1,Rarity=2,MinLevel=55,SellPrice=5393,Texture=134416,Type="Consumable",EquipLoc="",Link="|cff1eff00|Hitem:13509::::::::40:::::::|h[Clutch of Foresight]|h|r"},["Lion Meat"]={SubType="Trade Goods",Level=23,id=3731,StackCount=10,Rarity=1,MinLevel=0,SellPrice=55,Texture=134027,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:3731::::::::40:::::::|h[Lion Meat]|h|r"},["Codex of Renew VII"]={SubType="Book",Level=44,id=9000,StackCount=1,Rarity=1,MinLevel=44,SellPrice=6250,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9000::::::::40:::::::|h[Codex of Renew VII]|h|r"},["Green Whelp Bracers"]={SubType="Leather",Level=38,id=7386,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2387,Texture=132605,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:7386::::::::40:::::::|h[Green Whelp Bracers]|h|r",Type="Armor"},["Ravager"]={SubType="Two-Handed Axes",Level=42,id=7717,StackCount=1,Rarity=3,MinLevel=37,SellPrice=18923,Texture=135575,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:7717::::::::40:::::::|h[Ravager]|h|r"},["Candy Bar"]={SubType="Consumable",Level=5,id=7807,StackCount=20,Rarity=1,MinLevel=1,SellPrice=10,Texture=133983,EquipLoc="",Link="|cffffffff|Hitem:7807::::::::40:::::::|h[Candy Bar]|h|r",Type="Consumable"},["Jadefire Felbind"]={SubType="Quest",Level=0,id=11674,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133565,Type="Quest",Link="|cffffffff|Hitem:11674::::::::40:::::::|h[Jadefire Felbind]|h|r",EquipLoc=""},["Honorary Picks"]={SubType="Quest",Level=1,id=16311,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134709,EquipLoc="",Link="|cffffffff|Hitem:16311::::::::40:::::::|h[Honorary Picks]|h|r",Type="Quest"},["Warlord's Satin Mantle"]={SubType="Cloth",Level=74,id=17622,StackCount=1,Rarity=4,MinLevel=60,SellPrice=20437,Texture=135050,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:17622::::::::40:::::::|h[Warlord's Satin Mantle]|h|r",Type="Armor"},["Parrot Droppings"]={SubType="Junk",Level=1,id=8425,StackCount=20,Rarity=0,MinLevel=0,SellPrice=0,Texture=134437,Link="|cff9d9d9d|Hitem:8425::::::::40:::::::|h[Parrot Droppings]|h|r",EquipLoc="",Type="Miscellaneous"},["Elastic Wristguards"]={SubType="Cloth",Level=10,id=1183,StackCount=1,Rarity=1,MinLevel=0,SellPrice=29,Texture=132609,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:1183::::::::40:::::::|h[Elastic Wristguards]|h|r",Type="Armor"},["Champion's Bracers"]={SubType="Mail",Level=45,id=7545,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4658,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:7545::::::::40:::::::|h[Champion's Bracers]|h|r",Type="Armor"},["Tiara of the Deep"]={SubType="Quest",Level=1,id=9234,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133280,Link="|cffffffff|Hitem:9234::::::::40:::::::|h[Tiara of the Deep]|h|r",EquipLoc="",Type="Quest"},["Stormwind Seasoning Herbs"]={SubType="Reagent",Level=1,id=2665,StackCount=20,Rarity=1,MinLevel=0,SellPrice=5,Texture=133849,Link="|cffffffff|Hitem:2665::::::::40:::::::|h[Stormwind Seasoning Herbs]|h|r",EquipLoc="",Type="Reagent"},["Eye of the Emberseer"]={SubType="Quest",Level=1,id=17322,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134123,EquipLoc="",Link="|cffffffff|Hitem:17322::::::::40:::::::|h[Eye of the Emberseer]|h|r",Type="Quest"},["Codex: Prayer of Shadow Protection"]={SubType="Book",Level=60,id=22393,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14750,Texture=133741,Link="|cff0070dd|Hitem:22393::::::::40:::::::|h[Codex: Prayer of Shadow Protection]|h|r",EquipLoc="",Type="Recipe"},["Spellbinder Pants"]={SubType="Cloth",Level=16,id=2970,StackCount=1,Rarity=2,MinLevel=11,SellPrice=333,Texture=134590,Link="|cff1eff00|Hitem:2970::::::::40:::::::|h[Spellbinder Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Scorching Sash"]={SubType="Cloth",Level=44,id=4117,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3119,Texture=133694,Link="|cff1eff00|Hitem:4117::::::::40:::::::|h[Scorching Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Major Recombobulator"]={SubType="Devices",Level=55,id=18637,StackCount=1,Rarity=2,MinLevel=0,SellPrice=600,Texture=133867,Type="Trade Goods",Link="|cff1eff00|Hitem:18637::::::::40:::::::|h[Major Recombobulator]|h|r",EquipLoc="INVTYPE_TRINKET"},["Deprecated Book of Rejuvenation V"]={SubType="Book",Level=32,id=4222,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2500,Texture=133743,Type="Recipe",Link="|cffffffff|Hitem:4222::::::::40:::::::|h[Deprecated Book of Rejuvenation V]|h|r",EquipLoc=""},["Bronze Warhammer"]={SubType="Two-Handed Maces",Level=25,id=7956,StackCount=1,Rarity=1,MinLevel=20,SellPrice=1944,Texture=133055,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:7956::::::::40:::::::|h[Bronze Warhammer]|h|r"},["Big Bronze Bomb"]={SubType="Explosives",Level=33,id=4380,StackCount=10,Rarity=1,MinLevel=0,SellPrice=500,Texture=133713,Type="Trade Goods",Link="|cffffffff|Hitem:4380::::::::40:::::::|h[Big Bronze Bomb]|h|r",EquipLoc=""},["Gloves of the Dawn"]={SubType="Plate",Level=64,id=19057,StackCount=1,Rarity=3,MinLevel=59,SellPrice=11606,Texture=132963,Link="|cff0070dd|Hitem:19057::::::::40:::::::|h[Gloves of the Dawn]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Divined Scroll"]={SubType="Quest",Level=1,id=5455,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:5455::::::::40:::::::|h[Divined Scroll]|h|r",Type="Quest"},["Small Green Dagger"]={SubType="Daggers",Level=10,id=4302,StackCount=1,Rarity=1,MinLevel=5,SellPrice=146,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:4302::::::::40:::::::|h[Small Green Dagger]|h|r",Type="Weapon"},["Dormant Wind Kissed Blade DEPRECATED"]={SubType="Quest",Level=80,id=18589,StackCount=1,Rarity=5,MinLevel=60,SellPrice=0,Texture=135349,Type="Quest",Link="|cffff8000|Hitem:18589::::::::40:::::::|h[Dormant Wind Kissed Blade DEPRECATED]|h|r",EquipLoc=""},["Flarecore Wraps"]={SubType="Cloth",Level=64,id=18263,StackCount=1,Rarity=4,MinLevel=60,SellPrice=16911,Texture=132608,Type="Armor",Link="|cffa335ee|Hitem:18263::::::::40:::::::|h[Flarecore Wraps]|h|r",EquipLoc="INVTYPE_WRIST"},["Lesser Firestone"]={SubType="Miscellaneous",Level=28,id=1254,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134085,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:1254::::::::40:::::::|h[Lesser Firestone]|h|r"},["Sorcerer's Gloves"]={SubType="Cloth",Level=55,id=22066,StackCount=1,Rarity=4,MinLevel=0,SellPrice=9623,Texture=132951,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:22066::::::::40:::::::|h[Sorcerer's Gloves]|h|r"},["Pattern: Red Mageweave Pants"]={SubType="Tailoring",Level=43,id=10302,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10302::::::::40:::::::|h[Pattern: Red Mageweave Pants]|h|r",Type="Recipe"},["Bonebiter"]={SubType="Two-Handed Axes",Level=44,id=6830,StackCount=1,Rarity=3,MinLevel=0,SellPrice=23476,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:6830::::::::40:::::::|h[Bonebiter]|h|r"},["Libram of Protection"]={SubType="Book",Level=50,id=18334,StackCount=1,Rarity=2,MinLevel=50,SellPrice=0,Texture=133743,Type="Recipe",Link="|cff1eff00|Hitem:18334::::::::40:::::::|h[Libram of Protection]|h|r",EquipLoc=""},["Formal Dangui"]={SubType="Miscellaneous",Level=60,id=13895,StackCount=1,Rarity=1,MinLevel=0,SellPrice=101324,Texture=132670,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:13895::::::::40:::::::|h[Formal Dangui]|h|r"},["Renataki's Charm of Beasts"]={SubType="Miscellaneous",Level=65,id=19953,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133306,Link="|cffa335ee|Hitem:19953::::::::40:::::::|h[Renataki's Charm of Beasts]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Commander's Boots"]={SubType="Plate",Level=60,id=10376,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12519,Texture=132589,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10376::::::::40:::::::|h[Commander's Boots]|h|r",Type="Armor"},["Chromite Legplates"]={SubType="Plate",Level=46,id=8143,StackCount=1,Rarity=2,MinLevel=41,SellPrice=7227,Texture=134583,Link="|cff1eff00|Hitem:8143::::::::40:::::::|h[Chromite Legplates]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Pattern: Phoenix Pants"]={SubType="Tailoring",Level=25,id=4349,StackCount=1,Rarity=2,MinLevel=0,SellPrice=175,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:4349::::::::40:::::::|h[Pattern: Phoenix Pants]|h|r",Type="Recipe"},["Warsong Mark of Honor"]={SubType="Quest",Level=1,id=19322,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=134420,Link="|cff1eff00|Hitem:19322::::::::40:::::::|h[Warsong Mark of Honor]|h|r",EquipLoc="",Type="Quest"},["Elder Magus Pendant"]={SubType="Miscellaneous",Level=61,id=18397,StackCount=1,Rarity=3,MinLevel=56,SellPrice=22464,Texture=133294,Type="Armor",Link="|cff0070dd|Hitem:18397::::::::40:::::::|h[Elder Magus Pendant]|h|r",EquipLoc="INVTYPE_NECK"},["Pattern: Wicked Leather Gauntlets"]={SubType="Leatherworking",Level=52,id=15725,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15725::::::::40:::::::|h[Pattern: Wicked Leather Gauntlets]|h|r",Type="Recipe"},["Cracked Pottery"]={SubType="Junk",Level=1,id=9334,StackCount=10,Rarity=0,MinLevel=0,SellPrice=47,Texture=132835,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:9334::::::::40:::::::|h[Cracked Pottery]|h|r"},["Sterling Chain Armor"]={SubType="Mail",Level=62,id=4015,StackCount=1,Rarity=0,MinLevel=57,SellPrice=10747,Texture=132736,EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:4015::::::::40:::::::|h[Sterling Chain Armor]|h|r",Type="Armor"},["Swamp Pendant"]={SubType="Miscellaneous",Level=56,id=12045,StackCount=1,Rarity=2,MinLevel=51,SellPrice=7767,Texture=133293,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12045::::::::40:::::::|h[Swamp Pendant]|h|r"},["Mountain Giant Muisek"]={SubType="Quest",Level=1,id=9597,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136018,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9597::::::::40:::::::|h[Mountain Giant Muisek]|h|r"},["Timberland Armguards"]={SubType="Cloth",Level=18,id=5315,StackCount=1,Rarity=2,MinLevel=0,SellPrice=213,Texture=132610,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:5315::::::::40:::::::|h[Timberland Armguards]|h|r"},["Ran Bloodtooth's Skull"]={SubType="Quest",Level=1,id=5388,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133731,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5388::::::::40:::::::|h[Ran Bloodtooth's Skull]|h|r"},["Monster - Sword, Horde Jagged Red"]={SubType="One-Handed Swords",Level=1,id=13718,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13718::::::::40:::::::|h[Monster - Sword, Horde Jagged Red]|h|r"},["Belt of the People's Militia"]={SubType="Mail",Level=14,id=1154,StackCount=1,Rarity=1,MinLevel=0,SellPrice=102,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:1154::::::::40:::::::|h[Belt of the People's Militia]|h|r",Type="Armor"},["Whipper Root Tuber"]={SubType="Consumable",Level=55,id=11951,StackCount=20,Rarity=1,MinLevel=45,SellPrice=0,Texture=134011,Type="Consumable",Link="|cffffffff|Hitem:11951::::::::40:::::::|h[Whipper Root Tuber]|h|r",EquipLoc=""},["Severed Horn of the Defiler"]={SubType="Quest",Level=1,id=10759,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134228,EquipLoc="",Link="|cffffffff|Hitem:10759::::::::40:::::::|h[Severed Horn of the Defiler]|h|r",Type="Quest"},["Monster - Sword2H, Claymore Blue"]={SubType="Two-Handed Swords",Level=1,id=13150,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13150::::::::40:::::::|h[Monster - Sword2H, Claymore Blue]|h|r"},["Ravencrest's Legacy"]={SubType="One-Handed Swords",Level=76,id=21520,StackCount=1,Rarity=4,MinLevel=60,SellPrice=151868,Texture=135359,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:21520::::::::40:::::::|h[Ravencrest's Legacy]|h|r"},["Reinforced Chain Gloves"]={SubType="Mail",Level=30,id=1758,StackCount=1,Rarity=0,MinLevel=25,SellPrice=534,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:1758::::::::40:::::::|h[Reinforced Chain Gloves]|h|r",Type="Armor"},["Gnomish Death Ray"]={SubType="Devices",Level=48,id=10645,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=133002,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:10645::::::::40:::::::|h[Gnomish Death Ray]|h|r",Type="Trade Goods"},["Flaring Baton"]={SubType="Wands",Level=18,id=5326,StackCount=1,Rarity=2,MinLevel=0,SellPrice=776,Texture=135139,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5326::::::::40:::::::|h[Flaring Baton]|h|r"},["Indomitable Armguards"]={SubType="Leather",Level=59,id=14682,StackCount=1,Rarity=2,MinLevel=54,SellPrice=9906,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14682::::::::40:::::::|h[Indomitable Armguards]|h|r"},["Stalwart Clutch"]={SubType="Plate",Level=56,id=12115,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7012,Texture=132523,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:12115::::::::40:::::::|h[Stalwart Clutch]|h|r"},["Lok's Skull"]={SubType="Quest",Level=1,id=5072,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133732,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5072::::::::40:::::::|h[Lok's Skull]|h|r"},["Monster - Mace2H, Horde Hammer A03 Dark"]={SubType="Two-Handed Maces",Level=1,id=14527,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133041,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14527::::::::40:::::::|h[Monster - Mace2H, Horde Hammer A03 Dark]|h|r"},["Armor of the Fang"]={SubType="Leather",Level=23,id=6473,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1010,Texture=135020,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:6473::::::::40:::::::|h[Armor of the Fang]|h|r"},["Thistlefur Cloak"]={SubType="Cloth",Level=31,id=14198,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1531,Texture=133754,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14198::::::::40:::::::|h[Thistlefur Cloak]|h|r"},["Darkmist Bands"]={SubType="Cloth",Level=40,id=14240,StackCount=1,Rarity=2,MinLevel=35,SellPrice=2294,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14240::::::::40:::::::|h[Darkmist Bands]|h|r"},["War Paint Gloves"]={SubType="Mail",Level=18,id=14726,StackCount=1,Rarity=2,MinLevel=13,SellPrice=337,Texture=132946,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14726::::::::40:::::::|h[War Paint Gloves]|h|r"},["63 Green Warrior Gun"]={SubType="Guns",Level=63,id=20285,StackCount=1,Rarity=2,MinLevel=58,SellPrice=36161,Texture=135614,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:20285::::::::40:::::::|h[63 Green Warrior Gun]|h|r"},["Bethor's Potion"]={SubType="Quest",Level=1,id=3251,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134732,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3251::::::::40:::::::|h[Bethor's Potion]|h|r"},["Shimmering Armor"]={SubType="Cloth",Level=25,id=6567,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1036,Texture=135012,Type="Armor",Link="|cff1eff00|Hitem:6567::::::::40:::::::|h[Shimmering Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Test AQ Resource - Spotted Yellowtail"]={SubType="Junk",Level=1,id=21638,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21638::::::::40:::::::|h[Test AQ Resource - Spotted Yellowtail]|h|r",EquipLoc="",Type="Miscellaneous"},["The General's Response"]={SubType="Quest",Level=1,id=1294,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133461,Type="Quest",Link="|cffffffff|Hitem:1294::::::::40:::::::|h[The General's Response]|h|r",EquipLoc=""},["Barbaric Iron Gloves"]={SubType="Mail",Level=37,id=7917,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2711,Texture=132965,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7917::::::::40:::::::|h[Barbaric Iron Gloves]|h|r"},["Trickster's Leggings"]={SubType="Leather",Level=40,id=15366,StackCount=1,Rarity=2,MinLevel=35,SellPrice=5250,Texture=134593,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15366::::::::40:::::::|h[Trickster's Leggings]|h|r",Type="Armor"},["Pattern: Spitfire Gauntlets"]={SubType="Leatherworking",Level=62,id=20507,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134939,Link="|cffffffff|Hitem:20507::::::::40:::::::|h[Pattern: Spitfire Gauntlets]|h|r",EquipLoc="",Type="Recipe"},["Vimes's Report"]={SubType="Quest",Level=1,id=6075,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133461,Link="|cffffffff|Hitem:6075::::::::40:::::::|h[Vimes's Report]|h|r",EquipLoc="",Type="Quest"},["Pristine Hide of the Beast"]={SubType="Junk",Level=1,id=12731,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=134317,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:12731::::::::40:::::::|h[Pristine Hide of the Beast]|h|r"},["Hardened Steel Warhammer"]={SubType="One-Handed Maces",Level=62,id=20666,StackCount=1,Rarity=3,MinLevel=57,SellPrice=52306,Texture=133051,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:20666::::::::40:::::::|h[Hardened Steel Warhammer]|h|r"},["Creased Letter"]={SubType="Junk",Level=1,id=21920,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135454,Link="|cffffffff|Hitem:21920::::::::40:::::::|h[Creased Letter]|h|r",EquipLoc="",Type="Miscellaneous"},["Bottom Half of Advanced Armorsmithing: Volume I"]={SubType="Quest",Level=60,id=18779,StackCount=1,Rarity=3,MinLevel=50,SellPrice=0,Texture=134332,Type="Quest",Link="|cff0070dd|Hitem:18779::::::::40:::::::|h[Bottom Half of Advanced Armorsmithing: Volume I]|h|r",EquipLoc=""},["Light Plate Shoulderpads"]={SubType="Plate",Level=54,id=8086,StackCount=1,Rarity=0,MinLevel=49,SellPrice=3730,Texture=135044,Link="|cff9d9d9d|Hitem:8086::::::::40:::::::|h[Light Plate Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Grand Marshal's Handaxe"]={SubType="One-Handed Axes",Level=78,id=18827,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50048,Texture=132418,Type="Weapon",Link="|cffa335ee|Hitem:18827::::::::40:::::::|h[Grand Marshal's Handaxe]|h|r",EquipLoc="INVTYPE_WEAPON"},["Tabard of Frost"]={SubType="Miscellaneous",Level=1,id=23709,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=135026,Link="|cffffffff|Hitem:23709::::::::40:::::::|h[Tabard of Frost]|h|r",EquipLoc="INVTYPE_TABARD",Type="Armor"},["Windstorm Hammer"]={SubType="One-Handed Maces",Level=40,id=6804,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11262,Texture=133042,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:6804::::::::40:::::::|h[Windstorm Hammer]|h|r"},["Tablet of Earth Shock II"]={SubType="Book",Level=8,id=9044,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9044::::::::40:::::::|h[Tablet of Earth Shock II]|h|r"},["Ravager's Cord"]={SubType="Mail",Level=39,id=14773,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3052,Texture=132498,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14773::::::::40:::::::|h[Ravager's Cord]|h|r"},["Gothic Shield"]={SubType="Shields",Level=49,id=7537,StackCount=1,Rarity=2,MinLevel=44,SellPrice=14012,Texture=134953,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:7537::::::::40:::::::|h[Gothic Shield]|h|r",Type="Armor"},["Legguards of the Vault"]={SubType="Mail",Level=39,id=9396,StackCount=1,Rarity=3,MinLevel=34,SellPrice=7319,Texture=134590,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:9396::::::::40:::::::|h[Legguards of the Vault]|h|r"},["Torka's Egg Cracker [UNUSED]"]={SubType="Two-Handed Maces",Level=8,id=4943,StackCount=1,Rarity=1,MinLevel=0,SellPrice=101,Texture=133052,Link="|cffffffff|Hitem:4943::::::::40:::::::|h[Torka's Egg Cracker [UNUSED]]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Imperial Jewel"]={SubType="Miscellaneous",Level=60,id=11933,StackCount=1,Rarity=3,MinLevel=55,SellPrice=19646,Texture=134131,Type="Armor",Link="|cff0070dd|Hitem:11933::::::::40:::::::|h[Imperial Jewel]|h|r",EquipLoc="INVTYPE_NECK"},["Pattern: Murloc Scale Bracers"]={SubType="Leatherworking",Level=38,id=5789,StackCount=1,Rarity=2,MinLevel=0,SellPrice=700,Texture=134939,EquipLoc="",Link="|cff1eff00|Hitem:5789::::::::40:::::::|h[Pattern: Murloc Scale Bracers]|h|r",Type="Recipe"},["Old Blunderbuss"]={SubType="Guns",Level=2,id=2508,StackCount=1,Rarity=1,MinLevel=1,SellPrice=5,Texture=135610,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:2508::::::::40:::::::|h[Old Blunderbuss]|h|r"},["Gold Moro'gai Gem"]={SubType="Quest",Level=1,id=18158,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133367,Type="Quest",Link="|cff1eff00|Hitem:18158::::::::40:::::::|h[Gold Moro'gai Gem]|h|r",EquipLoc=""},["Ukor's Burden"]={SubType="Consumable",Level=1,id=7629,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133622,EquipLoc="",Link="|cffffffff|Hitem:7629::::::::40:::::::|h[Ukor's Burden]|h|r",Type="Consumable"},["Disarming Mixture"]={SubType="Quest",Level=1,id=2610,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,EquipLoc="",Link="|cffffffff|Hitem:2610::::::::40:::::::|h[Disarming Mixture]|h|r",Type="Quest"},["Moonpetal Lily"]={SubType="Quest",Level=1,id=10641,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134182,EquipLoc="",Link="|cffffffff|Hitem:10641::::::::40:::::::|h[Moonpetal Lily]|h|r",Type="Quest"},["Wine Ticket"]={SubType="Quest",Level=1,id=2722,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2722::::::::40:::::::|h[Wine Ticket]|h|r"},["Monster - Sword2H, Ragglesnout X'Caliboar"]={SubType="Two-Handed Swords",Level=1,id=11087,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135280,Type="Weapon",Link="|cff9d9d9d|Hitem:11087::::::::40:::::::|h[Monster - Sword2H, Ragglesnout X'Caliboar]|h|r",EquipLoc="INVTYPE_WEAPON"},["Monster - Item, Bone"]={SubType="One-Handed Maces",Level=1,id=3350,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134400,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:3350::::::::40:::::::|h[Monster - Item, Bone]|h|r",Type="Weapon"},["Gunnysack of the Night Watch"]={SubType="Bag",Level=25,id=1729,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=133641,Type="Container",Link="|cffffffff|Hitem:1729::::::::40:::::::|h[Gunnysack of the Night Watch]|h|r",EquipLoc="INVTYPE_BAG"},["Eskhandar's Left Claw"]={SubType="Fist Weapons",Level=66,id=18202,StackCount=1,Rarity=4,MinLevel=60,SellPrice=90576,Texture=134297,Type="Weapon",Link="|cffa335ee|Hitem:18202::::::::40:::::::|h[Eskhandar's Left Claw]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND"},["Staff of the Shadow Flame"]={SubType="Staves",Level=81,id=19356,StackCount=1,Rarity=4,MinLevel=60,SellPrice=221750,Texture=135143,Link="|cffa335ee|Hitem:19356::::::::40:::::::|h[Staff of the Shadow Flame]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["The State of Lakeshire"]={SubType="Quest",Level=1,id=1293,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133460,Link="|cffffffff|Hitem:1293::::::::40:::::::|h[The State of Lakeshire]|h|r",EquipLoc="",Type="Quest"},["QAEnchant Shield +9 Spirit"]={SubType="Consumable",Level=1,id=17893,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17893::::::::40:::::::|h[QAEnchant Shield +9 Spirit]|h|r",Type="Consumable"},["Ironfel"]={SubType="Quest",Level=1,id=10999,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133060,EquipLoc="",Link="|cffffffff|Hitem:10999::::::::40:::::::|h[Ironfel]|h|r",Type="Quest"},["Black Ram"]={SubType="Junk",Level=60,id=13328,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132248,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:13328::::::::40:::::::|h[Black Ram]|h|r"},["Darksoul Breastplate"]={SubType="Plate",Level=65,id=19693,StackCount=1,Rarity=3,MinLevel=60,SellPrice=24192,Texture=132743,Link="|cff0070dd|Hitem:19693::::::::40:::::::|h[Darksoul Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Head of Alexi Barov"]={SubType="Quest",Level=1,id=13470,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134179,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13470::::::::40:::::::|h[Head of Alexi Barov]|h|r"},["Grizzled Pelt"]={SubType="Leather",Level=52,id=22274,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15270,Texture=132723,Link="|cff0070dd|Hitem:22274::::::::40:::::::|h[Grizzled Pelt]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Cracked Dragon Molting"]={SubType="Junk",Level=1,id=3179,StackCount=10,Rarity=0,MinLevel=0,SellPrice=125,Texture=134306,Link="|cff9d9d9d|Hitem:3179::::::::40:::::::|h[Cracked Dragon Molting]|h|r",EquipLoc="",Type="Miscellaneous"},["Opal Ring"]={SubType="Miscellaneous",Level=64,id=11980,StackCount=1,Rarity=2,MinLevel=59,SellPrice=10539,Texture=133347,Type="Armor",Link="|cff1eff00|Hitem:11980::::::::40:::::::|h[Opal Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Scorpashi Leggings"]={SubType="Leather",Level=47,id=14659,StackCount=1,Rarity=2,MinLevel=42,SellPrice=9382,Texture=134587,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14659::::::::40:::::::|h[Scorpashi Leggings]|h|r"},["Codex of Levitate"]={SubType="Book",Level=34,id=3121,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:3121::::::::40:::::::|h[Codex of Levitate]|h|r",Type="Recipe"},["Tome of Fire Blast IV"]={SubType="Book",Level=30,id=8823,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133739,Link="|cffffffff|Hitem:8823::::::::40:::::::|h[Tome of Fire Blast IV]|h|r",EquipLoc="",Type="Recipe"},["Flawless Ivory Tusk"]={SubType="Quest",Level=1,id=7271,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133721,EquipLoc="",Link="|cffffffff|Hitem:7271::::::::40:::::::|h[Flawless Ivory Tusk]|h|r",Type="Quest"},["Miners' Union Card"]={SubType="Quest",Level=1,id=1894,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,EquipLoc="",Link="|cffffffff|Hitem:1894::::::::40:::::::|h[Miners' Union Card]|h|r",Type="Quest"},["Plans: Golden Scale Boots"]={SubType="Blacksmithing",Level=40,id=3875,StackCount=1,Rarity=3,MinLevel=0,SellPrice=1250,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:3875::::::::40:::::::|h[Plans: Golden Scale Boots]|h|r"},["Fire Tar"]={SubType="Quest",Level=1,id=5026,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132386,EquipLoc="",Link="|cffffffff|Hitem:5026::::::::40:::::::|h[Fire Tar]|h|r",Type="Quest"},["Small Brown Pouch"]={SubType="Bag",Level=5,id=4496,StackCount=1,Rarity=1,MinLevel=0,SellPrice=125,Texture=133634,Link="|cffffffff|Hitem:4496::::::::40:::::::|h[Small Brown Pouch]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Pattern: Fine Leather Gloves"]={SubType="Leatherworking",Level=15,id=2408,StackCount=1,Rarity=2,MinLevel=0,SellPrice=125,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:2408::::::::40:::::::|h[Pattern: Fine Leather Gloves]|h|r"},["Earth Warder's Vest"]={SubType="Cloth",Level=48,id=21311,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8473,Texture=132646,Link="|cff1eff00|Hitem:21311::::::::40:::::::|h[Earth Warder's Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Jon-Jon's Golden Spyglass"]={SubType="Quest",Level=1,id=3925,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134441,Link="|cffffffff|Hitem:3925::::::::40:::::::|h[Jon-Jon's Golden Spyglass]|h|r",EquipLoc="",Type="Quest"},["Fine Cloth Shirt"]={SubType="Miscellaneous",Level=17,id=859,StackCount=1,Rarity=1,MinLevel=0,SellPrice=87,Texture=135006,Link="|cffffffff|Hitem:859::::::::40:::::::|h[Fine Cloth Shirt]|h|r",EquipLoc="INVTYPE_BODY",Type="Armor"},["Potent Helmet"]={SubType="Leather",Level=51,id=15175,StackCount=1,Rarity=2,MinLevel=46,SellPrice=9692,Texture=133111,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15175::::::::40:::::::|h[Potent Helmet]|h|r",Type="Armor"},["[PH] Silithus PvP Dust [DEP]"]={SubType="Trade Goods",Level=1,id=23567,StackCount=10,Rarity=1,MinLevel=1,SellPrice=0,Texture=134337,Link="|cffffffff|Hitem:23567::::::::40:::::::|h[[PH] Silithus PvP Dust [DEP]]|h|r",EquipLoc="",Type="Trade Goods"},["Seer's Fine Stein"]={SubType="Miscellaneous",Level=21,id=7608,StackCount=1,Rarity=2,MinLevel=16,SellPrice=1106,Texture=132791,Link="|cff1eff00|Hitem:7608::::::::40:::::::|h[Seer's Fine Stein]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Russet Boots"]={SubType="Cloth",Level=37,id=2432,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1538,Texture=132539,Type="Armor",Link="|cffffffff|Hitem:2432::::::::40:::::::|h[Russet Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Prophetic Cane"]={SubType="Miscellaneous",Level=44,id=6803,StackCount=1,Rarity=3,MinLevel=0,SellPrice=4885,Texture=135138,Type="Armor",Link="|cff0070dd|Hitem:6803::::::::40:::::::|h[Prophetic Cane]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Unused Gray Leather D02 Gloves"]={SubType="Leather",Level=1,id=3544,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132939,Type="Armor",Link="|cffffffff|Hitem:3544::::::::40:::::::|h[Unused Gray Leather D02 Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Auric Bracers"]={SubType="Mail",Level=40,id=6793,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3157,Texture=132613,Type="Armor",Link="|cff1eff00|Hitem:6793::::::::40:::::::|h[Auric Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Elunarian Cloak"]={SubType="Cloth",Level=57,id=14459,StackCount=1,Rarity=2,MinLevel=52,SellPrice=10798,Texture=133761,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14459::::::::40:::::::|h[Elunarian Cloak]|h|r"},["Tracker's Headband"]={SubType="Leather",Level=45,id=9921,StackCount=1,Rarity=2,MinLevel=40,SellPrice=6050,Texture=133119,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9921::::::::40:::::::|h[Tracker's Headband]|h|r"},["Pattern: Heavy Scorpid Leggings"]={SubType="Leatherworking",Level=57,id=15748,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134939,EquipLoc="",Link="|cff1eff00|Hitem:15748::::::::40:::::::|h[Pattern: Heavy Scorpid Leggings]|h|r",Type="Recipe"},["Insightful Hood"]={SubType="Leather",Level=61,id=18490,StackCount=1,Rarity=3,MinLevel=56,SellPrice=18655,Texture=133143,Type="Armor",Link="|cff0070dd|Hitem:18490::::::::40:::::::|h[Insightful Hood]|h|r",EquipLoc="INVTYPE_HEAD"},["Four of Portals"]={SubType="Junk",Level=1,id=19280,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134492,Link="|cff0070dd|Hitem:19280::::::::40:::::::|h[Four of Portals]|h|r",EquipLoc="",Type="Miscellaneous"},["Lupine Cloak"]={SubType="Cloth",Level=13,id=15015,StackCount=1,Rarity=1,MinLevel=8,SellPrice=86,Texture=133762,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:15015::::::::40:::::::|h[Lupine Cloak]|h|r",Type="Armor"},["Spider Ichor"]={SubType="Trade Goods",Level=10,id=3174,StackCount=10,Rarity=1,MinLevel=0,SellPrice=16,Texture=134437,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:3174::::::::40:::::::|h[Spider Ichor]|h|r"},["Flame Mantle of the Dawn"]={SubType="Quest",Level=60,id=18169,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25000,Texture=135813,Type="Quest",Link="|cff1eff00|Hitem:18169::::::::40:::::::|h[Flame Mantle of the Dawn]|h|r",EquipLoc=""},["Skull Gift"]={SubType="Consumable",Level=45,id=5045,StackCount=1,Rarity=1,MinLevel=35,SellPrice=0,Texture=134143,EquipLoc="",Link="|cffffffff|Hitem:5045::::::::40:::::::|h[Skull Gift]|h|r",Type="Consumable"},["Mark of the Dawn"]={SubType="Consumable",Level=60,id=23195,StackCount=3,Rarity=1,MinLevel=1,SellPrice=0,Texture=134500,Link="|cffffffff|Hitem:23195::::::::40:::::::|h[Mark of the Dawn]|h|r",EquipLoc="",Type="Consumable"},["Willow Robe"]={SubType="Cloth",Level=19,id=6538,StackCount=1,Rarity=2,MinLevel=14,SellPrice=492,Texture=132656,Type="Armor",Link="|cff1eff00|Hitem:6538::::::::40:::::::|h[Willow Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Skibi's Pendant"]={SubType="Miscellaneous",Level=49,id=13089,StackCount=1,Rarity=3,MinLevel=44,SellPrice=8039,Texture=133282,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:13089::::::::40:::::::|h[Skibi's Pendant]|h|r"},["Warosh's Mojo"]={SubType="Consumable",Level=1,id=12712,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134800,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12712::::::::40:::::::|h[Warosh's Mojo]|h|r"},["Prospector Axe"]={SubType="Two-Handed Axes",Level=20,id=12975,StackCount=1,Rarity=3,MinLevel=15,SellPrice=2205,Texture=132394,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12975::::::::40:::::::|h[Prospector Axe]|h|r"},["Silver Skeleton Key"]={SubType="Trade Goods",Level=20,id=15869,StackCount=20,Rarity=2,MinLevel=0,SellPrice=50,Texture=134237,EquipLoc="",Link="|cff1eff00|Hitem:15869::::::::40:::::::|h[Silver Skeleton Key]|h|r",Type="Trade Goods"},["Steelsmith Greaves"]={SubType="Plate",Level=52,id=10707,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7772,Texture=132582,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10707::::::::40:::::::|h[Steelsmith Greaves]|h|r",Type="Armor"},["Dalson Family Wedding Ring"]={SubType="Miscellaneous",Level=55,id=13475,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8109,Texture=133345,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:13475::::::::40:::::::|h[Dalson Family Wedding Ring]|h|r"},["Cabalist Cloak"]={SubType="Cloth",Level=44,id=7533,StackCount=1,Rarity=2,MinLevel=39,SellPrice=5557,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:7533::::::::40:::::::|h[Cabalist Cloak]|h|r",Type="Armor"},["Municipal Proclamation"]={SubType="Junk",Level=1,id=13363,StackCount=20,Rarity=0,MinLevel=0,SellPrice=2000,Texture=134939,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:13363::::::::40:::::::|h[Municipal Proclamation]|h|r"},["Piccolo of the Flaming Fire"]={SubType="Miscellaneous",Level=58,id=13379,StackCount=1,Rarity=3,MinLevel=53,SellPrice=10734,Texture=133942,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:13379::::::::40:::::::|h[Piccolo of the Flaming Fire]|h|r"},["Blackrock Bracer"]={SubType="Quest",Level=1,id=22138,StackCount=50,Rarity=1,MinLevel=0,SellPrice=0,Texture=132614,Link="|cffffffff|Hitem:22138::::::::40:::::::|h[Blackrock Bracer]|h|r",EquipLoc="",Type="Quest"},["Elixir of Greater Water Breathing"]={SubType="Consumable",Level=45,id=18294,StackCount=5,Rarity=1,MinLevel=35,SellPrice=250,Texture=134716,Type="Consumable",Link="|cffffffff|Hitem:18294::::::::40:::::::|h[Elixir of Greater Water Breathing]|h|r",EquipLoc=""},["Knight-Lieutenant's Chain Boots"]={SubType="Mail",Level=63,id=16401,StackCount=1,Rarity=3,MinLevel=58,SellPrice=13596,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16401::::::::40:::::::|h[Knight-Lieutenant's Chain Boots]|h|r",Type="Armor"},["Tough Cloak"]={SubType="Cloth",Level=28,id=1806,StackCount=1,Rarity=0,MinLevel=23,SellPrice=466,Texture=133758,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:1806::::::::40:::::::|h[Tough Cloak]|h|r"},["Pattern: Glacial Cloak"]={SubType="Tailoring",Level=80,id=22685,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:22685::::::::40:::::::|h[Pattern: Glacial Cloak]|h|r"},["Ironfeather Shoulders"]={SubType="Leather",Level=54,id=15067,StackCount=1,Rarity=3,MinLevel=49,SellPrice=12758,Texture=135037,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:15067::::::::40:::::::|h[Ironfeather Shoulders]|h|r",Type="Armor"},["Alaric's Remains"]={SubType="Quest",Level=1,id=3318,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133640,EquipLoc="",Link="|cffffffff|Hitem:3318::::::::40:::::::|h[Alaric's Remains]|h|r",Type="Quest"},["Damp Note"]={SubType="Junk",Level=17,id=16790,StackCount=1,Rarity=1,MinLevel=17,SellPrice=0,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:16790::::::::40:::::::|h[Damp Note]|h|r",Type="Miscellaneous"},["Brown Horse Summoning"]={SubType="Junk",Level=1,id=875,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134944,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:875::::::::40:::::::|h[Brown Horse Summoning]|h|r"},["Beacon Torch"]={SubType="Quest",Level=1,id=12815,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135432,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12815::::::::40:::::::|h[Beacon Torch]|h|r"},["Maiden's Folly Log"]={SubType="Quest",Level=1,id=4489,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,Link="|cffffffff|Hitem:4489::::::::40:::::::|h[Maiden's Folly Log]|h|r",EquipLoc="",Type="Quest"},["Deepwood Bracers"]={SubType="Leather",Level=26,id=3204,StackCount=1,Rarity=2,MinLevel=21,SellPrice=751,Texture=132605,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:3204::::::::40:::::::|h[Deepwood Bracers]|h|r"},["Abyssal Leather Boots"]={SubType="Leather",Level=60,id=20658,StackCount=1,Rarity=2,MinLevel=55,SellPrice=15272,Texture=132541,Link="|cff1eff00|Hitem:20658::::::::40:::::::|h[Abyssal Leather Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Staff of Nobles"]={SubType="Staves",Level=18,id=3902,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1317,Texture=135466,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3902::::::::40:::::::|h[Staff of Nobles]|h|r",Type="Weapon"},["Emerald Circle"]={SubType="Miscellaneous",Level=59,id=19065,StackCount=1,Rarity=3,MinLevel=0,SellPrice=17831,Texture=133379,Link="|cff0070dd|Hitem:19065::::::::40:::::::|h[Emerald Circle]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Snake Burst Firework"]={SubType="Consumable",Level=50,id=19026,StackCount=10,Rarity=1,MinLevel=0,SellPrice=250,Texture=135920,Link="|cffffffff|Hitem:19026::::::::40:::::::|h[Snake Burst Firework]|h|r",EquipLoc="",Type="Consumable"},["Crested Buckler"]={SubType="Shields",Level=56,id=3990,StackCount=1,Rarity=0,MinLevel=51,SellPrice=8237,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:3990::::::::40:::::::|h[Crested Buckler]|h|r",Type="Armor"},["Codex of Holy Word: Shield II"]={SubType="Book",Level=12,id=3116,StackCount=1,Rarity=1,MinLevel=12,SellPrice=150,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:3116::::::::40:::::::|h[Codex of Holy Word: Shield II]|h|r",Type="Recipe"},["Level 55 Test Gear Cloth - Mage/Priest/Warlock 2"]={SubType="Junk",Level=1,id=17837,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17837::::::::40:::::::|h[Level 55 Test Gear Cloth - Mage/Priest/Warlock 2]|h|r",Type="Miscellaneous"},["Hyperion Vambraces"]={SubType="Plate",Level=60,id=10391,StackCount=1,Rarity=2,MinLevel=55,SellPrice=8193,Texture=132616,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10391::::::::40:::::::|h[Hyperion Vambraces]|h|r",Type="Armor"},["Lifeforce Dirk"]={SubType="Daggers",Level=54,id=10750,StackCount=1,Rarity=3,MinLevel=0,SellPrice=35315,Texture=135322,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:10750::::::::40:::::::|h[Lifeforce Dirk]|h|r",Type="Weapon"},["Thick Leather Bracers"]={SubType="Leather",Level=43,id=3963,StackCount=1,Rarity=0,MinLevel=38,SellPrice=1402,Texture=132600,Type="Armor",Link="|cff9d9d9d|Hitem:3963::::::::40:::::::|h[Thick Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Reconstructed Rod"]={SubType="Quest",Level=1,id=5547,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135139,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5547::::::::40:::::::|h[Reconstructed Rod]|h|r"},["Jasper Idol"]={SubType="Quest",Level=61,id=20870,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134900,Type="Quest",EquipLoc="",Link="|cff0070dd|Hitem:20870::::::::40:::::::|h[Jasper Idol]|h|r"},["Felheart Belt"]={SubType="Cloth",Level=66,id=16806,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17649,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16806::::::::40:::::::|h[Felheart Belt]|h|r",Type="Armor"},["Reins of the Golden Sabercat"]={SubType="Junk",Level=40,id=12327,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132242,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:12327::::::::40:::::::|h[Reins of the Golden Sabercat]|h|r"},["Document from Boomstick Imports"]={SubType="Junk",Level=1,id=18234,StackCount=5,Rarity=0,MinLevel=0,SellPrice=225,Texture=134327,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18234::::::::40:::::::|h[Document from Boomstick Imports]|h|r",EquipLoc=""},["Necklace of Necropsy"]={SubType="Miscellaneous",Level=83,id=23036,StackCount=1,Rarity=4,MinLevel=60,SellPrice=88355,Texture=133321,Link="|cffa335ee|Hitem:23036::::::::40:::::::|h[Necklace of Necropsy]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Heroic Skullcap"]={SubType="Plate",Level=60,id=14935,StackCount=1,Rarity=2,MinLevel=55,SellPrice=11885,Texture=133122,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14935::::::::40:::::::|h[Heroic Skullcap]|h|r"},["Tablet of Lightning Storm"]={SubType="Book",Level=20,id=1597,StackCount=1,Rarity=1,MinLevel=20,SellPrice=750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1597::::::::40:::::::|h[Tablet of Lightning Storm]|h|r"},["Remains of Trey Lightforge"]={SubType="Consumable",Level=1,id=13562,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133639,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13562::::::::40:::::::|h[Remains of Trey Lightforge]|h|r"},["Whitesoul Helm"]={SubType="Plate",Level=60,id=12633,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14859,Texture=133111,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:12633::::::::40:::::::|h[Whitesoul Helm]|h|r"},["OLDMonster - Hands, Plate Silver"]={SubType="Plate",Level=1,id=3245,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=132938,Link="|cff9d9d9d|Hitem:3245::::::::40:::::::|h[OLDMonster - Hands, Plate Silver]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Pagan Vest"]={SubType="Cloth",Level=26,id=14158,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1236,Texture=135011,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14158::::::::40:::::::|h[Pagan Vest]|h|r"},["Small White Rocket"]={SubType="Consumable",Level=1,id=21561,StackCount=20,Rarity=1,MinLevel=0,SellPrice=6,Texture=134286,Link="|cffffffff|Hitem:21561::::::::40:::::::|h[Small White Rocket]|h|r",EquipLoc="",Type="Consumable"},["Flimsy Male Dwarf Mask"]={SubType="Miscellaneous",Level=1,id=20561,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134159,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:20561::::::::40:::::::|h[Flimsy Male Dwarf Mask]|h|r"},["Charged Soulstone"]={SubType="Consumable",Level=8,id=1199,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134335,Link="|cffffffff|Hitem:1199::::::::40:::::::|h[Charged Soulstone]|h|r",EquipLoc="",Type="Consumable"},["Tiller's Vest"]={SubType="Leather",Level=11,id=3444,StackCount=1,Rarity=1,MinLevel=0,SellPrice=90,Texture=135009,Type="Armor",Link="|cffffffff|Hitem:3444::::::::40:::::::|h[Tiller's Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["White Ram"]={SubType="Junk",Level=40,id=5873,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132248,Link="|cff0070dd|Hitem:5873::::::::40:::::::|h[White Ram]|h|r",EquipLoc="",Type="Miscellaneous"},["Gnawed Bone"]={SubType="Junk",Level=1,id=5369,StackCount=5,Rarity=0,MinLevel=0,SellPrice=32,Texture=133718,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5369::::::::40:::::::|h[Gnawed Bone]|h|r"},["Serenity Belt"]={SubType="Cloth",Level=53,id=13144,StackCount=1,Rarity=3,MinLevel=48,SellPrice=6865,Texture=132496,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13144::::::::40:::::::|h[Serenity Belt]|h|r"},["Evermurky"]={SubType="Consumable",Level=1,id=18287,StackCount=20,Rarity=1,MinLevel=0,SellPrice=50,Texture=132798,Type="Consumable",Link="|cffffffff|Hitem:18287::::::::40:::::::|h[Evermurky]|h|r",EquipLoc=""},["Rusted Chain Vest"]={SubType="Mail",Level=5,id=2386,StackCount=1,Rarity=1,MinLevel=1,SellPrice=15,Texture=132624,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:2386::::::::40:::::::|h[Rusted Chain Vest]|h|r",Type="Armor"},["Opaque Wand"]={SubType="Wands",Level=20,id=5207,StackCount=1,Rarity=2,MinLevel=15,SellPrice=1081,Texture=135469,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5207::::::::40:::::::|h[Opaque Wand]|h|r",Type="Weapon"},["Tome of Frostbolt IX"]={SubType="Book",Level=50,id=8867,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133739,Link="|cffffffff|Hitem:8867::::::::40:::::::|h[Tome of Frostbolt IX]|h|r",EquipLoc="",Type="Recipe"},["Dwarven Mild"]={SubType="Consumable",Level=25,id=422,StackCount=20,Rarity=1,MinLevel=15,SellPrice=25,Texture=133949,Type="Consumable",Link="|cffffffff|Hitem:422::::::::40:::::::|h[Dwarven Mild]|h|r",EquipLoc=""},["Brave's Axe"]={SubType="Two-Handed Axes",Level=5,id=5777,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30,Texture=135423,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:5777::::::::40:::::::|h[Brave's Axe]|h|r"},["Gazlowe's Ledger"]={SubType="Quest",Level=1,id=5080,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=133742,Link="|cffffffff|Hitem:5080::::::::40:::::::|h[Gazlowe's Ledger]|h|r",EquipLoc="",Type="Quest"},["Flame in a Bottle"]={SubType="Quest",Level=1,id=12814,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132798,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12814::::::::40:::::::|h[Flame in a Bottle]|h|r"},["Raincaller Boots"]={SubType="Cloth",Level=29,id=14195,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1252,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14195::::::::40:::::::|h[Raincaller Boots]|h|r"},["Infus Emerald"]={SubType="Quest",Level=1,id=12646,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134105,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12646::::::::40:::::::|h[Infus Emerald]|h|r"},["Ancient Vambraces"]={SubType="Mail",Level=42,id=15600,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3787,Texture=132614,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15600::::::::40:::::::|h[Ancient Vambraces]|h|r",Type="Armor"},["Ragged Leather Pants"]={SubType="Leather",Level=2,id=1366,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:1366::::::::40:::::::|h[Ragged Leather Pants]|h|r"},["Stalvan's Reaper"]={SubType="One-Handed Axes",Level=37,id=934,StackCount=1,Rarity=3,MinLevel=32,SellPrice=10682,Texture=132405,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:934::::::::40:::::::|h[Stalvan's Reaper]|h|r"},["Tablet of Strength of Earth Totem II"]={SubType="Book",Level=24,id=9067,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=134459,Link="|cffffffff|Hitem:9067::::::::40:::::::|h[Tablet of Strength of Earth Totem II]|h|r",EquipLoc="",Type="Recipe"},["Enduring Belt"]={SubType="Mail",Level=34,id=14761,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2024,Texture=132518,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14761::::::::40:::::::|h[Enduring Belt]|h|r"},["Kilt of The Five Thunders"]={SubType="Mail",Level=66,id=22100,StackCount=1,Rarity=3,MinLevel=0,SellPrice=38271,Texture=134583,Link="|cff0070dd|Hitem:22100::::::::40:::::::|h[Kilt of The Five Thunders]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Crusader's Armguards"]={SubType="Mail",Level=51,id=10191,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7777,Texture=132613,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10191::::::::40:::::::|h[Crusader's Armguards]|h|r",Type="Armor"},["Savannah Ring"]={SubType="Miscellaneous",Level=28,id=12008,StackCount=1,Rarity=2,MinLevel=23,SellPrice=895,Texture=133345,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12008::::::::40:::::::|h[Savannah Ring]|h|r"},["Holy Relic Shard"]={SubType="Miscellaneous",Level=25,id=3006,StackCount=1,Rarity=1,MinLevel=20,SellPrice=500,Texture=134095,Link="|cffffffff|Hitem:3006::::::::40:::::::|h[Holy Relic Shard]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Sunscale Wristguards"]={SubType="Plate",Level=48,id=14853,StackCount=1,Rarity=2,MinLevel=43,SellPrice=4174,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14853::::::::40:::::::|h[Sunscale Wristguards]|h|r"},["Bashing Pauldrons"]={SubType="Leather",Level=20,id=5319,StackCount=1,Rarity=1,MinLevel=15,SellPrice=323,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:5319::::::::40:::::::|h[Bashing Pauldrons]|h|r",Type="Armor"},["Blank Parchment"]={SubType="Trade Goods",Level=40,id=10648,StackCount=10,Rarity=1,MinLevel=0,SellPrice=125,Texture=134328,EquipLoc="",Link="|cffffffff|Hitem:10648::::::::40:::::::|h[Blank Parchment]|h|r",Type="Trade Goods"},["Rhapsody Malt"]={SubType="Consumable",Level=1,id=2894,StackCount=10,Rarity=1,MinLevel=1,SellPrice=12,Texture=132800,Link="|cffffffff|Hitem:2894::::::::40:::::::|h[Rhapsody Malt]|h|r",EquipLoc="",Type="Consumable"},["Spinal Reaper"]={SubType="Two-Handed Axes",Level=76,id=17104,StackCount=1,Rarity=4,MinLevel=60,SellPrice=179067,Texture=132400,EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:17104::::::::40:::::::|h[Spinal Reaper]|h|r",Type="Weapon"},["Thorium Brotherhood Contract"]={SubType="Quest",Level=60,id=18628,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=134941,Type="Quest",Link="|cffa335ee|Hitem:18628::::::::40:::::::|h[Thorium Brotherhood Contract]|h|r",EquipLoc=""},["Ancient Pauldrons"]={SubType="Mail",Level=44,id=15608,StackCount=1,Rarity=2,MinLevel=39,SellPrice=7035,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15608::::::::40:::::::|h[Ancient Pauldrons]|h|r",Type="Armor"},["A Sealed Pact"]={SubType="Junk",Level=1,id=18226,StackCount=5,Rarity=0,MinLevel=0,SellPrice=408,Texture=134331,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18226::::::::40:::::::|h[A Sealed Pact]|h|r",EquipLoc=""},["Gurubashi Dwarf Destroyer"]={SubType="Guns",Level=68,id=19853,StackCount=1,Rarity=4,MinLevel=60,SellPrice=73837,Texture=135619,Link="|cffa335ee|Hitem:19853::::::::40:::::::|h[Gurubashi Dwarf Destroyer]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Primal Hakkari Girdle"]={SubType="Quest",Level=1,id=19719,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=132501,Link="|cffa335ee|Hitem:19719::::::::40:::::::|h[Primal Hakkari Girdle]|h|r",EquipLoc="",Type="Quest"},["Worn Wooden Buckler"]={SubType="Shields",Level=1,id=876,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:876::::::::40:::::::|h[Worn Wooden Buckler]|h|r"},["Earthen Guard"]={SubType="Shields",Level=65,id=20688,StackCount=1,Rarity=4,MinLevel=60,SellPrice=56644,Texture=134961,Link="|cffa335ee|Hitem:20688::::::::40:::::::|h[Earthen Guard]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Nightfall"]={SubType="Two-Handed Axes",Level=70,id=19169,StackCount=1,Rarity=4,MinLevel=60,SellPrice=129112,Texture=132403,Link="|cffa335ee|Hitem:19169::::::::40:::::::|h[Nightfall]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Knight-Captain's Leather Belt"]={SubType="Leather",Level=60,id=16398,StackCount=1,Rarity=3,MinLevel=55,SellPrice=6427,Texture=132512,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16398::::::::40:::::::|h[Knight-Captain's Leather Belt]|h|r",Type="Armor"},["Gnoll Punisher"]={SubType="One-Handed Maces",Level=17,id=1214,StackCount=1,Rarity=2,MinLevel=12,SellPrice=930,Texture=133046,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:1214::::::::40:::::::|h[Gnoll Punisher]|h|r",Type="Weapon"},["Recipe: Free Action Potion"]={SubType="Alchemy",Level=30,id=5642,StackCount=1,Rarity=1,MinLevel=0,SellPrice=450,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5642::::::::40:::::::|h[Recipe: Free Action Potion]|h|r"},["Polished Zweihander"]={SubType="Two-Handed Swords",Level=26,id=15249,StackCount=1,Rarity=2,MinLevel=21,SellPrice=3877,Texture=135324,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15249::::::::40:::::::|h[Polished Zweihander]|h|r",Type="Weapon"},["Ironvine Belt"]={SubType="Plate",Level=70,id=22764,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15864,Texture=132510,Link="|cff0070dd|Hitem:22764::::::::40:::::::|h[Ironvine Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["White Mechanostrider Mod A"]={SubType="Junk",Level=60,id=13326,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132247,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:13326::::::::40:::::::|h[White Mechanostrider Mod A]|h|r"},["Felstone Reaver"]={SubType="One-Handed Axes",Level=61,id=15239,StackCount=1,Rarity=2,MinLevel=56,SellPrice=42409,Texture=132401,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15239::::::::40:::::::|h[Felstone Reaver]|h|r",Type="Weapon"},["Captain's Cloak"]={SubType="Cloth",Level=39,id=7492,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3015,Texture=133753,Link="|cff1eff00|Hitem:7492::::::::40:::::::|h[Captain's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["85 Pound Mightfish"]={SubType="Junk",Level=55,id=13915,StackCount=1,Rarity=1,MinLevel=0,SellPrice=125,Texture=134300,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13915::::::::40:::::::|h[85 Pound Mightfish]|h|r"},["Bonescythe Pauldrons"]={SubType="Leather",Level=86,id=22479,StackCount=1,Rarity=4,MinLevel=60,SellPrice=84595,Texture=135060,Link="|cffa335ee|Hitem:22479::::::::40:::::::|h[Bonescythe Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Grimoire of Cripple"]={SubType="Book",Level=16,id=1681,StackCount=1,Rarity=1,MinLevel=16,SellPrice=450,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:1681::::::::40:::::::|h[Grimoire of Cripple]|h|r",Type="Recipe"},["Aboriginal Rod"]={SubType="Miscellaneous",Level=20,id=15971,StackCount=1,Rarity=2,MinLevel=15,SellPrice=1064,Texture=135225,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15971::::::::40:::::::|h[Aboriginal Rod]|h|r",Type="Armor"},["Champion's Mail Headguard"]={SubType="Mail",Level=71,id=23259,StackCount=1,Rarity=3,MinLevel=60,SellPrice=19454,Texture=133077,Link="|cff0070dd|Hitem:23259::::::::40:::::::|h[Champion's Mail Headguard]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Emblazoned Shoulders"]={SubType="Leather",Level=30,id=6399,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1639,Texture=135039,Link="|cff1eff00|Hitem:6399::::::::40:::::::|h[Emblazoned Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Warbringer's Gauntlets"]={SubType="Plate",Level=42,id=14942,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2524,Texture=132961,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14942::::::::40:::::::|h[Warbringer's Gauntlets]|h|r"},["Seafire Band"]={SubType="Miscellaneous",Level=46,id=4549,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2092,Texture=133346,Link="|cff1eff00|Hitem:4549::::::::40:::::::|h[Seafire Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Cerulean Ring"]={SubType="Miscellaneous",Level=30,id=7426,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1243,Texture=133352,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:7426::::::::40:::::::|h[Cerulean Ring]|h|r"},["Rigid Leggings"]={SubType="Leather",Level=24,id=15117,StackCount=1,Rarity=2,MinLevel=19,SellPrice=1219,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15117::::::::40:::::::|h[Rigid Leggings]|h|r",Type="Armor"},["Swift Boots"]={SubType="Leather",Level=40,id=7391,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4253,Texture=132542,Link="|cff1eff00|Hitem:7391::::::::40:::::::|h[Swift Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Veteran Bracers"]={SubType="Mail",Level=13,id=3213,StackCount=1,Rarity=1,MinLevel=8,SellPrice=89,Texture=132604,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3213::::::::40:::::::|h[Veteran Bracers]|h|r",Type="Armor"},["Earthshatter Spaulders"]={SubType="Mail",Level=86,id=22467,StackCount=1,Rarity=4,MinLevel=60,SellPrice=105109,Texture=135045,Link="|cffa335ee|Hitem:22467::::::::40:::::::|h[Earthshatter Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Thallium Choker"]={SubType="Miscellaneous",Level=36,id=12020,StackCount=1,Rarity=2,MinLevel=31,SellPrice=3969,Texture=133296,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12020::::::::40:::::::|h[Thallium Choker]|h|r"},["Monster - Axe, 2H Special NPC (Herod)"]={SubType="Two-Handed Axes",Level=1,id=7612,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:7612::::::::40:::::::|h[Monster - Axe, 2H Special NPC (Herod)]|h|r"},["Grassland Sash"]={SubType="Cloth",Level=20,id=6477,StackCount=1,Rarity=2,MinLevel=0,SellPrice=274,Texture=132491,Link="|cff1eff00|Hitem:6477::::::::40:::::::|h[Grassland Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Cobalt Buckler"]={SubType="Shields",Level=20,id=5302,StackCount=1,Rarity=2,MinLevel=0,SellPrice=929,Texture=134956,Link="|cff1eff00|Hitem:5302::::::::40:::::::|h[Cobalt Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Fist of the People's Militia"]={SubType="One-Handed Maces",Level=17,id=1480,StackCount=1,Rarity=2,MinLevel=0,SellPrice=954,Texture=133057,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:1480::::::::40:::::::|h[Fist of the People's Militia]|h|r"},["Field Marshal's Dragonhide Breastplate"]={SubType="Leather",Level=74,id=16452,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33202,Texture=132648,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16452::::::::40:::::::|h[Field Marshal's Dragonhide Breastplate]|h|r",Type="Armor"},["Peridot Circle"]={SubType="Miscellaneous",Level=61,id=11979,StackCount=1,Rarity=2,MinLevel=56,SellPrice=7471,Texture=133356,Type="Armor",Link="|cff1eff00|Hitem:11979::::::::40:::::::|h[Peridot Circle]|h|r",EquipLoc="INVTYPE_FINGER"},["Special Chicken Feed"]={SubType="Consumable",Level=5,id=11109,StackCount=1,Rarity=1,MinLevel=1,SellPrice=6,Texture=134058,Type="Consumable",Link="|cffffffff|Hitem:11109::::::::40:::::::|h[Special Chicken Feed]|h|r",EquipLoc=""},["Splintsteel Armor"]={SubType="Mail",Level=53,id=12049,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16850,Texture=132638,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:12049::::::::40:::::::|h[Splintsteel Armor]|h|r"},["Scroll of Stamina IV"]={SubType="Consumable",Level=60,id=10307,StackCount=5,Rarity=1,MinLevel=50,SellPrice=112,Texture=134943,EquipLoc="",Link="|cffffffff|Hitem:10307::::::::40:::::::|h[Scroll of Stamina IV]|h|r",Type="Consumable"},["Valorous Wristguards"]={SubType="Plate",Level=46,id=8273,StackCount=1,Rarity=2,MinLevel=41,SellPrice=3574,Texture=132615,Link="|cff1eff00|Hitem:8273::::::::40:::::::|h[Valorous Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Moccasins of the White Hare"]={SubType="Cloth",Level=29,id=13099,StackCount=1,Rarity=3,MinLevel=24,SellPrice=1431,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13099::::::::40:::::::|h[Moccasins of the White Hare]|h|r"},["Burnished Bracers"]={SubType="Mail",Level=19,id=3211,StackCount=1,Rarity=2,MinLevel=14,SellPrice=373,Texture=132600,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:3211::::::::40:::::::|h[Burnished Bracers]|h|r",Type="Armor"},["Blood Guard's Plate Greaves"]={SubType="Plate",Level=66,id=22858,StackCount=1,Rarity=3,MinLevel=60,SellPrice=9827,Texture=132590,Link="|cff0070dd|Hitem:22858::::::::40:::::::|h[Blood Guard's Plate Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Thun'grim's Dagger"]={SubType="Daggers",Level=15,id=7327,StackCount=1,Rarity=2,MinLevel=0,SellPrice=698,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:7327::::::::40:::::::|h[Thun'grim's Dagger]|h|r",Type="Weapon"},["Zorbin's Ultra-Shrinker"]={SubType="Quest",Level=1,id=18904,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133003,Type="Quest",Link="|cffffffff|Hitem:18904::::::::40:::::::|h[Zorbin's Ultra-Shrinker]|h|r",EquipLoc=""},["Engineer's Ink"]={SubType="Trade Goods",Level=50,id=10647,StackCount=10,Rarity=1,MinLevel=0,SellPrice=500,Texture=134845,EquipLoc="",Link="|cffffffff|Hitem:10647::::::::40:::::::|h[Engineer's Ink]|h|r",Type="Trade Goods"},["Frenzied Striker"]={SubType="Polearms",Level=56,id=13056,StackCount=1,Rarity=3,MinLevel=51,SellPrice=48330,Texture=135130,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13056::::::::40:::::::|h[Frenzied Striker]|h|r"},["Barrel of Shimmer Stout"]={SubType="Quest",Level=1,id=3085,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132620,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3085::::::::40:::::::|h[Barrel of Shimmer Stout]|h|r"},["Dense Stone"]={SubType="Trade Goods",Level=45,id=12365,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=134461,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12365::::::::40:::::::|h[Dense Stone]|h|r"},["Cloud Stone"]={SubType="Miscellaneous",Level=53,id=17737,StackCount=1,Rarity=3,MinLevel=48,SellPrice=10163,Texture=134333,EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:17737::::::::40:::::::|h[Cloud Stone]|h|r",Type="Armor"},["Lunaris Bow"]={SubType="Bows",Level=30,id=5817,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3226,Texture=135489,Link="|cff1eff00|Hitem:5817::::::::40:::::::|h[Lunaris Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Grizzle's Skinner"]={SubType="One-Handed Axes",Level=55,id=11702,StackCount=1,Rarity=3,MinLevel=50,SellPrice=36752,Texture=132403,Type="Weapon",Link="|cff0070dd|Hitem:11702::::::::40:::::::|h[Grizzle's Skinner]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Craftsman's Writ - Greater Arcane Protection Potion"]={SubType="Junk",Level=60,id=22620,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22620::::::::40:::::::|h[Craftsman's Writ - Greater Arcane Protection Potion]|h|r",EquipLoc="",Type="Miscellaneous"},["Lord's Armguards"]={SubType="Mail",Level=49,id=10076,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6571,Texture=132613,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10076::::::::40:::::::|h[Lord's Armguards]|h|r",Type="Armor"},["OLDThug Belt"]={SubType="Miscellaneous",Level=1,id=122,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:122::::::::40:::::::|h[OLDThug Belt]|h|r",Type="Armor"},["Lonetree's Circle"]={SubType="Miscellaneous",Level=35,id=18586,StackCount=1,Rarity=3,MinLevel=0,SellPrice=14853,Texture=133355,Type="Armor",Link="|cff0070dd|Hitem:18586::::::::40:::::::|h[Lonetree's Circle]|h|r",EquipLoc="INVTYPE_FINGER"},["Essence of Earth"]={SubType="Reagent",Level=55,id=7076,StackCount=10,Rarity=2,MinLevel=0,SellPrice=400,Texture=136102,EquipLoc="",Link="|cff1eff00|Hitem:7076::::::::40:::::::|h[Essence of Earth]|h|r",Type="Reagent"},["Deprecated Static Charm"]={SubType="Miscellaneous",Level=40,id=2803,StackCount=1,Rarity=0,MinLevel=35,SellPrice=750,Texture=133435,EquipLoc="INVTYPE_TRINKET",Link="|cff9d9d9d|Hitem:2803::::::::40:::::::|h[Deprecated Static Charm]|h|r",Type="Armor"},["Wooden Mallet"]={SubType="Two-Handed Maces",Level=9,id=2493,StackCount=1,Rarity=1,MinLevel=4,SellPrice=140,Texture=133053,Link="|cffffffff|Hitem:2493::::::::40:::::::|h[Wooden Mallet]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["AHNQIRAJ TEST ITEM B LEATHER CHEST"]={SubType="Miscellaneous",Level=1,id=21420,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21420::::::::40:::::::|h[AHNQIRAJ TEST ITEM B LEATHER CHEST]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Darthalia's Sealed Commendation"]={SubType="Quest",Level=1,id=3701,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133472,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3701::::::::40:::::::|h[Darthalia's Sealed Commendation]|h|r"},["Tablet of Earthbind Totem"]={SubType="Book",Level=6,id=9041,StackCount=1,Rarity=1,MinLevel=6,SellPrice=20,Texture=134459,Link="|cffffffff|Hitem:9041::::::::40:::::::|h[Tablet of Earthbind Totem]|h|r",EquipLoc="",Type="Recipe"},["Deathdealer's Helm"]={SubType="Leather",Level=81,id=21360,StackCount=1,Rarity=4,MinLevel=60,SellPrice=69081,Texture=133072,Link="|cffa335ee|Hitem:21360::::::::40:::::::|h[Deathdealer's Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Whistle of the Black War Raptor"]={SubType="Junk",Level=40,id=18246,StackCount=1,Rarity=4,MinLevel=40,SellPrice=0,Texture=132253,Type="Miscellaneous",Link="|cffa335ee|Hitem:18246::::::::40:::::::|h[Whistle of the Black War Raptor]|h|r",EquipLoc=""},["Tork Wrench"]={SubType="Miscellaneous",Level=19,id=11855,StackCount=1,Rarity=2,MinLevel=0,SellPrice=782,Texture=134520,Type="Armor",Link="|cff1eff00|Hitem:11855::::::::40:::::::|h[Tork Wrench]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Defiler's Mageweave Bandage"]={SubType="Consumable",Level=45,id=20232,StackCount=20,Rarity=1,MinLevel=35,SellPrice=75,Texture=133690,Link="|cffffffff|Hitem:20232::::::::40:::::::|h[Defiler's Mageweave Bandage]|h|r",EquipLoc="",Type="Consumable"},["Formula: Smoking Heart of the Mountain"]={SubType="Enchanting",Level=53,id=11813,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11813::::::::40:::::::|h[Formula: Smoking Heart of the Mountain]|h|r",EquipLoc=""},["Goblin Power Shovel"]={SubType="Two-Handed Maces",Level=34,id=1991,StackCount=1,Rarity=2,MinLevel=29,SellPrice=8357,Texture=134436,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1991::::::::40:::::::|h[Goblin Power Shovel]|h|r"},["Tablet of Magma Totem II"]={SubType="Book",Level=38,id=9097,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9097::::::::40:::::::|h[Tablet of Magma Totem II]|h|r"},["Cresting Key"]={SubType="Key",Level=1,id=4484,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,EquipLoc="",Link="|cffffffff|Hitem:4484::::::::40:::::::|h[Cresting Key]|h|r",Type="Key"},["Bludgeon of the Grinning Dog"]={SubType="Staves",Level=47,id=10627,StackCount=1,Rarity=3,MinLevel=42,SellPrice=26974,Texture=135165,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:10627::::::::40:::::::|h[Bludgeon of the Grinning Dog]|h|r",Type="Weapon"},["Defiler's Lamellar Spaulders"]={SubType="Plate",Level=65,id=20184,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26635,Texture=135032,Link="|cffa335ee|Hitem:20184::::::::40:::::::|h[Defiler's Lamellar Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Skeleton Finger"]={SubType="Quest",Level=1,id=2378,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133718,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2378::::::::40:::::::|h[Skeleton Finger]|h|r"},["Sturdy Female Orc Mask"]={SubType="Miscellaneous",Level=45,id=20587,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4810,Texture=134171,Link="|cff1eff00|Hitem:20587::::::::40:::::::|h[Sturdy Female Orc Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Monster - Dagger, Badass Red"]={SubType="Daggers",Level=1,id=10619,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135638,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:10619::::::::40:::::::|h[Monster - Dagger, Badass Red]|h|r",Type="Weapon"},["Monster - Item, Lantern - Square"]={SubType="Miscellaneous",Level=1,id=2714,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=134249,Link="|cff9d9d9d|Hitem:2714::::::::40:::::::|h[Monster - Item, Lantern - Square]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Grizzly Bracers"]={SubType="Leather",Level=11,id=15297,StackCount=1,Rarity=1,MinLevel=6,SellPrice=45,Texture=132601,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:15297::::::::40:::::::|h[Grizzly Bracers]|h|r",Type="Armor"},["Jumanza Grips"]={SubType="Cloth",Level=47,id=18083,StackCount=1,Rarity=3,MinLevel=42,SellPrice=4522,Texture=132943,Type="Armor",Link="|cff0070dd|Hitem:18083::::::::40:::::::|h[Jumanza Grips]|h|r",EquipLoc="INVTYPE_HAND"},["Blood Guard's Dreadweave Handwraps"]={SubType="Cloth",Level=66,id=22865,StackCount=1,Rarity=3,MinLevel=60,SellPrice=6723,Texture=132953,Link="|cff0070dd|Hitem:22865::::::::40:::::::|h[Blood Guard's Dreadweave Handwraps]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Double Axe"]={SubType="One-Handed Axes",Level=24,id=927,StackCount=1,Rarity=1,MinLevel=19,SellPrice=1390,Texture=132415,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:927::::::::40:::::::|h[Double Axe]|h|r"},["PX83-Enigmatron"]={SubType="Quest",Level=1,id=11473,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133001,Type="Quest",Link="|cffffffff|Hitem:11473::::::::40:::::::|h[PX83-Enigmatron]|h|r",EquipLoc=""},["Silver-thread Rod"]={SubType="Miscellaneous",Level=31,id=15928,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2387,Texture=135469,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15928::::::::40:::::::|h[Silver-thread Rod]|h|r",Type="Armor"},["Pattern: Star Belt"]={SubType="Tailoring",Level=40,id=4356,StackCount=1,Rarity=2,MinLevel=0,SellPrice=375,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:4356::::::::40:::::::|h[Pattern: Star Belt]|h|r"},["Genesis Vest"]={SubType="Leather",Level=88,id=21357,StackCount=1,Rarity=4,MinLevel=60,SellPrice=128176,Texture=132723,Link="|cffa335ee|Hitem:21357::::::::40:::::::|h[Genesis Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Warblade of Caer Darrow"]={SubType="Two-Handed Swords",Level=63,id=13982,StackCount=1,Rarity=3,MinLevel=0,SellPrice=69826,Texture=135349,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13982::::::::40:::::::|h[Warblade of Caer Darrow]|h|r"},["Blood Guard's Dreadweave Gloves"]={SubType="Cloth",Level=63,id=17577,StackCount=1,Rarity=3,MinLevel=58,SellPrice=5717,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:17577::::::::40:::::::|h[Blood Guard's Dreadweave Gloves]|h|r",Type="Armor"},["Tablet of Healing Wave X"]={SubType="Book",Level=60,id=21291,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=134465,Link="|cff0070dd|Hitem:21291::::::::40:::::::|h[Tablet of Healing Wave X]|h|r",EquipLoc="",Type="Recipe"},["Grimoire of Pestilence III"]={SubType="Book",Level=38,id=5725,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4250,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:5725::::::::40:::::::|h[Grimoire of Pestilence III]|h|r",Type="Recipe"},["Phalanx Cloak"]={SubType="Cloth",Level=30,id=7419,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1326,Texture=133767,Link="|cff1eff00|Hitem:7419::::::::40:::::::|h[Phalanx Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Magister's Boots"]={SubType="Cloth",Level=59,id=16682,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14582,Texture=132536,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16682::::::::40:::::::|h[Magister's Boots]|h|r",Type="Armor"},["Champion's Dragonhide Shoulders"]={SubType="Leather",Level=71,id=23254,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15495,Texture=135038,Link="|cff0070dd|Hitem:23254::::::::40:::::::|h[Champion's Dragonhide Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Bamboo Cage Key"]={SubType="Key",Level=1,id=12301,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134239,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:12301::::::::40:::::::|h[Bamboo Cage Key]|h|r"},["Arcane Boots"]={SubType="Cloth",Level=57,id=8284,StackCount=1,Rarity=2,MinLevel=52,SellPrice=10514,Texture=132539,Link="|cff1eff00|Hitem:8284::::::::40:::::::|h[Arcane Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Seaweed"]={SubType="Junk",Level=20,id=5569,StackCount=5,Rarity=0,MinLevel=0,SellPrice=203,Texture=134186,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5569::::::::40:::::::|h[Seaweed]|h|r"},["Ridge Cleaver"]={SubType="One-Handed Axes",Level=25,id=15230,StackCount=1,Rarity=2,MinLevel=20,SellPrice=2755,Texture=132415,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:15230::::::::40:::::::|h[Ridge Cleaver]|h|r",Type="Weapon"},["Lupine Cuffs"]={SubType="Leather",Level=14,id=15013,StackCount=1,Rarity=1,MinLevel=9,SellPrice=86,Texture=132604,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:15013::::::::40:::::::|h[Lupine Cuffs]|h|r",Type="Armor"},["Writhing Haunt Cauldron Key"]={SubType="Quest",Level=1,id=13197,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134245,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13197::::::::40:::::::|h[Writhing Haunt Cauldron Key]|h|r"},["Tome of Frost Nova"]={SubType="Book",Level=10,id=989,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:989::::::::40:::::::|h[Tome of Frost Nova]|h|r",Type="Recipe"},["Ivory Boar Tusk"]={SubType="Junk",Level=1,id=3403,StackCount=5,Rarity=0,MinLevel=0,SellPrice=321,Texture=133721,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:3403::::::::40:::::::|h[Ivory Boar Tusk]|h|r"},["Lieutenant Commander's Dreadweave Mantle"]={SubType="Cloth",Level=63,id=17569,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8322,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:17569::::::::40:::::::|h[Lieutenant Commander's Dreadweave Mantle]|h|r",Type="Armor"},["Mordresh's Lifeless Skull"]={SubType="Miscellaneous",Level=41,id=10770,StackCount=1,Rarity=3,MinLevel=36,SellPrice=7835,Texture=133729,EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:10770::::::::40:::::::|h[Mordresh's Lifeless Skull]|h|r",Type="Armor"},["Outrunner's Bow"]={SubType="Bows",Level=63,id=19562,StackCount=1,Rarity=3,MinLevel=58,SellPrice=41191,Texture=135490,Link="|cff0070dd|Hitem:19562::::::::40:::::::|h[Outrunner's Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Lofty Legguards"]={SubType="Plate",Level=55,id=14928,StackCount=1,Rarity=2,MinLevel=50,SellPrice=12673,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14928::::::::40:::::::|h[Lofty Legguards]|h|r"},["Salma's Oven Mitts"]={SubType="Cloth",Level=12,id=1479,StackCount=1,Rarity=1,MinLevel=0,SellPrice=47,Texture=132940,Link="|cffffffff|Hitem:1479::::::::40:::::::|h[Salma's Oven Mitts]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Shivsprocket's Shiv"]={SubType="Daggers",Level=65,id=22379,StackCount=1,Rarity=3,MinLevel=0,SellPrice=65446,Texture=135322,Link="|cff0070dd|Hitem:22379::::::::40:::::::|h[Shivsprocket's Shiv]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Ichor of Undeath"]={SubType="Reagent",Level=45,id=7972,StackCount=10,Rarity=1,MinLevel=0,SellPrice=400,Texture=134437,EquipLoc="",Link="|cffffffff|Hitem:7972::::::::40:::::::|h[Ichor of Undeath]|h|r",Type="Reagent"},["Gyrofreeze Ice Reflector"]={SubType="Devices",Level=52,id=18634,StackCount=1,Rarity=3,MinLevel=47,SellPrice=12500,Texture=133860,Type="Trade Goods",Link="|cff0070dd|Hitem:18634::::::::40:::::::|h[Gyrofreeze Ice Reflector]|h|r",EquipLoc="INVTYPE_TRINKET"},["Stone Buckler"]={SubType="Shields",Level=10,id=2900,StackCount=1,Rarity=1,MinLevel=0,SellPrice=89,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:2900::::::::40:::::::|h[Stone Buckler]|h|r"},["Patched Cloak"]={SubType="Cloth",Level=16,id=1790,StackCount=1,Rarity=0,MinLevel=11,SellPrice=93,Texture=133762,EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:1790::::::::40:::::::|h[Patched Cloak]|h|r",Type="Armor"},["Mooncloth Boots"]={SubType="Cloth",Level=56,id=15802,StackCount=1,Rarity=3,MinLevel=51,SellPrice=11648,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:15802::::::::40:::::::|h[Mooncloth Boots]|h|r",Type="Armor"},["Small Seaforium Charge"]={SubType="Explosives",Level=20,id=4367,StackCount=10,Rarity=1,MinLevel=0,SellPrice=150,Texture=134514,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4367::::::::40:::::::|h[Small Seaforium Charge]|h|r"},["Crushridge Bindings"]={SubType="Mail",Level=41,id=13199,StackCount=1,Rarity=3,MinLevel=36,SellPrice=4398,Texture=132618,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13199::::::::40:::::::|h[Crushridge Bindings]|h|r"},["Archer's Cloak"]={SubType="Cloth",Level=34,id=9860,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2382,Texture=133755,Link="|cff1eff00|Hitem:9860::::::::40:::::::|h[Archer's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Dark Iron Residue"]={SubType="Junk",Level=1,id=18945,StackCount=100,Rarity=1,MinLevel=0,SellPrice=100,Texture=132857,Type="Miscellaneous",Link="|cffffffff|Hitem:18945::::::::40:::::::|h[Dark Iron Residue]|h|r",EquipLoc=""},["Vambraces of Prophecy"]={SubType="Cloth",Level=66,id=16819,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17189,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16819::::::::40:::::::|h[Vambraces of Prophecy]|h|r",Type="Armor"},["Crusader Belt"]={SubType="Mail",Level=33,id=3758,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1817,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:3758::::::::40:::::::|h[Crusader Belt]|h|r",Type="Armor"},["Dusky Belt"]={SubType="Leather",Level=39,id=7387,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2587,Texture=132495,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:7387::::::::40:::::::|h[Dusky Belt]|h|r"},["The Needler"]={SubType="Polearms",Level=60,id=13060,StackCount=1,Rarity=3,MinLevel=55,SellPrice=60784,Texture=135131,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13060::::::::40:::::::|h[The Needler]|h|r"},["Book of Thorns II"]={SubType="Book",Level=14,id=5148,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133743,Link="|cffffffff|Hitem:5148::::::::40:::::::|h[Book of Thorns II]|h|r",EquipLoc="",Type="Recipe"},["Pattern: Felcloth Gloves"]={SubType="Tailoring",Level=62,id=18415,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18415::::::::40:::::::|h[Pattern: Felcloth Gloves]|h|r",EquipLoc=""},["Dark Iron Boots"]={SubType="Plate",Level=70,id=20039,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31709,Texture=132551,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:20039::::::::40:::::::|h[Dark Iron Boots]|h|r"},["Shattered Sword of Marduk"]={SubType="Quest",Level=1,id=12957,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135357,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12957::::::::40:::::::|h[Shattered Sword of Marduk]|h|r"},["Symbol of Ragnaros"]={SubType="Quest",Level=1,id=10552,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133437,EquipLoc="",Link="|cffffffff|Hitem:10552::::::::40:::::::|h[Symbol of Ragnaros]|h|r",Type="Quest"},["Admiral's Hat"]={SubType="Cloth",Level=48,id=10030,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6007,Texture=133131,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10030::::::::40:::::::|h[Admiral's Hat]|h|r",Type="Armor"},["High Warlord's Spellblade"]={SubType="Daggers",Level=78,id=23466,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45671,Texture=135662,Link="|cffa335ee|Hitem:23466::::::::40:::::::|h[High Warlord's Spellblade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Bloodclot Band"]={SubType="Miscellaneous",Level=57,id=22257,StackCount=1,Rarity=3,MinLevel=52,SellPrice=36127,Texture=133378,Link="|cff0070dd|Hitem:22257::::::::40:::::::|h[Bloodclot Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Brigandine Leggings"]={SubType="Mail",Level=50,id=2425,StackCount=1,Rarity=1,MinLevel=45,SellPrice=8615,Texture=134583,Link="|cffffffff|Hitem:2425::::::::40:::::::|h[Brigandine Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Lesser Nether Essence"]={SubType="Trade Goods",Level=40,id=11174,StackCount=10,Rarity=2,MinLevel=0,SellPrice=0,Texture=132871,Type="Trade Goods",Link="|cff1eff00|Hitem:11174::::::::40:::::::|h[Lesser Nether Essence]|h|r",EquipLoc=""},["A Letter to Yvette"]={SubType="Quest",Level=4,id=2839,StackCount=1,Rarity=1,MinLevel=4,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:2839::::::::40:::::::|h[A Letter to Yvette]|h|r",EquipLoc="",Type="Quest"},["Smokywood Pastures Gift Pack"]={SubType="Junk",Level=1,id=17727,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134140,EquipLoc="",Link="|cffffffff|Hitem:17727::::::::40:::::::|h[Smokywood Pastures Gift Pack]|h|r",Type="Miscellaneous"},["Grim Reaper"]={SubType="Polearms",Level=40,id=13054,StackCount=1,Rarity=3,MinLevel=35,SellPrice=15805,Texture=135125,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13054::::::::40:::::::|h[Grim Reaper]|h|r"},["Zraedus's Brew"]={SubType="Quest",Level=1,id=6089,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132800,Link="|cffffffff|Hitem:6089::::::::40:::::::|h[Zraedus's Brew]|h|r",EquipLoc="",Type="Quest"},["Beastmaster's Boots"]={SubType="Mail",Level=60,id=22061,StackCount=1,Rarity=4,MinLevel=0,SellPrice=31009,Texture=132588,Link="|cffa335ee|Hitem:22061::::::::40:::::::|h[Beastmaster's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Burnt Buckler"]={SubType="Shields",Level=8,id=15895,StackCount=1,Rarity=1,MinLevel=3,SellPrice=53,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:15895::::::::40:::::::|h[Burnt Buckler]|h|r",Type="Armor"},["Felcloth Pants"]={SubType="Cloth",Level=55,id=14107,StackCount=1,Rarity=2,MinLevel=50,SellPrice=13140,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14107::::::::40:::::::|h[Felcloth Pants]|h|r"},["Witherbark Totem Stick"]={SubType="Quest",Level=1,id=7273,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135465,EquipLoc="",Link="|cffffffff|Hitem:7273::::::::40:::::::|h[Witherbark Totem Stick]|h|r",Type="Quest"},["Brown Linen Pants"]={SubType="Cloth",Level=10,id=4343,StackCount=1,Rarity=1,MinLevel=5,SellPrice=60,Texture=134586,Link="|cffffffff|Hitem:4343::::::::40:::::::|h[Brown Linen Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Large White Rocket"]={SubType="Consumable",Level=1,id=21593,StackCount=20,Rarity=1,MinLevel=0,SellPrice=12,Texture=134274,Link="|cffffffff|Hitem:21593::::::::40:::::::|h[Large White Rocket]|h|r",EquipLoc="",Type="Consumable"},["Band of Servitude"]={SubType="Miscellaneous",Level=65,id=22721,StackCount=1,Rarity=4,MinLevel=60,SellPrice=64030,Texture=133358,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:22721::::::::40:::::::|h[Band of Servitude]|h|r"},["Bristlebark Gloves"]={SubType="Leather",Level=24,id=14572,StackCount=1,Rarity=2,MinLevel=19,SellPrice=609,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14572::::::::40:::::::|h[Bristlebark Gloves]|h|r"},["Shield of the Faith"]={SubType="Shields",Level=30,id=1547,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2795,Texture=135940,Type="Armor",Link="|cff1eff00|Hitem:1547::::::::40:::::::|h[Shield of the Faith]|h|r",EquipLoc="INVTYPE_SHIELD"},["Wolf Heart Samples"]={SubType="Quest",Level=1,id=10283,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,EquipLoc="",Link="|cffffffff|Hitem:10283::::::::40:::::::|h[Wolf Heart Samples]|h|r",Type="Quest"},["Singed Scroll Fragment"]={SubType="Quest",Level=1,id=4520,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4520::::::::40:::::::|h[Singed Scroll Fragment]|h|r"},["Raincaller Mantle"]={SubType="Cloth",Level=29,id=14186,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1179,Texture=135036,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14186::::::::40:::::::|h[Raincaller Mantle]|h|r"},["Spitfire Breastplate"]={SubType="Mail",Level=62,id=20479,StackCount=1,Rarity=3,MinLevel=57,SellPrice=34036,Texture=132717,Link="|cff0070dd|Hitem:20479::::::::40:::::::|h[Spitfire Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Intact Makrura Eye"]={SubType="Quest",Level=1,id=4887,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133884,Link="|cffffffff|Hitem:4887::::::::40:::::::|h[Intact Makrura Eye]|h|r",EquipLoc="",Type="Quest"},["Pathfinder Hat"]={SubType="Leather",Level=34,id=15339,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2466,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15339::::::::40:::::::|h[Pathfinder Hat]|h|r",Type="Armor"},["Bonelink Epaulets"]={SubType="Mail",Level=45,id=15617,StackCount=1,Rarity=2,MinLevel=40,SellPrice=7107,Texture=135053,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15617::::::::40:::::::|h[Bonelink Epaulets]|h|r",Type="Armor"},["The Postmaster's Trousers"]={SubType="Cloth",Level=61,id=13389,StackCount=1,Rarity=3,MinLevel=56,SellPrice=21746,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:13389::::::::40:::::::|h[The Postmaster's Trousers]|h|r"},["Libram of Light"]={SubType="Librams",Level=83,id=23006,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58925,Texture=134915,Type="Armor",EquipLoc="INVTYPE_RELIC",Link="|cffa335ee|Hitem:23006::::::::40:::::::|h[Libram of Light]|h|r"},["Pattern: Argent Shoulders"]={SubType="Tailoring",Level=64,id=19217,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134939,Link="|cffffffff|Hitem:19217::::::::40:::::::|h[Pattern: Argent Shoulders]|h|r",EquipLoc="",Type="Recipe"},["Long Tail Hair"]={SubType="Junk",Level=1,id=5120,StackCount=5,Rarity=0,MinLevel=0,SellPrice=193,Texture=134324,EquipLoc="",Link="|cff9d9d9d|Hitem:5120::::::::40:::::::|h[Long Tail Hair]|h|r",Type="Miscellaneous"},["Vision Dust"]={SubType="Trade Goods",Level=35,id=11137,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132859,Type="Trade Goods",Link="|cffffffff|Hitem:11137::::::::40:::::::|h[Vision Dust]|h|r",EquipLoc=""},["Thistlefur Gloves"]={SubType="Cloth",Level=33,id=14199,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1240,Texture=132940,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14199::::::::40:::::::|h[Thistlefur Gloves]|h|r"},["Frostbite Girdle"]={SubType="Leather",Level=62,id=14502,StackCount=1,Rarity=3,MinLevel=57,SellPrice=13051,Texture=132499,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:14502::::::::40:::::::|h[Frostbite Girdle]|h|r"},["Monster - Big Sniper Gun"]={SubType="Guns",Level=1,id=11021,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135612,Type="Weapon",Link="|cff9d9d9d|Hitem:11021::::::::40:::::::|h[Monster - Big Sniper Gun]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Thunderfury, Blessed Blade of the Windseeker DEPRECATED"]={SubType="One-Handed Swords",Level=80,id=17802,StackCount=1,Rarity=5,MinLevel=100,SellPrice=261136,Texture=135349,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffff8000|Hitem:17802::::::::40:::::::|h[Thunderfury, Blessed Blade of the Windseeker DEPRECATED]|h|r",Type="Weapon"},["Glutton Shackle"]={SubType="Quest",Level=1,id=3156,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132604,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3156::::::::40:::::::|h[Glutton Shackle]|h|r"},["Simple Wood"]={SubType="Reagent",Level=5,id=4470,StackCount=20,Rarity=1,MinLevel=0,SellPrice=9,Texture=135435,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:4470::::::::40:::::::|h[Simple Wood]|h|r"},["Faintly Glowing Skull"]={SubType="Consumable",Level=9,id=4945,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37,Texture=133728,Type="Consumable",Link="|cffffffff|Hitem:4945::::::::40:::::::|h[Faintly Glowing Skull]|h|r",EquipLoc=""},["Head of Instructor Razuvious DEP"]={SubType="Quest",Level=1,id=22386,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134173,Link="|cffffffff|Hitem:22386::::::::40:::::::|h[Head of Instructor Razuvious DEP]|h|r",EquipLoc="",Type="Quest"},["Wind Rider Staff"]={SubType="Staves",Level=20,id=5306,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1710,Texture=135225,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:5306::::::::40:::::::|h[Wind Rider Staff]|h|r",Type="Weapon"},["Test Quality Modifier Chest"]={SubType="Plate",Level=60,id=16211,StackCount=1,Rarity=1,MinLevel=55,SellPrice=9488,Texture=132633,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:16211::::::::40:::::::|h[Test Quality Modifier Chest]|h|r",Type="Armor"},["Heavy Scorpid Leggings"]={SubType="Mail",Level=57,id=15079,StackCount=1,Rarity=2,MinLevel=52,SellPrice=21760,Texture=134592,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15079::::::::40:::::::|h[Heavy Scorpid Leggings]|h|r",Type="Armor"},["Gearforge Girdle"]={SubType="Plate",Level=58,id=15709,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7270,Texture=132522,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15709::::::::40:::::::|h[Gearforge Girdle]|h|r",Type="Armor"},["Iron Grenade"]={SubType="Explosives",Level=35,id=4390,StackCount=10,Rarity=1,MinLevel=0,SellPrice=500,Texture=133716,EquipLoc="",Link="|cffffffff|Hitem:4390::::::::40:::::::|h[Iron Grenade]|h|r",Type="Trade Goods"},["Revenant Chestplate"]={SubType="Plate",Level=54,id=10128,StackCount=1,Rarity=2,MinLevel=49,SellPrice=11907,Texture=132746,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10128::::::::40:::::::|h[Revenant Chestplate]|h|r",Type="Armor"},["Calico Gloves"]={SubType="Cloth",Level=15,id=1498,StackCount=1,Rarity=0,MinLevel=10,SellPrice=57,Texture=132952,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:1498::::::::40:::::::|h[Calico Gloves]|h|r"},["Bear Buckler"]={SubType="Shields",Level=23,id=4821,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1308,Texture=134955,Type="Armor",Link="|cff1eff00|Hitem:4821::::::::40:::::::|h[Bear Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Deadly Poison"]={SubType="Consumable",Level=30,id=2892,StackCount=20,Rarity=1,MinLevel=30,SellPrice=30,Texture=132290,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2892::::::::40:::::::|h[Deadly Poison]|h|r"},["Stiletto"]={SubType="Daggers",Level=8,id=2494,StackCount=1,Rarity=1,MinLevel=3,SellPrice=80,Texture=135641,Type="Weapon",Link="|cffffffff|Hitem:2494::::::::40:::::::|h[Stiletto]|h|r",EquipLoc="INVTYPE_WEAPON"},["Logsplitter"]={SubType="Two-Handed Axes",Level=16,id=3586,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1034,Texture=132402,Link="|cff1eff00|Hitem:3586::::::::40:::::::|h[Logsplitter]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Tome of Water Elemental II"]={SubType="Book",Level=40,id=4155,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4155::::::::40:::::::|h[Tome of Water Elemental II]|h|r"},["Frostmane Leather Vest"]={SubType="Leather",Level=4,id=2108,StackCount=1,Rarity=1,MinLevel=1,SellPrice=8,Texture=132760,Type="Armor",Link="|cffffffff|Hitem:2108::::::::40:::::::|h[Frostmane Leather Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Outrider Leggings"]={SubType="Mail",Level=56,id=11882,StackCount=1,Rarity=2,MinLevel=0,SellPrice=20520,Texture=134583,Type="Armor",Link="|cff1eff00|Hitem:11882::::::::40:::::::|h[Outrider Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Lord's Legguards"]={SubType="Mail",Level=52,id=10084,StackCount=1,Rarity=2,MinLevel=47,SellPrice=15246,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10084::::::::40:::::::|h[Lord's Legguards]|h|r",Type="Armor"},["Libram: Holy Light II"]={SubType="Book",Level=6,id=1141,StackCount=1,Rarity=1,MinLevel=6,SellPrice=20,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:1141::::::::40:::::::|h[Libram: Holy Light II]|h|r",Type="Recipe"},["Reinforced Leather Boots"]={SubType="Leather",Level=50,id=2473,StackCount=1,Rarity=1,MinLevel=45,SellPrice=5150,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:2473::::::::40:::::::|h[Reinforced Leather Boots]|h|r"},["Short Duskbat Cape"]={SubType="Cloth",Level=5,id=11850,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=133763,Type="Armor",Link="|cffffffff|Hitem:11850::::::::40:::::::|h[Short Duskbat Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Blood Guard's Silk Gloves"]={SubType="Cloth",Level=63,id=16487,StackCount=1,Rarity=3,MinLevel=58,SellPrice=5716,Texture=132940,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16487::::::::40:::::::|h[Blood Guard's Silk Gloves]|h|r",Type="Armor"},["Judgement Belt"]={SubType="Plate",Level=76,id=16952,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27996,Texture=132516,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16952::::::::40:::::::|h[Judgement Belt]|h|r",Type="Armor"},["Dagger of Spell Penetration - Fire 150 Resist (TEST)"]={SubType="Daggers",Level=63,id=21516,StackCount=1,Rarity=3,MinLevel=58,SellPrice=59557,Texture=135150,Link="|cff0070dd|Hitem:21516::::::::40:::::::|h[Dagger of Spell Penetration - Fire 150 Resist (TEST)]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Razorsteel Shoulders"]={SubType="Plate",Level=52,id=20517,StackCount=1,Rarity=3,MinLevel=0,SellPrice=9797,Texture=135047,Link="|cff0070dd|Hitem:20517::::::::40:::::::|h[Razorsteel Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Rugged Mail Vest"]={SubType="Mail",Level=5,id=3273,StackCount=1,Rarity=1,MinLevel=0,SellPrice=15,Texture=132624,Type="Armor",Link="|cffffffff|Hitem:3273::::::::40:::::::|h[Rugged Mail Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Red Leather Bandana"]={SubType="Quest",Level=1,id=829,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133694,Link="|cffffffff|Hitem:829::::::::40:::::::|h[Red Leather Bandana]|h|r",EquipLoc="",Type="Quest"},["Codex of Mind Soothe II"]={SubType="Book",Level=36,id=8981,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8981::::::::40:::::::|h[Codex of Mind Soothe II]|h|r"},["Deadly Poison II"]={SubType="Consumable",Level=38,id=2893,StackCount=20,Rarity=1,MinLevel=38,SellPrice=55,Texture=132290,EquipLoc="",Link="|cffffffff|Hitem:2893::::::::40:::::::|h[Deadly Poison II]|h|r",Type="Consumable"},["Hallow's End Medallion"]={SubType="Quest",Level=1,id=20462,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134015,Link="|cffffffff|Hitem:20462::::::::40:::::::|h[Hallow's End Medallion]|h|r",EquipLoc="",Type="Quest"},["Formula: Enchant Bracer - Superior Strength"]={SubType="Enchanting",Level=59,id=16246,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16246::::::::40:::::::|h[Formula: Enchant Bracer - Superior Strength]|h|r",Type="Recipe"},["Small Barnacled Clam"]={SubType="Junk",Level=10,id=5523,StackCount=1,Rarity=1,MinLevel=0,SellPrice=15,Texture=134431,Link="|cffffffff|Hitem:5523::::::::40:::::::|h[Small Barnacled Clam]|h|r",EquipLoc="",Type="Miscellaneous"},["Crusader's Boots"]={SubType="Mail",Level=53,id=10192,StackCount=1,Rarity=2,MinLevel=48,SellPrice=13212,Texture=132588,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10192::::::::40:::::::|h[Crusader's Boots]|h|r",Type="Armor"},["Valorous Greaves"]={SubType="Plate",Level=47,id=8278,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5477,Texture=132589,Link="|cff1eff00|Hitem:8278::::::::40:::::::|h[Valorous Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Keeper's Bindings"]={SubType="Leather",Level=48,id=14663,StackCount=1,Rarity=2,MinLevel=43,SellPrice=5141,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14663::::::::40:::::::|h[Keeper's Bindings]|h|r"},["Blooddrenched Grips"]={SubType="Leather",Level=71,id=19869,StackCount=1,Rarity=3,MinLevel=60,SellPrice=21051,Texture=132960,Link="|cff0070dd|Hitem:19869::::::::40:::::::|h[Blooddrenched Grips]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["QAEnchant Weapon Spell Power"]={SubType="Consumable",Level=1,id=18668,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Type="Consumable",Link="|cffffffff|Hitem:18668::::::::40:::::::|h[QAEnchant Weapon Spell Power]|h|r",EquipLoc=""},["Tender Crab Meat"]={SubType="Trade Goods",Level=40,id=12206,StackCount=10,Rarity=1,MinLevel=0,SellPrice=112,Texture=134007,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12206::::::::40:::::::|h[Tender Crab Meat]|h|r"},["Talisman of Ephemeral Power"]={SubType="Miscellaneous",Level=66,id=18820,StackCount=1,Rarity=4,MinLevel=60,SellPrice=66290,Texture=134465,Type="Armor",Link="|cffa335ee|Hitem:18820::::::::40:::::::|h[Talisman of Ephemeral Power]|h|r",EquipLoc="INVTYPE_TRINKET"},["Codex of Shackle Undead"]={SubType="Book",Level=20,id=8966,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133741,Link="|cffffffff|Hitem:8966::::::::40:::::::|h[Codex of Shackle Undead]|h|r",EquipLoc="",Type="Recipe"},["Deprecated Stranglethorn Mine Map"]={SubType="Quest",Level=1,id=1663,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134269,EquipLoc="",Link="|cffffffff|Hitem:1663::::::::40:::::::|h[Deprecated Stranglethorn Mine Map]|h|r",Type="Quest"},["Silkstream Cuffs"]={SubType="Cloth",Level=38,id=16791,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1912,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:16791::::::::40:::::::|h[Silkstream Cuffs]|h|r",Type="Armor"},["Ironhide Belt"]={SubType="Mail",Level=51,id=15641,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7587,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15641::::::::40:::::::|h[Ironhide Belt]|h|r",Type="Armor"},["The Rockpounder"]={SubType="Two-Handed Maces",Level=49,id=9413,StackCount=1,Rarity=3,MinLevel=44,SellPrice=32248,Texture=133049,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9413::::::::40:::::::|h[The Rockpounder]|h|r"},["Laced Mail Pants"]={SubType="Mail",Level=19,id=1743,StackCount=1,Rarity=0,MinLevel=14,SellPrice=299,Texture=134583,Link="|cff9d9d9d|Hitem:1743::::::::40:::::::|h[Laced Mail Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Verigan's Fist"]={SubType="Two-Handed Maces",Level=31,id=6953,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7459,Texture=133042,Link="|cff0070dd|Hitem:6953::::::::40:::::::|h[Verigan's Fist]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Recipe: Greater Arcane Protection Potion"]={SubType="Alchemy",Level=58,id=13497,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13497::::::::40:::::::|h[Recipe: Greater Arcane Protection Potion]|h|r"},["Sharp Throwing Axe"]={SubType="Thrown",Level=16,id=3135,StackCount=200,Rarity=1,MinLevel=11,SellPrice=0,Texture=135419,EquipLoc="INVTYPE_THROWN",Link="|cffffffff|Hitem:3135::::::::40:::::::|h[Sharp Throwing Axe]|h|r",Type="Weapon"},["Nocturnal Gloves"]={SubType="Leather",Level=39,id=15155,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2571,Texture=132959,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15155::::::::40:::::::|h[Nocturnal Gloves]|h|r",Type="Armor"},["Wrangler's Leggings"]={SubType="Leather",Level=27,id=15336,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1669,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15336::::::::40:::::::|h[Wrangler's Leggings]|h|r",Type="Armor"},["Minor Magic Resistance Potion"]={SubType="Consumable",Level=22,id=3384,StackCount=5,Rarity=1,MinLevel=12,SellPrice=20,Texture=134719,EquipLoc="",Link="|cffffffff|Hitem:3384::::::::40:::::::|h[Minor Magic Resistance Potion]|h|r",Type="Consumable"},["Venomshroud Leggings"]={SubType="Cloth",Level=52,id=14444,StackCount=1,Rarity=2,MinLevel=47,SellPrice=10955,Texture=134594,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14444::::::::40:::::::|h[Venomshroud Leggings]|h|r"},["Dimensional Ripper - Everlook"]={SubType="Miscellaneous",Level=55,id=18984,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=133865,Type="Armor",Link="|cff1eff00|Hitem:18984::::::::40:::::::|h[Dimensional Ripper - Everlook]|h|r",EquipLoc="INVTYPE_TRINKET"},["Outrunner's Gloves"]={SubType="Mail",Level=20,id=15502,StackCount=1,Rarity=2,MinLevel=15,SellPrice=411,Texture=132951,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15502::::::::40:::::::|h[Outrunner's Gloves]|h|r",Type="Armor"},["Worn Junkbox"]={SubType="Junk",Level=30,id=16883,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,EquipLoc="",Link="|cffffffff|Hitem:16883::::::::40:::::::|h[Worn Junkbox]|h|r",Type="Miscellaneous"},["Embersilk Mantle"]={SubType="Cloth",Level=39,id=14232,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3097,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14232::::::::40:::::::|h[Embersilk Mantle]|h|r"},["Relic Hunter Belt"]={SubType="Cloth",Level=20,id=11936,StackCount=1,Rarity=2,MinLevel=0,SellPrice=284,Texture=132512,Type="Armor",Link="|cff1eff00|Hitem:11936::::::::40:::::::|h[Relic Hunter Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Felhunter Summoning Scroll"]={SubType="Quest",Level=1,id=6988,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Link="|cffffffff|Hitem:6988::::::::40:::::::|h[Felhunter Summoning Scroll]|h|r",EquipLoc="",Type="Quest"},["Double Mail Bracers"]={SubType="Mail",Level=38,id=3810,StackCount=1,Rarity=0,MinLevel=33,SellPrice=1145,Texture=132602,Link="|cff9d9d9d|Hitem:3810::::::::40:::::::|h[Double Mail Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Reins of the Winterspring Frostsaber"]={SubType="Junk",Level=60,id=13086,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132252,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:13086::::::::40:::::::|h[Reins of the Winterspring Frostsaber]|h|r"},["Granite Ring"]={SubType="Miscellaneous",Level=62,id=12005,StackCount=1,Rarity=2,MinLevel=57,SellPrice=8813,Texture=133343,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12005::::::::40:::::::|h[Granite Ring]|h|r"},["Deprecated Stonecloth Bracers"]={SubType="Cloth",Level=26,id=3646,StackCount=1,Rarity=0,MinLevel=21,SellPrice=249,Texture=132606,Type="Armor",Link="|cff9d9d9d|Hitem:3646::::::::40:::::::|h[Deprecated Stonecloth Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Ceremonial Centaur Blanket"]={SubType="Cloth",Level=42,id=6789,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4012,Texture=133764,Type="Armor",Link="|cff1eff00|Hitem:6789::::::::40:::::::|h[Ceremonial Centaur Blanket]|h|r",EquipLoc="INVTYPE_CLOAK"},["Yeh'kinya's Bramble"]={SubType="Quest",Level=1,id=10699,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135474,EquipLoc="",Link="|cffffffff|Hitem:10699::::::::40:::::::|h[Yeh'kinya's Bramble]|h|r",Type="Quest"},["Slayer's Pants"]={SubType="Mail",Level=32,id=14757,StackCount=1,Rarity=2,MinLevel=27,SellPrice=3298,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14757::::::::40:::::::|h[Slayer's Pants]|h|r"},["Hibernal Mantle"]={SubType="Cloth",Level=48,id=8111,StackCount=1,Rarity=2,MinLevel=43,SellPrice=5890,Texture=135049,Link="|cff1eff00|Hitem:8111::::::::40:::::::|h[Hibernal Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Shaw's Report"]={SubType="Quest",Level=1,id=1353,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133461,Link="|cffffffff|Hitem:1353::::::::40:::::::|h[Shaw's Report]|h|r",EquipLoc="",Type="Quest"},["Earthborn Kilt TEST"]={SubType="Leather",Level=60,id=19742,StackCount=1,Rarity=3,MinLevel=55,SellPrice=23721,Texture=134592,Link="|cff0070dd|Hitem:19742::::::::40:::::::|h[Earthborn Kilt TEST]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Virtuous Bracers"]={SubType="Cloth",Level=65,id=22079,StackCount=1,Rarity=3,MinLevel=0,SellPrice=13038,Texture=132520,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:22079::::::::40:::::::|h[Virtuous Bracers]|h|r"},["Soft-soled Linen Boots"]={SubType="Cloth",Level=16,id=4312,StackCount=1,Rarity=2,MinLevel=11,SellPrice=237,Texture=132543,Type="Armor",Link="|cff1eff00|Hitem:4312::::::::40:::::::|h[Soft-soled Linen Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Arcane Bands"]={SubType="Cloth",Level=56,id=8285,StackCount=1,Rarity=2,MinLevel=51,SellPrice=6637,Texture=132608,Link="|cff1eff00|Hitem:8285::::::::40:::::::|h[Arcane Bands]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Carnelian Loop"]={SubType="Miscellaneous",Level=40,id=11972,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4649,Texture=133344,Type="Armor",Link="|cff1eff00|Hitem:11972::::::::40:::::::|h[Carnelian Loop]|h|r",EquipLoc="INVTYPE_FINGER"},["Stamped Trousers"]={SubType="Cloth",Level=18,id=3457,StackCount=1,Rarity=2,MinLevel=0,SellPrice=444,Texture=134594,Type="Armor",Link="|cff1eff00|Hitem:3457::::::::40:::::::|h[Stamped Trousers]|h|r",EquipLoc="INVTYPE_LEGS"},["Stormcloth Vest"]={SubType="Cloth",Level=45,id=10020,StackCount=1,Rarity=2,MinLevel=40,SellPrice=6597,Texture=132649,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10020::::::::40:::::::|h[Stormcloth Vest]|h|r",Type="Armor"},["Enamelled Broadsword"]={SubType="One-Handed Swords",Level=14,id=4765,StackCount=1,Rarity=2,MinLevel=9,SellPrice=575,Texture=135321,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:4765::::::::40:::::::|h[Enamelled Broadsword]|h|r",Type="Weapon"},["Monogrammed Sash"]={SubType="Cloth",Level=40,id=3985,StackCount=1,Rarity=2,MinLevel=35,SellPrice=0,Texture=133694,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:3985::::::::40:::::::|h[Monogrammed Sash]|h|r"},["Fertile Bulb"]={SubType="Consumable",Level=15,id=5013,StackCount=10,Rarity=1,MinLevel=5,SellPrice=38,Texture=134188,EquipLoc="",Link="|cffffffff|Hitem:5013::::::::40:::::::|h[Fertile Bulb]|h|r",Type="Consumable"},["Nocturnal Sash"]={SubType="Leather",Level=38,id=15154,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2372,Texture=132504,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15154::::::::40:::::::|h[Nocturnal Sash]|h|r",Type="Armor"},["Golem Fitted Pauldrons"]={SubType="Mail",Level=56,id=22212,StackCount=1,Rarity=3,MinLevel=51,SellPrice=17311,Texture=135047,Link="|cff0070dd|Hitem:22212::::::::40:::::::|h[Golem Fitted Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Talisman of Binding Shard"]={SubType="Miscellaneous",Level=80,id=17782,StackCount=1,Rarity=5,MinLevel=60,SellPrice=33625,Texture=133279,EquipLoc="INVTYPE_NECK",Link="|cffff8000|Hitem:17782::::::::40:::::::|h[Talisman of Binding Shard]|h|r",Type="Armor"},["Plans: Golden Scale Leggings"]={SubType="Blacksmithing",Level=34,id=3872,StackCount=1,Rarity=2,MinLevel=0,SellPrice=800,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:3872::::::::40:::::::|h[Plans: Golden Scale Leggings]|h|r",EquipLoc=""},["Seawolf Gloves"]={SubType="Leather",Level=40,id=4509,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2794,Texture=132957,Type="Armor",Link="|cff1eff00|Hitem:4509::::::::40:::::::|h[Seawolf Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Forest Chain"]={SubType="Mail",Level=25,id=1273,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1656,Texture=132742,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:1273::::::::40:::::::|h[Forest Chain]|h|r",Type="Armor"},["Reinforced Leather Cap"]={SubType="Leather",Level=50,id=3893,StackCount=1,Rarity=1,MinLevel=45,SellPrice=5504,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:3893::::::::40:::::::|h[Reinforced Leather Cap]|h|r",Type="Armor"},["Grilled King Crawler Legs"]={SubType="Consumable",Level=45,id=9681,StackCount=20,Rarity=1,MinLevel=35,SellPrice=50,Texture=132274,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9681::::::::40:::::::|h[Grilled King Crawler Legs]|h|r"},["Wildhunter Cloak"]={SubType="Cloth",Level=32,id=16658,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1649,Texture=133762,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:16658::::::::40:::::::|h[Wildhunter Cloak]|h|r",Type="Armor"},["Staff of the Friar"]={SubType="Staves",Level=24,id=3415,StackCount=1,Rarity=3,MinLevel=19,SellPrice=3598,Texture=135169,Link="|cff0070dd|Hitem:3415::::::::40:::::::|h[Staff of the Friar]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Crate of Foodstuffs"]={SubType="Quest",Level=0,id=11113,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132764,Type="Quest",Link="|cffffffff|Hitem:11113::::::::40:::::::|h[Crate of Foodstuffs]|h|r",EquipLoc=""},["Gray Dye"]={SubType="Trade Goods",Level=25,id=4340,StackCount=10,Rarity=1,MinLevel=0,SellPrice=87,Texture=132797,Link="|cffffffff|Hitem:4340::::::::40:::::::|h[Gray Dye]|h|r",EquipLoc="",Type="Trade Goods"},["Mystic Shawl"]={SubType="Cloth",Level=15,id=3449,StackCount=1,Rarity=2,MinLevel=0,SellPrice=207,Texture=133765,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:3449::::::::40:::::::|h[Mystic Shawl]|h|r"},["Libram: Exorcism IV"]={SubType="Book",Level=44,id=8929,StackCount=1,Rarity=1,MinLevel=44,SellPrice=6250,Texture=133740,Link="|cffffffff|Hitem:8929::::::::40:::::::|h[Libram: Exorcism IV]|h|r",EquipLoc="",Type="Recipe"},["Force of Will"]={SubType="Miscellaneous",Level=60,id=11810,StackCount=1,Rarity=3,MinLevel=55,SellPrice=10000,Texture=133276,Type="Armor",Link="|cff0070dd|Hitem:11810::::::::40:::::::|h[Force of Will]|h|r",EquipLoc="INVTYPE_TRINKET"},["Flimsy Chain Pants"]={SubType="Mail",Level=2,id=2654,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:2654::::::::40:::::::|h[Flimsy Chain Pants]|h|r"},["Edge of the People's Militia"]={SubType="Two-Handed Swords",Level=17,id=1566,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1132,Texture=135326,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1566::::::::40:::::::|h[Edge of the People's Militia]|h|r"},["Huntsman's Armor"]={SubType="Leather",Level=43,id=9887,StackCount=1,Rarity=2,MinLevel=38,SellPrice=7071,Texture=132722,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9887::::::::40:::::::|h[Huntsman's Armor]|h|r"},["Silksand Gloves"]={SubType="Cloth",Level=40,id=14422,StackCount=1,Rarity=2,MinLevel=35,SellPrice=2262,Texture=132961,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14422::::::::40:::::::|h[Silksand Gloves]|h|r"},["Monkey Ring"]={SubType="Miscellaneous",Level=31,id=6748,StackCount=1,Rarity=2,MinLevel=0,SellPrice=897,Texture=133356,Type="Armor",Link="|cff1eff00|Hitem:6748::::::::40:::::::|h[Monkey Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Bastion of Stormwind"]={SubType="Shields",Level=25,id=9607,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1762,Texture=134952,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9607::::::::40:::::::|h[Bastion of Stormwind]|h|r"},["Astoria Robes"]={SubType="Cloth",Level=59,id=15824,StackCount=1,Rarity=2,MinLevel=0,SellPrice=15061,Texture=132648,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:15824::::::::40:::::::|h[Astoria Robes]|h|r",Type="Armor"},["The Light and How to Swing It"]={SubType="Junk",Level=60,id=18359,StackCount=1,Rarity=3,MinLevel=54,SellPrice=0,Texture=133743,Type="Miscellaneous",Link="|cff0070dd|Hitem:18359::::::::40:::::::|h[The Light and How to Swing It]|h|r",EquipLoc=""},["Tome of Blink"]={SubType="Book",Level=22,id=5647,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1000,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5647::::::::40:::::::|h[Tome of Blink]|h|r"},["Steelarrow Crossbow"]={SubType="Crossbows",Level=27,id=6315,StackCount=1,Rarity=2,MinLevel=22,SellPrice=2546,Texture=135530,Type="Weapon",Link="|cff1eff00|Hitem:6315::::::::40:::::::|h[Steelarrow Crossbow]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Lord Alexander's Battle Axe"]={SubType="Two-Handed Axes",Level=56,id=13003,StackCount=1,Rarity=3,MinLevel=51,SellPrice=49640,Texture=135572,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13003::::::::40:::::::|h[Lord Alexander's Battle Axe]|h|r"},["Plans: Runed Copper Breastplate"]={SubType="Blacksmithing",Level=18,id=2881,StackCount=1,Rarity=2,MinLevel=0,SellPrice=150,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:2881::::::::40:::::::|h[Plans: Runed Copper Breastplate]|h|r"},["Petrified Bark"]={SubType="Quest",Level=71,id=18708,StackCount=1,Rarity=1,MinLevel=60,SellPrice=0,Texture=136064,Type="Quest",Link="|cffffffff|Hitem:18708::::::::40:::::::|h[Petrified Bark]|h|r",EquipLoc=""},["Razorflank's Medallion"]={SubType="Quest",Level=1,id=5792,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5792::::::::40:::::::|h[Razorflank's Medallion]|h|r"},["Chimeric Vest"]={SubType="Leather",Level=58,id=15075,StackCount=1,Rarity=2,MinLevel=53,SellPrice=18449,Texture=132722,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15075::::::::40:::::::|h[Chimeric Vest]|h|r",Type="Armor"},["Ramstein's Lightning Bolts"]={SubType="Miscellaneous",Level=60,id=13515,StackCount=1,Rarity=3,MinLevel=55,SellPrice=9600,Texture=134068,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:13515::::::::40:::::::|h[Ramstein's Lightning Bolts]|h|r"},["Blessed Qiraji Pugio"]={SubType="Daggers",Level=79,id=21244,StackCount=1,Rarity=4,MinLevel=60,SellPrice=165247,Texture=135671,Link="|cffa335ee|Hitem:21244::::::::40:::::::|h[Blessed Qiraji Pugio]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Lookout's Spyglass"]={SubType="Quest",Level=1,id=18960,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134440,Type="Quest",Link="|cffffffff|Hitem:18960::::::::40:::::::|h[Lookout's Spyglass]|h|r",EquipLoc=""},["Monster - Mace1H, Korth'azz"]={SubType="One-Handed Maces",Level=1,id=22724,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,Link="|cff9d9d9d|Hitem:22724::::::::40:::::::|h[Monster - Mace1H, Korth'azz]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["QAEnchant Weapon +22 Intellect"]={SubType="Consumable",Level=1,id=22021,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22021::::::::40:::::::|h[QAEnchant Weapon +22 Intellect]|h|r",EquipLoc="",Type="Consumable"},["Windshear Leggings"]={SubType="Leather",Level=54,id=12041,StackCount=1,Rarity=2,MinLevel=0,SellPrice=14446,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:12041::::::::40:::::::|h[Windshear Leggings]|h|r"},["Heavy Marauder Scimitar"]={SubType="One-Handed Swords",Level=27,id=1493,StackCount=1,Rarity=3,MinLevel=22,SellPrice=3922,Texture=135325,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:1493::::::::40:::::::|h[Heavy Marauder Scimitar]|h|r",Type="Weapon"},["Gem of the Serpent"]={SubType="Quest",Level=1,id=15766,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134073,EquipLoc="",Link="|cffffffff|Hitem:15766::::::::40:::::::|h[Gem of the Serpent]|h|r",Type="Quest"},["Hibernation Crystal"]={SubType="Miscellaneous",Level=71,id=20636,StackCount=1,Rarity=4,MinLevel=60,SellPrice=89103,Texture=134134,Link="|cffa335ee|Hitem:20636::::::::40:::::::|h[Hibernation Crystal]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Warmonger's Cloak"]={SubType="Cloth",Level=45,id=9959,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4803,Texture=133772,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9959::::::::40:::::::|h[Warmonger's Cloak]|h|r"},["Grimoire of Life Drain IV"]={SubType="Book",Level=36,id=9229,StackCount=1,Rarity=1,MinLevel=36,SellPrice=4500,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9229::::::::40:::::::|h[Grimoire of Life Drain IV]|h|r"},["Cutthroat's Mitts"]={SubType="Leather",Level=33,id=15137,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1516,Texture=132956,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15137::::::::40:::::::|h[Cutthroat's Mitts]|h|r",Type="Armor"},["Zombie Skin Leggings"]={SubType="Leather",Level=5,id=3272,StackCount=1,Rarity=1,MinLevel=0,SellPrice=13,Texture=134706,Link="|cffffffff|Hitem:3272::::::::40:::::::|h[Zombie Skin Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Hunting Bracers"]={SubType="Leather",Level=14,id=3207,StackCount=1,Rarity=1,MinLevel=9,SellPrice=87,Texture=132607,Type="Armor",Link="|cffffffff|Hitem:3207::::::::40:::::::|h[Hunting Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Raptor Hide"]={SubType="Trade Goods",Level=30,id=4461,StackCount=10,Rarity=1,MinLevel=0,SellPrice=208,Texture=134303,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4461::::::::40:::::::|h[Raptor Hide]|h|r"},["Bog Boots"]={SubType="Cloth",Level=9,id=7095,StackCount=1,Rarity=1,MinLevel=4,SellPrice=32,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:7095::::::::40:::::::|h[Bog Boots]|h|r"},["Pattern: Belt of the Archmage"]={SubType="Tailoring",Level=62,id=18414,StackCount=1,Rarity=4,MinLevel=0,SellPrice=30000,Texture=134940,Type="Recipe",Link="|cffa335ee|Hitem:18414::::::::40:::::::|h[Pattern: Belt of the Archmage]|h|r",EquipLoc=""},["Deprecated Sturdy Brown Pants"]={SubType="Cloth",Level=1,id=104,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:104::::::::40:::::::|h[Deprecated Sturdy Brown Pants]|h|r"},["The Shadow's Grasp"]={SubType="Cloth",Level=62,id=23128,StackCount=1,Rarity=3,MinLevel=57,SellPrice=10461,Texture=132950,Link="|cff0070dd|Hitem:23128::::::::40:::::::|h[The Shadow's Grasp]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Steel Lockbox"]={SubType="Junk",Level=40,id=4637,StackCount=1,Rarity=2,MinLevel=0,SellPrice=150,Texture=134344,Type="Miscellaneous",Link="|cff1eff00|Hitem:4637::::::::40:::::::|h[Steel Lockbox]|h|r",EquipLoc=""},["Monster - Item, Pitchfork"]={SubType="Polearms",Level=1,id=3367,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135127,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:3367::::::::40:::::::|h[Monster - Item, Pitchfork]|h|r"},["Bloodscalp Channeling Staff"]={SubType="Staves",Level=33,id=1998,StackCount=1,Rarity=2,MinLevel=28,SellPrice=7239,Texture=135155,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1998::::::::40:::::::|h[Bloodscalp Channeling Staff]|h|r"},["Wildheart Boots"]={SubType="Leather",Level=59,id=16715,StackCount=1,Rarity=3,MinLevel=54,SellPrice=17766,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16715::::::::40:::::::|h[Wildheart Boots]|h|r",Type="Armor"},["Legionnaire's Silk Belt"]={SubType="Cloth",Level=60,id=16488,StackCount=1,Rarity=3,MinLevel=55,SellPrice=4956,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16488::::::::40:::::::|h[Legionnaire's Silk Belt]|h|r",Type="Armor"},["Orgrimmar Nougat"]={SubType="Quest",Level=1,id=20493,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133983,Link="|cffffffff|Hitem:20493::::::::40:::::::|h[Orgrimmar Nougat]|h|r",EquipLoc="",Type="Quest"},["Sagebrush Girdle"]={SubType="Leather",Level=47,id=17778,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4506,Texture=132514,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:17778::::::::40:::::::|h[Sagebrush Girdle]|h|r",Type="Armor"},["Heavy Silithid Husk"]={SubType="Junk",Level=1,id=21225,StackCount=10,Rarity=0,MinLevel=0,SellPrice=2500,Texture=134308,Link="|cff9d9d9d|Hitem:21225::::::::40:::::::|h[Heavy Silithid Husk]|h|r",EquipLoc="",Type="Miscellaneous"},["Blade of the Titans"]={SubType="Two-Handed Swords",Level=49,id=13043,StackCount=1,Rarity=3,MinLevel=44,SellPrice=32389,Texture=135277,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13043::::::::40:::::::|h[Blade of the Titans]|h|r"},["Cindercloth Pants"]={SubType="Cloth",Level=56,id=14045,StackCount=1,Rarity=2,MinLevel=51,SellPrice=13480,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14045::::::::40:::::::|h[Cindercloth Pants]|h|r"},["Serpentskin Boots"]={SubType="Leather",Level=52,id=8256,StackCount=1,Rarity=2,MinLevel=47,SellPrice=10261,Texture=132535,Link="|cff1eff00|Hitem:8256::::::::40:::::::|h[Serpentskin Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Strike of the Hydra"]={SubType="Two-Handed Swords",Level=31,id=6909,StackCount=1,Rarity=3,MinLevel=26,SellPrice=7155,Texture=135352,Link="|cff0070dd|Hitem:6909::::::::40:::::::|h[Strike of the Hydra]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Revenant Girdle"]={SubType="Plate",Level=50,id=10130,StackCount=1,Rarity=2,MinLevel=45,SellPrice=4706,Texture=132519,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10130::::::::40:::::::|h[Revenant Girdle]|h|r",Type="Armor"},["Pattern: Brightcloth Robe"]={SubType="Tailoring",Level=54,id=14478,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14478::::::::40:::::::|h[Pattern: Brightcloth Robe]|h|r"},["Pattern: Glacial Gloves"]={SubType="Tailoring",Level=80,id=22684,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30000,Texture=134939,Link="|cffffffff|Hitem:22684::::::::40:::::::|h[Pattern: Glacial Gloves]|h|r",EquipLoc="",Type="Recipe"},["Recruit's Pants"]={SubType="Cloth",Level=1,id=6121,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Link="|cff9d9d9d|Hitem:6121::::::::40:::::::|h[Recruit's Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Desecrated Leggings"]={SubType="Junk",Level=60,id=22366,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133810,Link="|cffa335ee|Hitem:22366::::::::40:::::::|h[Desecrated Leggings]|h|r",EquipLoc="",Type="Miscellaneous"},["Green Silk Pack"]={SubType="Bag",Level=25,id=5764,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=133631,Link="|cffffffff|Hitem:5764::::::::40:::::::|h[Green Silk Pack]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Scarab Brooch"]={SubType="Miscellaneous",Level=78,id=21625,StackCount=1,Rarity=4,MinLevel=60,SellPrice=83030,Texture=133575,Link="|cffa335ee|Hitem:21625::::::::40:::::::|h[Scarab Brooch]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Whipwood Recurve Bow"]={SubType="Bows",Level=34,id=3037,StackCount=1,Rarity=2,MinLevel=29,SellPrice=4814,Texture=135500,Type="Weapon",Link="|cff1eff00|Hitem:3037::::::::40:::::::|h[Whipwood Recurve Bow]|h|r",EquipLoc="INVTYPE_RANGED"},["Sparkleshell Shield"]={SubType="Shields",Level=41,id=15584,StackCount=1,Rarity=2,MinLevel=36,SellPrice=7594,Texture=134951,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15584::::::::40:::::::|h[Sparkleshell Shield]|h|r",Type="Armor"},["Mark of Kern"]={SubType="Miscellaneous",Level=36,id=2262,StackCount=1,Rarity=3,MinLevel=31,SellPrice=8746,Texture=133357,Type="Armor",Link="|cff0070dd|Hitem:2262::::::::40:::::::|h[Mark of Kern]|h|r",EquipLoc="INVTYPE_FINGER"},["Elixir of Lion's Strength"]={SubType="Consumable",Level=5,id=2454,StackCount=5,Rarity=1,MinLevel=1,SellPrice=20,Texture=134836,Type="Consumable",Link="|cffffffff|Hitem:2454::::::::40:::::::|h[Elixir of Lion's Strength]|h|r",EquipLoc=""},["Field Plate Helmet"]={SubType="Plate",Level=42,id=9290,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3940,Texture=133124,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9290::::::::40:::::::|h[Field Plate Helmet]|h|r"},["Geomancer's Bracers"]={SubType="Cloth",Level=35,id=14221,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1510,Texture=132601,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14221::::::::40:::::::|h[Geomancer's Bracers]|h|r"},["Cadet Bracers"]={SubType="Mail",Level=12,id=9760,StackCount=1,Rarity=1,MinLevel=7,SellPrice=73,Texture=132611,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:9760::::::::40:::::::|h[Cadet Bracers]|h|r"},["Resilient Bands"]={SubType="Cloth",Level=29,id=14402,StackCount=1,Rarity=2,MinLevel=24,SellPrice=837,Texture=132600,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14402::::::::40:::::::|h[Resilient Bands]|h|r"},["Rockshard Pellets"]={SubType="Bullet",Level=52,id=11630,StackCount=200,Rarity=3,MinLevel=47,SellPrice=5,Texture=132384,Type="Projectile",Link="|cff0070dd|Hitem:11630::::::::40:::::::|h[Rockshard Pellets]|h|r",EquipLoc="INVTYPE_AMMO"},["Prayer to Elune"]={SubType="Quest",Level=1,id=10458,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:10458::::::::40:::::::|h[Prayer to Elune]|h|r",Type="Quest"},["Stealthblade"]={SubType="Daggers",Level=49,id=10625,StackCount=1,Rarity=3,MinLevel=44,SellPrice=27366,Texture=135351,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:10625::::::::40:::::::|h[Stealthblade]|h|r",Type="Weapon"},["Recipe: Brilliant Smallfish"]={SubType="Cooking",Level=5,id=6325,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:6325::::::::40:::::::|h[Recipe: Brilliant Smallfish]|h|r"},["Soulstone"]={SubType="Consumable",Level=40,id=16893,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134336,EquipLoc="",Link="|cffffffff|Hitem:16893::::::::40:::::::|h[Soulstone]|h|r",Type="Consumable"},["An Unsent Letter"]={SubType="Quest",Level=16,id=2874,StackCount=1,Rarity=1,MinLevel=16,SellPrice=0,Texture=133471,Type="Quest",Link="|cffffffff|Hitem:2874::::::::40:::::::|h[An Unsent Letter]|h|r",EquipLoc=""},["Sayge's Fortune #17"]={SubType="Junk",Level=1,id=19253,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19253::::::::40:::::::|h[Sayge's Fortune #17]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Staff, Red Feathered"]={SubType="Staves",Level=1,id=11542,StackCount=1,Rarity=0,MinLevel=0,SellPrice=2,Texture=135225,Type="Weapon",Link="|cff9d9d9d|Hitem:11542::::::::40:::::::|h[Monster - Staff, Red Feathered]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Scouting Gloves"]={SubType="Leather",Level=23,id=6586,StackCount=1,Rarity=2,MinLevel=18,SellPrice=505,Texture=132961,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:6586::::::::40:::::::|h[Scouting Gloves]|h|r"},["Regal Armor"]={SubType="Cloth",Level=45,id=7332,StackCount=1,Rarity=2,MinLevel=40,SellPrice=6692,Texture=135007,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7332::::::::40:::::::|h[Regal Armor]|h|r"},["Dragonmaw Chain Boots"]={SubType="Mail",Level=27,id=1955,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1573,Texture=132535,Type="Armor",Link="|cff1eff00|Hitem:1955::::::::40:::::::|h[Dragonmaw Chain Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Powerful Smelling Salts"]={SubType="Consumable",Level=50,id=8546,StackCount=1,Rarity=1,MinLevel=0,SellPrice=50,Texture=133588,Link="|cffffffff|Hitem:8546::::::::40:::::::|h[Powerful Smelling Salts]|h|r",EquipLoc="",Type="Consumable"},["Test Relic"]={SubType="Librams",Level=20,id=22316,StackCount=1,Rarity=3,MinLevel=10,SellPrice=0,Texture=135464,Link="|cff0070dd|Hitem:22316::::::::40:::::::|h[Test Relic]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Cracked Leather Pants"]={SubType="Leather",Level=5,id=2126,StackCount=1,Rarity=1,MinLevel=1,SellPrice=11,Texture=134590,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:2126::::::::40:::::::|h[Cracked Leather Pants]|h|r",Type="Armor"},["Amber Hoop"]={SubType="Miscellaneous",Level=26,id=11968,StackCount=1,Rarity=2,MinLevel=21,SellPrice=997,Texture=133356,Type="Armor",Link="|cff1eff00|Hitem:11968::::::::40:::::::|h[Amber Hoop]|h|r",EquipLoc="INVTYPE_FINGER"},["Warleader's Greaves"]={SubType="Plate",Level=60,id=14865,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12018,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14865::::::::40:::::::|h[Warleader's Greaves]|h|r"},["Iron Rivet"]={SubType="Quest",Level=1,id=1013,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134068,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1013::::::::40:::::::|h[Iron Rivet]|h|r"},["Webwing Cloak"]={SubType="Cloth",Level=25,id=5751,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1028,Texture=133762,Link="|cff1eff00|Hitem:5751::::::::40:::::::|h[Webwing Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Nightscape Headband"]={SubType="Leather",Level=41,id=8176,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4495,Texture=132513,Link="|cff1eff00|Hitem:8176::::::::40:::::::|h[Nightscape Headband]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Zhevra Hooves"]={SubType="Quest",Level=1,id=5086,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132368,Link="|cffffffff|Hitem:5086::::::::40:::::::|h[Zhevra Hooves]|h|r",EquipLoc="",Type="Quest"},["Flatland Prowler Claw"]={SubType="Quest",Level=1,id=5203,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134297,EquipLoc="",Link="|cffffffff|Hitem:5203::::::::40:::::::|h[Flatland Prowler Claw]|h|r",Type="Quest"},["Deep Strike Bow"]={SubType="Bows",Level=60,id=20663,StackCount=1,Rarity=3,MinLevel=55,SellPrice=37336,Texture=135498,Link="|cff0070dd|Hitem:20663::::::::40:::::::|h[Deep Strike Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Furlbrow's Deed"]={SubType="Quest",Level=1,id=1971,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134944,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1971::::::::40:::::::|h[Furlbrow's Deed]|h|r"},["Major Healthstone"]={SubType="Consumable",Level=58,id=9421,StackCount=1,Rarity=1,MinLevel=48,SellPrice=0,Texture=135230,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9421::::::::40:::::::|h[Major Healthstone]|h|r"},["Fire Sapta"]={SubType="Consumable",Level=1,id=6636,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134732,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6636::::::::40:::::::|h[Fire Sapta]|h|r"},["Skull Key"]={SubType="Consumable",Level=1,id=7388,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133719,Link="|cffffffff|Hitem:7388::::::::40:::::::|h[Skull Key]|h|r",EquipLoc="",Type="Consumable"},["Deprecated Malachite"]={SubType="Trade Goods",Level=10,id=808,StackCount=5,Rarity=1,MinLevel=0,SellPrice=75,Texture=134106,EquipLoc="",Link="|cffffffff|Hitem:808::::::::40:::::::|h[Deprecated Malachite]|h|r",Type="Trade Goods"},["Simple Letter"]={SubType="Quest",Level=1,id=9542,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Link="|cffffffff|Hitem:9542::::::::40:::::::|h[Simple Letter]|h|r",EquipLoc="",Type="Quest"},["Stretched Leather Trousers"]={SubType="Leather",Level=15,id=2818,StackCount=1,Rarity=2,MinLevel=0,SellPrice=363,Texture=134582,Type="Armor",Link="|cff1eff00|Hitem:2818::::::::40:::::::|h[Stretched Leather Trousers]|h|r",EquipLoc="INVTYPE_LEGS"},["Pattern: Brightcloth Gloves"]={SubType="Tailoring",Level=54,id=14479,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14479::::::::40:::::::|h[Pattern: Brightcloth Gloves]|h|r"},["Hippogryph Egg"]={SubType="Quest",Level=1,id=8564,StackCount=1,Rarity=1,MinLevel=0,SellPrice=200,Texture=132833,EquipLoc="",Link="|cffffffff|Hitem:8564::::::::40:::::::|h[Hippogryph Egg]|h|r",Type="Quest"},["Black Qiraji Resonating Crystal"]={SubType="Junk",Level=60,id=21176,StackCount=1,Rarity=5,MinLevel=60,SellPrice=0,Texture=134399,Link="|cffff8000|Hitem:21176::::::::40:::::::|h[Black Qiraji Resonating Crystal]|h|r",EquipLoc="",Type="Miscellaneous"},["Breastplate of Undead Slaying"]={SubType="Plate",Level=63,id=23087,StackCount=1,Rarity=3,MinLevel=58,SellPrice=22892,Texture=132745,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:23087::::::::40:::::::|h[Breastplate of Undead Slaying]|h|r"},["Bolvar's Decree"]={SubType="Quest",Level=1,id=11368,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,Type="Quest",Link="|cffffffff|Hitem:11368::::::::40:::::::|h[Bolvar's Decree]|h|r",EquipLoc=""},["Blue Dragonscale Leggings"]={SubType="Mail",Level=60,id=20295,StackCount=1,Rarity=3,MinLevel=55,SellPrice=31083,Texture=134667,Link="|cff0070dd|Hitem:20295::::::::40:::::::|h[Blue Dragonscale Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Solenor's Head"]={SubType="Quest",Level=1,id=18954,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136221,Type="Quest",Link="|cffffffff|Hitem:18954::::::::40:::::::|h[Solenor's Head]|h|r",EquipLoc=""},["Tablet of Rockbiter Weapon II"]={SubType="Book",Level=16,id=9053,StackCount=1,Rarity=1,MinLevel=16,SellPrice=325,Texture=134459,Link="|cffffffff|Hitem:9053::::::::40:::::::|h[Tablet of Rockbiter Weapon II]|h|r",EquipLoc="",Type="Recipe"},["Eternal Quintessence"]={SubType="Quest",Level=1,id=22754,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134863,Link="|cffffffff|Hitem:22754::::::::40:::::::|h[Eternal Quintessence]|h|r",EquipLoc="",Type="Quest"},["Hawkeye's Epaulets"]={SubType="Leather",Level=38,id=14596,StackCount=1,Rarity=2,MinLevel=33,SellPrice=3388,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14596::::::::40:::::::|h[Hawkeye's Epaulets]|h|r"},["Shimmering Frond"]={SubType="Quest",Level=1,id=5190,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134184,EquipLoc="",Link="|cffffffff|Hitem:5190::::::::40:::::::|h[Shimmering Frond]|h|r",Type="Quest"},["Steadfast Cinch"]={SubType="Leather",Level=22,id=5609,StackCount=1,Rarity=2,MinLevel=0,SellPrice=447,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:5609::::::::40:::::::|h[Steadfast Cinch]|h|r"},["Doomcaller's Trousers"]={SubType="Cloth",Level=81,id=21336,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72615,Texture=134596,Link="|cffa335ee|Hitem:21336::::::::40:::::::|h[Doomcaller's Trousers]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["High Warlord's War Staff"]={SubType="Staves",Level=78,id=18874,StackCount=1,Rarity=4,MinLevel=60,SellPrice=59681,Texture=133729,Type="Weapon",Link="|cffa335ee|Hitem:18874::::::::40:::::::|h[High Warlord's War Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Tablet of Earth Shock III"]={SubType="Book",Level=14,id=9051,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=134459,Link="|cffffffff|Hitem:9051::::::::40:::::::|h[Tablet of Earth Shock III]|h|r",EquipLoc="",Type="Recipe"},["Tooth of Gnarr"]={SubType="Miscellaneous",Level=63,id=13141,StackCount=1,Rarity=3,MinLevel=58,SellPrice=12093,Texture=133296,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:13141::::::::40:::::::|h[Tooth of Gnarr]|h|r"},["Dragonskin Cowl"]={SubType="Cloth",Level=60,id=22225,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14937,Texture=133129,Link="|cff0070dd|Hitem:22225::::::::40:::::::|h[Dragonskin Cowl]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Test Frost Resist Mail LockBox"]={SubType="Junk",Level=1,id=16175,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16175::::::::40:::::::|h[Test Frost Resist Mail LockBox]|h|r",Type="Miscellaneous"},["Hive'Regal Dossier"]={SubType="Junk",Level=1,id=22649,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133460,Link="|cffffffff|Hitem:22649::::::::40:::::::|h[Hive'Regal Dossier]|h|r",EquipLoc="",Type="Miscellaneous"},["Mana Jade"]={SubType="Consumable",Level=38,id=5513,StackCount=1,Rarity=1,MinLevel=38,SellPrice=0,Texture=134105,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5513::::::::40:::::::|h[Mana Jade]|h|r"},["Accurate Slugs"]={SubType="Bullet",Level=45,id=11284,StackCount=200,Rarity=1,MinLevel=40,SellPrice=1,Texture=132383,Type="Projectile",Link="|cffffffff|Hitem:11284::::::::40:::::::|h[Accurate Slugs]|h|r",EquipLoc="INVTYPE_AMMO"},["Master's Bracers"]={SubType="Cloth",Level=62,id=10248,StackCount=1,Rarity=2,MinLevel=57,SellPrice=9371,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10248::::::::40:::::::|h[Master's Bracers]|h|r",Type="Armor"},["Runecloth Bag"]={SubType="Bag",Level=52,id=14046,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=133652,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:14046::::::::40:::::::|h[Runecloth Bag]|h|r"},["Warstrike Belt"]={SubType="Mail",Level=59,id=14808,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11581,Texture=132505,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14808::::::::40:::::::|h[Warstrike Belt]|h|r"},["Formula: Enchant Bracer - Deflection"]={SubType="Enchanting",Level=47,id=11223,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1450,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11223::::::::40:::::::|h[Formula: Enchant Bracer - Deflection]|h|r",EquipLoc=""},["63 Green Frost Staff"]={SubType="Staves",Level=63,id=20362,StackCount=1,Rarity=2,MinLevel=58,SellPrice=59573,Texture=135169,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:20362::::::::40:::::::|h[63 Green Frost Staff]|h|r"},["Test AQ Resource - Iron"]={SubType="Junk",Level=1,id=21629,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21629::::::::40:::::::|h[Test AQ Resource - Iron]|h|r"},["Bonespike Shoulder"]={SubType="Mail",Level=63,id=12588,StackCount=1,Rarity=3,MinLevel=58,SellPrice=25446,Texture=135042,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:12588::::::::40:::::::|h[Bonespike Shoulder]|h|r"},["Cadaverous Armor"]={SubType="Leather",Level=61,id=14637,StackCount=1,Rarity=3,MinLevel=56,SellPrice=25048,Texture=132718,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:14637::::::::40:::::::|h[Cadaverous Armor]|h|r"},["Tome of Mana Shield II"]={SubType="Book",Level=28,id=8818,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133739,Link="|cffffffff|Hitem:8818::::::::40:::::::|h[Tome of Mana Shield II]|h|r",EquipLoc="",Type="Recipe"},["Primal Batskin Gloves"]={SubType="Leather",Level=65,id=19686,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15880,Texture=132965,Link="|cff0070dd|Hitem:19686::::::::40:::::::|h[Primal Batskin Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Tome of Cone of Cold"]={SubType="Book",Level=26,id=8815,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8815::::::::40:::::::|h[Tome of Cone of Cold]|h|r"},["Warbringer's Chestguard"]={SubType="Plate",Level=46,id=14939,StackCount=1,Rarity=2,MinLevel=41,SellPrice=6793,Texture=132725,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14939::::::::40:::::::|h[Warbringer's Chestguard]|h|r"},["Goblin Mortar"]={SubType="Devices",Level=41,id=10577,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2000,Texture=134535,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:10577::::::::40:::::::|h[Goblin Mortar]|h|r",Type="Trade Goods"},["Shiny Polished Stone"]={SubType="Junk",Level=1,id=4554,StackCount=5,Rarity=0,MinLevel=0,SellPrice=708,Texture=135240,EquipLoc="",Link="|cff9d9d9d|Hitem:4554::::::::40:::::::|h[Shiny Polished Stone]|h|r",Type="Miscellaneous"},["Green Sack of Gems"]={SubType="Junk",Level=1,id=17963,StackCount=1,Rarity=2,MinLevel=0,SellPrice=213,Texture=133642,EquipLoc="",Link="|cff1eff00|Hitem:17963::::::::40:::::::|h[Green Sack of Gems]|h|r",Type="Miscellaneous"},["Fighter Broadsword"]={SubType="One-Handed Swords",Level=27,id=15212,StackCount=1,Rarity=2,MinLevel=22,SellPrice=3450,Texture=135356,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:15212::::::::40:::::::|h[Fighter Broadsword]|h|r",Type="Weapon"},["Familiar Horn"]={SubType="Junk",Level=1,id=3725,StackCount=5,Rarity=0,MinLevel=0,SellPrice=166,Texture=133722,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:3725::::::::40:::::::|h[Familiar Horn]|h|r"},["Praetorian Boots"]={SubType="Leather",Level=55,id=15181,StackCount=1,Rarity=2,MinLevel=50,SellPrice=11312,Texture=132588,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15181::::::::40:::::::|h[Praetorian Boots]|h|r",Type="Armor"},["Black Dragonscale"]={SubType="Junk",Level=55,id=15416,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134309,EquipLoc="",Link="|cffffffff|Hitem:15416::::::::40:::::::|h[Black Dragonscale]|h|r",Type="Miscellaneous"},["Monster - Shield, B01 WoodSteelCap"]={SubType="Shields",Level=1,id=13922,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:13922::::::::40:::::::|h[Monster - Shield, B01 WoodSteelCap]|h|r"},["Plans: Ironforge Gauntlets"]={SubType="Blacksmithing",Level=28,id=6736,StackCount=1,Rarity=2,MinLevel=0,SellPrice=450,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:6736::::::::40:::::::|h[Plans: Ironforge Gauntlets]|h|r"},["Black Tuxedo Pants"]={SubType="Miscellaneous",Level=23,id=6835,StackCount=1,Rarity=1,MinLevel=0,SellPrice=504,Texture=134581,Link="|cffffffff|Hitem:6835::::::::40:::::::|h[Black Tuxedo Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Ship Schedule"]={SubType="Quest",Level=40,id=9250,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:9250::::::::40:::::::|h[Ship Schedule]|h|r",EquipLoc="",Type="Quest"},["Level 65 Test Gear Cloth - Warlock 2"]={SubType="Junk",Level=1,id=17853,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17853::::::::40:::::::|h[Level 65 Test Gear Cloth - Warlock 2]|h|r",Type="Miscellaneous"},["Sealed Description of Thredd's Visitor"]={SubType="Quest",Level=1,id=8687,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:8687::::::::40:::::::|h[Sealed Description of Thredd's Visitor]|h|r",EquipLoc="",Type="Quest"},["63 Green Frost Gloves"]={SubType="Cloth",Level=63,id=20355,StackCount=1,Rarity=2,MinLevel=58,SellPrice=9285,Texture=132951,Link="|cff1eff00|Hitem:20355::::::::40:::::::|h[63 Green Frost Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Peerless Leggings"]={SubType="Leather",Level=59,id=15431,StackCount=1,Rarity=2,MinLevel=54,SellPrice=19673,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15431::::::::40:::::::|h[Peerless Leggings]|h|r",Type="Armor"},["Cadet Leggings"]={SubType="Mail",Level=14,id=9763,StackCount=1,Rarity=2,MinLevel=9,SellPrice=336,Texture=134590,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9763::::::::40:::::::|h[Cadet Leggings]|h|r"},["9 Pound Lobster"]={SubType="Junk",Level=55,id=13908,StackCount=1,Rarity=1,MinLevel=0,SellPrice=55,Texture=133900,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13908::::::::40:::::::|h[9 Pound Lobster]|h|r"},["7 Pound Lobster"]={SubType="Junk",Level=55,id=13907,StackCount=1,Rarity=1,MinLevel=0,SellPrice=50,Texture=133900,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13907::::::::40:::::::|h[7 Pound Lobster]|h|r"},["Scum Covered Bag"]={SubType="Junk",Level=40,id=20767,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133642,Link="|cffffffff|Hitem:20767::::::::40:::::::|h[Scum Covered Bag]|h|r",EquipLoc="",Type="Miscellaneous"},["Deprecated Talisman of Cleansing"]={SubType="Miscellaneous",Level=40,id=2948,StackCount=1,Rarity=0,MinLevel=0,SellPrice=312,Texture=133439,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff9d9d9d|Hitem:2948::::::::40:::::::|h[Deprecated Talisman of Cleansing]|h|r"},["Tablet of Agitating Totem IV"]={SubType="Book",Level=38,id=4181,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4250,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4181::::::::40:::::::|h[Tablet of Agitating Totem IV]|h|r"},["Worn Cloak"]={SubType="Cloth",Level=15,id=1733,StackCount=1,Rarity=0,MinLevel=10,SellPrice=88,Texture=133760,EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:1733::::::::40:::::::|h[Worn Cloak]|h|r",Type="Armor"},["Blue-feathered Necklace"]={SubType="Quest",Level=52,id=12558,StackCount=1,Rarity=1,MinLevel=52,SellPrice=0,Texture=133298,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12558::::::::40:::::::|h[Blue-feathered Necklace]|h|r"},["90 Green Frost Staff"]={SubType="Staves",Level=90,id=20349,StackCount=1,Rarity=2,MinLevel=60,SellPrice=234151,Texture=135169,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:20349::::::::40:::::::|h[90 Green Frost Staff]|h|r"},["Fast Test 2H Axe"]={SubType="Two-Handed Axes",Level=45,id=5552,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7792,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5552::::::::40:::::::|h[Fast Test 2H Axe]|h|r"},["Will of Arlokk"]={SubType="Staves",Level=65,id=19909,StackCount=1,Rarity=4,MinLevel=60,SellPrice=104707,Texture=135172,Link="|cffa335ee|Hitem:19909::::::::40:::::::|h[Will of Arlokk]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Arachnidian Footpads"]={SubType="Cloth",Level=51,id=14290,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7725,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14290::::::::40:::::::|h[Arachnidian Footpads]|h|r"},["Empty Cleansing Bowl"]={SubType="Quest",Level=1,id=12346,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133748,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12346::::::::40:::::::|h[Empty Cleansing Bowl]|h|r"},["Anathema"]={SubType="Staves",Level=75,id=18609,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135149,Type="Weapon",Link="|cffa335ee|Hitem:18609::::::::40:::::::|h[Anathema]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Redridge Goulash"]={SubType="Consumable",Level=20,id=1082,StackCount=20,Rarity=1,MinLevel=10,SellPrice=150,Texture=133748,EquipLoc="",Link="|cffffffff|Hitem:1082::::::::40:::::::|h[Redridge Goulash]|h|r",Type="Consumable"},["Glyphic Memorandum"]={SubType="Quest",Level=1,id=9573,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134332,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9573::::::::40:::::::|h[Glyphic Memorandum]|h|r"},["Recipe: Major Healing Potion"]={SubType="Alchemy",Level=55,id=13480,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3750,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13480::::::::40:::::::|h[Recipe: Major Healing Potion]|h|r"},["Encrypted Parchment"]={SubType="Quest",Level=1,id=9560,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9560::::::::40:::::::|h[Encrypted Parchment]|h|r"},["Trueaim Gauntlets"]={SubType="Mail",Level=59,id=13255,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14366,Texture=132964,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13255::::::::40:::::::|h[Trueaim Gauntlets]|h|r"},["Brutal War Axe"]={SubType="Two-Handed Axes",Level=30,id=3210,StackCount=1,Rarity=2,MinLevel=25,SellPrice=5626,Texture=132408,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3210::::::::40:::::::|h[Brutal War Axe]|h|r"},["Mark of C'Thun"]={SubType="Miscellaneous",Level=88,id=22732,StackCount=1,Rarity=4,MinLevel=60,SellPrice=86443,Texture=133342,Link="|cffa335ee|Hitem:22732::::::::40:::::::|h[Mark of C'Thun]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Black Water Hammer"]={SubType="One-Handed Maces",Level=40,id=4511,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11256,Texture=133044,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:4511::::::::40:::::::|h[Black Water Hammer]|h|r"},["Box of Fresh Pies"]={SubType="Consumable",Level=1,id=22292,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Link="|cffffffff|Hitem:22292::::::::40:::::::|h[Box of Fresh Pies]|h|r",EquipLoc="",Type="Consumable"},["Deprecated Small Brown Pouch"]={SubType="Bag",Level=5,id=184,StackCount=1,Rarity=1,MinLevel=0,SellPrice=125,Texture=133622,Link="|cffffffff|Hitem:184::::::::40:::::::|h[Deprecated Small Brown Pouch]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Knight-Captain's Plate Chestguard"]={SubType="Plate",Level=63,id=16430,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11564,Texture=132751,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16430::::::::40:::::::|h[Knight-Captain's Plate Chestguard]|h|r",Type="Armor"},["Outrider's Leather Pants"]={SubType="Leather",Level=65,id=22740,StackCount=1,Rarity=4,MinLevel=60,SellPrice=43935,Texture=134637,Link="|cffa335ee|Hitem:22740::::::::40:::::::|h[Outrider's Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Book of Rejuvenation XI"]={SubType="Book",Level=60,id=21296,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133743,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:21296::::::::40:::::::|h[Book of Rejuvenation XI]|h|r"},["Orwin's Shovel"]={SubType="Quest",Level=1,id=9466,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134435,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9466::::::::40:::::::|h[Orwin's Shovel]|h|r"},["Grimoire of Create Soulstone"]={SubType="Book",Level=18,id=1229,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=133738,Link="|cffffffff|Hitem:1229::::::::40:::::::|h[Grimoire of Create Soulstone]|h|r",EquipLoc="",Type="Recipe"},["Monster - Shield, Orange Skull"]={SubType="Shields",Level=1,id=11589,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Type="Armor",Link="|cff9d9d9d|Hitem:11589::::::::40:::::::|h[Monster - Shield, Orange Skull]|h|r",EquipLoc="INVTYPE_SHIELD"},["Gnoll Skull Basher"]={SubType="One-Handed Maces",Level=19,id=1440,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1230,Texture=133048,Type="Weapon",Link="|cff1eff00|Hitem:1440::::::::40:::::::|h[Gnoll Skull Basher]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Crochet Gloves"]={SubType="Cloth",Level=48,id=3940,StackCount=1,Rarity=0,MinLevel=43,SellPrice=1630,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:3940::::::::40:::::::|h[Crochet Gloves]|h|r"},["Stable Ectoplasm"]={SubType="Quest",Level=1,id=21935,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134809,Link="|cffffffff|Hitem:21935::::::::40:::::::|h[Stable Ectoplasm]|h|r",EquipLoc="",Type="Quest"},["Research Equipment"]={SubType="Quest",Level=0,id=11112,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133000,Type="Quest",Link="|cffffffff|Hitem:11112::::::::40:::::::|h[Research Equipment]|h|r",EquipLoc=""},["Pattern: Frostweave Gloves"]={SubType="Tailoring",Level=53,id=14474,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14474::::::::40:::::::|h[Pattern: Frostweave Gloves]|h|r"},["Rusted Chain Gloves"]={SubType="Mail",Level=5,id=2391,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2391::::::::40:::::::|h[Rusted Chain Gloves]|h|r"},["Stonecloth Vest"]={SubType="Cloth",Level=39,id=14407,StackCount=1,Rarity=2,MinLevel=34,SellPrice=4266,Texture=135012,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14407::::::::40:::::::|h[Stonecloth Vest]|h|r"},["Lord Valthalak's Amulet"]={SubType="Quest",Level=1,id=22048,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133314,Link="|cffffffff|Hitem:22048::::::::40:::::::|h[Lord Valthalak's Amulet]|h|r",EquipLoc="",Type="Quest"},["Fizsprocket's Clipboard"]={SubType="Quest",Level=1,id=4819,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134944,EquipLoc="",Link="|cffffffff|Hitem:4819::::::::40:::::::|h[Fizsprocket's Clipboard]|h|r",Type="Quest"},["Barbaric Cloth Robe"]={SubType="Cloth",Level=18,id=6531,StackCount=1,Rarity=2,MinLevel=13,SellPrice=417,Texture=132655,Type="Armor",Link="|cff1eff00|Hitem:6531::::::::40:::::::|h[Barbaric Cloth Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Standard Issue Shield"]={SubType="Shields",Level=10,id=4263,StackCount=1,Rarity=1,MinLevel=5,SellPrice=94,Texture=134952,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:4263::::::::40:::::::|h[Standard Issue Shield]|h|r",Type="Armor"},["Pristine Raptor Skull"]={SubType="Junk",Level=1,id=4588,StackCount=5,Rarity=0,MinLevel=0,SellPrice=900,Texture=133732,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:4588::::::::40:::::::|h[Pristine Raptor Skull]|h|r"},["Gemburst Circlet"]={SubType="Cloth",Level=54,id=10751,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10634,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:10751::::::::40:::::::|h[Gemburst Circlet]|h|r",Type="Armor"},["Violet Scale Armor"]={SubType="Mail",Level=22,id=6502,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1140,Texture=132626,Type="Armor",Link="|cff1eff00|Hitem:6502::::::::40:::::::|h[Violet Scale Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["The Hexxer's Head"]={SubType="Quest",Level=1,id=19882,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134177,Link="|cffffffff|Hitem:19882::::::::40:::::::|h[The Hexxer's Head]|h|r",EquipLoc="",Type="Quest"},["Defias Mage Ring"]={SubType="Miscellaneous",Level=26,id=1077,StackCount=1,Rarity=2,MinLevel=21,SellPrice=25,Texture=133356,Type="Armor",Link="|cff1eff00|Hitem:1077::::::::40:::::::|h[Defias Mage Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Top Half of Advanced Armorsmithing: Volume III"]={SubType="Quest",Level=60,id=18784,StackCount=1,Rarity=3,MinLevel=50,SellPrice=0,Texture=134330,Type="Quest",Link="|cff0070dd|Hitem:18784::::::::40:::::::|h[Top Half of Advanced Armorsmithing: Volume III]|h|r",EquipLoc=""},["OLDMonster - Shoulder, Plate Silver"]={SubType="Plate",Level=1,id=3246,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=135033,Link="|cff9d9d9d|Hitem:3246::::::::40:::::::|h[OLDMonster - Shoulder, Plate Silver]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Head of Ramstein the Gorger"]={SubType="Quest",Level=1,id=15880,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134161,EquipLoc="",Link="|cffffffff|Hitem:15880::::::::40:::::::|h[Head of Ramstein the Gorger]|h|r",Type="Quest"},["Monster - Staff, Crooked"]={SubType="Staves",Level=1,id=1908,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1908::::::::40:::::::|h[Monster - Staff, Crooked]|h|r"},["Test AQ Resource - Stranglekelp"]={SubType="Junk",Level=1,id=21644,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21644::::::::40:::::::|h[Test AQ Resource - Stranglekelp]|h|r",EquipLoc="",Type="Miscellaneous"},["PVP Plate Cloak Alliance"]={SubType="Miscellaneous",Level=60,id=16034,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7116,Texture=133773,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:16034::::::::40:::::::|h[PVP Plate Cloak Alliance]|h|r",Type="Armor"},["Heavy Bronze Mace"]={SubType="One-Handed Maces",Level=25,id=3491,StackCount=1,Rarity=2,MinLevel=20,SellPrice=2741,Texture=133483,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:3491::::::::40:::::::|h[Heavy Bronze Mace]|h|r"},["Pattern: Gaea's Embrace"]={SubType="Tailoring",Level=70,id=22683,StackCount=1,Rarity=1,MinLevel=0,SellPrice=22500,Texture=134939,Link="|cffffffff|Hitem:22683::::::::40:::::::|h[Pattern: Gaea's Embrace]|h|r",EquipLoc="",Type="Recipe"},["Warlord's Silk Cowl"]={SubType="Cloth",Level=74,id=16533,StackCount=1,Rarity=4,MinLevel=60,SellPrice=20504,Texture=133076,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16533::::::::40:::::::|h[Warlord's Silk Cowl]|h|r",Type="Armor"},["Blade of the Wretched"]={SubType="One-Handed Swords",Level=54,id=10803,StackCount=1,Rarity=2,MinLevel=49,SellPrice=29441,Texture=135348,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:10803::::::::40:::::::|h[Blade of the Wretched]|h|r",Type="Weapon"},["Helm of Might"]={SubType="Plate",Level=66,id=16866,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27170,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16866::::::::40:::::::|h[Helm of Might]|h|r",Type="Armor"},["Monster - Item, Tankard Dirty Offhand"]={SubType="Miscellaneous",Level=1,id=13854,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=132791,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13854::::::::40:::::::|h[Monster - Item, Tankard Dirty Offhand]|h|r"},["Ring of Eternal Justice"]={SubType="Miscellaneous",Level=65,id=21396,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133425,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:21396::::::::40:::::::|h[Ring of Eternal Justice]|h|r"},["Felstone Field Cauldron Key"]={SubType="Quest",Level=1,id=13194,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134245,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13194::::::::40:::::::|h[Felstone Field Cauldron Key]|h|r"},["Volcanic Ash"]={SubType="Quest",Level=1,id=22338,StackCount=30,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,Link="|cffffffff|Hitem:22338::::::::40:::::::|h[Volcanic Ash]|h|r",EquipLoc="",Type="Quest"},["Bingles' Wrench"]={SubType="Quest",Level=1,id=7343,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134520,Link="|cffffffff|Hitem:7343::::::::40:::::::|h[Bingles' Wrench]|h|r",EquipLoc="",Type="Quest"},["OLDNeophyte's Belt"]={SubType="Miscellaneous",Level=1,id=137,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:137::::::::40:::::::|h[OLDNeophyte's Belt]|h|r",Type="Armor"},["Granite Necklace"]={SubType="Miscellaneous",Level=62,id=12036,StackCount=1,Rarity=2,MinLevel=57,SellPrice=5982,Texture=133296,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12036::::::::40:::::::|h[Granite Necklace]|h|r"},["Marsh Chain"]={SubType="Miscellaneous",Level=42,id=12042,StackCount=1,Rarity=2,MinLevel=37,SellPrice=4749,Texture=133291,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12042::::::::40:::::::|h[Marsh Chain]|h|r"},["Monster - Mace, Thaurissan Hammer"]={SubType="One-Handed Maces",Level=1,id=11369,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133476,Type="Weapon",Link="|cff9d9d9d|Hitem:11369::::::::40:::::::|h[Monster - Mace, Thaurissan Hammer]|h|r",EquipLoc="INVTYPE_WEAPON"},["Crude Charm"]={SubType="Quest",Level=1,id=6079,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134231,Type="Quest",Link="|cffffffff|Hitem:6079::::::::40:::::::|h[Crude Charm]|h|r",EquipLoc=""},["Durable Bracers"]={SubType="Cloth",Level=30,id=9821,StackCount=1,Rarity=2,MinLevel=25,SellPrice=871,Texture=132610,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9821::::::::40:::::::|h[Durable Bracers]|h|r"},["Stormrage Bracers"]={SubType="Leather",Level=76,id=16904,StackCount=1,Rarity=4,MinLevel=60,SellPrice=36606,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16904::::::::40:::::::|h[Stormrage Bracers]|h|r",Type="Armor"},["Magister's Gloves"]={SubType="Cloth",Level=59,id=16684,StackCount=1,Rarity=3,MinLevel=54,SellPrice=9093,Texture=132951,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16684::::::::40:::::::|h[Magister's Gloves]|h|r",Type="Armor"},["Aquamarine Ring"]={SubType="Miscellaneous",Level=46,id=11974,StackCount=1,Rarity=2,MinLevel=41,SellPrice=4971,Texture=133343,Type="Armor",Link="|cff1eff00|Hitem:11974::::::::40:::::::|h[Aquamarine Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Captain Sander's Sash"]={SubType="Cloth",Level=15,id=3344,StackCount=1,Rarity=2,MinLevel=0,SellPrice=145,Texture=133694,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:3344::::::::40:::::::|h[Captain Sander's Sash]|h|r"},["Deprecated Hands of the Crescent Moon"]={SubType="Leather",Level=13,id=5295,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:5295::::::::40:::::::|h[Deprecated Hands of the Crescent Moon]|h|r"},["Cluster Rocket Recipes"]={SubType="Consumable",Level=1,id=21741,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134941,Link="|cffffffff|Hitem:21741::::::::40:::::::|h[Cluster Rocket Recipes]|h|r",EquipLoc="",Type="Consumable"},["Sayge's Fortune #15"]={SubType="Junk",Level=1,id=19250,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19250::::::::40:::::::|h[Sayge's Fortune #15]|h|r",EquipLoc="",Type="Miscellaneous"},["Deprecated Pure Copper Ingot"]={SubType="Trade Goods",Level=7,id=786,StackCount=5,Rarity=1,MinLevel=0,SellPrice=15,Texture=133216,EquipLoc="",Link="|cffffffff|Hitem:786::::::::40:::::::|h[Deprecated Pure Copper Ingot]|h|r",Type="Trade Goods"},["Test Sword Chest"]={SubType="Plate",Level=60,id=13712,StackCount=1,Rarity=1,MinLevel=55,SellPrice=9488,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13712::::::::40:::::::|h[Test Sword Chest]|h|r"},["Sergeant's Warhammer"]={SubType="One-Handed Maces",Level=17,id=2079,StackCount=1,Rarity=2,MinLevel=12,SellPrice=933,Texture=133048,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:2079::::::::40:::::::|h[Sergeant's Warhammer]|h|r"},["Deprecated Runic Cloth Pants"]={SubType="Cloth",Level=16,id=14363,StackCount=1,Rarity=2,MinLevel=11,SellPrice=326,Texture=134706,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14363::::::::40:::::::|h[Deprecated Runic Cloth Pants]|h|r"},["Magnificent Gauntlets"]={SubType="Mail",Level=60,id=15672,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12164,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15672::::::::40:::::::|h[Magnificent Gauntlets]|h|r",Type="Armor"},["Black Leather D02 Boots"]={SubType="Leather",Level=1,id=3541,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:3541::::::::40:::::::|h[Black Leather D02 Boots]|h|r",Type="Armor"},["Rockjaw Blade"]={SubType="One-Handed Swords",Level=9,id=2065,StackCount=1,Rarity=1,MinLevel=4,SellPrice=113,Texture=135357,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2065::::::::40:::::::|h[Rockjaw Blade]|h|r"},["Marshal's Dragonhide Boots"]={SubType="Leather",Level=71,id=16459,StackCount=1,Rarity=4,MinLevel=60,SellPrice=20492,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16459::::::::40:::::::|h[Marshal's Dragonhide Boots]|h|r",Type="Armor"},["Camp Mojache Zukk'ash Report"]={SubType="Quest",Level=1,id=19020,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:19020::::::::40:::::::|h[Camp Mojache Zukk'ash Report]|h|r",EquipLoc="",Type="Quest"},["Bloodbelly Fish"]={SubType="Consumable",Level=35,id=13546,StackCount=20,Rarity=1,MinLevel=25,SellPrice=62,Texture=133892,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13546::::::::40:::::::|h[Bloodbelly Fish]|h|r"},["Robe of the Magi"]={SubType="Cloth",Level=40,id=1716,StackCount=1,Rarity=3,MinLevel=35,SellPrice=5067,Texture=132658,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:1716::::::::40:::::::|h[Robe of the Magi]|h|r"},["Turtle Box"]={SubType="Junk",Level=1,id=23002,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132763,Link="|cffffffff|Hitem:23002::::::::40:::::::|h[Turtle Box]|h|r",EquipLoc="",Type="Miscellaneous"},["Deprecated Jademir Scale Shield"]={SubType="Shields",Level=57,id=15889,StackCount=1,Rarity=2,MinLevel=52,SellPrice=23125,Texture=136051,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15889::::::::40:::::::|h[Deprecated Jademir Scale Shield]|h|r",Type="Armor"},["OLDMonster - Waist, Plate Silver"]={SubType="Mail",Level=1,id=3247,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=132490,Link="|cff9d9d9d|Hitem:3247::::::::40:::::::|h[OLDMonster - Waist, Plate Silver]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Heated Ancient Blade"]={SubType="Quest",Level=1,id=18488,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=135279,Type="Quest",Link="|cffa335ee|Hitem:18488::::::::40:::::::|h[Heated Ancient Blade]|h|r",EquipLoc=""},["War Paint Waistband"]={SubType="Mail",Level=17,id=14725,StackCount=1,Rarity=2,MinLevel=12,SellPrice=292,Texture=132514,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14725::::::::40:::::::|h[War Paint Waistband]|h|r"},["Krazek's Fixed Pot"]={SubType="Quest",Level=1,id=1987,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134514,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1987::::::::40:::::::|h[Krazek's Fixed Pot]|h|r"},["Water of the Seers"]={SubType="Quest",Level=1,id=4823,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134712,Link="|cffffffff|Hitem:4823::::::::40:::::::|h[Water of the Seers]|h|r",EquipLoc="",Type="Quest"},["Cinched Belt"]={SubType="Mail",Level=15,id=5328,StackCount=1,Rarity=2,MinLevel=0,SellPrice=205,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:5328::::::::40:::::::|h[Cinched Belt]|h|r"},["Rubidium Hammer"]={SubType="One-Handed Maces",Level=56,id=11805,StackCount=1,Rarity=3,MinLevel=51,SellPrice=40439,Texture=133046,Type="Weapon",Link="|cff0070dd|Hitem:11805::::::::40:::::::|h[Rubidium Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Highlander's Plate Girdle"]={SubType="Plate",Level=53,id=20124,StackCount=1,Rarity=3,MinLevel=48,SellPrice=7075,Texture=132503,Link="|cff0070dd|Hitem:20124::::::::40:::::::|h[Highlander's Plate Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Archer's Cap"]={SubType="Leather",Level=36,id=9859,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2871,Texture=133117,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9859::::::::40:::::::|h[Archer's Cap]|h|r"},["Coarse Sharpening Stone"]={SubType="Trade Goods",Level=15,id=2863,StackCount=20,Rarity=1,MinLevel=5,SellPrice=10,Texture=135249,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:2863::::::::40:::::::|h[Coarse Sharpening Stone]|h|r"},["Core Hound Tooth"]={SubType="Daggers",Level=70,id=18805,StackCount=1,Rarity=4,MinLevel=60,SellPrice=109275,Texture=135647,Type="Weapon",Link="|cffa335ee|Hitem:18805::::::::40:::::::|h[Core Hound Tooth]|h|r",EquipLoc="INVTYPE_WEAPON"},["Polar Helmet"]={SubType="Leather",Level=83,id=23020,StackCount=1,Rarity=4,MinLevel=60,SellPrice=79607,Texture=133072,Link="|cffa335ee|Hitem:23020::::::::40:::::::|h[Polar Helmet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Shadow Panther Heart"]={SubType="Quest",Level=1,id=6080,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Type="Quest",Link="|cffffffff|Hitem:6080::::::::40:::::::|h[Shadow Panther Heart]|h|r",EquipLoc=""},["Brutish Breastplate"]={SubType="Plate",Level=50,id=14904,StackCount=1,Rarity=2,MinLevel=45,SellPrice=9245,Texture=132626,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14904::::::::40:::::::|h[Brutish Breastplate]|h|r"},["Commander's Girdle"]={SubType="Plate",Level=59,id=10381,StackCount=1,Rarity=2,MinLevel=54,SellPrice=8094,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10381::::::::40:::::::|h[Commander's Girdle]|h|r",Type="Armor"},["Sandals of Faith"]={SubType="Cloth",Level=86,id=22516,StackCount=1,Rarity=4,MinLevel=60,SellPrice=73958,Texture=132579,Link="|cffa335ee|Hitem:22516::::::::40:::::::|h[Sandals of Faith]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Marshal's Dragonhide Gauntlets"]={SubType="Leather",Level=71,id=16448,StackCount=1,Rarity=4,MinLevel=60,SellPrice=14132,Texture=132955,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16448::::::::40:::::::|h[Marshal's Dragonhide Gauntlets]|h|r",Type="Armor"},["Lieutenant Commander's Satin Mantle"]={SubType="Cloth",Level=71,id=23317,StackCount=1,Rarity=3,MinLevel=60,SellPrice=12871,Texture=135032,Link="|cff0070dd|Hitem:23317::::::::40:::::::|h[Lieutenant Commander's Satin Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Moonstone Wand"]={SubType="Wands",Level=18,id=15204,StackCount=1,Rarity=2,MinLevel=0,SellPrice=779,Texture=135469,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15204::::::::40:::::::|h[Moonstone Wand]|h|r",Type="Weapon"},["Crude Battle Axe"]={SubType="Two-Handed Axes",Level=12,id=1512,StackCount=1,Rarity=0,MinLevel=7,SellPrice=194,Texture=135423,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1512::::::::40:::::::|h[Crude Battle Axe]|h|r"},["Mail Helmet A (Test)"]={SubType="Leather",Level=1,id=1027,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133071,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:1027::::::::40:::::::|h[Mail Helmet A (Test)]|h|r"},["Knowledge: Stonesplinter Disguise"]={SubType="Book",Level=13,id=5131,StackCount=1,Rarity=1,MinLevel=13,SellPrice=162,Texture=134941,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5131::::::::40:::::::|h[Knowledge: Stonesplinter Disguise]|h|r"},["Bracesteel Belt"]={SubType="Mail",Level=35,id=15588,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2194,Texture=132510,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15588::::::::40:::::::|h[Bracesteel Belt]|h|r",Type="Armor"},["Yagyin's Digest"]={SubType="Quest",Level=1,id=4647,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133738,Type="Quest",Link="|cffffffff|Hitem:4647::::::::40:::::::|h[Yagyin's Digest]|h|r",EquipLoc=""},["Netherwind Boots"]={SubType="Cloth",Level=76,id=16912,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42007,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16912::::::::40:::::::|h[Netherwind Boots]|h|r",Type="Armor"},["Cured Leather Belt"]={SubType="Leather",Level=22,id=1849,StackCount=1,Rarity=1,MinLevel=17,SellPrice=277,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:1849::::::::40:::::::|h[Cured Leather Belt]|h|r",Type="Armor"},["Desecrated Bracers"]={SubType="Junk",Level=60,id=22355,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133830,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:22355::::::::40:::::::|h[Desecrated Bracers]|h|r"},["Hillman's Leather Gloves"]={SubType="Leather",Level=29,id=4247,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1049,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:4247::::::::40:::::::|h[Hillman's Leather Gloves]|h|r"},["Blue Sparkler"]={SubType="Miscellaneous",Level=10,id=8626,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=135467,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:8626::::::::40:::::::|h[Blue Sparkler]|h|r"},["Book of Abolish Magic"]={SubType="Book",Level=36,id=4223,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133743,Type="Recipe",Link="|cffffffff|Hitem:4223::::::::40:::::::|h[Book of Abolish Magic]|h|r",EquipLoc=""},["Loose Chain Gloves"]={SubType="Mail",Level=7,id=2645,StackCount=1,Rarity=0,MinLevel=2,SellPrice=11,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:2645::::::::40:::::::|h[Loose Chain Gloves]|h|r"},["Healing Stream Totem Scroll"]={SubType="Quest",Level=20,id=6650,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6650::::::::40:::::::|h[Healing Stream Totem Scroll]|h|r"},["Sanguine Robe"]={SubType="Cloth",Level=28,id=14380,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1473,Texture=132650,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14380::::::::40:::::::|h[Sanguine Robe]|h|r"},["Ivycloth Mantle"]={SubType="Cloth",Level=27,id=9796,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1038,Texture=135044,Link="|cff1eff00|Hitem:9796::::::::40:::::::|h[Ivycloth Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Infantry Bracers"]={SubType="Mail",Level=10,id=6507,StackCount=1,Rarity=1,MinLevel=5,SellPrice=44,Texture=132613,Type="Armor",Link="|cffffffff|Hitem:6507::::::::40:::::::|h[Infantry Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Imposing Vest"]={SubType="Leather",Level=47,id=15164,StackCount=1,Rarity=2,MinLevel=42,SellPrice=9135,Texture=132720,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15164::::::::40:::::::|h[Imposing Vest]|h|r",Type="Armor"},["Burning Blood"]={SubType="Quest",Level=1,id=6844,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132789,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6844::::::::40:::::::|h[Burning Blood]|h|r"},["Overlord's Shield"]={SubType="Shields",Level=52,id=9974,StackCount=1,Rarity=2,MinLevel=47,SellPrice=16449,Texture=135971,Link="|cff1eff00|Hitem:9974::::::::40:::::::|h[Overlord's Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Geomancer's Wraps"]={SubType="Cloth",Level=41,id=14225,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4694,Texture=132681,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14225::::::::40:::::::|h[Geomancer's Wraps]|h|r"},["Gloves of Restoration"]={SubType="Leather",Level=59,id=18309,StackCount=1,Rarity=3,MinLevel=54,SellPrice=11296,Texture=132954,Type="Armor",Link="|cff0070dd|Hitem:18309::::::::40:::::::|h[Gloves of Restoration]|h|r",EquipLoc="INVTYPE_HAND"},["Ironpatch Blade"]={SubType="One-Handed Swords",Level=20,id=12976,StackCount=1,Rarity=3,MinLevel=15,SellPrice=1770,Texture=135327,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:12976::::::::40:::::::|h[Ironpatch Blade]|h|r"},["Underworld Band"]={SubType="Miscellaneous",Level=43,id=1980,StackCount=1,Rarity=4,MinLevel=38,SellPrice=6200,Texture=133357,Type="Armor",Link="|cffa335ee|Hitem:1980::::::::40:::::::|h[Underworld Band]|h|r",EquipLoc="INVTYPE_FINGER"},["Fang of Korialstrasz"]={SubType="Daggers",Level=76,id=21523,StackCount=1,Rarity=4,MinLevel=60,SellPrice=142805,Texture=135665,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffa335ee|Hitem:21523::::::::40:::::::|h[Fang of Korialstrasz]|h|r"},["Tuxedo Jacket"]={SubType="Cloth",Level=35,id=10036,StackCount=1,Rarity=1,MinLevel=30,SellPrice=1741,Texture=135022,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:10036::::::::40:::::::|h[Tuxedo Jacket]|h|r",Type="Armor"},["Libram: Crusader Strike II"]={SubType="Book",Level=22,id=8914,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133740,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8914::::::::40:::::::|h[Libram: Crusader Strike II]|h|r"},["Eidolon Cloak"]={SubType="Cloth",Level=59,id=18339,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11370,Texture=133773,Type="Armor",Link="|cff1eff00|Hitem:18339::::::::40:::::::|h[Eidolon Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Guststorm Legguards"]={SubType="Mail",Level=18,id=15203,StackCount=1,Rarity=2,MinLevel=0,SellPrice=621,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15203::::::::40:::::::|h[Guststorm Legguards]|h|r",Type="Armor"},["Knight-Captain's Dreadweave Robe"]={SubType="Cloth",Level=63,id=17568,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11054,Texture=132666,EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:17568::::::::40:::::::|h[Knight-Captain's Dreadweave Robe]|h|r",Type="Armor"},["Craftsman's Writ - Plated Armorfish"]={SubType="Junk",Level=60,id=22623,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22623::::::::40:::::::|h[Craftsman's Writ - Plated Armorfish]|h|r",EquipLoc="",Type="Miscellaneous"},["Andron's Ledger"]={SubType="Quest",Level=1,id=7294,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133737,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7294::::::::40:::::::|h[Andron's Ledger]|h|r"},["Bronze Bar"]={SubType="Trade Goods",Level=20,id=2841,StackCount=20,Rarity=1,MinLevel=0,SellPrice=50,Texture=133227,Link="|cffffffff|Hitem:2841::::::::40:::::::|h[Bronze Bar]|h|r",EquipLoc="",Type="Trade Goods"},["Marauder's Bracers"]={SubType="Mail",Level=35,id=15566,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2178,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15566::::::::40:::::::|h[Marauder's Bracers]|h|r",Type="Armor"},["Daryl's Hunting Bow"]={SubType="Bows",Level=15,id=2903,StackCount=1,Rarity=2,MinLevel=0,SellPrice=515,Texture=135490,Link="|cff1eff00|Hitem:2903::::::::40:::::::|h[Daryl's Hunting Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Dragonslayer's Signet"]={SubType="Miscellaneous",Level=74,id=18403,StackCount=1,Rarity=4,MinLevel=0,SellPrice=49060,Texture=133369,Type="Armor",Link="|cffa335ee|Hitem:18403::::::::40:::::::|h[Dragonslayer's Signet]|h|r",EquipLoc="INVTYPE_FINGER"},["Hillman's Cloak"]={SubType="Cloth",Level=30,id=3719,StackCount=1,Rarity=1,MinLevel=25,SellPrice=1027,Texture=133759,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:3719::::::::40:::::::|h[Hillman's Cloak]|h|r",Type="Armor"},["Pattern: Red Whelp Gloves"]={SubType="Leatherworking",Level=24,id=7290,StackCount=1,Rarity=1,MinLevel=0,SellPrice=400,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:7290::::::::40:::::::|h[Pattern: Red Whelp Gloves]|h|r",Type="Recipe"},["Monster - Item, Vial Purple"]={SubType="Miscellaneous",Level=1,id=2199,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134719,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2199::::::::40:::::::|h[Monster - Item, Vial Purple]|h|r"},["Green Dragonscale Gauntlets"]={SubType="Mail",Level=56,id=20296,StackCount=1,Rarity=3,MinLevel=51,SellPrice=12590,Texture=132946,Link="|cff0070dd|Hitem:20296::::::::40:::::::|h[Green Dragonscale Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Headhunter's Belt"]={SubType="Leather",Level=33,id=15349,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1549,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15349::::::::40:::::::|h[Headhunter's Belt]|h|r",Type="Armor"},["Tribal Bracers"]={SubType="Leather",Level=10,id=3285,StackCount=1,Rarity=1,MinLevel=5,SellPrice=36,Texture=132601,Link="|cffffffff|Hitem:3285::::::::40:::::::|h[Tribal Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Blue Leather Bag"]={SubType="Bag",Level=15,id=856,StackCount=1,Rarity=1,MinLevel=0,SellPrice=875,Texture=133626,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:856::::::::40:::::::|h[Blue Leather Bag]|h|r"},["Deprecated Whisperwind Headdress"]={SubType="Mail",Level=27,id=5358,StackCount=1,Rarity=0,MinLevel=0,SellPrice=626,Texture=133072,EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:5358::::::::40:::::::|h[Deprecated Whisperwind Headdress]|h|r",Type="Armor"},["Withered Staff"]={SubType="Staves",Level=8,id=1411,StackCount=1,Rarity=0,MinLevel=3,SellPrice=68,Texture=135139,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1411::::::::40:::::::|h[Withered Staff]|h|r"},["Frostweave Robe"]={SubType="Cloth",Level=51,id=13868,StackCount=1,Rarity=2,MinLevel=46,SellPrice=9665,Texture=132644,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:13868::::::::40:::::::|h[Frostweave Robe]|h|r"},["Tribal Pants"]={SubType="Leather",Level=12,id=3287,StackCount=1,Rarity=2,MinLevel=7,SellPrice=199,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:3287::::::::40:::::::|h[Tribal Pants]|h|r"},["Durable Cape"]={SubType="Cloth",Level=29,id=9822,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1192,Texture=133762,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9822::::::::40:::::::|h[Durable Cape]|h|r"},["test Eric Shirt"]={SubType="Miscellaneous",Level=1,id=5091,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:5091::::::::40:::::::|h[test Eric Shirt]|h|r",Type="Armor"},["Tome of Fireball"]={SubType="Book",Level=6,id=8803,StackCount=1,Rarity=1,MinLevel=6,SellPrice=20,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8803::::::::40:::::::|h[Tome of Fireball]|h|r"},["Crystalline Cuffs"]={SubType="Cloth",Level=18,id=14148,StackCount=1,Rarity=2,MinLevel=13,SellPrice=208,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14148::::::::40:::::::|h[Crystalline Cuffs]|h|r"},["Grizzled Boots"]={SubType="Leather",Level=29,id=6335,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1581,Texture=132537,Type="Armor",Link="|cff1eff00|Hitem:6335::::::::40:::::::|h[Grizzled Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Runecloth Belt"]={SubType="Cloth",Level=51,id=13856,StackCount=1,Rarity=2,MinLevel=46,SellPrice=5112,Texture=132504,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:13856::::::::40:::::::|h[Runecloth Belt]|h|r"},["Ace of Portals"]={SubType="Junk",Level=1,id=19276,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134492,Link="|cff0070dd|Hitem:19276::::::::40:::::::|h[Ace of Portals]|h|r",EquipLoc="",Type="Miscellaneous"},["Stinging Bow"]={SubType="Bows",Level=47,id=10624,StackCount=1,Rarity=3,MinLevel=42,SellPrice=17249,Texture=135496,EquipLoc="INVTYPE_RANGED",Link="|cff0070dd|Hitem:10624::::::::40:::::::|h[Stinging Bow]|h|r",Type="Weapon"},["Heraldic Breastplate"]={SubType="Leather",Level=51,id=8119,StackCount=1,Rarity=2,MinLevel=46,SellPrice=12725,Texture=132717,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:8119::::::::40:::::::|h[Heraldic Breastplate]|h|r"},["Raw Nightfin Snapper"]={SubType="Consumable",Level=45,id=13759,StackCount=20,Rarity=1,MinLevel=35,SellPrice=10,Texture=133909,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13759::::::::40:::::::|h[Raw Nightfin Snapper]|h|r"},["Windchaser Orb"]={SubType="Miscellaneous",Level=49,id=15965,StackCount=1,Rarity=2,MinLevel=44,SellPrice=7996,Texture=135140,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15965::::::::40:::::::|h[Windchaser Orb]|h|r",Type="Armor"},["Tablet of Flame Shock IV"]={SubType="Book",Level=40,id=9184,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9184::::::::40:::::::|h[Tablet of Flame Shock IV]|h|r"},["Thuggish Shield"]={SubType="Shields",Level=11,id=6203,StackCount=1,Rarity=1,MinLevel=6,SellPrice=121,Texture=134955,Type="Armor",Link="|cffffffff|Hitem:6203::::::::40:::::::|h[Thuggish Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Token of Thievery"]={SubType="Quest",Level=1,id=7871,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134415,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7871::::::::40:::::::|h[Token of Thievery]|h|r"},["Vulture Gizzard"]={SubType="Quest",Level=1,id=8396,StackCount=20,Rarity=1,MinLevel=1,SellPrice=0,Texture=134342,Link="|cffffffff|Hitem:8396::::::::40:::::::|h[Vulture Gizzard]|h|r",EquipLoc="",Type="Quest"},["Abyssal Mail Clutch"]={SubType="Mail",Level=65,id=20670,StackCount=1,Rarity=2,MinLevel=60,SellPrice=15125,Texture=132505,Link="|cff1eff00|Hitem:20670::::::::40:::::::|h[Abyssal Mail Clutch]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Fizzy Energy Drink"]={SubType="Consumable",Level=1,id=23176,StackCount=20,Rarity=1,MinLevel=0,SellPrice=3,Texture=132489,Link="|cffffffff|Hitem:23176::::::::40:::::::|h[Fizzy Energy Drink]|h|r",EquipLoc="",Type="Consumable"},["Rageclaw Shoulder Pads"]={SubType="Leather",Level=48,id=15386,StackCount=1,Rarity=2,MinLevel=43,SellPrice=7287,Texture=135032,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15386::::::::40:::::::|h[Rageclaw Shoulder Pads]|h|r",Type="Armor"},["Field Repair Bot 74A"]={SubType="Devices",Level=60,id=18232,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=132836,Type="Trade Goods",Link="|cffffffff|Hitem:18232::::::::40:::::::|h[Field Repair Bot 74A]|h|r",EquipLoc=""},["Deprecated Dark Mantle"]={SubType="Leather",Level=23,id=4442,StackCount=1,Rarity=0,MinLevel=18,SellPrice=306,Texture=135039,Type="Armor",Link="|cff9d9d9d|Hitem:4442::::::::40:::::::|h[Deprecated Dark Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Sparkleshell Gauntlets"]={SubType="Mail",Level=38,id=15581,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2794,Texture=132945,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15581::::::::40:::::::|h[Sparkleshell Gauntlets]|h|r",Type="Armor"},["Valentine's Day Stationery"]={SubType="Consumable",Level=0,id=22058,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135453,Link="|cffffffff|Hitem:22058::::::::40:::::::|h[Valentine's Day Stationery]|h|r",EquipLoc="",Type="Consumable"},["Book of Faerie Fire III"]={SubType="Book",Level=42,id=8779,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8779::::::::40:::::::|h[Book of Faerie Fire III]|h|r"},["James' Key"]={SubType="Key",Level=1,id=17262,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134240,EquipLoc="",Link="|cffffffff|Hitem:17262::::::::40:::::::|h[James' Key]|h|r",Type="Key"},["Knight-Captain's Satin Cuffs"]={SubType="Cloth",Level=60,id=17595,StackCount=1,Rarity=3,MinLevel=55,SellPrice=4744,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:17595::::::::40:::::::|h[Knight-Captain's Satin Cuffs]|h|r",Type="Armor"},["Nightshade Helmet"]={SubType="Leather",Level=61,id=10226,StackCount=1,Rarity=2,MinLevel=56,SellPrice=16616,Texture=133076,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10226::::::::40:::::::|h[Nightshade Helmet]|h|r",Type="Armor"},["Dawn's Edge"]={SubType="One-Handed Axes",Level=55,id=12774,StackCount=1,Rarity=3,MinLevel=50,SellPrice=36044,Texture=132396,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:12774::::::::40:::::::|h[Dawn's Edge]|h|r"},["47 Pound Grouper"]={SubType="Junk",Level=45,id=13877,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30,Texture=133892,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13877::::::::40:::::::|h[47 Pound Grouper]|h|r"},["Hive'Ashi Rubbing"]={SubType="Quest",Level=1,id=20455,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134945,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:20455::::::::40:::::::|h[Hive'Ashi Rubbing]|h|r"},["Deprecated Greater Bloodstone"]={SubType="Miscellaneous",Level=38,id=5231,StackCount=1,Rarity=1,MinLevel=33,SellPrice=0,Texture=135230,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:5231::::::::40:::::::|h[Deprecated Greater Bloodstone]|h|r"},["Monster - Mace2H, Tirion Fordring"]={SubType="Two-Handed Maces",Level=1,id=14082,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133489,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14082::::::::40:::::::|h[Monster - Mace2H, Tirion Fordring]|h|r"},["War Torn Tunic"]={SubType="Mail",Level=16,id=15487,StackCount=1,Rarity=2,MinLevel=11,SellPrice=479,Texture=132629,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15487::::::::40:::::::|h[War Torn Tunic]|h|r",Type="Armor"},["Scouting Boots"]={SubType="Leather",Level=22,id=6582,StackCount=1,Rarity=2,MinLevel=17,SellPrice=731,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:6582::::::::40:::::::|h[Scouting Boots]|h|r"},["Conqueror's Crown"]={SubType="Plate",Level=81,id=21329,StackCount=1,Rarity=4,MinLevel=60,SellPrice=53037,Texture=133174,Link="|cffa335ee|Hitem:21329::::::::40:::::::|h[Conqueror's Crown]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Bloodfang Chestpiece"]={SubType="Leather",Level=76,id=16905,StackCount=1,Rarity=4,MinLevel=60,SellPrice=73480,Texture=132648,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16905::::::::40:::::::|h[Bloodfang Chestpiece]|h|r",Type="Armor"},["Skinning Knife"]={SubType="Miscellaneous",Level=4,id=7005,StackCount=1,Rarity=1,MinLevel=1,SellPrice=16,Texture=135637,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:7005::::::::40:::::::|h[Skinning Knife]|h|r"},["Primalist's Band"]={SubType="Miscellaneous",Level=68,id=19920,StackCount=1,Rarity=3,MinLevel=60,SellPrice=56037,Texture=133389,Link="|cff0070dd|Hitem:19920::::::::40:::::::|h[Primalist's Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Libram: Divine Favor"]={SubType="Book",Level=4,id=1138,StackCount=1,Rarity=1,MinLevel=4,SellPrice=10,Texture=133740,Type="Recipe",Link="|cffffffff|Hitem:1138::::::::40:::::::|h[Libram: Divine Favor]|h|r",EquipLoc=""},["Gurubashi Head Collection"]={SubType="Quest",Level=1,id=19880,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133306,Link="|cffffffff|Hitem:19880::::::::40:::::::|h[Gurubashi Head Collection]|h|r",EquipLoc="",Type="Quest"},["Hacking Cleaver"]={SubType="One-Handed Axes",Level=33,id=15232,StackCount=1,Rarity=2,MinLevel=28,SellPrice=6112,Texture=135649,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15232::::::::40:::::::|h[Hacking Cleaver]|h|r",Type="Weapon"},["[UNUSED] Scourge Invasion Boss Summoner"]={SubType="Key",Level=1,id=22486,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134232,Link="|cffffffff|Hitem:22486::::::::40:::::::|h[[UNUSED] Scourge Invasion Boss Summoner]|h|r",EquipLoc="",Type="Key"},["Opulent Cape"]={SubType="Cloth",Level=48,id=14280,StackCount=1,Rarity=2,MinLevel=43,SellPrice=5919,Texture=133772,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14280::::::::40:::::::|h[Opulent Cape]|h|r"},["Captain Rackmore's Wheel"]={SubType="Shields",Level=36,id=16788,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5095,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:16788::::::::40:::::::|h[Captain Rackmore's Wheel]|h|r",Type="Armor"},["Blessed Sunfruit Juice"]={SubType="Consumable",Level=55,id=13813,StackCount=20,Rarity=1,MinLevel=45,SellPrice=300,Texture=132803,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13813::::::::40:::::::|h[Blessed Sunfruit Juice]|h|r"},["Tablet of Mana Font Totem III"]={SubType="Book",Level=46,id=9136,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9136::::::::40:::::::|h[Tablet of Mana Font Totem III]|h|r"},["Geomancer's Cloak"]={SubType="Cloth",Level=34,id=14219,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2046,Texture=133759,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14219::::::::40:::::::|h[Geomancer's Cloak]|h|r"},["Hawkeye's Tunic"]={SubType="Leather",Level=40,id=14592,StackCount=1,Rarity=2,MinLevel=35,SellPrice=5594,Texture=132721,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14592::::::::40:::::::|h[Hawkeye's Tunic]|h|r"},["Double Mail Vest"]={SubType="Mail",Level=33,id=3815,StackCount=1,Rarity=0,MinLevel=28,SellPrice=1475,Texture=132624,Type="Armor",Link="|cff9d9d9d|Hitem:3815::::::::40:::::::|h[Double Mail Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Salamander Scale Pants"]={SubType="Leather",Level=64,id=18875,StackCount=1,Rarity=4,MinLevel=59,SellPrice=38445,Texture=134592,Type="Armor",Link="|cffa335ee|Hitem:18875::::::::40:::::::|h[Salamander Scale Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Thorium Lockbox"]={SubType="Junk",Level=55,id=5759,StackCount=1,Rarity=2,MinLevel=0,SellPrice=375,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cff1eff00|Hitem:5759::::::::40:::::::|h[Thorium Lockbox]|h|r"},["Demon Pick"]={SubType="Quest",Level=1,id=14523,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136248,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14523::::::::40:::::::|h[Demon Pick]|h|r"},["The Story of Morgan Ladimore"]={SubType="Junk",Level=1,id=2154,StackCount=1,Rarity=0,MinLevel=0,SellPrice=0,Texture=133741,EquipLoc="",Link="|cff9d9d9d|Hitem:2154::::::::40:::::::|h[The Story of Morgan Ladimore]|h|r",Type="Miscellaneous"},["Elixir of Giant Growth"]={SubType="Consumable",Level=18,id=6662,StackCount=5,Rarity=1,MinLevel=8,SellPrice=95,Texture=134721,Type="Consumable",Link="|cffffffff|Hitem:6662::::::::40:::::::|h[Elixir of Giant Growth]|h|r",EquipLoc=""},["Blackened Leather Belt"]={SubType="Leather",Level=5,id=6058,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:6058::::::::40:::::::|h[Blackened Leather Belt]|h|r"},["Ankh of Resurrection"]={SubType="Consumable",Level=8,id=3438,StackCount=1,Rarity=1,MinLevel=0,SellPrice=28,Texture=133439,EquipLoc="",Link="|cffffffff|Hitem:3438::::::::40:::::::|h[Ankh of Resurrection]|h|r",Type="Consumable"},["Wood Pulp"]={SubType="Quest",Level=1,id=5018,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135437,EquipLoc="",Link="|cffffffff|Hitem:5018::::::::40:::::::|h[Wood Pulp]|h|r",Type="Quest"},["Grappler's Belt"]={SubType="Leather",Level=33,id=9687,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1554,Texture=132506,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9687::::::::40:::::::|h[Grappler's Belt]|h|r"},["Damp Diary Page (Day 512)"]={SubType="Junk",Level=1,id=6306,StackCount=1,Rarity=0,MinLevel=0,SellPrice=25,Texture=134332,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:6306::::::::40:::::::|h[Damp Diary Page (Day 512)]|h|r",EquipLoc=""},["Wicked Blackjack"]={SubType="One-Handed Maces",Level=17,id=827,StackCount=1,Rarity=2,MinLevel=12,SellPrice=971,Texture=133476,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:827::::::::40:::::::|h[Wicked Blackjack]|h|r"},["Looming Gavel"]={SubType="One-Handed Maces",Level=31,id=13048,StackCount=1,Rarity=3,MinLevel=26,SellPrice=5971,Texture=133041,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:13048::::::::40:::::::|h[Looming Gavel]|h|r"},["Flask of Forest Mojo"]={SubType="Miscellaneous",Level=51,id=19115,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11003,Texture=134799,Link="|cff1eff00|Hitem:19115::::::::40:::::::|h[Flask of Forest Mojo]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Pattern: Robe of the Void"]={SubType="Tailoring",Level=62,id=14514,StackCount=1,Rarity=4,MinLevel=0,SellPrice=15000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffa335ee|Hitem:14514::::::::40:::::::|h[Pattern: Robe of the Void]|h|r"},["Craftsman's Monocle"]={SubType="Cloth",Level=37,id=4393,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2632,Texture=133146,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:4393::::::::40:::::::|h[Craftsman's Monocle]|h|r"},["Blood Guard's Plate Boots"]={SubType="Plate",Level=63,id=16509,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8866,Texture=132590,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16509::::::::40:::::::|h[Blood Guard's Plate Boots]|h|r",Type="Armor"},["Blackguard"]={SubType="One-Handed Swords",Level=70,id=19168,StackCount=1,Rarity=4,MinLevel=60,SellPrice=102890,Texture=135349,Link="|cffa335ee|Hitem:19168::::::::40:::::::|h[Blackguard]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["OLDMonster - Legs, Plate Silver"]={SubType="Plate",Level=1,id=3243,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134584,Link="|cff9d9d9d|Hitem:3243::::::::40:::::::|h[OLDMonster - Legs, Plate Silver]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Cache of Mau'ari"]={SubType="Quest",Level=1,id=12384,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133296,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12384::::::::40:::::::|h[Cache of Mau'ari]|h|r"},["Insignia Cap"]={SubType="Leather",Level=35,id=4052,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2699,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:4052::::::::40:::::::|h[Insignia Cap]|h|r",Type="Armor"},["Cryptstalker Wristguards"]={SubType="Mail",Level=88,id=22443,StackCount=1,Rarity=4,MinLevel=60,SellPrice=75782,Texture=132601,Link="|cffa335ee|Hitem:22443::::::::40:::::::|h[Cryptstalker Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Inlaid Thorium Hammer"]={SubType="Two-Handed Maces",Level=54,id=12772,StackCount=1,Rarity=2,MinLevel=49,SellPrice=38871,Texture=133046,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:12772::::::::40:::::::|h[Inlaid Thorium Hammer]|h|r"},["Vice Grips"]={SubType="Plate",Level=48,id=9640,StackCount=1,Rarity=3,MinLevel=43,SellPrice=4840,Texture=132960,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:9640::::::::40:::::::|h[Vice Grips]|h|r"},["Foamspittle Staff"]={SubType="Staves",Level=17,id=1405,StackCount=1,Rarity=2,MinLevel=12,SellPrice=1184,Texture=135143,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1405::::::::40:::::::|h[Foamspittle Staff]|h|r",Type="Weapon"},["Rugged Armor Kit"]={SubType="Consumable",Level=50,id=15564,StackCount=10,Rarity=1,MinLevel=40,SellPrice=1000,Texture=133604,EquipLoc="",Link="|cffffffff|Hitem:15564::::::::40:::::::|h[Rugged Armor Kit]|h|r",Type="Consumable"},["Ancestral Bracers"]={SubType="Cloth",Level=9,id=3642,StackCount=1,Rarity=1,MinLevel=4,SellPrice=22,Texture=132607,Link="|cffffffff|Hitem:3642::::::::40:::::::|h[Ancestral Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Stock Shortsword"]={SubType="One-Handed Swords",Level=19,id=1817,StackCount=1,Rarity=0,MinLevel=14,SellPrice=501,Texture=135274,Link="|cff9d9d9d|Hitem:1817::::::::40:::::::|h[Stock Shortsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Twill Shoulderpads"]={SubType="Cloth",Level=56,id=3950,StackCount=1,Rarity=0,MinLevel=51,SellPrice=4157,Texture=135040,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3950::::::::40:::::::|h[Twill Shoulderpads]|h|r"},["Spider Web Robe"]={SubType="Cloth",Level=9,id=3328,StackCount=1,Rarity=1,MinLevel=4,SellPrice=46,Texture=132675,Type="Armor",Link="|cffffffff|Hitem:3328::::::::40:::::::|h[Spider Web Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Keeper's Hooves"]={SubType="Leather",Level=51,id=14662,StackCount=1,Rarity=2,MinLevel=46,SellPrice=9413,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14662::::::::40:::::::|h[Keeper's Hooves]|h|r"},["Thick Leather Shoulderpads"]={SubType="Leather",Level=47,id=3967,StackCount=1,Rarity=0,MinLevel=42,SellPrice=2903,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3967::::::::40:::::::|h[Thick Leather Shoulderpads]|h|r",Type="Armor"},["OLD Stormwind Seasoning Salts "]={SubType="Trade Goods",Level=30,id=2693,StackCount=10,Rarity=1,MinLevel=0,SellPrice=20,Texture=134059,EquipLoc="",Link="|cffffffff|Hitem:2693::::::::40:::::::|h[OLD Stormwind Seasoning Salts ]|h|r",Type="Trade Goods"},["Sower's Cloak"]={SubType="Cloth",Level=15,id=10821,StackCount=1,Rarity=2,MinLevel=0,SellPrice=208,Texture=133762,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10821::::::::40:::::::|h[Sower's Cloak]|h|r",Type="Armor"},["Tundra Boots"]={SubType="Leather",Level=28,id=15458,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1423,Texture=132537,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15458::::::::40:::::::|h[Tundra Boots]|h|r",Type="Armor"},["Grand Marshal's Dirk"]={SubType="Daggers",Level=78,id=18838,StackCount=1,Rarity=4,MinLevel=60,SellPrice=48458,Texture=135662,Type="Weapon",Link="|cffa335ee|Hitem:18838::::::::40:::::::|h[Grand Marshal's Dirk]|h|r",EquipLoc="INVTYPE_WEAPON"},["Whittling Knife"]={SubType="Daggers",Level=5,id=2137,StackCount=1,Rarity=1,MinLevel=0,SellPrice=24,Texture=135637,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:2137::::::::40:::::::|h[Whittling Knife]|h|r"},["Burrowing Shovel"]={SubType="Two-Handed Maces",Level=15,id=6205,StackCount=1,Rarity=2,MinLevel=10,SellPrice=922,Texture=134435,Type="Weapon",Link="|cff1eff00|Hitem:6205::::::::40:::::::|h[Burrowing Shovel]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Elixir of Suffering"]={SubType="Quest",Level=1,id=3495,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134799,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3495::::::::40:::::::|h[Elixir of Suffering]|h|r"},["Libram: Lay on Hands II"]={SubType="Book",Level=30,id=8917,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133740,Link="|cffffffff|Hitem:8917::::::::40:::::::|h[Libram: Lay on Hands II]|h|r",EquipLoc="",Type="Recipe"},["Black Dragonflight Molt"]={SubType="Junk",Level=1,id=10575,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134430,EquipLoc="",Link="|cffffffff|Hitem:10575::::::::40:::::::|h[Black Dragonflight Molt]|h|r",Type="Miscellaneous"},["Band of Thorns"]={SubType="Miscellaneous",Level=31,id=5007,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1632,Texture=134412,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:5007::::::::40:::::::|h[Band of Thorns]|h|r"},["Servomechanic Sledgehammer"]={SubType="Two-Handed Maces",Level=41,id=4548,StackCount=1,Rarity=2,MinLevel=0,SellPrice=15028,Texture=133041,Type="Weapon",Link="|cff1eff00|Hitem:4548::::::::40:::::::|h[Servomechanic Sledgehammer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Worn Heater Shield"]={SubType="Shields",Level=10,id=2376,StackCount=1,Rarity=1,MinLevel=5,SellPrice=89,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:2376::::::::40:::::::|h[Worn Heater Shield]|h|r"},["Platemail Belt"]={SubType="Plate",Level=50,id=8088,StackCount=1,Rarity=1,MinLevel=45,SellPrice=2667,Texture=132504,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:8088::::::::40:::::::|h[Platemail Belt]|h|r"},["Fuel Regulator Blueprints"]={SubType="Quest",Level=1,id=5852,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134330,EquipLoc="",Link="|cffffffff|Hitem:5852::::::::40:::::::|h[Fuel Regulator Blueprints]|h|r",Type="Quest"},["Panther Hunter Leggings"]={SubType="Leather",Level=40,id=4108,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5403,Texture=134582,Type="Armor",Link="|cff1eff00|Hitem:4108::::::::40:::::::|h[Panther Hunter Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["59 Pound Grouper"]={SubType="Junk",Level=45,id=13879,StackCount=1,Rarity=1,MinLevel=0,SellPrice=35,Texture=133892,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13879::::::::40:::::::|h[59 Pound Grouper]|h|r"},["Bandit Buckler"]={SubType="Shields",Level=20,id=9778,StackCount=1,Rarity=2,MinLevel=15,SellPrice=940,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9778::::::::40:::::::|h[Bandit Buckler]|h|r"},["Wristguards of True Flight"]={SubType="Mail",Level=71,id=18812,StackCount=1,Rarity=4,MinLevel=60,SellPrice=32458,Texture=132601,Type="Armor",Link="|cffa335ee|Hitem:18812::::::::40:::::::|h[Wristguards of True Flight]|h|r",EquipLoc="INVTYPE_WRIST"},["Scorpion Sting"]={SubType="One-Handed Swords",Level=39,id=1265,StackCount=1,Rarity=3,MinLevel=34,SellPrice=11774,Texture=135302,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:1265::::::::40:::::::|h[Scorpion Sting]|h|r"},["Snowman Kit"]={SubType="Junk",Level=1,id=21309,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133650,Link="|cffffffff|Hitem:21309::::::::40:::::::|h[Snowman Kit]|h|r",EquipLoc="",Type="Miscellaneous"},["Wolf Heart Sample"]={SubType="Quest",Level=1,id=6016,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6016::::::::40:::::::|h[Wolf Heart Sample]|h|r"},["Brawler's Harness"]={SubType="Miscellaneous",Level=1,id=6125,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132719,Type="Armor",Link="|cffffffff|Hitem:6125::::::::40:::::::|h[Brawler's Harness]|h|r",EquipLoc="INVTYPE_BODY"},["Nightslayer Gloves"]={SubType="Leather",Level=66,id=16826,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22057,Texture=132955,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16826::::::::40:::::::|h[Nightslayer Gloves]|h|r",Type="Armor"},["Superior Buckler"]={SubType="Shields",Level=26,id=9804,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1874,Texture=134955,Link="|cff1eff00|Hitem:9804::::::::40:::::::|h[Superior Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Blackened Defias Leggings"]={SubType="Leather",Level=18,id=10400,StackCount=1,Rarity=2,MinLevel=13,SellPrice=563,Texture=134592,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10400::::::::40:::::::|h[Blackened Defias Leggings]|h|r",Type="Armor"},["Minion's Scourgestone"]={SubType="Quest",Level=1,id=12840,StackCount=250,Rarity=1,MinLevel=0,SellPrice=0,Texture=133447,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12840::::::::40:::::::|h[Minion's Scourgestone]|h|r"},["Wizbang's Gunnysack"]={SubType="Bag",Level=5,id=2082,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=133641,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:2082::::::::40:::::::|h[Wizbang's Gunnysack]|h|r"},["Recipe: Cowardly Flight Potion"]={SubType="Alchemy",Level=25,id=5641,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=134939,Link="|cffffffff|Hitem:5641::::::::40:::::::|h[Recipe: Cowardly Flight Potion]|h|r",EquipLoc="",Type="Recipe"},["Razzeric's Racing Grips"]={SubType="Leather",Level=41,id=6727,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2996,Texture=132958,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:6727::::::::40:::::::|h[Razzeric's Racing Grips]|h|r"},["Gravestone War Axe"]={SubType="Two-Handed Axes",Level=62,id=13983,StackCount=1,Rarity=3,MinLevel=57,SellPrice=66754,Texture=135579,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13983::::::::40:::::::|h[Gravestone War Axe]|h|r"},["Azure Idol"]={SubType="Quest",Level=61,id=20866,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134898,Link="|cff0070dd|Hitem:20866::::::::40:::::::|h[Azure Idol]|h|r",EquipLoc="",Type="Quest"},["Elixir of Detect Demon"]={SubType="Consumable",Level=50,id=9233,StackCount=5,Rarity=1,MinLevel=40,SellPrice=500,Texture=134833,Link="|cffffffff|Hitem:9233::::::::40:::::::|h[Elixir of Detect Demon]|h|r",EquipLoc="",Type="Consumable"},["Serpentine Loop"]={SubType="Miscellaneous",Level=55,id=11977,StackCount=1,Rarity=2,MinLevel=50,SellPrice=7896,Texture=133354,Type="Armor",Link="|cff1eff00|Hitem:11977::::::::40:::::::|h[Serpentine Loop]|h|r",EquipLoc="INVTYPE_FINGER"},["Robes of Arcana"]={SubType="Cloth",Level=30,id=5770,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1807,Texture=132670,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:5770::::::::40:::::::|h[Robes of Arcana]|h|r"},["Nether-lace Robe"]={SubType="Cloth",Level=31,id=7512,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1945,Texture=132661,Link="|cff1eff00|Hitem:7512::::::::40:::::::|h[Nether-lace Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Tablet of Lightning Storm III"]={SubType="Book",Level=40,id=5715,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Link="|cffffffff|Hitem:5715::::::::40:::::::|h[Tablet of Lightning Storm III]|h|r",EquipLoc="",Type="Recipe"},["Sewing Gloves"]={SubType="Leather",Level=8,id=5939,StackCount=1,Rarity=1,MinLevel=0,SellPrice=20,Texture=132939,Link="|cffffffff|Hitem:5939::::::::40:::::::|h[Sewing Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Barrage Shoulders"]={SubType="Mail",Level=73,id=21699,StackCount=1,Rarity=4,MinLevel=60,SellPrice=57856,Texture=135045,Link="|cffa335ee|Hitem:21699::::::::40:::::::|h[Barrage Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Warmonger's Greaves"]={SubType="Mail",Level=48,id=9962,StackCount=1,Rarity=2,MinLevel=43,SellPrice=9218,Texture=132589,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9962::::::::40:::::::|h[Warmonger's Greaves]|h|r"},["Ken'zigla's Draught"]={SubType="Quest",Level=1,id=6624,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134716,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6624::::::::40:::::::|h[Ken'zigla's Draught]|h|r"},["Emblazoned Bracers"]={SubType="Leather",Level=28,id=4049,StackCount=1,Rarity=2,MinLevel=23,SellPrice=888,Texture=132612,Type="Armor",Link="|cff1eff00|Hitem:4049::::::::40:::::::|h[Emblazoned Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Runecloth Boots"]={SubType="Cloth",Level=56,id=13864,StackCount=1,Rarity=2,MinLevel=51,SellPrice=9553,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:13864::::::::40:::::::|h[Runecloth Boots]|h|r"},["General's Silk Boots"]={SubType="Cloth",Level=71,id=16539,StackCount=1,Rarity=4,MinLevel=60,SellPrice=16836,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16539::::::::40:::::::|h[General's Silk Boots]|h|r",Type="Armor"},["Silithid Talon"]={SubType="Quest",Level=1,id=5854,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134295,EquipLoc="",Link="|cffffffff|Hitem:5854::::::::40:::::::|h[Silithid Talon]|h|r",Type="Quest"},["Leggings of Arcane Supremacy"]={SubType="Cloth",Level=69,id=18545,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42546,Texture=134588,Type="Armor",Link="|cffa335ee|Hitem:18545::::::::40:::::::|h[Leggings of Arcane Supremacy]|h|r",EquipLoc="INVTYPE_LEGS"},["Double Mail Boots"]={SubType="Mail",Level=32,id=3809,StackCount=1,Rarity=0,MinLevel=27,SellPrice=962,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:3809::::::::40:::::::|h[Double Mail Boots]|h|r"},["Pattern: Heavy Scorpid Helm"]={SubType="Leatherworking",Level=59,id=15762,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6250,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15762::::::::40:::::::|h[Pattern: Heavy Scorpid Helm]|h|r",Type="Recipe"},["90 Epic Warrior Bracelets"]={SubType="Plate",Level=90,id=20135,StackCount=1,Rarity=4,MinLevel=60,SellPrice=56732,Texture=132618,Link="|cffa335ee|Hitem:20135::::::::40:::::::|h[90 Epic Warrior Bracelets]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Codex of Holy Word: Shield IX"]={SubType="Book",Level=54,id=9018,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9018::::::::40:::::::|h[Codex of Holy Word: Shield IX]|h|r"},["Hammer of Ji'zhi"]={SubType="Two-Handed Maces",Level=73,id=21703,StackCount=1,Rarity=4,MinLevel=60,SellPrice=162298,Texture=133498,Link="|cffa335ee|Hitem:21703::::::::40:::::::|h[Hammer of Ji'zhi]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Sage's Circlet"]={SubType="Cloth",Level=31,id=10288,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1410,Texture=133693,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10288::::::::40:::::::|h[Sage's Circlet]|h|r",Type="Armor"},["Pattern: Chimeric Leggings"]={SubType="Leatherworking",Level=56,id=15746,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15746::::::::40:::::::|h[Pattern: Chimeric Leggings]|h|r",Type="Recipe"},["Siabi's Premium Tobacco"]={SubType="Quest",Level=1,id=13172,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13172::::::::40:::::::|h[Siabi's Premium Tobacco]|h|r"},["Deprecated Stormrage Boots"]={SubType="Leather",Level=60,id=13242,StackCount=1,Rarity=2,MinLevel=55,SellPrice=16114,Texture=132592,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:13242::::::::40:::::::|h[Deprecated Stormrage Boots]|h|r"},["Praetorian Wristbands"]={SubType="Leather",Level=51,id=15182,StackCount=1,Rarity=2,MinLevel=46,SellPrice=5996,Texture=132613,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15182::::::::40:::::::|h[Praetorian Wristbands]|h|r",Type="Armor"},["Simple Dress"]={SubType="Miscellaneous",Level=10,id=6786,StackCount=1,Rarity=1,MinLevel=0,SellPrice=59,Texture=135016,Type="Armor",Link="|cffffffff|Hitem:6786::::::::40:::::::|h[Simple Dress]|h|r",EquipLoc="INVTYPE_ROBE"},["Grand Marshal's Aegis"]={SubType="Shields",Level=78,id=18825,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31807,Texture=134951,Type="Armor",Link="|cffa335ee|Hitem:18825::::::::40:::::::|h[Grand Marshal's Aegis]|h|r",EquipLoc="INVTYPE_SHIELD"},["68 Pound Grouper"]={SubType="Junk",Level=45,id=13880,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37,Texture=133892,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13880::::::::40:::::::|h[68 Pound Grouper]|h|r"},["Cutthroat's Vest"]={SubType="Leather",Level=34,id=15130,StackCount=1,Rarity=2,MinLevel=29,SellPrice=3252,Texture=132719,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15130::::::::40:::::::|h[Cutthroat's Vest]|h|r",Type="Armor"},["Skull Splitting Crossbow"]={SubType="Crossbows",Level=48,id=13039,StackCount=1,Rarity=3,MinLevel=43,SellPrice=17892,Texture=135533,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13039::::::::40:::::::|h[Skull Splitting Crossbow]|h|r"},["Captain Sander's Treasure Map"]={SubType="Quest",Level=10,id=1357,StackCount=1,Rarity=1,MinLevel=10,SellPrice=0,Texture=134269,Link="|cffffffff|Hitem:1357::::::::40:::::::|h[Captain Sander's Treasure Map]|h|r",EquipLoc="",Type="Quest"},["Logistics Task Briefing II"]={SubType="Quest",Level=60,id=20939,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:20939::::::::40:::::::|h[Logistics Task Briefing II]|h|r",EquipLoc="",Type="Quest"},["Etched Parchment"]={SubType="Quest",Level=1,id=9553,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:9553::::::::40:::::::|h[Etched Parchment]|h|r",EquipLoc="",Type="Quest"},["Brocade Cloak"]={SubType="Cloth",Level=24,id=1774,StackCount=1,Rarity=0,MinLevel=19,SellPrice=281,Texture=133768,Link="|cff9d9d9d|Hitem:1774::::::::40:::::::|h[Brocade Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Tome of Fireball IX"]={SubType="Book",Level=48,id=8860,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=133739,Link="|cffffffff|Hitem:8860::::::::40:::::::|h[Tome of Fireball IX]|h|r",EquipLoc="",Type="Recipe"},["Saltstone Shoulder Pads"]={SubType="Plate",Level=41,id=14901,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3494,Texture=135036,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14901::::::::40:::::::|h[Saltstone Shoulder Pads]|h|r"},["Cindercloth Robe"]={SubType="Cloth",Level=45,id=10042,StackCount=1,Rarity=2,MinLevel=40,SellPrice=6644,Texture=132666,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:10042::::::::40:::::::|h[Cindercloth Robe]|h|r",Type="Armor"},["War Paint Anklewraps"]={SubType="Mail",Level=17,id=14722,StackCount=1,Rarity=2,MinLevel=12,SellPrice=424,Texture=132540,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14722::::::::40:::::::|h[War Paint Anklewraps]|h|r"},["Soul Stained Pike"]={SubType="Quest",Level=1,id=12847,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135129,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12847::::::::40:::::::|h[Soul Stained Pike]|h|r"},["Pattern: Icy Scale Bracers"]={SubType="Tailoring",Level=80,id=22698,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37500,Texture=134939,Link="|cffffffff|Hitem:22698::::::::40:::::::|h[Pattern: Icy Scale Bracers]|h|r",EquipLoc="",Type="Recipe"},["Monster - Torch"]={SubType="One-Handed Maces",Level=1,id=1906,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135805,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:1906::::::::40:::::::|h[Monster - Torch]|h|r",Type="Weapon"},["Spiritshroud Leggings"]={SubType="Cloth",Level=63,id=12965,StackCount=1,Rarity=3,MinLevel=58,SellPrice=22344,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:12965::::::::40:::::::|h[Spiritshroud Leggings]|h|r"},["Talisman of Ascendance"]={SubType="Miscellaneous",Level=60,id=22678,StackCount=1,Rarity=4,MinLevel=0,SellPrice=111303,Texture=134123,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:22678::::::::40:::::::|h[Talisman of Ascendance]|h|r"},["Shroud of Unspoken Names"]={SubType="Cloth",Level=67,id=21418,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133772,Link="|cffa335ee|Hitem:21418::::::::40:::::::|h[Shroud of Unspoken Names]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Mighty Iron Hammer"]={SubType="One-Handed Maces",Level=30,id=3492,StackCount=1,Rarity=2,MinLevel=25,SellPrice=4552,Texture=133041,Link="|cff1eff00|Hitem:3492::::::::40:::::::|h[Mighty Iron Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Staff of Metanoia"]={SubType="Staves",Level=62,id=22394,StackCount=1,Rarity=3,MinLevel=57,SellPrice=69400,Texture=135166,Link="|cff0070dd|Hitem:22394::::::::40:::::::|h[Staff of Metanoia]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Squashed Rabbit Carcass"]={SubType="Junk",Level=5,id=4879,StackCount=5,Rarity=0,MinLevel=0,SellPrice=7,Texture=134368,EquipLoc="",Link="|cff9d9d9d|Hitem:4879::::::::40:::::::|h[Squashed Rabbit Carcass]|h|r",Type="Miscellaneous"},["Iron Knuckles"]={SubType="Fist Weapons",Level=26,id=2942,StackCount=1,Rarity=3,MinLevel=21,SellPrice=3663,Texture=132938,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:2942::::::::40:::::::|h[Iron Knuckles]|h|r",Type="Weapon"},["Pattern: Heavy Scorpid Gauntlets"]={SubType="Leatherworking",Level=55,id=15738,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134939,EquipLoc="",Link="|cff1eff00|Hitem:15738::::::::40:::::::|h[Pattern: Heavy Scorpid Gauntlets]|h|r",Type="Recipe"},["Halberd of Smiting"]={SubType="Polearms",Level=66,id=19874,StackCount=1,Rarity=4,MinLevel=60,SellPrice=112009,Texture=135582,Link="|cffa335ee|Hitem:19874::::::::40:::::::|h[Halberd of Smiting]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Scarlet Kris"]={SubType="Daggers",Level=63,id=5267,StackCount=1,Rarity=3,MinLevel=58,SellPrice=59851,Texture=135639,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:5267::::::::40:::::::|h[Scarlet Kris]|h|r",Type="Weapon"},["Monster - Bow, Brown"]={SubType="Bows",Level=1,id=5260,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135493,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:5260::::::::40:::::::|h[Monster - Bow, Brown]|h|r"},["Ceremonial Cloak"]={SubType="Cloth",Level=12,id=4692,StackCount=1,Rarity=1,MinLevel=7,SellPrice=68,Texture=133759,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:4692::::::::40:::::::|h[Ceremonial Cloak]|h|r",Type="Armor"},["Buccaneer's Gloves"]={SubType="Cloth",Level=20,id=14168,StackCount=1,Rarity=2,MinLevel=15,SellPrice=275,Texture=132950,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14168::::::::40:::::::|h[Buccaneer's Gloves]|h|r"},["Ravager's Handwraps"]={SubType="Mail",Level=40,id=14772,StackCount=1,Rarity=2,MinLevel=35,SellPrice=3284,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14772::::::::40:::::::|h[Ravager's Handwraps]|h|r"},["Arctic Ring"]={SubType="Miscellaneous",Level=53,id=12014,StackCount=1,Rarity=2,MinLevel=48,SellPrice=6289,Texture=133349,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12014::::::::40:::::::|h[Arctic Ring]|h|r"},["High Warlord's Destroyer"]={SubType="Two-Handed Maces",Level=78,id=23465,StackCount=1,Rarity=4,MinLevel=60,SellPrice=57089,Texture=133484,Link="|cffa335ee|Hitem:23465::::::::40:::::::|h[High Warlord's Destroyer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Reins of the Primal Leopard"]={SubType="Junk",Level=40,id=12325,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132242,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:12325::::::::40:::::::|h[Reins of the Primal Leopard]|h|r"},["Pauldrons of Elemental Fury"]={SubType="Mail",Level=85,id=23664,StackCount=1,Rarity=4,MinLevel=60,SellPrice=96825,Texture=135032,Link="|cffa335ee|Hitem:23664::::::::40:::::::|h[Pauldrons of Elemental Fury]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Grimoire of Immolate IV"]={SubType="Book",Level=34,id=4205,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4205::::::::40:::::::|h[Grimoire of Immolate IV]|h|r"},["Heavy Linen Gloves"]={SubType="Cloth",Level=10,id=4307,StackCount=1,Rarity=1,MinLevel=5,SellPrice=29,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:4307::::::::40:::::::|h[Heavy Linen Gloves]|h|r",Type="Armor"},["Book of Mark of the Wild V"]={SubType="Book",Level=40,id=8902,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133743,Link="|cffffffff|Hitem:8902::::::::40:::::::|h[Book of Mark of the Wild V]|h|r",EquipLoc="",Type="Recipe"},["Darkmoon Storage Box"]={SubType="Bag",Level=45,id=19291,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25000,Texture=132597,Link="|cffffffff|Hitem:19291::::::::40:::::::|h[Darkmoon Storage Box]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Loose Chain Belt"]={SubType="Mail",Level=8,id=2635,StackCount=1,Rarity=0,MinLevel=3,SellPrice=16,Texture=132495,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:2635::::::::40:::::::|h[Loose Chain Belt]|h|r"},["The Eye of Zuldazar"]={SubType="Miscellaneous",Level=60,id=19591,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133310,Link="|cff1eff00|Hitem:19591::::::::40:::::::|h[The Eye of Zuldazar]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Symbolic Vambraces"]={SubType="Plate",Level=41,id=14832,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2363,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14832::::::::40:::::::|h[Symbolic Vambraces]|h|r"},["LeCraft Rabbit Pelt"]={SubType="Quest",Level=1,id=19482,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134353,Link="|cffffffff|Hitem:19482::::::::40:::::::|h[LeCraft Rabbit Pelt]|h|r",EquipLoc="",Type="Quest"},["Willey's Back Scratcher"]={SubType="Fist Weapons",Level=61,id=22404,StackCount=1,Rarity=3,MinLevel=56,SellPrice=54793,Texture=135652,Link="|cff0070dd|Hitem:22404::::::::40:::::::|h[Willey's Back Scratcher]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Big Stick"]={SubType="Staves",Level=37,id=12251,StackCount=1,Rarity=2,MinLevel=32,SellPrice=10779,Texture=135158,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:12251::::::::40:::::::|h[Big Stick]|h|r"},["Pattern: Gloves of the Greatfather"]={SubType="Leatherworking",Level=38,id=17722,StackCount=1,Rarity=2,MinLevel=0,SellPrice=700,Texture=134939,EquipLoc="",Link="|cff1eff00|Hitem:17722::::::::40:::::::|h[Pattern: Gloves of the Greatfather]|h|r",Type="Recipe"},["Elunite Dagger"]={SubType="Daggers",Level=15,id=6969,StackCount=1,Rarity=2,MinLevel=0,SellPrice=701,Texture=135641,Link="|cff1eff00|Hitem:6969::::::::40:::::::|h[Elunite Dagger]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Skylord Plume"]={SubType="Quest",Level=1,id=19025,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132926,Link="|cffffffff|Hitem:19025::::::::40:::::::|h[Skylord Plume]|h|r",EquipLoc="",Type="Quest"},["Crusader's Shield"]={SubType="Shields",Level=55,id=10195,StackCount=1,Rarity=2,MinLevel=50,SellPrice=19221,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:10195::::::::40:::::::|h[Crusader's Shield]|h|r",Type="Armor"},["Razormane Backstabber"]={SubType="Daggers",Level=21,id=5093,StackCount=1,Rarity=1,MinLevel=16,SellPrice=247,Texture=135640,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:5093::::::::40:::::::|h[Razormane Backstabber]|h|r"},["Glimmering Mail Bracers"]={SubType="Mail",Level=29,id=6387,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1228,Texture=132618,Type="Armor",Link="|cff1eff00|Hitem:6387::::::::40:::::::|h[Glimmering Mail Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Scroll of Stamina III"]={SubType="Consumable",Level=45,id=4422,StackCount=5,Rarity=1,MinLevel=35,SellPrice=112,Texture=134943,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:4422::::::::40:::::::|h[Scroll of Stamina III]|h|r"},["Codex of Holy Protection II"]={SubType="Book",Level=40,id=8987,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8987::::::::40:::::::|h[Codex of Holy Protection II]|h|r"},["Formula: Enchant Shield - Stamina"]={SubType="Enchanting",Level=42,id=11202,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1100,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11202::::::::40:::::::|h[Formula: Enchant Shield - Stamina]|h|r",EquipLoc=""},["Weapon of Massive Destruction (test)"]={SubType="Junk",Level=1,id=5417,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133712,EquipLoc="",Link="|cffffffff|Hitem:5417::::::::40:::::::|h[Weapon of Massive Destruction (test)]|h|r",Type="Miscellaneous"},["Girdle of Uther"]={SubType="Plate",Level=57,id=13077,StackCount=1,Rarity=3,MinLevel=52,SellPrice=8226,Texture=132521,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13077::::::::40:::::::|h[Girdle of Uther]|h|r"},["Monster - Item, Book - Black Skull Glowing"]={SubType="Miscellaneous",Level=1,id=12750,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12750::::::::40:::::::|h[Monster - Item, Book - Black Skull Glowing]|h|r"},["Tainted Scroll"]={SubType="Quest",Level=1,id=9578,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9578::::::::40:::::::|h[Tainted Scroll]|h|r"},["Diabolic Mantle"]={SubType="Cloth",Level=62,id=18757,StackCount=1,Rarity=3,MinLevel=57,SellPrice=16162,Texture=135056,Type="Armor",Link="|cff0070dd|Hitem:18757::::::::40:::::::|h[Diabolic Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Healthstone"]={SubType="Consumable",Level=34,id=5509,StackCount=1,Rarity=1,MinLevel=24,SellPrice=0,Texture=135230,EquipLoc="",Link="|cffffffff|Hitem:5509::::::::40:::::::|h[Healthstone]|h|r",Type="Consumable"},["Devout Sandals"]={SubType="Cloth",Level=59,id=16691,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14005,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16691::::::::40:::::::|h[Devout Sandals]|h|r",Type="Armor"},["Tin Ore"]={SubType="Trade Goods",Level=20,id=2771,StackCount=10,Rarity=1,MinLevel=0,SellPrice=25,Texture=134579,Type="Trade Goods",Link="|cffffffff|Hitem:2771::::::::40:::::::|h[Tin Ore]|h|r",EquipLoc=""},["Magic Resistance Potion"]={SubType="Consumable",Level=42,id=9036,StackCount=5,Rarity=1,MinLevel=32,SellPrice=20,Texture=134787,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9036::::::::40:::::::|h[Magic Resistance Potion]|h|r"},["Hookfang Shanker"]={SubType="Daggers",Level=54,id=11635,StackCount=1,Rarity=3,MinLevel=49,SellPrice=35451,Texture=135646,Type="Weapon",Link="|cff0070dd|Hitem:11635::::::::40:::::::|h[Hookfang Shanker]|h|r",EquipLoc="INVTYPE_WEAPON"},["Scout's Blade"]={SubType="Daggers",Level=63,id=19542,StackCount=1,Rarity=3,MinLevel=58,SellPrice=59534,Texture=135651,Link="|cff0070dd|Hitem:19542::::::::40:::::::|h[Scout's Blade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Goblin Deviled Clams"]={SubType="Consumable",Level=25,id=5527,StackCount=20,Rarity=1,MinLevel=15,SellPrice=95,Texture=134431,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5527::::::::40:::::::|h[Goblin Deviled Clams]|h|r"},["Lavastone Hammer"]={SubType="Two-Handed Maces",Level=58,id=22208,StackCount=1,Rarity=3,MinLevel=53,SellPrice=57079,Texture=133047,Link="|cff0070dd|Hitem:22208::::::::40:::::::|h[Lavastone Hammer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Monster - Item, Flowers - Boquet Wildflowers"]={SubType="Miscellaneous",Level=1,id=6233,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133941,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:6233::::::::40:::::::|h[Monster - Item, Flowers - Boquet Wildflowers]|h|r"},["Ghostweave Belt"]={SubType="Cloth",Level=53,id=14143,StackCount=1,Rarity=2,MinLevel=48,SellPrice=5763,Texture=132505,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14143::::::::40:::::::|h[Ghostweave Belt]|h|r"},["Feral Cloak"]={SubType="Cloth",Level=15,id=15309,StackCount=1,Rarity=2,MinLevel=10,SellPrice=220,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15309::::::::40:::::::|h[Feral Cloak]|h|r",Type="Armor"},["Sprouted Frond"]={SubType="Consumable",Level=15,id=5205,StackCount=10,Rarity=1,MinLevel=5,SellPrice=31,Texture=134184,EquipLoc="",Link="|cffffffff|Hitem:5205::::::::40:::::::|h[Sprouted Frond]|h|r",Type="Consumable"},["Evoroot"]={SubType="Quest",Level=1,id=11242,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134193,Type="Quest",Link="|cffffffff|Hitem:11242::::::::40:::::::|h[Evoroot]|h|r",EquipLoc=""},["Fire Hardened Gauntlets"]={SubType="Mail",Level=31,id=6974,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1497,Texture=132938,Link="|cff1eff00|Hitem:6974::::::::40:::::::|h[Fire Hardened Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Ebonhold Boots"]={SubType="Mail",Level=55,id=8269,StackCount=1,Rarity=2,MinLevel=50,SellPrice=14362,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:8269::::::::40:::::::|h[Ebonhold Boots]|h|r"},["Battered Leather Harness"]={SubType="Leather",Level=10,id=2370,StackCount=1,Rarity=1,MinLevel=5,SellPrice=75,Texture=132719,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:2370::::::::40:::::::|h[Battered Leather Harness]|h|r",Type="Armor"},["Level 55 Test Gear Plate - Paladin/Warrior"]={SubType="Junk",Level=1,id=13683,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13683::::::::40:::::::|h[Level 55 Test Gear Plate - Paladin/Warrior]|h|r"},["Warlord's Mail Helm"]={SubType="Mail",Level=74,id=16578,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29117,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16578::::::::40:::::::|h[Warlord's Mail Helm]|h|r",Type="Armor"},["Electrocutioner Leg"]={SubType="One-Handed Swords",Level=34,id=9446,StackCount=1,Rarity=3,MinLevel=29,SellPrice=7564,Texture=135340,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:9446::::::::40:::::::|h[Electrocutioner Leg]|h|r"},["Scepter of the Unholy"]={SubType="One-Handed Maces",Level=63,id=13349,StackCount=1,Rarity=3,MinLevel=58,SellPrice=58429,Texture=133482,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:13349::::::::40:::::::|h[Scepter of the Unholy]|h|r"},["Minor Wizard Oil"]={SubType="Trade Goods",Level=15,id=20744,StackCount=1,Rarity=1,MinLevel=5,SellPrice=500,Texture=134711,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:20744::::::::40:::::::|h[Minor Wizard Oil]|h|r"},["Therazane's Link"]={SubType="Mail",Level=83,id=19380,StackCount=1,Rarity=4,MinLevel=60,SellPrice=59561,Texture=132507,Link="|cffa335ee|Hitem:19380::::::::40:::::::|h[Therazane's Link]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Tablet of Strength of Earth Totem"]={SubType="Book",Level=10,id=9046,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9046::::::::40:::::::|h[Tablet of Strength of Earth Totem]|h|r"},["Flawless Fel Essence (Jaedenar)"]={SubType="Quest",Level=1,id=18622,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135228,Type="Quest",Link="|cffffffff|Hitem:18622::::::::40:::::::|h[Flawless Fel Essence (Jaedenar)]|h|r",EquipLoc=""},["Monster - Axe, Horde Badass Copper 01 (Special1H)"]={SubType="One-Handed Axes",Level=1,id=12348,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12348::::::::40:::::::|h[Monster - Axe, Horde Badass Copper 01 (Special1H)]|h|r"},["Netherwind Gloves"]={SubType="Cloth",Level=76,id=16913,StackCount=1,Rarity=4,MinLevel=60,SellPrice=28109,Texture=132948,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16913::::::::40:::::::|h[Netherwind Gloves]|h|r",Type="Armor"},["Vital Orb"]={SubType="Miscellaneous",Level=37,id=15977,StackCount=1,Rarity=2,MinLevel=32,SellPrice=4614,Texture=134333,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15977::::::::40:::::::|h[Vital Orb]|h|r",Type="Armor"},["Bloodspattered Gloves"]={SubType="Mail",Level=15,id=15491,StackCount=1,Rarity=2,MinLevel=10,SellPrice=211,Texture=132949,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15491::::::::40:::::::|h[Bloodspattered Gloves]|h|r",Type="Armor"},["Slagplate Leggings"]={SubType="Plate",Level=48,id=19124,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8259,Texture=134584,Link="|cff1eff00|Hitem:19124::::::::40:::::::|h[Slagplate Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Cuergo's Key"]={SubType="Quest",Level=1,id=9275,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134235,Link="|cffffffff|Hitem:9275::::::::40:::::::|h[Cuergo's Key]|h|r",EquipLoc="",Type="Quest"},["Recipe: Crocolisk Steak"]={SubType="Cooking",Level=15,id=3678,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=134939,Link="|cffffffff|Hitem:3678::::::::40:::::::|h[Recipe: Crocolisk Steak]|h|r",EquipLoc="",Type="Recipe"},["Aegis of Stormwind"]={SubType="Shields",Level=54,id=1203,StackCount=1,Rarity=3,MinLevel=49,SellPrice=23505,Texture=134952,EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:1203::::::::40:::::::|h[Aegis of Stormwind]|h|r",Type="Armor"},["Spirit of Silverpine Log"]={SubType="Quest",Level=1,id=4490,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133735,Link="|cffffffff|Hitem:4490::::::::40:::::::|h[Spirit of Silverpine Log]|h|r",EquipLoc="",Type="Quest"},["Tablet of Windfury Weapon III"]={SubType="Book",Level=54,id=9160,StackCount=1,Rarity=1,MinLevel=54,SellPrice=8750,Texture=134459,Link="|cffffffff|Hitem:9160::::::::40:::::::|h[Tablet of Windfury Weapon III]|h|r",EquipLoc="",Type="Recipe"},["[PH] Robe of the Shining Dawn"]={SubType="Cloth",Level=100,id=13764,StackCount=1,Rarity=1,MinLevel=100,SellPrice=71857,Texture=132645,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13764::::::::40:::::::|h[[PH] Robe of the Shining Dawn]|h|r"},["Tome of Invisibility"]={SubType="Book",Level=38,id=4160,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4160::::::::40:::::::|h[Tome of Invisibility]|h|r"},["Soulforge Helm"]={SubType="Plate",Level=60,id=22091,StackCount=1,Rarity=4,MinLevel=0,SellPrice=19845,Texture=133076,Link="|cffa335ee|Hitem:22091::::::::40:::::::|h[Soulforge Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Gryphon Mail Legguards"]={SubType="Mail",Level=50,id=15627,StackCount=1,Rarity=2,MinLevel=45,SellPrice=14493,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15627::::::::40:::::::|h[Gryphon Mail Legguards]|h|r",Type="Armor"},["Deadly Poison IV"]={SubType="Consumable",Level=54,id=8985,StackCount=20,Rarity=1,MinLevel=54,SellPrice=150,Texture=132290,Link="|cffffffff|Hitem:8985::::::::40:::::::|h[Deadly Poison IV]|h|r",EquipLoc="",Type="Consumable"},["Scroll of Protection"]={SubType="Consumable",Level=10,id=3013,StackCount=5,Rarity=1,MinLevel=1,SellPrice=25,Texture=134943,EquipLoc="",Link="|cffffffff|Hitem:3013::::::::40:::::::|h[Scroll of Protection]|h|r",Type="Consumable"},["Frozen Ectoplasm"]={SubType="Quest",Level=1,id=21936,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134800,Link="|cffffffff|Hitem:21936::::::::40:::::::|h[Frozen Ectoplasm]|h|r",EquipLoc="",Type="Quest"},["Wartorn Chain Scrap"]={SubType="Junk",Level=60,id=22374,StackCount=200,Rarity=3,MinLevel=0,SellPrice=0,Texture=134515,Link="|cff0070dd|Hitem:22374::::::::40:::::::|h[Wartorn Chain Scrap]|h|r",EquipLoc="",Type="Miscellaneous"},["Bearded Boneaxe"]={SubType="One-Handed Axes",Level=30,id=2878,StackCount=1,Rarity=3,MinLevel=25,SellPrice=5143,Texture=132405,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:2878::::::::40:::::::|h[Bearded Boneaxe]|h|r",Type="Weapon"},["Burnished Cloak"]={SubType="Cloth",Level=18,id=4695,StackCount=1,Rarity=2,MinLevel=13,SellPrice=327,Texture=133758,Link="|cff1eff00|Hitem:4695::::::::40:::::::|h[Burnished Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Demonic Figurine"]={SubType="Reagent",Level=60,id=16583,StackCount=5,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134337,EquipLoc="",Link="|cffffffff|Hitem:16583::::::::40:::::::|h[Demonic Figurine]|h|r",Type="Reagent"},["Ghastly Trousers"]={SubType="Cloth",Level=18,id=15449,StackCount=1,Rarity=2,MinLevel=0,SellPrice=425,Texture=134594,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15449::::::::40:::::::|h[Ghastly Trousers]|h|r",Type="Armor"},["Deprecated Dwarven Squire's Shirt"]={SubType="Miscellaneous",Level=1,id=101,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:101::::::::40:::::::|h[Deprecated Dwarven Squire's Shirt]|h|r"},["Deprecated Lashtail Claw"]={SubType="Quest",Level=1,id=1698,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134295,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1698::::::::40:::::::|h[Deprecated Lashtail Claw]|h|r"},["Animist's Spaulders"]={SubType="Leather",Level=68,id=19928,StackCount=1,Rarity=3,MinLevel=60,SellPrice=27168,Texture=135040,Link="|cff0070dd|Hitem:19928::::::::40:::::::|h[Animist's Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Aged Envelope"]={SubType="Quest",Level=1,id=4881,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133471,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4881::::::::40:::::::|h[Aged Envelope]|h|r"},["Lucky Trousers"]={SubType="Cloth",Level=17,id=1832,StackCount=1,Rarity=2,MinLevel=0,SellPrice=362,Texture=134586,Type="Armor",Link="|cff1eff00|Hitem:1832::::::::40:::::::|h[Lucky Trousers]|h|r",EquipLoc="INVTYPE_LEGS"},["Legionnaire's Chain Girdle"]={SubType="Mail",Level=60,id=16529,StackCount=1,Rarity=3,MinLevel=55,SellPrice=7657,Texture=132503,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16529::::::::40:::::::|h[Legionnaire's Chain Girdle]|h|r",Type="Armor"},["Mastiff Jawbone"]={SubType="Junk",Level=1,id=18237,StackCount=20,Rarity=0,MinLevel=0,SellPrice=1622,Texture=133726,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18237::::::::40:::::::|h[Mastiff Jawbone]|h|r",EquipLoc=""},["Black Bark Wristbands"]={SubType="Cloth",Level=71,id=20626,StackCount=1,Rarity=4,MinLevel=60,SellPrice=21638,Texture=132606,Link="|cffa335ee|Hitem:20626::::::::40:::::::|h[Black Bark Wristbands]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Soulforge Gauntlets"]={SubType="Plate",Level=55,id=22090,StackCount=1,Rarity=4,MinLevel=0,SellPrice=10038,Texture=132953,Link="|cffa335ee|Hitem:22090::::::::40:::::::|h[Soulforge Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Defender Shield"]={SubType="Shields",Level=23,id=6572,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1323,Texture=134952,Type="Armor",Link="|cff1eff00|Hitem:6572::::::::40:::::::|h[Defender Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Baron Longshore's Head"]={SubType="Quest",Level=1,id=5084,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,EquipLoc="",Link="|cffffffff|Hitem:5084::::::::40:::::::|h[Baron Longshore's Head]|h|r",Type="Quest"},["Six of Beasts"]={SubType="Junk",Level=1,id=19234,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134482,Link="|cff0070dd|Hitem:19234::::::::40:::::::|h[Six of Beasts]|h|r",EquipLoc="",Type="Miscellaneous"},["Luffa"]={SubType="Miscellaneous",Level=50,id=19141,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16612,Texture=132911,Link="|cff1eff00|Hitem:19141::::::::40:::::::|h[Luffa]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Empty Cursed Ooze Jar"]={SubType="Consumable",Level=1,id=11914,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134864,Type="Consumable",Link="|cffffffff|Hitem:11914::::::::40:::::::|h[Empty Cursed Ooze Jar]|h|r",EquipLoc=""},["Red Leather C03 Breastplate"]={SubType="Leather",Level=1,id=3528,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132715,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:3528::::::::40:::::::|h[Red Leather C03 Breastplate]|h|r",Type="Armor"},["Second Mosh'aru Tablet"]={SubType="Quest",Level=1,id=10661,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134421,EquipLoc="",Link="|cffffffff|Hitem:10661::::::::40:::::::|h[Second Mosh'aru Tablet]|h|r",Type="Quest"},["Bloated Mightfish"]={SubType="Consumable",Level=45,id=21243,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=134301,Link="|cffffffff|Hitem:21243::::::::40:::::::|h[Bloated Mightfish]|h|r",EquipLoc="",Type="Consumable"},["Relic of the Light"]={SubType="Miscellaneous",Level=40,id=3791,StackCount=1,Rarity=1,MinLevel=35,SellPrice=3000,Texture=134249,Type="Armor",Link="|cffffffff|Hitem:3791::::::::40:::::::|h[Relic of the Light]|h|r",EquipLoc="INVTYPE_TRINKET"},["Inventor's Focal Sword"]={SubType="One-Handed Swords",Level=53,id=17719,StackCount=1,Rarity=3,MinLevel=48,SellPrice=32106,Texture=135312,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:17719::::::::40:::::::|h[Inventor's Focal Sword]|h|r",Type="Weapon"},["Ransom Letter"]={SubType="Quest",Level=1,id=21029,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134329,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:21029::::::::40:::::::|h[Ransom Letter]|h|r"},["Heavy Weave Gloves"]={SubType="Cloth",Level=17,id=839,StackCount=1,Rarity=1,MinLevel=12,SellPrice=113,Texture=132952,Type="Armor",Link="|cffffffff|Hitem:839::::::::40:::::::|h[Heavy Weave Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Sacrificial Robes"]={SubType="Cloth",Level=27,id=2566,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1322,Texture=132643,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:2566::::::::40:::::::|h[Sacrificial Robes]|h|r",Type="Armor"},["Thaurissan Family Jewels"]={SubType="Junk",Level=60,id=12033,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133650,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:12033::::::::40:::::::|h[Thaurissan Family Jewels]|h|r"},["Artisan First Aid - Heal Thyself"]={SubType="First Aid",Level=45,id=16085,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=133742,EquipLoc="",Link="|cffffffff|Hitem:16085::::::::40:::::::|h[Artisan First Aid - Heal Thyself]|h|r",Type="Recipe"},["Runed Mithril Hammer"]={SubType="One-Handed Maces",Level=49,id=7946,StackCount=1,Rarity=2,MinLevel=44,SellPrice=21660,Texture=133054,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:7946::::::::40:::::::|h[Runed Mithril Hammer]|h|r"},["Taelan's Hammer"]={SubType="Quest",Level=1,id=14613,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133038,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14613::::::::40:::::::|h[Taelan's Hammer]|h|r"},["Wildheart Bracers"]={SubType="Leather",Level=57,id=16714,StackCount=1,Rarity=3,MinLevel=52,SellPrice=10602,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16714::::::::40:::::::|h[Wildheart Bracers]|h|r",Type="Armor"},["Monster - Item, Orb - A01 Green"]={SubType="Miscellaneous",Level=1,id=20468,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135473,Link="|cff9d9d9d|Hitem:20468::::::::40:::::::|h[Monster - Item, Orb - A01 Green]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Battleworn Leather Gloves"]={SubType="Leather",Level=5,id=4914,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:4914::::::::40:::::::|h[Battleworn Leather Gloves]|h|r"},["Councillor's Cuffs"]={SubType="Cloth",Level=54,id=10096,StackCount=1,Rarity=2,MinLevel=49,SellPrice=6130,Texture=132611,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10096::::::::40:::::::|h[Councillor's Cuffs]|h|r",Type="Armor"},["Field Marshal's Dreadweave Shoulders"]={SubType="Cloth",Level=74,id=17580,StackCount=1,Rarity=4,MinLevel=60,SellPrice=19775,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:17580::::::::40:::::::|h[Field Marshal's Dreadweave Shoulders]|h|r",Type="Armor"},["Pattern: Colorful Kilt"]={SubType="Tailoring",Level=24,id=10316,StackCount=1,Rarity=2,MinLevel=0,SellPrice=200,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10316::::::::40:::::::|h[Pattern: Colorful Kilt]|h|r",Type="Recipe"},["Enchanted Coral"]={SubType="Quest",Level=1,id=20029,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135231,Link="|cffffffff|Hitem:20029::::::::40:::::::|h[Enchanted Coral]|h|r",EquipLoc="",Type="Quest"},["High Warlord's Greatsword"]={SubType="Two-Handed Swords",Level=78,id=18877,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60339,Texture=135358,Type="Weapon",Link="|cffa335ee|Hitem:18877::::::::40:::::::|h[High Warlord's Greatsword]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Sergeant Major's Chain Armguards"]={SubType="Mail",Level=63,id=18448,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8801,Texture=132605,Type="Armor",Link="|cff0070dd|Hitem:18448::::::::40:::::::|h[Sergeant Major's Chain Armguards]|h|r",EquipLoc="INVTYPE_WRIST"},["Stranglekelp"]={SubType="Trade Goods",Level=20,id=3820,StackCount=20,Rarity=1,MinLevel=0,SellPrice=100,Texture=134191,Type="Trade Goods",Link="|cffffffff|Hitem:3820::::::::40:::::::|h[Stranglekelp]|h|r",EquipLoc=""},["Loch Frenzy Delight"]={SubType="Consumable",Level=15,id=6316,StackCount=20,Rarity=1,MinLevel=5,SellPrice=3,Texture=134712,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6316::::::::40:::::::|h[Loch Frenzy Delight]|h|r"},["Monster - Sword, Scimitar Badass"]={SubType="One-Handed Swords",Level=1,id=2179,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135274,Type="Weapon",Link="|cff9d9d9d|Hitem:2179::::::::40:::::::|h[Monster - Sword, Scimitar Badass]|h|r",EquipLoc="INVTYPE_WEAPON"},["Thurman's Sewing Kit"]={SubType="Quest",Level=1,id=2760,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133633,Link="|cffffffff|Hitem:2760::::::::40:::::::|h[Thurman's Sewing Kit]|h|r",EquipLoc="",Type="Quest"},["Codex: Prayer of Fortitude"]={SubType="Book",Level=48,id=17413,StackCount=1,Rarity=3,MinLevel=48,SellPrice=7750,Texture=133741,EquipLoc="",Link="|cff0070dd|Hitem:17413::::::::40:::::::|h[Codex: Prayer of Fortitude]|h|r",Type="Recipe"},["Knucklebone Pouch (DND)"]={SubType="Miscellaneous",Level=1,id=12443,StackCount=1,Rarity=1,MinLevel=0,SellPrice=17896,Texture=133625,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:12443::::::::40:::::::|h[Knucklebone Pouch (DND)]|h|r"},["Hurricane"]={SubType="Bows",Level=53,id=2824,StackCount=1,Rarity=4,MinLevel=48,SellPrice=32032,Texture=135500,Link="|cffa335ee|Hitem:2824::::::::40:::::::|h[Hurricane]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Head of Gath'Ilzogg"]={SubType="Quest",Level=1,id=3633,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3633::::::::40:::::::|h[Head of Gath'Ilzogg]|h|r"},["Deprecated Mathystra Relic"]={SubType="Quest",Level=1,id=5333,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134333,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5333::::::::40:::::::|h[Deprecated Mathystra Relic]|h|r"},["Manastorm Leggings"]={SubType="Cloth",Level=63,id=18872,StackCount=1,Rarity=4,MinLevel=58,SellPrice=30394,Texture=134588,Type="Armor",Link="|cffa335ee|Hitem:18872::::::::40:::::::|h[Manastorm Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Legguards of the Chromatic Defier"]={SubType="Mail",Level=62,id=12903,StackCount=1,Rarity=4,MinLevel=0,SellPrice=45482,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:12903::::::::40:::::::|h[Legguards of the Chromatic Defier]|h|r"},["Tressermane Leggings"]={SubType="Leather",Level=60,id=13169,StackCount=1,Rarity=3,MinLevel=55,SellPrice=23948,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:13169::::::::40:::::::|h[Tressermane Leggings]|h|r"},["Refined Deeprock Salt"]={SubType="Trade Goods",Level=50,id=15409,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1000,Texture=133848,EquipLoc="",Link="|cffffffff|Hitem:15409::::::::40:::::::|h[Refined Deeprock Salt]|h|r",Type="Trade Goods"},["Battered Junkbox"]={SubType="Junk",Level=20,id=16882,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,EquipLoc="",Link="|cffffffff|Hitem:16882::::::::40:::::::|h[Battered Junkbox]|h|r",Type="Miscellaneous"},["Revenant Shoulders"]={SubType="Plate",Level=51,id=10134,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7664,Texture=135045,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10134::::::::40:::::::|h[Revenant Shoulders]|h|r",Type="Armor"},["Hexx's Key"]={SubType="Quest",Level=1,id=9472,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134235,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9472::::::::40:::::::|h[Hexx's Key]|h|r"},["Teal Kodo"]={SubType="Junk",Level=60,id=15293,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132244,EquipLoc="",Link="|cffa335ee|Hitem:15293::::::::40:::::::|h[Teal Kodo]|h|r",Type="Miscellaneous"},["Protector Armguards"]={SubType="Mail",Level=49,id=14788,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6408,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14788::::::::40:::::::|h[Protector Armguards]|h|r"},["Vial of Hatefury Blood"]={SubType="Quest",Level=1,id=6989,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134719,Type="Quest",Link="|cffffffff|Hitem:6989::::::::40:::::::|h[Vial of Hatefury Blood]|h|r",EquipLoc=""},["Ogron's Sash"]={SubType="Leather",Level=42,id=13117,StackCount=1,Rarity=3,MinLevel=37,SellPrice=3830,Texture=132504,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13117::::::::40:::::::|h[Ogron's Sash]|h|r"},["Test Potion LockBox (Warrior)"]={SubType="Junk",Level=1,id=16074,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16074::::::::40:::::::|h[Test Potion LockBox (Warrior)]|h|r",Type="Miscellaneous"},["Barkmail Leggings"]={SubType="Mail",Level=10,id=9599,StackCount=1,Rarity=2,MinLevel=0,SellPrice=142,Texture=134583,Link="|cff1eff00|Hitem:9599::::::::40:::::::|h[Barkmail Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Monster - Shield, Horde B02 Brown"]={SubType="Shields",Level=1,id=12456,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:12456::::::::40:::::::|h[Monster - Shield, Horde B02 Brown]|h|r"},["Radiant Leggings"]={SubType="Mail",Level=61,id=12420,StackCount=1,Rarity=2,MinLevel=56,SellPrice=25330,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:12420::::::::40:::::::|h[Radiant Leggings]|h|r"},["Aboriginal Vest"]={SubType="Cloth",Level=20,id=14121,StackCount=1,Rarity=2,MinLevel=15,SellPrice=579,Texture=132716,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14121::::::::40:::::::|h[Aboriginal Vest]|h|r"},["Boots of Darkness"]={SubType="Cloth",Level=28,id=7027,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1125,Texture=132539,Link="|cff1eff00|Hitem:7027::::::::40:::::::|h[Boots of Darkness]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Bloodstained Journal"]={SubType="Junk",Level=1,id=7668,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133736,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:7668::::::::40:::::::|h[Bloodstained Journal]|h|r"},["Torn Recipe Page"]={SubType="Quest",Level=0,id=20467,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:20467::::::::40:::::::|h[Torn Recipe Page]|h|r",EquipLoc="",Type="Quest"},["Deadly Scope"]={SubType="Devices",Level=42,id=10546,StackCount=5,Rarity=1,MinLevel=30,SellPrice=1500,Texture=134441,EquipLoc="",Link="|cffffffff|Hitem:10546::::::::40:::::::|h[Deadly Scope]|h|r",Type="Trade Goods"},["Furious Falchion"]={SubType="One-Handed Swords",Level=45,id=15215,StackCount=1,Rarity=2,MinLevel=40,SellPrice=16744,Texture=135314,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:15215::::::::40:::::::|h[Furious Falchion]|h|r",Type="Weapon"},["Longsword"]={SubType="One-Handed Swords",Level=26,id=923,StackCount=1,Rarity=1,MinLevel=21,SellPrice=1748,Texture=135324,Link="|cffffffff|Hitem:923::::::::40:::::::|h[Longsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Southsea Treasure"]={SubType="Quest",Level=1,id=7968,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:7968::::::::40:::::::|h[Southsea Treasure]|h|r",Type="Quest"},["Cutthroat's Belt"]={SubType="Leather",Level=31,id=15136,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1248,Texture=132500,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15136::::::::40:::::::|h[Cutthroat's Belt]|h|r",Type="Armor"},["Wicked Chain Cloak"]={SubType="Cloth",Level=28,id=15537,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1163,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15537::::::::40:::::::|h[Wicked Chain Cloak]|h|r",Type="Armor"},["Legplates of Blazing Light"]={SubType="Plate",Level=76,id=21667,StackCount=1,Rarity=4,MinLevel=60,SellPrice=55193,Texture=134687,Link="|cffa335ee|Hitem:21667::::::::40:::::::|h[Legplates of Blazing Light]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Essence of Pain"]={SubType="Trade Goods",Level=22,id=2930,StackCount=20,Rarity=1,MinLevel=0,SellPrice=12,Texture=134743,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:2930::::::::40:::::::|h[Essence of Pain]|h|r"},["Monster - Item, Fish - Blue"]={SubType="Miscellaneous",Level=1,id=6225,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133888,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:6225::::::::40:::::::|h[Monster - Item, Fish - Blue]|h|r"},["Festive Teal Pant Suit"]={SubType="Miscellaneous",Level=1,id=21543,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132695,Link="|cffffffff|Hitem:21543::::::::40:::::::|h[Festive Teal Pant Suit]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Trader's Satchel"]={SubType="Junk",Level=1,id=10467,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133629,EquipLoc="",Link="|cffffffff|Hitem:10467::::::::40:::::::|h[Trader's Satchel]|h|r",Type="Miscellaneous"},["Mossy Tumor"]={SubType="Quest",Level=1,id=5170,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,Link="|cffffffff|Hitem:5170::::::::40:::::::|h[Mossy Tumor]|h|r",EquipLoc="",Type="Quest"},["Wicked Leather Bracers"]={SubType="Leather",Level=53,id=15084,StackCount=1,Rarity=2,MinLevel=48,SellPrice=7311,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15084::::::::40:::::::|h[Wicked Leather Bracers]|h|r",Type="Armor"},["Tear Stained Handkerchief"]={SubType="Junk",Level=1,id=18233,StackCount=5,Rarity=0,MinLevel=0,SellPrice=130,Texture=133678,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18233::::::::40:::::::|h[Tear Stained Handkerchief]|h|r",EquipLoc=""},["Rotten Apple"]={SubType="Quest",Level=1,id=15875,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133976,EquipLoc="",Link="|cffffffff|Hitem:15875::::::::40:::::::|h[Rotten Apple]|h|r",Type="Quest"},["Powerful Seaforium Charge"]={SubType="Explosives",Level=55,id=18594,StackCount=10,Rarity=1,MinLevel=0,SellPrice=3000,Texture=136152,Type="Trade Goods",Link="|cffffffff|Hitem:18594::::::::40:::::::|h[Powerful Seaforium Charge]|h|r",EquipLoc=""},["Necklace of the Dawn"]={SubType="Miscellaneous",Level=60,id=13811,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8988,Texture=133438,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:13811::::::::40:::::::|h[Necklace of the Dawn]|h|r"},["Elixir of Superior Defense"]={SubType="Consumable",Level=53,id=13445,StackCount=5,Rarity=1,MinLevel=43,SellPrice=500,Texture=134846,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13445::::::::40:::::::|h[Elixir of Superior Defense]|h|r"},["Zulian Mudskunk"]={SubType="Quest",Level=1,id=19975,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133891,Link="|cffffffff|Hitem:19975::::::::40:::::::|h[Zulian Mudskunk]|h|r",EquipLoc="",Type="Quest"},["Deprecated Small White Pouch"]={SubType="Bag",Level=5,id=2115,StackCount=1,Rarity=1,MinLevel=0,SellPrice=125,Texture=133627,Type="Container",Link="|cffffffff|Hitem:2115::::::::40:::::::|h[Deprecated Small White Pouch]|h|r",EquipLoc="INVTYPE_BAG"},["Charred Wand"]={SubType="Wands",Level=28,id=5250,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2646,Texture=135139,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5250::::::::40:::::::|h[Charred Wand]|h|r"},["Swift Zulian Tiger"]={SubType="Junk",Level=60,id=19902,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132242,Link="|cffa335ee|Hitem:19902::::::::40:::::::|h[Swift Zulian Tiger]|h|r",EquipLoc="",Type="Miscellaneous"},["Brass-studded Bracers"]={SubType="Mail",Level=10,id=1182,StackCount=1,Rarity=1,MinLevel=0,SellPrice=44,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:1182::::::::40:::::::|h[Brass-studded Bracers]|h|r",Type="Armor"},["Formula: Enchant 2H Weapon - Agility"]={SubType="Enchanting",Level=58,id=22392,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6250,Texture=134327,Link="|cffffffff|Hitem:22392::::::::40:::::::|h[Formula: Enchant 2H Weapon - Agility]|h|r",EquipLoc="",Type="Recipe"},["Elixir of the Sages"]={SubType="Consumable",Level=54,id=13447,StackCount=5,Rarity=1,MinLevel=44,SellPrice=1250,Texture=134809,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13447::::::::40:::::::|h[Elixir of the Sages]|h|r"},["Two of Portals"]={SubType="Junk",Level=1,id=19278,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134492,Link="|cff0070dd|Hitem:19278::::::::40:::::::|h[Two of Portals]|h|r",EquipLoc="",Type="Miscellaneous"},["Worn Leather Vest"]={SubType="Leather",Level=9,id=1425,StackCount=1,Rarity=0,MinLevel=4,SellPrice=37,Texture=135009,EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:1425::::::::40:::::::|h[Worn Leather Vest]|h|r",Type="Armor"},["Knight's Headguard"]={SubType="Mail",Level=38,id=7456,StackCount=1,Rarity=2,MinLevel=33,SellPrice=4139,Texture=132767,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7456::::::::40:::::::|h[Knight's Headguard]|h|r"},["Junglevine Wine"]={SubType="Consumable",Level=1,id=4595,StackCount=10,Rarity=1,MinLevel=0,SellPrice=75,Texture=132796,Link="|cffffffff|Hitem:4595::::::::40:::::::|h[Junglevine Wine]|h|r",EquipLoc="",Type="Consumable"},["Cask of Evershine"]={SubType="Quest",Level=1,id=2696,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132620,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2696::::::::40:::::::|h[Cask of Evershine]|h|r"},["Recipe: Holy Protection Potion"]={SubType="Alchemy",Level=20,id=6053,StackCount=1,Rarity=1,MinLevel=0,SellPrice=200,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:6053::::::::40:::::::|h[Recipe: Holy Protection Potion]|h|r",EquipLoc=""},["Craftsman's Writ - Runecloth Boots"]={SubType="Junk",Level=60,id=22610,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22610::::::::40:::::::|h[Craftsman's Writ - Runecloth Boots]|h|r"},["Deep Earth Spaulders"]={SubType="Mail",Level=71,id=18829,StackCount=1,Rarity=4,MinLevel=60,SellPrice=48836,Texture=135035,Type="Armor",Link="|cffa335ee|Hitem:18829::::::::40:::::::|h[Deep Earth Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Seafury Boots"]={SubType="Mail",Level=68,id=20262,StackCount=1,Rarity=3,MinLevel=60,SellPrice=32135,Texture=132554,Link="|cff0070dd|Hitem:20262::::::::40:::::::|h[Seafury Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Bloodlust Epaulets"]={SubType="Mail",Level=57,id=14806,StackCount=1,Rarity=2,MinLevel=52,SellPrice=15560,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14806::::::::40:::::::|h[Bloodlust Epaulets]|h|r"},["Codex of Heal III"]={SubType="Book",Level=28,id=4270,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133741,Link="|cffffffff|Hitem:4270::::::::40:::::::|h[Codex of Heal III]|h|r",EquipLoc="",Type="Recipe"},["Foreman's Leggings"]={SubType="Mail",Level=20,id=2166,StackCount=1,Rarity=2,MinLevel=15,SellPrice=810,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:2166::::::::40:::::::|h[Foreman's Leggings]|h|r"},["Cadet Boots"]={SubType="Mail",Level=13,id=9759,StackCount=1,Rarity=1,MinLevel=8,SellPrice=138,Texture=132582,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:9759::::::::40:::::::|h[Cadet Boots]|h|r"},["Imposing Bracers"]={SubType="Leather",Level=43,id=15163,StackCount=1,Rarity=2,MinLevel=38,SellPrice=3344,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15163::::::::40:::::::|h[Imposing Bracers]|h|r",Type="Armor"},["Band of Reanimation"]={SubType="Miscellaneous",Level=83,id=22961,StackCount=1,Rarity=4,MinLevel=60,SellPrice=113642,Texture=133391,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:22961::::::::40:::::::|h[Band of Reanimation]|h|r"},["Deprecated Worn Pants"]={SubType="Cloth",Level=1,id=2106,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134581,Link="|cff9d9d9d|Hitem:2106::::::::40:::::::|h[Deprecated Worn Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Monster - Shield, Scarlet Crusade A02"]={SubType="Shields",Level=1,id=12932,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:12932::::::::40:::::::|h[Monster - Shield, Scarlet Crusade A02]|h|r"},["Plans: Arcanite Reaper"]={SubType="Blacksmithing",Level=63,id=12838,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12838::::::::40:::::::|h[Plans: Arcanite Reaper]|h|r"},["Codex of Prayer of Healing III"]={SubType="Book",Level=50,id=9008,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9008::::::::40:::::::|h[Codex of Prayer of Healing III]|h|r"},["Superior Shoulders"]={SubType="Leather",Level=27,id=9807,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1255,Texture=135039,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9807::::::::40:::::::|h[Superior Shoulders]|h|r"},["Headbasher"]={SubType="Two-Handed Maces",Level=26,id=1264,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3671,Texture=133482,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1264::::::::40:::::::|h[Headbasher]|h|r",Type="Weapon"},["Frightmaw Hide"]={SubType="Cloth",Level=52,id=22230,StackCount=1,Rarity=3,MinLevel=0,SellPrice=9978,Texture=133755,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:22230::::::::40:::::::|h[Frightmaw Hide]|h|r"},["Dragonstalker's Gauntlets"]={SubType="Mail",Level=76,id=16940,StackCount=1,Rarity=4,MinLevel=60,SellPrice=43275,Texture=132944,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16940::::::::40:::::::|h[Dragonstalker's Gauntlets]|h|r",Type="Armor"},["Ruined Bat Hide"]={SubType="Junk",Level=1,id=3259,StackCount=5,Rarity=1,MinLevel=0,SellPrice=5,Texture=134370,Type="Miscellaneous",Link="|cffffffff|Hitem:3259::::::::40:::::::|h[Ruined Bat Hide]|h|r",EquipLoc=""},["Nightscape Pants"]={SubType="Leather",Level=46,id=8193,StackCount=1,Rarity=2,MinLevel=41,SellPrice=8708,Texture=134591,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:8193::::::::40:::::::|h[Nightscape Pants]|h|r"},["Hibernal Cloak"]={SubType="Cloth",Level=46,id=8109,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5011,Texture=133767,Link="|cff1eff00|Hitem:8109::::::::40:::::::|h[Hibernal Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Glacial Stone"]={SubType="Two-Handed Maces",Level=31,id=5815,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5871,Texture=133484,Link="|cff1eff00|Hitem:5815::::::::40:::::::|h[Glacial Stone]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Mighty Girdle"]={SubType="Leather",Level=59,id=10145,StackCount=1,Rarity=2,MinLevel=54,SellPrice=9755,Texture=132501,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10145::::::::40:::::::|h[Mighty Girdle]|h|r",Type="Armor"},["Black Mageweave Vest"]={SubType="Cloth",Level=41,id=9998,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4815,Texture=132718,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9998::::::::40:::::::|h[Black Mageweave Vest]|h|r"},["Spellweaver's Turban"]={SubType="Cloth",Level=63,id=22267,StackCount=1,Rarity=3,MinLevel=60,SellPrice=17870,Texture=133164,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:22267::::::::40:::::::|h[Spellweaver's Turban]|h|r"},["Warforged Chestplate"]={SubType="Plate",Level=57,id=11195,StackCount=1,Rarity=2,MinLevel=0,SellPrice=13655,Texture=132638,Type="Armor",Link="|cff1eff00|Hitem:11195::::::::40:::::::|h[Warforged Chestplate]|h|r",EquipLoc="INVTYPE_CHEST"},["Toughened Leather Gloves"]={SubType="Leather",Level=27,id=4253,StackCount=1,Rarity=3,MinLevel=22,SellPrice=962,Texture=132958,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:4253::::::::40:::::::|h[Toughened Leather Gloves]|h|r"},["Linked Chain Cloak"]={SubType="Cloth",Level=23,id=1749,StackCount=1,Rarity=0,MinLevel=18,SellPrice=396,Texture=133764,EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:1749::::::::40:::::::|h[Linked Chain Cloak]|h|r",Type="Armor"},["OLDThunderhorn Cleansing Totem"]={SubType="Miscellaneous",Level=1,id=4760,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135140,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:4760::::::::40:::::::|h[OLDThunderhorn Cleansing Totem]|h|r",Type="Armor"},["Rough Boomstick"]={SubType="Guns",Level=10,id=4362,StackCount=1,Rarity=2,MinLevel=5,SellPrice=187,Texture=135612,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:4362::::::::40:::::::|h[Rough Boomstick]|h|r",Type="Weapon"},["Glacial Headdress"]={SubType="Cloth",Level=83,id=23032,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60264,Texture=133155,Link="|cffa335ee|Hitem:23032::::::::40:::::::|h[Glacial Headdress]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Scroll of Intellect IV"]={SubType="Consumable",Level=60,id=10308,StackCount=5,Rarity=1,MinLevel=50,SellPrice=112,Texture=134937,EquipLoc="",Link="|cffffffff|Hitem:10308::::::::40:::::::|h[Scroll of Intellect IV]|h|r",Type="Consumable"},["Resplendent Circlet"]={SubType="Cloth",Level=62,id=14322,StackCount=1,Rarity=2,MinLevel=57,SellPrice=13712,Texture=133069,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14322::::::::40:::::::|h[Resplendent Circlet]|h|r"},["Grunt's Cape"]={SubType="Cloth",Level=19,id=15508,StackCount=1,Rarity=2,MinLevel=14,SellPrice=365,Texture=133766,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15508::::::::40:::::::|h[Grunt's Cape]|h|r",Type="Armor"},["Scrying Scope"]={SubType="Quest",Level=1,id=17224,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134440,EquipLoc="",Link="|cff1eff00|Hitem:17224::::::::40:::::::|h[Scrying Scope]|h|r",Type="Quest"},["Kodo Hunter's Leggings"]={SubType="Leather",Level=15,id=4909,StackCount=1,Rarity=2,MinLevel=0,SellPrice=368,Texture=134582,Type="Armor",Link="|cff1eff00|Hitem:4909::::::::40:::::::|h[Kodo Hunter's Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Empty Mana Jewel"]={SubType="Consumable",Level=37,id=5227,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134134,Link="|cffffffff|Hitem:5227::::::::40:::::::|h[Empty Mana Jewel]|h|r",EquipLoc="",Type="Consumable"},["Gatekeeper's Key"]={SubType="Quest",Level=1,id=5687,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134335,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5687::::::::40:::::::|h[Gatekeeper's Key]|h|r"},["99-Year-Old Port"]={SubType="Quest",Level=1,id=5334,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132797,Link="|cffffffff|Hitem:5334::::::::40:::::::|h[99-Year-Old Port]|h|r",EquipLoc="",Type="Quest"},["Monster - Item, Tankard Wooden Offhand"]={SubType="Miscellaneous",Level=1,id=13859,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=132795,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13859::::::::40:::::::|h[Monster - Item, Tankard Wooden Offhand]|h|r"},["Sturdy Recurve"]={SubType="Bows",Level=32,id=11306,StackCount=1,Rarity=2,MinLevel=27,SellPrice=3893,Texture=135495,Type="Weapon",Link="|cff1eff00|Hitem:11306::::::::40:::::::|h[Sturdy Recurve]|h|r",EquipLoc="INVTYPE_RANGED"},["Light Plate Belt"]={SubType="Plate",Level=57,id=8081,StackCount=1,Rarity=0,MinLevel=52,SellPrice=2834,Texture=132505,Link="|cff9d9d9d|Hitem:8081::::::::40:::::::|h[Light Plate Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Wooden Key"]={SubType="Key",Level=1,id=5475,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134239,EquipLoc="",Link="|cffffffff|Hitem:5475::::::::40:::::::|h[Wooden Key]|h|r",Type="Key"},["Deprecated Book of Nullify Poison III"]={SubType="Book",Level=40,id=4227,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133743,Link="|cffffffff|Hitem:4227::::::::40:::::::|h[Deprecated Book of Nullify Poison III]|h|r",EquipLoc="",Type="Recipe"},["Jarkal's Enhancing Necklace"]={SubType="Miscellaneous",Level=47,id=7888,StackCount=1,Rarity=3,MinLevel=0,SellPrice=8990,Texture=133289,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:7888::::::::40:::::::|h[Jarkal's Enhancing Necklace]|h|r"},["Deepfury Bracers"]={SubType="Leather",Level=55,id=13120,StackCount=1,Rarity=3,MinLevel=50,SellPrice=9505,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13120::::::::40:::::::|h[Deepfury Bracers]|h|r"},["Camp Narache Gift Voucher"]={SubType="Quest",Level=1,id=14650,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134140,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14650::::::::40:::::::|h[Camp Narache Gift Voucher]|h|r"},["Grimoire of Shadow Bolt X"]={SubType="Book",Level=60,id=21281,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133738,Link="|cff0070dd|Hitem:21281::::::::40:::::::|h[Grimoire of Shadow Bolt X]|h|r",EquipLoc="",Type="Recipe"},["Crisp Spider Meat"]={SubType="Trade Goods",Level=15,id=1081,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=134321,Link="|cffffffff|Hitem:1081::::::::40:::::::|h[Crisp Spider Meat]|h|r",EquipLoc="",Type="Trade Goods"},["Savage Coast Blue Sailfin"]={SubType="Quest",Level=1,id=16969,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133894,EquipLoc="",Link="|cffffffff|Hitem:16969::::::::40:::::::|h[Savage Coast Blue Sailfin]|h|r",Type="Quest"},["Fungus Shroud Armor"]={SubType="Leather",Level=51,id=17742,StackCount=1,Rarity=3,MinLevel=46,SellPrice=14450,Texture=132723,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:17742::::::::40:::::::|h[Fungus Shroud Armor]|h|r",Type="Armor"},["Frostwolf Advisor's Cloak"]={SubType="Cloth",Level=60,id=19085,StackCount=1,Rarity=3,MinLevel=55,SellPrice=15155,Texture=133768,Link="|cff0070dd|Hitem:19085::::::::40:::::::|h[Frostwolf Advisor's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Finkle's Skinner"]={SubType="Daggers",Level=63,id=12709,StackCount=1,Rarity=3,MinLevel=58,SellPrice=57991,Texture=135343,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:12709::::::::40:::::::|h[Finkle's Skinner]|h|r"},["PVP Cloth Robe Horde"]={SubType="Miscellaneous",Level=60,id=16036,StackCount=1,Rarity=1,MinLevel=0,SellPrice=9488,Texture=132649,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:16036::::::::40:::::::|h[PVP Cloth Robe Horde]|h|r",Type="Armor"},["Green Hills of Stranglethorn - Page 8"]={SubType="Junk",Level=1,id=2732,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:2732::::::::40:::::::|h[Green Hills of Stranglethorn - Page 8]|h|r",Type="Miscellaneous"},["Blade of Necromancy"]={SubType="One-Handed Swords",Level=62,id=22332,StackCount=1,Rarity=3,MinLevel=57,SellPrice=53683,Texture=135326,Link="|cff0070dd|Hitem:22332::::::::40:::::::|h[Blade of Necromancy]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Voodoo Charm"]={SubType="Quest",Level=1,id=8149,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132502,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:8149::::::::40:::::::|h[Voodoo Charm]|h|r"},["Manual of Eviscerate IX"]={SubType="Book",Level=60,id=24102,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133746,Link="|cff0070dd|Hitem:24102::::::::40:::::::|h[Manual of Eviscerate IX]|h|r",EquipLoc="",Type="Recipe"},["Resplendent Robes"]={SubType="Cloth",Level=63,id=14326,StackCount=1,Rarity=2,MinLevel=58,SellPrice=19479,Texture=132666,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14326::::::::40:::::::|h[Resplendent Robes]|h|r"},["Gauntlets of the Immovable"]={SubType="Plate",Level=68,id=21479,StackCount=1,Rarity=4,MinLevel=60,SellPrice=20491,Texture=132965,Link="|cffa335ee|Hitem:21479::::::::40:::::::|h[Gauntlets of the Immovable]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Stormpike Soldier's Cloak"]={SubType="Cloth",Level=60,id=19084,StackCount=1,Rarity=3,MinLevel=55,SellPrice=15100,Texture=133770,Link="|cff0070dd|Hitem:19084::::::::40:::::::|h[Stormpike Soldier's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Eridan's Supplies"]={SubType="Quest",Level=1,id=11617,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133647,Type="Quest",Link="|cffffffff|Hitem:11617::::::::40:::::::|h[Eridan's Supplies]|h|r",EquipLoc=""},["Cockroach"]={SubType="Junk",Level=30,id=10393,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=136128,EquipLoc="",Link="|cffffffff|Hitem:10393::::::::40:::::::|h[Cockroach]|h|r",Type="Miscellaneous"},["Tablet of Ensnaring Totem II"]={SubType="Book",Level=34,id=5714,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5714::::::::40:::::::|h[Tablet of Ensnaring Totem II]|h|r"},["Sorcerer Cloak"]={SubType="Cloth",Level=38,id=9877,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2708,Texture=133765,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9877::::::::40:::::::|h[Sorcerer Cloak]|h|r"},["Tablet of Frost Resistance Totem III"]={SubType="Book",Level=54,id=9158,StackCount=1,Rarity=1,MinLevel=54,SellPrice=8750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9158::::::::40:::::::|h[Tablet of Frost Resistance Totem III]|h|r"},["Tome of Conjure Food"]={SubType="Book",Level=6,id=4141,StackCount=1,Rarity=1,MinLevel=6,SellPrice=20,Texture=133739,Link="|cffffffff|Hitem:4141::::::::40:::::::|h[Tome of Conjure Food]|h|r",EquipLoc="",Type="Recipe"},["Ring of the Dawn"]={SubType="Miscellaneous",Level=58,id=13812,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8303,Texture=133375,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:13812::::::::40:::::::|h[Ring of the Dawn]|h|r"},["Ebon Scimitar"]={SubType="One-Handed Swords",Level=43,id=8196,StackCount=1,Rarity=2,MinLevel=38,SellPrice=13979,Texture=135346,Link="|cff1eff00|Hitem:8196::::::::40:::::::|h[Ebon Scimitar]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Minor Healthstone"]={SubType="Consumable",Level=10,id=5512,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135230,Link="|cffffffff|Hitem:5512::::::::40:::::::|h[Minor Healthstone]|h|r",EquipLoc="",Type="Consumable"},["Shredder Operating Manual - Chapter 1"]={SubType="Quest",Level=1,id=16642,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133677,EquipLoc="",Link="|cffffffff|Hitem:16642::::::::40:::::::|h[Shredder Operating Manual - Chapter 1]|h|r",Type="Quest"},["Plans: Dark Iron Destroyer"]={SubType="Blacksmithing",Level=65,id=17060,StackCount=1,Rarity=3,MinLevel=0,SellPrice=55000,Texture=134941,EquipLoc="",Link="|cff0070dd|Hitem:17060::::::::40:::::::|h[Plans: Dark Iron Destroyer]|h|r",Type="Recipe"},["TEST Translation: Taurahe"]={SubType="Consumable",Level=0,id=5041,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134944,Link="|cffffffff|Hitem:5041::::::::40:::::::|h[TEST Translation: Taurahe]|h|r",EquipLoc="",Type="Consumable"},["Snake Hoop"]={SubType="Miscellaneous",Level=31,id=6750,StackCount=1,Rarity=2,MinLevel=0,SellPrice=897,Texture=133348,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:6750::::::::40:::::::|h[Snake Hoop]|h|r"},["Deprecated Winter Mail Boots"]={SubType="Mail",Level=24,id=3054,StackCount=1,Rarity=0,MinLevel=19,SellPrice=430,Texture=132535,Type="Armor",Link="|cff9d9d9d|Hitem:3054::::::::40:::::::|h[Deprecated Winter Mail Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Ceremonial Tomahawk"]={SubType="One-Handed Axes",Level=10,id=3443,StackCount=1,Rarity=1,MinLevel=0,SellPrice=138,Texture=135421,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:3443::::::::40:::::::|h[Ceremonial Tomahawk]|h|r"},["Blue Dragonscale Breastplate"]={SubType="Mail",Level=57,id=15048,StackCount=1,Rarity=3,MinLevel=52,SellPrice=24409,Texture=132626,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:15048::::::::40:::::::|h[Blue Dragonscale Breastplate]|h|r",Type="Armor"},["Masons Fraternity Ring"]={SubType="Miscellaneous",Level=47,id=9533,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7092,Texture=133345,Link="|cff0070dd|Hitem:9533::::::::40:::::::|h[Masons Fraternity Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Wolfclaw Gloves"]={SubType="Leather",Level=27,id=1978,StackCount=1,Rarity=3,MinLevel=22,SellPrice=980,Texture=132938,Link="|cff0070dd|Hitem:1978::::::::40:::::::|h[Wolfclaw Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Silver-thread Amice"]={SubType="Cloth",Level=29,id=6395,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1264,Texture=135036,Type="Armor",Link="|cff1eff00|Hitem:6395::::::::40:::::::|h[Silver-thread Amice]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Field Plate Boots"]={SubType="Plate",Level=41,id=9289,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3635,Texture=132535,Link="|cff1eff00|Hitem:9289::::::::40:::::::|h[Field Plate Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Warmonger's Chestpiece"]={SubType="Mail",Level=50,id=9957,StackCount=1,Rarity=2,MinLevel=45,SellPrice=13753,Texture=132759,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9957::::::::40:::::::|h[Warmonger's Chestpiece]|h|r"},["Frostsaber E'ko"]={SubType="Quest",Level=1,id=12430,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135227,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12430::::::::40:::::::|h[Frostsaber E'ko]|h|r"},["U'cha's Pelt"]={SubType="Quest",Level=1,id=11476,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134354,Type="Quest",Link="|cffffffff|Hitem:11476::::::::40:::::::|h[U'cha's Pelt]|h|r",EquipLoc=""},["Hotshot Pilot's Gloves"]={SubType="Cloth",Level=32,id=9491,StackCount=1,Rarity=3,MinLevel=27,SellPrice=1308,Texture=132950,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:9491::::::::40:::::::|h[Hotshot Pilot's Gloves]|h|r"},["Heart of Isha Awak"]={SubType="Quest",Level=1,id=5104,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Link="|cffffffff|Hitem:5104::::::::40:::::::|h[Heart of Isha Awak]|h|r",EquipLoc="",Type="Quest"},["The Frozen Clutch"]={SubType="Mail",Level=35,id=23170,StackCount=1,Rarity=3,MinLevel=30,SellPrice=2684,Texture=132945,Link="|cff0070dd|Hitem:23170::::::::40:::::::|h[The Frozen Clutch]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Vinerot Sandals"]={SubType="Cloth",Level=51,id=17748,StackCount=1,Rarity=3,MinLevel=46,SellPrice=9107,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:17748::::::::40:::::::|h[Vinerot Sandals]|h|r",Type="Armor"},["Smelting Pants"]={SubType="Leather",Level=21,id=5199,StackCount=1,Rarity=2,MinLevel=16,SellPrice=804,Texture=134582,Link="|cff1eff00|Hitem:5199::::::::40:::::::|h[Smelting Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Wild Thornroot"]={SubType="Reagent",Level=60,id=17026,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=134412,EquipLoc="",Link="|cffffffff|Hitem:17026::::::::40:::::::|h[Wild Thornroot]|h|r",Type="Reagent"},["Pledge of Loyalty: Undercity"]={SubType="Consumable",Level=1,id=22121,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134331,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22121::::::::40:::::::|h[Pledge of Loyalty: Undercity]|h|r"},["Chromite Gauntlets"]={SubType="Plate",Level=44,id=8139,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3053,Texture=132962,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:8139::::::::40:::::::|h[Chromite Gauntlets]|h|r"},["Sharpbeak's Feather"]={SubType="Quest",Level=1,id=9468,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135992,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9468::::::::40:::::::|h[Sharpbeak's Feather]|h|r"},["Triumphant Bracers"]={SubType="Mail",Level=61,id=15679,StackCount=1,Rarity=2,MinLevel=56,SellPrice=13108,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15679::::::::40:::::::|h[Triumphant Bracers]|h|r",Type="Armor"},["Lesser Invisibility Potion"]={SubType="Consumable",Level=33,id=3823,StackCount=5,Rarity=1,MinLevel=23,SellPrice=100,Texture=134798,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:3823::::::::40:::::::|h[Lesser Invisibility Potion]|h|r"},["The Postmaster's Tunic"]={SubType="Cloth",Level=61,id=13388,StackCount=1,Rarity=3,MinLevel=56,SellPrice=21117,Texture=132725,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:13388::::::::40:::::::|h[The Postmaster's Tunic]|h|r"},["90 Epic Frost Boots"]={SubType="Cloth",Level=90,id=20326,StackCount=1,Rarity=4,MinLevel=60,SellPrice=86697,Texture=132536,Link="|cffa335ee|Hitem:20326::::::::40:::::::|h[90 Epic Frost Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Scroll of Stamina"]={SubType="Consumable",Level=15,id=1180,StackCount=5,Rarity=1,MinLevel=5,SellPrice=37,Texture=134943,EquipLoc="",Link="|cffffffff|Hitem:1180::::::::40:::::::|h[Scroll of Stamina]|h|r",Type="Consumable"},["Pattern: Dark Leather Gloves"]={SubType="Leatherworking",Level=25,id=7360,StackCount=1,Rarity=2,MinLevel=0,SellPrice=400,Texture=134942,Link="|cff1eff00|Hitem:7360::::::::40:::::::|h[Pattern: Dark Leather Gloves]|h|r",EquipLoc="",Type="Recipe"},["Formula: Enchant Gloves - Fire Power"]={SubType="Enchanting",Level=70,id=20729,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25000,Texture=134327,Link="|cff0070dd|Hitem:20729::::::::40:::::::|h[Formula: Enchant Gloves - Fire Power]|h|r",EquipLoc="",Type="Recipe"},["Fang of Venoxis"]={SubType="Daggers",Level=65,id=19903,StackCount=1,Rarity=4,MinLevel=60,SellPrice=81895,Texture=135667,Link="|cffa335ee|Hitem:19903::::::::40:::::::|h[Fang of Venoxis]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Silverlaine's Family Seal"]={SubType="Miscellaneous",Level=26,id=6321,StackCount=1,Rarity=3,MinLevel=21,SellPrice=1650,Texture=132518,Link="|cff0070dd|Hitem:6321::::::::40:::::::|h[Silverlaine's Family Seal]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Monster - Bow, C02/B02 Black"]={SubType="Bows",Level=1,id=14118,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135493,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:14118::::::::40:::::::|h[Monster - Bow, C02/B02 Black]|h|r"},["Deprecated Empty Bloodstone"]={SubType="Consumable",Level=26,id=5228,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135230,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5228::::::::40:::::::|h[Deprecated Empty Bloodstone]|h|r"},["Deviate Scale Belt"]={SubType="Leather",Level=23,id=6468,StackCount=1,Rarity=3,MinLevel=18,SellPrice=658,Texture=132498,Type="Armor",Link="|cff0070dd|Hitem:6468::::::::40:::::::|h[Deviate Scale Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Golden Pearl"]={SubType="Trade Goods",Level=40,id=13926,StackCount=20,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134123,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:13926::::::::40:::::::|h[Golden Pearl]|h|r"},["Green Iron Shoulders"]={SubType="Mail",Level=32,id=3840,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2571,Texture=135040,Link="|cff1eff00|Hitem:3840::::::::40:::::::|h[Green Iron Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["OLDCeremonial Club"]={SubType="Miscellaneous",Level=1,id=4704,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3,Texture=133486,Link="|cffffffff|Hitem:4704::::::::40:::::::|h[OLDCeremonial Club]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Support Girdle"]={SubType="Leather",Level=22,id=1215,StackCount=1,Rarity=2,MinLevel=17,SellPrice=469,Texture=132498,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:1215::::::::40:::::::|h[Support Girdle]|h|r",Type="Armor"},["Talvash's Phial of Scrying"]={SubType="Quest",Level=1,id=7667,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134715,EquipLoc="",Link="|cffffffff|Hitem:7667::::::::40:::::::|h[Talvash's Phial of Scrying]|h|r",Type="Quest"},["Mooncloth Shoulders"]={SubType="Cloth",Level=61,id=14139,StackCount=1,Rarity=3,MinLevel=56,SellPrice=15840,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:14139::::::::40:::::::|h[Mooncloth Shoulders]|h|r"},["Strigid Owl Feather"]={SubType="Quest",Level=1,id=3411,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132926,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3411::::::::40:::::::|h[Strigid Owl Feather]|h|r"},["Ebonhold Shoulderpads"]={SubType="Mail",Level=54,id=8272,StackCount=1,Rarity=2,MinLevel=49,SellPrice=13697,Texture=135058,Link="|cff1eff00|Hitem:8272::::::::40:::::::|h[Ebonhold Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Slayer's Surcoat"]={SubType="Mail",Level=33,id=14751,StackCount=1,Rarity=2,MinLevel=28,SellPrice=3454,Texture=132629,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14751::::::::40:::::::|h[Slayer's Surcoat]|h|r"},["Goblin Jumper Cables XL"]={SubType="Devices",Level=53,id=18587,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2000,Texture=133869,Type="Trade Goods",Link="|cffffffff|Hitem:18587::::::::40:::::::|h[Goblin Jumper Cables XL]|h|r",EquipLoc="INVTYPE_TRINKET"},["Barman Shanker"]={SubType="Daggers",Level=55,id=12791,StackCount=1,Rarity=3,MinLevel=50,SellPrice=39411,Texture=132797,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:12791::::::::40:::::::|h[Barman Shanker]|h|r"},["Duskbringer"]={SubType="Two-Handed Swords",Level=25,id=2205,StackCount=1,Rarity=3,MinLevel=20,SellPrice=3961,Texture=135351,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:2205::::::::40:::::::|h[Duskbringer]|h|r",Type="Weapon"},["Untested Hyena Sample"]={SubType="Quest",Level=0,id=9439,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134370,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9439::::::::40:::::::|h[Untested Hyena Sample]|h|r"},["Plans: Dark Iron Sunderer"]={SubType="Blacksmithing",Level=55,id=11611,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",Link="|cff0070dd|Hitem:11611::::::::40:::::::|h[Plans: Dark Iron Sunderer]|h|r",EquipLoc=""},["Test Ammo Lockbox"]={SubType="Junk",Level=1,id=20364,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:20364::::::::40:::::::|h[Test Ammo Lockbox]|h|r",EquipLoc="",Type="Miscellaneous"},["Water Totem"]={SubType="Reagent",Level=20,id=5177,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136232,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:5177::::::::40:::::::|h[Water Totem]|h|r"},["Monster - Staff, Jeweled Yellow Staff"]={SubType="Staves",Level=1,id=13751,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13751::::::::40:::::::|h[Monster - Staff, Jeweled Yellow Staff]|h|r"},["Dreadnaught Legplates"]={SubType="Plate",Level=88,id=22417,StackCount=1,Rarity=4,MinLevel=60,SellPrice=106420,Texture=134681,Link="|cffa335ee|Hitem:22417::::::::40:::::::|h[Dreadnaught Legplates]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Manslayer"]={SubType="Two-Handed Axes",Level=39,id=10570,StackCount=1,Rarity=3,MinLevel=34,SellPrice=15875,Texture=132395,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:10570::::::::40:::::::|h[Manslayer]|h|r",Type="Weapon"},["Cherry Grog"]={SubType="Consumable",Level=35,id=4600,StackCount=20,Rarity=1,MinLevel=25,SellPrice=85,Texture=132790,EquipLoc="",Link="|cffffffff|Hitem:4600::::::::40:::::::|h[Cherry Grog]|h|r",Type="Consumable"},["[PH] Hakkar'i Urn"]={SubType="Junk",Level=40,id=10594,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,EquipLoc="",Link="|cffffffff|Hitem:10594::::::::40:::::::|h[[PH] Hakkar'i Urn]|h|r",Type="Miscellaneous"},["Reins of the Striped Nightsaber"]={SubType="Junk",Level=40,id=8629,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132225,Link="|cff0070dd|Hitem:8629::::::::40:::::::|h[Reins of the Striped Nightsaber]|h|r",EquipLoc="",Type="Miscellaneous"},["Changuk Smasher"]={SubType="One-Handed Maces",Level=50,id=17055,StackCount=1,Rarity=3,MinLevel=45,SellPrice=26747,Texture=133054,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:17055::::::::40:::::::|h[Changuk Smasher]|h|r",Type="Weapon"},["Gordok's Handwraps"]={SubType="Cloth",Level=60,id=18369,StackCount=1,Rarity=3,MinLevel=0,SellPrice=9915,Texture=132940,Type="Armor",Link="|cff0070dd|Hitem:18369::::::::40:::::::|h[Gordok's Handwraps]|h|r",EquipLoc="INVTYPE_HAND"},["Heavy Lamellar Gauntlets"]={SubType="Plate",Level=52,id=10242,StackCount=1,Rarity=2,MinLevel=47,SellPrice=5318,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10242::::::::40:::::::|h[Heavy Lamellar Gauntlets]|h|r",Type="Armor"},["Reins of the Swift Mistsaber"]={SubType="Junk",Level=60,id=18767,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132267,Type="Miscellaneous",Link="|cffa335ee|Hitem:18767::::::::40:::::::|h[Reins of the Swift Mistsaber]|h|r",EquipLoc=""},["Libram of Rapidity"]={SubType="Book",Level=50,id=18332,StackCount=1,Rarity=2,MinLevel=50,SellPrice=0,Texture=133734,Type="Recipe",Link="|cff1eff00|Hitem:18332::::::::40:::::::|h[Libram of Rapidity]|h|r",EquipLoc=""},["Permanent Spirit of Zanza"]={SubType="Consumable",Level=65,id=23795,StackCount=1,Rarity=2,MinLevel=55,SellPrice=0,Texture=134810,Link="|cff1eff00|Hitem:23795::::::::40:::::::|h[Permanent Spirit of Zanza]|h|r",EquipLoc="",Type="Consumable"},["Corrupted Soul Shard"]={SubType="Quest",Level=1,id=11515,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1,Texture=132884,Type="Quest",Link="|cffffffff|Hitem:11515::::::::40:::::::|h[Corrupted Soul Shard]|h|r",EquipLoc=""},["Grimoire of Curse of Recklessness"]={SubType="Book",Level=12,id=9199,StackCount=1,Rarity=1,MinLevel=12,SellPrice=150,Texture=133738,Link="|cffffffff|Hitem:9199::::::::40:::::::|h[Grimoire of Curse of Recklessness]|h|r",EquipLoc="",Type="Recipe"},["Lambent Scale Cloak"]={SubType="Cloth",Level=24,id=4706,StackCount=1,Rarity=2,MinLevel=19,SellPrice=687,Texture=133758,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:4706::::::::40:::::::|h[Lambent Scale Cloak]|h|r",Type="Armor"},["Ironforge Mint"]={SubType="Quest",Level=1,id=20490,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133984,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:20490::::::::40:::::::|h[Ironforge Mint]|h|r"},["Dreamweave Vest"]={SubType="Cloth",Level=45,id=10021,StackCount=1,Rarity=3,MinLevel=40,SellPrice=7946,Texture=132683,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:10021::::::::40:::::::|h[Dreamweave Vest]|h|r",Type="Armor"},["Pattern: Comfortable Leather Hat"]={SubType="Leatherworking",Level=40,id=8384,StackCount=1,Rarity=3,MinLevel=0,SellPrice=875,Texture=134939,Link="|cff0070dd|Hitem:8384::::::::40:::::::|h[Pattern: Comfortable Leather Hat]|h|r",EquipLoc="",Type="Recipe"},["Slaghide Gauntlets"]={SubType="Leather",Level=61,id=13258,StackCount=1,Rarity=3,MinLevel=56,SellPrice=13343,Texture=132956,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13258::::::::40:::::::|h[Slaghide Gauntlets]|h|r"},["Ooze-ridden Gauntlets"]={SubType="Plate",Level=75,id=21691,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26682,Texture=132945,Link="|cffa335ee|Hitem:21691::::::::40:::::::|h[Ooze-ridden Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Charger's Lost Soul"]={SubType="Quest",Level=1,id=18749,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134336,Type="Quest",Link="|cffffffff|Hitem:18749::::::::40:::::::|h[Charger's Lost Soul]|h|r",EquipLoc=""},["Native Branch"]={SubType="Miscellaneous",Level=15,id=15970,StackCount=1,Rarity=2,MinLevel=10,SellPrice=587,Texture=135465,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15970::::::::40:::::::|h[Native Branch]|h|r",Type="Armor"},["Monster - Axe, Horde Badass 02 "]={SubType="One-Handed Axes",Level=1,id=10612,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:10612::::::::40:::::::|h[Monster - Axe, Horde Badass 02 ]|h|r",Type="Weapon"},["Test Shadow Res Waist Leather"]={SubType="Leather",Level=35,id=16150,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1725,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16150::::::::40:::::::|h[Test Shadow Res Waist Leather]|h|r",Type="Armor"},["Onyx Shredder Plate"]={SubType="Mail",Level=35,id=5755,StackCount=1,Rarity=2,MinLevel=30,SellPrice=4127,Texture=132739,Link="|cff1eff00|Hitem:5755::::::::40:::::::|h[Onyx Shredder Plate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Shadowy Bracers"]={SubType="Cloth",Level=45,id=10461,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3082,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10461::::::::40:::::::|h[Shadowy Bracers]|h|r",Type="Armor"},["Cloak of Fire"]={SubType="Cloth",Level=55,id=14134,StackCount=1,Rarity=3,MinLevel=50,SellPrice=11280,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:14134::::::::40:::::::|h[Cloak of Fire]|h|r"},["Deepdive Helmet"]={SubType="Cloth",Level=46,id=10506,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5227,Texture=133151,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10506::::::::40:::::::|h[Deepdive Helmet]|h|r",Type="Armor"},["Burnished Leggings"]={SubType="Mail",Level=21,id=2990,StackCount=1,Rarity=2,MinLevel=16,SellPrice=933,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:2990::::::::40:::::::|h[Burnished Leggings]|h|r"},["Scaled Sand Reaver Leggings"]={SubType="Mail",Level=77,id=21651,StackCount=1,Rarity=4,MinLevel=60,SellPrice=88279,Texture=134662,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:21651::::::::40:::::::|h[Scaled Sand Reaver Leggings]|h|r"},["Formula: Enchant Cloak - Minor Agility"]={SubType="Enchanting",Level=22,id=11039,StackCount=1,Rarity=2,MinLevel=0,SellPrice=200,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11039::::::::40:::::::|h[Formula: Enchant Cloak - Minor Agility]|h|r",EquipLoc=""},["Bright Gloves"]={SubType="Cloth",Level=24,id=3066,StackCount=1,Rarity=2,MinLevel=19,SellPrice=497,Texture=132957,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:3066::::::::40:::::::|h[Bright Gloves]|h|r",Type="Armor"},["Schematic: Small Blue Rocket"]={SubType="Engineering",Level=25,id=21724,StackCount=1,Rarity=2,MinLevel=0,SellPrice=175,Texture=134942,Link="|cff1eff00|Hitem:21724::::::::40:::::::|h[Schematic: Small Blue Rocket]|h|r",EquipLoc="",Type="Recipe"},["Lesser Mana Oil"]={SubType="Trade Goods",Level=50,id=20747,StackCount=1,Rarity=1,MinLevel=40,SellPrice=1000,Texture=134879,Link="|cffffffff|Hitem:20747::::::::40:::::::|h[Lesser Mana Oil]|h|r",EquipLoc="",Type="Trade Goods"},["Pagan Cape"]={SubType="Cloth",Level=18,id=14161,StackCount=1,Rarity=2,MinLevel=13,SellPrice=337,Texture=133762,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14161::::::::40:::::::|h[Pagan Cape]|h|r"},["Crimson Silk Cloak"]={SubType="Cloth",Level=36,id=7056,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2314,Texture=132657,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:7056::::::::40:::::::|h[Crimson Silk Cloak]|h|r"},["Mystical Headwrap"]={SubType="Cloth",Level=55,id=10175,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9010,Texture=133163,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10175::::::::40:::::::|h[Mystical Headwrap]|h|r",Type="Armor"},["Maiden's Folly Charts"]={SubType="Quest",Level=1,id=4487,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134269,Type="Quest",Link="|cffffffff|Hitem:4487::::::::40:::::::|h[Maiden's Folly Charts]|h|r",EquipLoc=""},["Band of Unnatural Forces"]={SubType="Miscellaneous",Level=85,id=23038,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133390,Link="|cffa335ee|Hitem:23038::::::::40:::::::|h[Band of Unnatural Forces]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Renegade Boots"]={SubType="Mail",Level=36,id=9864,StackCount=1,Rarity=2,MinLevel=31,SellPrice=3527,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9864::::::::40:::::::|h[Renegade Boots]|h|r"},["Red Mageweave Gloves"]={SubType="Cloth",Level=45,id=10018,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3275,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10018::::::::40:::::::|h[Red Mageweave Gloves]|h|r",Type="Armor"},["Blademaster Leggings"]={SubType="Leather",Level=63,id=12963,StackCount=1,Rarity=3,MinLevel=58,SellPrice=27717,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:12963::::::::40:::::::|h[Blademaster Leggings]|h|r"},["Malem Pendant"]={SubType="Quest",Level=1,id=6479,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133294,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6479::::::::40:::::::|h[Malem Pendant]|h|r"},["Atal'ai Tablet Fragment"]={SubType="Quest",Level=1,id=6287,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134572,Type="Quest",Link="|cffffffff|Hitem:6287::::::::40:::::::|h[Atal'ai Tablet Fragment]|h|r",EquipLoc=""},["Tablet of Fire Nova Totem III"]={SubType="Book",Level=32,id=9085,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=134459,Link="|cffffffff|Hitem:9085::::::::40:::::::|h[Tablet of Fire Nova Totem III]|h|r",EquipLoc="",Type="Recipe"},["Doomfinger"]={SubType="Wands",Level=92,id=22821,StackCount=1,Rarity=4,MinLevel=60,SellPrice=229338,Texture=135482,Link="|cffa335ee|Hitem:22821::::::::40:::::::|h[Doomfinger]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Ahn'Qiraj Mace [PH]"]={SubType="One-Handed Maces",Level=75,id=21127,StackCount=1,Rarity=4,MinLevel=60,SellPrice=133922,Texture=133501,Link="|cffa335ee|Hitem:21127::::::::40:::::::|h[Ahn'Qiraj Mace [PH]]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Hammer of Orgrimmar"]={SubType="One-Handed Maces",Level=18,id=15445,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1127,Texture=133060,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:15445::::::::40:::::::|h[Hammer of Orgrimmar]|h|r",Type="Weapon"},["Hedgeseed Gauntlets"]={SubType="Mail",Level=24,id=5822,StackCount=1,Rarity=2,MinLevel=0,SellPrice=722,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:5822::::::::40:::::::|h[Hedgeseed Gauntlets]|h|r",Type="Armor"},["Glowing Cat Figurine"]={SubType="Junk",Level=1,id=5332,StackCount=1,Rarity=1,MinLevel=0,SellPrice=15,Texture=134176,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:5332::::::::40:::::::|h[Glowing Cat Figurine]|h|r"},["Mysterious Relic"]={SubType="Quest",Level=0,id=9248,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136098,Link="|cffffffff|Hitem:9248::::::::40:::::::|h[Mysterious Relic]|h|r",EquipLoc="",Type="Quest"},["Shipment to Nethergarde"]={SubType="Quest",Level=1,id=6178,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132763,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6178::::::::40:::::::|h[Shipment to Nethergarde]|h|r"},["Swamp Ring"]={SubType="Miscellaneous",Level=57,id=12015,StackCount=1,Rarity=2,MinLevel=52,SellPrice=8811,Texture=133354,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12015::::::::40:::::::|h[Swamp Ring]|h|r"},["Buccaneer's Bracers"]={SubType="Cloth",Level=19,id=14166,StackCount=1,Rarity=2,MinLevel=14,SellPrice=238,Texture=132611,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14166::::::::40:::::::|h[Buccaneer's Bracers]|h|r"},["Opulent Tunic"]={SubType="Cloth",Level=56,id=14287,StackCount=1,Rarity=2,MinLevel=51,SellPrice=13282,Texture=132684,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14287::::::::40:::::::|h[Opulent Tunic]|h|r"},["Cindercloth Leggings"]={SubType="Cloth",Level=49,id=12256,StackCount=1,Rarity=2,MinLevel=44,SellPrice=8765,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:12256::::::::40:::::::|h[Cindercloth Leggings]|h|r"},["Flask of Chromatic Resistance"]={SubType="Consumable",Level=60,id=13513,StackCount=5,Rarity=1,MinLevel=50,SellPrice=5000,Texture=134828,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13513::::::::40:::::::|h[Flask of Chromatic Resistance]|h|r"},["Twain's Shoulder"]={SubType="Mail",Level=0,id=4728,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135034,Type="Armor",Link="|cffffffff|Hitem:4728::::::::40:::::::|h[Twain's Shoulder]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Carapace of Anub'shiah"]={SubType="Plate",Level=55,id=11678,StackCount=1,Rarity=3,MinLevel=50,SellPrice=15596,Texture=132743,Type="Armor",Link="|cff0070dd|Hitem:11678::::::::40:::::::|h[Carapace of Anub'shiah]|h|r",EquipLoc="INVTYPE_CHEST"},["Gossamer Rod"]={SubType="Miscellaneous",Level=50,id=7557,StackCount=1,Rarity=2,MinLevel=45,SellPrice=7596,Texture=135464,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:7557::::::::40:::::::|h[Gossamer Rod]|h|r",Type="Armor"},["Sayge's Fortune #1"]={SubType="Junk",Level=1,id=19229,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19229::::::::40:::::::|h[Sayge's Fortune #1]|h|r",EquipLoc="",Type="Miscellaneous"},["Draftsman Boots"]={SubType="Leather",Level=27,id=6668,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1245,Texture=132537,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:6668::::::::40:::::::|h[Draftsman Boots]|h|r"},["Deprecated Lightforge Hammer"]={SubType="Two-Handed Maces",Level=29,id=2814,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3104,Texture=133041,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:2814::::::::40:::::::|h[Deprecated Lightforge Hammer]|h|r",Type="Weapon"},["Engineering Gloves"]={SubType="Cloth",Level=40,id=1659,StackCount=1,Rarity=2,MinLevel=35,SellPrice=2136,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:1659::::::::40:::::::|h[Engineering Gloves]|h|r",Type="Armor"},["Valorous Girdle"]={SubType="Plate",Level=46,id=8277,StackCount=1,Rarity=2,MinLevel=41,SellPrice=3625,Texture=132508,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:8277::::::::40:::::::|h[Valorous Girdle]|h|r"},["Weighted Cloak"]={SubType="Cloth",Level=60,id=20693,StackCount=1,Rarity=2,MinLevel=55,SellPrice=11860,Texture=133754,Link="|cff1eff00|Hitem:20693::::::::40:::::::|h[Weighted Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Scroll of Agility"]={SubType="Consumable",Level=20,id=3012,StackCount=5,Rarity=1,MinLevel=10,SellPrice=50,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:3012::::::::40:::::::|h[Scroll of Agility]|h|r",Type="Consumable"},["Hakkari Coin"]={SubType="Quest",Level=1,id=19700,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=133792,Link="|cff1eff00|Hitem:19700::::::::40:::::::|h[Hakkari Coin]|h|r",EquipLoc="",Type="Quest"},["Warsong Saw Blades"]={SubType="Quest",Level=1,id=16742,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132407,EquipLoc="",Link="|cffffffff|Hitem:16742::::::::40:::::::|h[Warsong Saw Blades]|h|r",Type="Quest"},["Ghostwalker Belt"]={SubType="Leather",Level=34,id=15148,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1613,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15148::::::::40:::::::|h[Ghostwalker Belt]|h|r",Type="Armor"},["Pattern: White Leather Jerkin"]={SubType="Leatherworking",Level=13,id=2407,StackCount=1,Rarity=2,MinLevel=0,SellPrice=162,Texture=134939,Type="Recipe",Link="|cff1eff00|Hitem:2407::::::::40:::::::|h[Pattern: White Leather Jerkin]|h|r",EquipLoc=""},["Legionnaire's Dreadweave Bracers"]={SubType="Cloth",Level=60,id=17575,StackCount=1,Rarity=3,MinLevel=55,SellPrice=4744,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:17575::::::::40:::::::|h[Legionnaire's Dreadweave Bracers]|h|r",Type="Armor"},["Codex of Holy Word: Shield"]={SubType="Book",Level=6,id=3113,StackCount=1,Rarity=1,MinLevel=6,SellPrice=20,Texture=133741,Link="|cffffffff|Hitem:3113::::::::40:::::::|h[Codex of Holy Word: Shield]|h|r",EquipLoc="",Type="Recipe"},["Monster - Axe, Large Basic"]={SubType="One-Handed Axes",Level=1,id=1909,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=132392,Link="|cff9d9d9d|Hitem:1909::::::::40:::::::|h[Monster - Axe, Large Basic]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Dagger of Veiled Shadows"]={SubType="Daggers",Level=70,id=21404,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135663,Link="|cffa335ee|Hitem:21404::::::::40:::::::|h[Dagger of Veiled Shadows]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Jazeraint Leggings"]={SubType="Mail",Level=42,id=9903,StackCount=1,Rarity=2,MinLevel=37,SellPrice=7742,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9903::::::::40:::::::|h[Jazeraint Leggings]|h|r"},["Impenetrable Bindings"]={SubType="Mail",Level=55,id=15659,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9508,Texture=132614,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15659::::::::40:::::::|h[Impenetrable Bindings]|h|r",Type="Armor"},["[PH] Brilliant Dawn Gauntlets"]={SubType="Plate",Level=100,id=13731,StackCount=1,Rarity=1,MinLevel=100,SellPrice=33330,Texture=132963,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:13731::::::::40:::::::|h[[PH] Brilliant Dawn Gauntlets]|h|r"},["Warrior's Embrace"]={SubType="Plate",Level=54,id=10845,StackCount=1,Rarity=3,MinLevel=49,SellPrice=14233,Texture=132743,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:10845::::::::40:::::::|h[Warrior's Embrace]|h|r",Type="Armor"},["Engraved Girdle"]={SubType="Mail",Level=57,id=10233,StackCount=1,Rarity=2,MinLevel=52,SellPrice=11106,Texture=132500,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10233::::::::40:::::::|h[Engraved Girdle]|h|r",Type="Armor"},["Raptor Hide Belt"]={SubType="Leather",Level=33,id=4456,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1553,Texture=132491,Link="|cff1eff00|Hitem:4456::::::::40:::::::|h[Raptor Hide Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Infiltrator Gloves"]={SubType="Leather",Level=32,id=7412,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1302,Texture=132956,Link="|cff1eff00|Hitem:7412::::::::40:::::::|h[Infiltrator Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Canvas Shoulderpads"]={SubType="Cloth",Level=20,id=1769,StackCount=1,Rarity=0,MinLevel=15,SellPrice=163,Texture=135040,Link="|cff9d9d9d|Hitem:1769::::::::40:::::::|h[Canvas Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Blazewind Breastplate"]={SubType="Leather",Level=57,id=11193,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16938,Texture=132717,Type="Armor",Link="|cff1eff00|Hitem:11193::::::::40:::::::|h[Blazewind Breastplate]|h|r",EquipLoc="INVTYPE_CHEST"},["Warlord's Leather Spaulders"]={SubType="Leather",Level=74,id=16562,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24631,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16562::::::::40:::::::|h[Warlord's Leather Spaulders]|h|r",Type="Armor"},["Plans: Searing Golden Blade"]={SubType="Blacksmithing",Level=38,id=12261,StackCount=1,Rarity=2,MinLevel=0,SellPrice=950,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12261::::::::40:::::::|h[Plans: Searing Golden Blade]|h|r"},["Mudsnout Mixture"]={SubType="Quest",Level=1,id=3508,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134717,Link="|cffffffff|Hitem:3508::::::::40:::::::|h[Mudsnout Mixture]|h|r",EquipLoc="",Type="Quest"},["Marauder Axe"]={SubType="One-Handed Axes",Level=26,id=4826,StackCount=1,Rarity=2,MinLevel=21,SellPrice=3087,Texture=132417,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:4826::::::::40:::::::|h[Marauder Axe]|h|r"},["Darkmoon Necklace"]={SubType="Miscellaneous",Level=55,id=19303,StackCount=1,Rarity=3,MinLevel=50,SellPrice=12500,Texture=133298,Link="|cff0070dd|Hitem:19303::::::::40:::::::|h[Darkmoon Necklace]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Blue Ribboned Holiday Gift"]={SubType="Consumable",Level=5,id=17302,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133204,EquipLoc="",Link="|cffffffff|Hitem:17302::::::::40:::::::|h[Blue Ribboned Holiday Gift]|h|r",Type="Consumable"},["Osric's Crate"]={SubType="Quest",Level=1,id=16115,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132763,EquipLoc="",Link="|cffffffff|Hitem:16115::::::::40:::::::|h[Osric's Crate]|h|r",Type="Quest"},["Gothic Plate Vambraces"]={SubType="Plate",Level=45,id=10094,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3311,Texture=132607,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10094::::::::40:::::::|h[Gothic Plate Vambraces]|h|r",Type="Armor"},["Formula: Imbue Chest - Minor Spirit"]={SubType="Enchanting",Level=12,id=6222,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:6222::::::::40:::::::|h[Formula: Imbue Chest - Minor Spirit]|h|r",EquipLoc=""},["Primal Belt"]={SubType="Leather",Level=8,id=15003,StackCount=1,Rarity=1,MinLevel=3,SellPrice=20,Texture=132512,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:15003::::::::40:::::::|h[Primal Belt]|h|r",Type="Armor"},["Recipe: Savory Deviate Delight"]={SubType="Cooking",Level=18,id=6661,StackCount=1,Rarity=2,MinLevel=0,SellPrice=115,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:6661::::::::40:::::::|h[Recipe: Savory Deviate Delight]|h|r"},["Grimoire of Curse of Sargeras"]={SubType="Book",Level=10,id=3142,StackCount=1,Rarity=1,MinLevel=10,SellPrice=187,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:3142::::::::40:::::::|h[Grimoire of Curse of Sargeras]|h|r",Type="Recipe"},["Frozen Eggs"]={SubType="Consumable",Level=1,id=13761,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132764,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13761::::::::40:::::::|h[Frozen Eggs]|h|r"},["Thaumaturgy Vessel Lockbox"]={SubType="Quest",Level=1,id=7870,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132595,Link="|cffffffff|Hitem:7870::::::::40:::::::|h[Thaumaturgy Vessel Lockbox]|h|r",EquipLoc="",Type="Quest"},["Cured Rugged Hide"]={SubType="Trade Goods",Level=50,id=15407,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134355,EquipLoc="",Link="|cffffffff|Hitem:15407::::::::40:::::::|h[Cured Rugged Hide]|h|r",Type="Trade Goods"},["Pirate's Eye Patch"]={SubType="Leather",Level=52,id=19986,StackCount=1,Rarity=3,MinLevel=0,SellPrice=11376,Texture=133148,Link="|cff0070dd|Hitem:19986::::::::40:::::::|h[Pirate's Eye Patch]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Tribal Worg Helm"]={SubType="Leather",Level=32,id=6204,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2065,Texture=133119,Type="Armor",Link="|cff1eff00|Hitem:6204::::::::40:::::::|h[Tribal Worg Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Insignia of the Dawn"]={SubType="Junk",Level=1,id=22523,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=134499,Link="|cff1eff00|Hitem:22523::::::::40:::::::|h[Insignia of the Dawn]|h|r",EquipLoc="",Type="Miscellaneous"},["Rock Maul"]={SubType="Two-Handed Maces",Level=27,id=1826,StackCount=1,Rarity=0,MinLevel=22,SellPrice=1765,Texture=133046,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1826::::::::40:::::::|h[Rock Maul]|h|r",Type="Weapon"},["Loose Chain Bracers"]={SubType="Mail",Level=10,id=2643,StackCount=1,Rarity=0,MinLevel=5,SellPrice=28,Texture=132602,Link="|cff9d9d9d|Hitem:2643::::::::40:::::::|h[Loose Chain Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Deprecated Gold Ingot"]={SubType="Trade Goods",Level=20,id=1950,StackCount=5,Rarity=1,MinLevel=0,SellPrice=100,Texture=133217,EquipLoc="",Link="|cffffffff|Hitem:1950::::::::40:::::::|h[Deprecated Gold Ingot]|h|r",Type="Trade Goods"},["Schematic: Minor Recombobulator"]={SubType="Engineering",Level=28,id=14639,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:14639::::::::40:::::::|h[Schematic: Minor Recombobulator]|h|r"},["Foreman's Gloves"]={SubType="Leather",Level=20,id=2167,StackCount=1,Rarity=2,MinLevel=15,SellPrice=339,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:2167::::::::40:::::::|h[Foreman's Gloves]|h|r"},["Ragehammer"]={SubType="Two-Handed Maces",Level=50,id=10626,StackCount=1,Rarity=3,MinLevel=45,SellPrice=36732,Texture=133043,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:10626::::::::40:::::::|h[Ragehammer]|h|r",Type="Weapon"},["Imperial Leather Gloves"]={SubType="Leather",Level=43,id=4063,StackCount=1,Rarity=2,MinLevel=38,SellPrice=3596,Texture=132959,Type="Armor",Link="|cff1eff00|Hitem:4063::::::::40:::::::|h[Imperial Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Arathi Basin Silk Bandage"]={SubType="Consumable",Level=35,id=20067,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=133672,Link="|cffffffff|Hitem:20067::::::::40:::::::|h[Arathi Basin Silk Bandage]|h|r",EquipLoc="",Type="Consumable"},["Aged Core Leather Gloves"]={SubType="Leather",Level=69,id=18823,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26506,Texture=132957,Type="Armor",Link="|cffa335ee|Hitem:18823::::::::40:::::::|h[Aged Core Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Ironplate Buckler"]={SubType="Shields",Level=15,id=3160,StackCount=1,Rarity=2,MinLevel=0,SellPrice=470,Texture=134956,Link="|cff1eff00|Hitem:3160::::::::40:::::::|h[Ironplate Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Aboriginal Loincloth"]={SubType="Cloth",Level=17,id=14119,StackCount=1,Rarity=2,MinLevel=12,SellPrice=378,Texture=134706,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14119::::::::40:::::::|h[Aboriginal Loincloth]|h|r"},["Heavy Runed Cloak"]={SubType="Cloth",Level=25,id=4798,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1166,Texture=133754,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:4798::::::::40:::::::|h[Heavy Runed Cloak]|h|r"},["Gri'lek's Charm of Valor"]={SubType="Miscellaneous",Level=65,id=19952,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133306,Link="|cffa335ee|Hitem:19952::::::::40:::::::|h[Gri'lek's Charm of Valor]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Outrider Advanced Care Package"]={SubType="Consumable",Level=1,id=19153,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134143,Link="|cffffffff|Hitem:19153::::::::40:::::::|h[Outrider Advanced Care Package]|h|r",EquipLoc="",Type="Consumable"},["Aurora Cowl"]={SubType="Cloth",Level=39,id=4041,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3149,Texture=133135,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:4041::::::::40:::::::|h[Aurora Cowl]|h|r"},["Gryphon Mail Greaves"]={SubType="Mail",Level=47,id=15626,StackCount=1,Rarity=2,MinLevel=42,SellPrice=8798,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15626::::::::40:::::::|h[Gryphon Mail Greaves]|h|r",Type="Armor"},["Conjurer's Shoes"]={SubType="Cloth",Level=35,id=9845,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2136,Texture=132539,Link="|cff1eff00|Hitem:9845::::::::40:::::::|h[Conjurer's Shoes]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Overlinked Chain Gloves"]={SubType="Mail",Level=47,id=4004,StackCount=1,Rarity=0,MinLevel=42,SellPrice=2357,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:4004::::::::40:::::::|h[Overlinked Chain Gloves]|h|r",Type="Armor"},["Smotts' Chest"]={SubType="Quest",Level=1,id=3932,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3932::::::::40:::::::|h[Smotts' Chest]|h|r"},["Blackforge Bracers"]={SubType="Mail",Level=43,id=6426,StackCount=1,Rarity=2,MinLevel=38,SellPrice=4162,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:6426::::::::40:::::::|h[Blackforge Bracers]|h|r"},["Legionnaire's Chain Breastplate"]={SubType="Mail",Level=63,id=16525,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17475,Texture=132626,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16525::::::::40:::::::|h[Legionnaire's Chain Breastplate]|h|r",Type="Armor"},["Malignant Footguards"]={SubType="Mail",Level=72,id=20629,StackCount=1,Rarity=4,MinLevel=60,SellPrice=55079,Texture=132551,Link="|cffa335ee|Hitem:20629::::::::40:::::::|h[Malignant Footguards]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Tablet Shard"]={SubType="Quest",Level=1,id=4094,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134415,Type="Quest",Link="|cffffffff|Hitem:4094::::::::40:::::::|h[Tablet Shard]|h|r",EquipLoc=""},["Insignia of the Black Guard"]={SubType="Quest",Level=1,id=13350,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133614,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13350::::::::40:::::::|h[Insignia of the Black Guard]|h|r"},["Plainsguard Leggings"]={SubType="Mail",Level=29,id=15470,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2432,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15470::::::::40:::::::|h[Plainsguard Leggings]|h|r",Type="Armor"},["Lesser Stoneshield Potion"]={SubType="Consumable",Level=43,id=4623,StackCount=5,Rarity=1,MinLevel=33,SellPrice=375,Texture=134847,Link="|cffffffff|Hitem:4623::::::::40:::::::|h[Lesser Stoneshield Potion]|h|r",EquipLoc="",Type="Consumable"},["Small Red Rocket"]={SubType="Consumable",Level=1,id=21557,StackCount=20,Rarity=1,MinLevel=0,SellPrice=6,Texture=134285,Link="|cffffffff|Hitem:21557::::::::40:::::::|h[Small Red Rocket]|h|r",EquipLoc="",Type="Consumable"},["Bow of Taut Sinew"]={SubType="Bows",Level=68,id=21478,StackCount=1,Rarity=4,MinLevel=60,SellPrice=76570,Texture=135501,Link="|cffa335ee|Hitem:21478::::::::40:::::::|h[Bow of Taut Sinew]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Double-layered Gloves"]={SubType="Leather",Level=8,id=4962,StackCount=1,Rarity=1,MinLevel=0,SellPrice=20,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:4962::::::::40:::::::|h[Double-layered Gloves]|h|r"},["Tome of Frostbolt VI"]={SubType="Book",Level=32,id=8828,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=133739,Link="|cffffffff|Hitem:8828::::::::40:::::::|h[Tome of Frostbolt VI]|h|r",EquipLoc="",Type="Recipe"},["Beetle Scaled Wristguards"]={SubType="Leather",Level=73,id=21708,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29905,Texture=132611,Link="|cffa335ee|Hitem:21708::::::::40:::::::|h[Beetle Scaled Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Riverside Staff"]={SubType="Staves",Level=19,id=1473,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1497,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1473::::::::40:::::::|h[Riverside Staff]|h|r"},["Necropile Cuffs"]={SubType="Cloth",Level=61,id=14629,StackCount=1,Rarity=3,MinLevel=56,SellPrice=10758,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:14629::::::::40:::::::|h[Necropile Cuffs]|h|r"},["Bethor's Scroll"]={SubType="Quest",Level=1,id=3250,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3250::::::::40:::::::|h[Bethor's Scroll]|h|r"},["Monster - Sword, Long Silver - Green Pommel"]={SubType="One-Handed Swords",Level=1,id=13165,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13165::::::::40:::::::|h[Monster - Sword, Long Silver - Green Pommel]|h|r"},["Ring of the Underwood"]={SubType="Miscellaneous",Level=36,id=2951,StackCount=1,Rarity=3,MinLevel=31,SellPrice=656,Texture=133354,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:2951::::::::40:::::::|h[Ring of the Underwood]|h|r"},["[PH] Greater Arcane Amalgamation (MANA/FR)"]={SubType="Quest",Level=50,id=11663,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=134094,Type="Quest",Link="|cff0070dd|Hitem:11663::::::::40:::::::|h[[PH] Greater Arcane Amalgamation (MANA/FR)]|h|r",EquipLoc=""},["Feralas Ahi"]={SubType="Junk",Level=40,id=16967,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134300,EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:16967::::::::40:::::::|h[Feralas Ahi]|h|r",Type="Miscellaneous"},["Red Streaks Firework"]={SubType="Consumable",Level=20,id=9314,StackCount=5,Rarity=1,MinLevel=0,SellPrice=12,Texture=135815,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9314::::::::40:::::::|h[Red Streaks Firework]|h|r"},["Stormwind Guard's Card"]={SubType="Consumable",Level=1,id=22143,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135454,Link="|cffffffff|Hitem:22143::::::::40:::::::|h[Stormwind Guard's Card]|h|r",EquipLoc="",Type="Consumable"},["Bloodrazor"]={SubType="One-Handed Swords",Level=50,id=809,StackCount=1,Rarity=4,MinLevel=45,SellPrice=39125,Texture=135329,Type="Weapon",Link="|cffa335ee|Hitem:809::::::::40:::::::|h[Bloodrazor]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Arachnidian Armor"]={SubType="Cloth",Level=57,id=14288,StackCount=1,Rarity=2,MinLevel=52,SellPrice=14132,Texture=135021,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14288::::::::40:::::::|h[Arachnidian Armor]|h|r"},["The Lobotomizer"]={SubType="Daggers",Level=65,id=19324,StackCount=1,Rarity=4,MinLevel=60,SellPrice=251323,Texture=135330,Link="|cffa335ee|Hitem:19324::::::::40:::::::|h[The Lobotomizer]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Filled Vial Labeled #1"]={SubType="Quest",Level=1,id=10691,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134815,EquipLoc="",Link="|cffffffff|Hitem:10691::::::::40:::::::|h[Filled Vial Labeled #1]|h|r",Type="Quest"},["Fists of the Unrelenting"]={SubType="Plate",Level=90,id=23072,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58039,Texture=132956,Link="|cffa335ee|Hitem:23072::::::::40:::::::|h[Fists of the Unrelenting]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Forked Tongue"]={SubType="Junk",Level=1,id=6444,StackCount=5,Rarity=0,MinLevel=0,SellPrice=228,Texture=136040,Link="|cff9d9d9d|Hitem:6444::::::::40:::::::|h[Forked Tongue]|h|r",EquipLoc="",Type="Miscellaneous"},["Steadfast Legplates"]={SubType="Mail",Level=41,id=15596,StackCount=1,Rarity=2,MinLevel=36,SellPrice=6909,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15596::::::::40:::::::|h[Steadfast Legplates]|h|r",Type="Armor"},["Monster - Sword, Horde Sword Bronze"]={SubType="One-Handed Swords",Level=1,id=12593,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12593::::::::40:::::::|h[Monster - Sword, Horde Sword Bronze]|h|r"},["TestBoots - Puffed Mail Green"]={SubType="Plate",Level=1,id=13214,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:13214::::::::40:::::::|h[TestBoots - Puffed Mail Green]|h|r"},["Red Sparkler"]={SubType="Miscellaneous",Level=10,id=8624,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=135468,Link="|cffffffff|Hitem:8624::::::::40:::::::|h[Red Sparkler]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Fiery Core"]={SubType="Reagent",Level=60,id=17010,StackCount=10,Rarity=3,MinLevel=0,SellPrice=2000,Texture=135812,EquipLoc="",Link="|cff0070dd|Hitem:17010::::::::40:::::::|h[Fiery Core]|h|r",Type="Reagent"},["Alabaster Plate Vambraces"]={SubType="Plate",Level=53,id=8311,StackCount=1,Rarity=2,MinLevel=48,SellPrice=5844,Texture=132615,Link="|cff1eff00|Hitem:8311::::::::40:::::::|h[Alabaster Plate Vambraces]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Libram: Seal of Righteousness III"]={SubType="Book",Level=36,id=5662,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133740,Link="|cffffffff|Hitem:5662::::::::40:::::::|h[Libram: Seal of Righteousness III]|h|r",EquipLoc="",Type="Recipe"},["Splinthide Shoulders"]={SubType="Leather",Level=55,id=11685,StackCount=1,Rarity=3,MinLevel=50,SellPrice=13941,Texture=135044,Type="Armor",Link="|cff0070dd|Hitem:11685::::::::40:::::::|h[Splinthide Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Beaststalker's Bindings"]={SubType="Mail",Level=57,id=16681,StackCount=1,Rarity=3,MinLevel=52,SellPrice=13055,Texture=132616,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16681::::::::40:::::::|h[Beaststalker's Bindings]|h|r",Type="Armor"},["Heavy Wool Bandage"]={SubType="Consumable",Level=1,id=3531,StackCount=20,Rarity=1,MinLevel=0,SellPrice=57,Texture=133687,Type="Consumable",Link="|cffffffff|Hitem:3531::::::::40:::::::|h[Heavy Wool Bandage]|h|r",EquipLoc=""},["Small Glowing Shard"]={SubType="Trade Goods",Level=30,id=11138,StackCount=20,Rarity=3,MinLevel=0,SellPrice=0,Texture=132879,Type="Trade Goods",Link="|cff0070dd|Hitem:11138::::::::40:::::::|h[Small Glowing Shard]|h|r",EquipLoc=""},["Filled Cerulean Vial"]={SubType="Quest",Level=1,id=17696,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134804,EquipLoc="",Link="|cffffffff|Hitem:17696::::::::40:::::::|h[Filled Cerulean Vial]|h|r",Type="Quest"},["Stone Gnoll Hammer"]={SubType="One-Handed Maces",Level=9,id=781,StackCount=1,Rarity=1,MinLevel=4,SellPrice=110,Texture=133046,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:781::::::::40:::::::|h[Stone Gnoll Hammer]|h|r",Type="Weapon"},["Peacekeeper Boots"]={SubType="Plate",Level=68,id=20265,StackCount=1,Rarity=3,MinLevel=60,SellPrice=21571,Texture=132584,Link="|cff0070dd|Hitem:20265::::::::40:::::::|h[Peacekeeper Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Crab Cake"]={SubType="Consumable",Level=15,id=2683,StackCount=20,Rarity=1,MinLevel=5,SellPrice=25,Texture=133950,EquipLoc="",Link="|cffffffff|Hitem:2683::::::::40:::::::|h[Crab Cake]|h|r",Type="Consumable"},["Deprecated Loose Chain Shoulderpads"]={SubType="Mail",Level=9,id=2647,StackCount=1,Rarity=0,MinLevel=4,SellPrice=33,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:2647::::::::40:::::::|h[Deprecated Loose Chain Shoulderpads]|h|r"},["Barreling Reaper"]={SubType="One-Handed Axes",Level=32,id=6194,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5308,Texture=132408,Type="Weapon",Link="|cff1eff00|Hitem:6194::::::::40:::::::|h[Barreling Reaper]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Tablet of Frost Resistance Totem"]={SubType="Book",Level=24,id=9066,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9066::::::::40:::::::|h[Tablet of Frost Resistance Totem]|h|r"},["Targe Shield"]={SubType="Shields",Level=28,id=2221,StackCount=1,Rarity=0,MinLevel=23,SellPrice=910,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:2221::::::::40:::::::|h[Targe Shield]|h|r"},["Dervish Cape"]={SubType="Cloth",Level=26,id=6604,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1200,Texture=133759,Link="|cff1eff00|Hitem:6604::::::::40:::::::|h[Dervish Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Stone Arrowhead"]={SubType="Junk",Level=1,id=4877,StackCount=5,Rarity=0,MinLevel=0,SellPrice=10,Texture=132381,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:4877::::::::40:::::::|h[Stone Arrowhead]|h|r"},["Sturdy Male Tauren Mask"]={SubType="Miscellaneous",Level=45,id=20596,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5099,Texture=134174,Link="|cff1eff00|Hitem:20596::::::::40:::::::|h[Sturdy Male Tauren Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Sayge's Fortune #9"]={SubType="Junk",Level=1,id=19244,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19244::::::::40:::::::|h[Sayge's Fortune #9]|h|r",EquipLoc="",Type="Miscellaneous"},["Test Arcane Res Neck"]={SubType="Miscellaneous",Level=35,id=16125,StackCount=1,Rarity=2,MinLevel=30,SellPrice=5395,Texture=133288,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:16125::::::::40:::::::|h[Test Arcane Res Neck]|h|r",Type="Armor"},["Rethban Ore"]={SubType="Junk",Level=1,id=2798,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=134572,Link="|cffffffff|Hitem:2798::::::::40:::::::|h[Rethban Ore]|h|r",EquipLoc="",Type="Miscellaneous"},["Green Qiraji Resonating Crystal"]={SubType="Junk",Level=60,id=21323,StackCount=1,Rarity=3,MinLevel=60,SellPrice=0,Texture=134397,Link="|cff0070dd|Hitem:21323::::::::40:::::::|h[Green Qiraji Resonating Crystal]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Polearm, Rend Blackhand"]={SubType="Polearms",Level=1,id=12338,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135321,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12338::::::::40:::::::|h[Monster - Polearm, Rend Blackhand]|h|r"},["Windblossom Berries"]={SubType="Consumable",Level=55,id=11950,StackCount=20,Rarity=1,MinLevel=45,SellPrice=0,Texture=134014,Type="Consumable",Link="|cffffffff|Hitem:11950::::::::40:::::::|h[Windblossom Berries]|h|r",EquipLoc=""},["Sabatons of Wrath"]={SubType="Plate",Level=76,id=16965,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45221,Texture=132585,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16965::::::::40:::::::|h[Sabatons of Wrath]|h|r",Type="Armor"},["Deprecated Ironforge Chain Pauldrons"]={SubType="Mail",Level=15,id=1960,StackCount=1,Rarity=0,MinLevel=10,SellPrice=134,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:1960::::::::40:::::::|h[Deprecated Ironforge Chain Pauldrons]|h|r",Type="Armor"},["Small Flame Sac"]={SubType="Trade Goods",Level=25,id=4402,StackCount=5,Rarity=1,MinLevel=0,SellPrice=250,Texture=134343,Link="|cffffffff|Hitem:4402::::::::40:::::::|h[Small Flame Sac]|h|r",EquipLoc="",Type="Trade Goods"},["Cross-stitched Gloves"]={SubType="Cloth",Level=26,id=1783,StackCount=1,Rarity=0,MinLevel=21,SellPrice=247,Texture=132952,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:1783::::::::40:::::::|h[Cross-stitched Gloves]|h|r"},["Vital Boots"]={SubType="Cloth",Level=34,id=14214,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2009,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14214::::::::40:::::::|h[Vital Boots]|h|r"},["Deprecated Old Belt"]={SubType="Miscellaneous",Level=1,id=86,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:86::::::::40:::::::|h[Deprecated Old Belt]|h|r",Type="Armor"},["Chief Brigadier Boots"]={SubType="Mail",Level=39,id=6412,StackCount=1,Rarity=2,MinLevel=34,SellPrice=4711,Texture=132539,Link="|cff1eff00|Hitem:6412::::::::40:::::::|h[Chief Brigadier Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Wrangler's Boots"]={SubType="Leather",Level=25,id=15330,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1059,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15330::::::::40:::::::|h[Wrangler's Boots]|h|r",Type="Armor"},["Libram: Seal of Wisdom II"]={SubType="Book",Level=24,id=5667,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1250,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:5667::::::::40:::::::|h[Libram: Seal of Wisdom II]|h|r",Type="Recipe"},["Omokk's Head"]={SubType="Quest",Level=1,id=12534,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134151,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12534::::::::40:::::::|h[Omokk's Head]|h|r"},["Raider Shortsword"]={SubType="One-Handed Swords",Level=8,id=2496,StackCount=1,Rarity=1,MinLevel=3,SellPrice=80,Texture=135274,Type="Weapon",Link="|cffffffff|Hitem:2496::::::::40:::::::|h[Raider Shortsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Engraved Leggings"]={SubType="Mail",Level=59,id=10236,StackCount=1,Rarity=2,MinLevel=54,SellPrice=22615,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10236::::::::40:::::::|h[Engraved Leggings]|h|r",Type="Armor"},["Monster - Axe, 2H Horde Black War Axe"]={SubType="Two-Handed Axes",Level=1,id=17383,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:17383::::::::40:::::::|h[Monster - Axe, 2H Horde Black War Axe]|h|r",Type="Weapon"},["War Paint Shoulder Pads"]={SubType="Mail",Level=22,id=14728,StackCount=1,Rarity=1,MinLevel=17,SellPrice=485,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:14728::::::::40:::::::|h[War Paint Shoulder Pads]|h|r"},["Outrunner's Pauldrons"]={SubType="Mail",Level=23,id=15505,StackCount=1,Rarity=1,MinLevel=18,SellPrice=561,Texture=135058,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:15505::::::::40:::::::|h[Outrunner's Pauldrons]|h|r",Type="Armor"},["Libram: Crusader Strike"]={SubType="Book",Level=10,id=8912,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133740,Link="|cffffffff|Hitem:8912::::::::40:::::::|h[Libram: Crusader Strike]|h|r",EquipLoc="",Type="Recipe"},["Hallowed Wand - Ninja"]={SubType="Consumable",Level=1,id=20398,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135474,Link="|cffffffff|Hitem:20398::::::::40:::::::|h[Hallowed Wand - Ninja]|h|r",EquipLoc="",Type="Consumable"},["Heavy Earthen Gloves"]={SubType="Leather",Level=29,id=7359,StackCount=1,Rarity=2,MinLevel=24,SellPrice=978,Texture=132957,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7359::::::::40:::::::|h[Heavy Earthen Gloves]|h|r",Type="Armor"},["Torment Vine"]={SubType="Trade Goods",Level=40,id=2932,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=134186,Type="Trade Goods",Link="|cffffffff|Hitem:2932::::::::40:::::::|h[Torment Vine]|h|r",EquipLoc=""},["Pattern: Stormshroud Shoulders"]={SubType="Leatherworking",Level=59,id=15764,StackCount=1,Rarity=3,MinLevel=0,SellPrice=6250,Texture=134939,EquipLoc="",Link="|cff0070dd|Hitem:15764::::::::40:::::::|h[Pattern: Stormshroud Shoulders]|h|r",Type="Recipe"},["A Sack of Coins"]={SubType="Junk",Level=18,id=5335,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133639,Link="|cffffffff|Hitem:5335::::::::40:::::::|h[A Sack of Coins]|h|r",EquipLoc="",Type="Miscellaneous"},["Engraved Gauntlets"]={SubType="Mail",Level=58,id=10232,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11732,Texture=132937,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10232::::::::40:::::::|h[Engraved Gauntlets]|h|r",Type="Armor"},["Banshee's Touch"]={SubType="Plate",Level=60,id=13539,StackCount=1,Rarity=2,MinLevel=55,SellPrice=8535,Texture=132963,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:13539::::::::40:::::::|h[Banshee's Touch]|h|r"},["Bonescythe Legplates"]={SubType="Leather",Level=88,id=22477,StackCount=1,Rarity=4,MinLevel=60,SellPrice=136418,Texture=134681,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:22477::::::::40:::::::|h[Bonescythe Legplates]|h|r"},["Test Totem"]={SubType="Miscellaneous",Level=5,id=4956,StackCount=1,Rarity=1,MinLevel=2,SellPrice=31,Texture=135140,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:4956::::::::40:::::::|h[Test Totem]|h|r"},["Large Glowing Shard"]={SubType="Trade Goods",Level=35,id=11139,StackCount=20,Rarity=3,MinLevel=0,SellPrice=0,Texture=132878,Type="Trade Goods",Link="|cff0070dd|Hitem:11139::::::::40:::::::|h[Large Glowing Shard]|h|r",EquipLoc=""},["Swift Palomino"]={SubType="Junk",Level=60,id=18776,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132261,Type="Miscellaneous",Link="|cffa335ee|Hitem:18776::::::::40:::::::|h[Swift Palomino]|h|r",EquipLoc=""},["Thorium Greatsword"]={SubType="Two-Handed Swords",Level=52,id=12764,StackCount=1,Rarity=2,MinLevel=47,SellPrice=33621,Texture=135323,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:12764::::::::40:::::::|h[Thorium Greatsword]|h|r"},["Pattern: Black Swashbuckler's Shirt"]={SubType="Tailoring",Level=40,id=10728,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10728::::::::40:::::::|h[Pattern: Black Swashbuckler's Shirt]|h|r",Type="Recipe"},["Ghostwalker Legguards"]={SubType="Leather",Level=36,id=15151,StackCount=1,Rarity=2,MinLevel=31,SellPrice=3949,Texture=134706,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15151::::::::40:::::::|h[Ghostwalker Legguards]|h|r",Type="Armor"},["Pattern: Glacial Wrists"]={SubType="Tailoring",Level=80,id=22687,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:22687::::::::40:::::::|h[Pattern: Glacial Wrists]|h|r"},["Old Teamster's Skull"]={SubType="Junk",Level=1,id=6301,StackCount=1,Rarity=0,MinLevel=0,SellPrice=20,Texture=133728,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:6301::::::::40:::::::|h[Old Teamster's Skull]|h|r"},["Sanctified Leather Helm"]={SubType="Leather",Level=66,id=22689,StackCount=1,Rarity=3,MinLevel=0,SellPrice=24282,Texture=133111,Link="|cff0070dd|Hitem:22689::::::::40:::::::|h[Sanctified Leather Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Defender Cloak"]={SubType="Cloth",Level=20,id=6575,StackCount=1,Rarity=2,MinLevel=15,SellPrice=431,Texture=133757,Type="Armor",Link="|cff1eff00|Hitem:6575::::::::40:::::::|h[Defender Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Tablet of Invisibility Totem"]={SubType="Book",Level=40,id=4188,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Type="Recipe",Link="|cffffffff|Hitem:4188::::::::40:::::::|h[Tablet of Invisibility Totem]|h|r",EquipLoc=""},["Barbaric Gloves"]={SubType="Leather",Level=30,id=4254,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1071,Texture=132939,Type="Armor",Link="|cff1eff00|Hitem:4254::::::::40:::::::|h[Barbaric Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Duskwoven Pants"]={SubType="Cloth",Level=53,id=10064,StackCount=1,Rarity=2,MinLevel=48,SellPrice=10774,Texture=134589,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10064::::::::40:::::::|h[Duskwoven Pants]|h|r",Type="Armor"},["Wolfrunner Shoes"]={SubType="Cloth",Level=59,id=13101,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14318,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13101::::::::40:::::::|h[Wolfrunner Shoes]|h|r"},["Scarecrow Trousers"]={SubType="Cloth",Level=20,id=4434,StackCount=1,Rarity=2,MinLevel=15,SellPrice=572,Texture=134582,Type="Armor",Link="|cff1eff00|Hitem:4434::::::::40:::::::|h[Scarecrow Trousers]|h|r",EquipLoc="INVTYPE_LEGS"},["Master Apothecary Cape"]={SubType="Cloth",Level=45,id=9635,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4713,Texture=133763,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9635::::::::40:::::::|h[Master Apothecary Cape]|h|r"},["Twill Pants"]={SubType="Cloth",Level=59,id=3949,StackCount=1,Rarity=0,MinLevel=54,SellPrice=6517,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:3949::::::::40:::::::|h[Twill Pants]|h|r"},["Emil's Brand"]={SubType="Two-Handed Swords",Level=32,id=5813,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7087,Texture=135280,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:5813::::::::40:::::::|h[Emil's Brand]|h|r",Type="Weapon"},["Sandspire Gloves"]={SubType="Mail",Level=25,id=16986,StackCount=1,Rarity=2,MinLevel=0,SellPrice=850,Texture=132943,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:16986::::::::40:::::::|h[Sandspire Gloves]|h|r",Type="Armor"},["Tablet of Molten Blast III"]={SubType="Book",Level=22,id=1588,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=134459,Link="|cffffffff|Hitem:1588::::::::40:::::::|h[Tablet of Molten Blast III]|h|r",EquipLoc="",Type="Recipe"},["Amulet of the Redeemed"]={SubType="Miscellaneous",Level=63,id=22327,StackCount=1,Rarity=3,MinLevel=58,SellPrice=2535,Texture=133295,Link="|cff0070dd|Hitem:22327::::::::40:::::::|h[Amulet of the Redeemed]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["12 Pound Mud Snapper"]={SubType="Junk",Level=15,id=6294,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10,Texture=133919,Type="Miscellaneous",Link="|cffffffff|Hitem:6294::::::::40:::::::|h[12 Pound Mud Snapper]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Reliquary of Purity"]={SubType="Quest",Level=1,id=18539,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132595,Type="Quest",Link="|cffffffff|Hitem:18539::::::::40:::::::|h[Reliquary of Purity]|h|r",EquipLoc=""},["Jademoon Orb"]={SubType="Miscellaneous",Level=45,id=11859,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7135,Texture=134104,Type="Armor",Link="|cff1eff00|Hitem:11859::::::::40:::::::|h[Jademoon Orb]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Sha'ni's Ring"]={SubType="Miscellaneous",Level=53,id=11869,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6542,Texture=133348,Type="Armor",Link="|cff1eff00|Hitem:11869::::::::40:::::::|h[Sha'ni's Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Plans: Nightfall"]={SubType="Blacksmithing",Level=70,id=19212,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30000,Texture=134939,Link="|cffffffff|Hitem:19212::::::::40:::::::|h[Plans: Nightfall]|h|r",EquipLoc="",Type="Recipe"},["Flimsy Male Gnome Mask"]={SubType="Miscellaneous",Level=1,id=20391,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134164,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:20391::::::::40:::::::|h[Flimsy Male Gnome Mask]|h|r"},["Globe of D'sak"]={SubType="Miscellaneous",Level=59,id=13261,StackCount=1,Rarity=3,MinLevel=54,SellPrice=10452,Texture=135471,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:13261::::::::40:::::::|h[Globe of D'sak]|h|r"},["Grimoire of Blood Pact (Rank 1)"]={SubType="Book",Level=4,id=16321,StackCount=1,Rarity=1,MinLevel=4,SellPrice=25,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16321::::::::40:::::::|h[Grimoire of Blood Pact (Rank 1)]|h|r",Type="Recipe"},["Grimoire of Torment (Rank 5)"]={SubType="Book",Level=50,id=16349,StackCount=1,Rarity=1,MinLevel=50,SellPrice=3750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16349::::::::40:::::::|h[Grimoire of Torment (Rank 5)]|h|r",Type="Recipe"},["Library Scrip"]={SubType="Quest",Level=1,id=3898,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",Link="|cffffffff|Hitem:3898::::::::40:::::::|h[Library Scrip]|h|r",EquipLoc=""},["Helm of Awareness"]={SubType="Plate",Level=58,id=18313,StackCount=1,Rarity=3,MinLevel=53,SellPrice=13694,Texture=133121,Type="Armor",Link="|cff0070dd|Hitem:18313::::::::40:::::::|h[Helm of Awareness]|h|r",EquipLoc="INVTYPE_HEAD"},["Sickly Looking Fish"]={SubType="Consumable",Level=5,id=6299,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=133914,Type="Consumable",Link="|cffffffff|Hitem:6299::::::::40:::::::|h[Sickly Looking Fish]|h|r",EquipLoc=""},["Ice Threaded Arrow"]={SubType="Arrow",Level=54,id=19316,StackCount=200,Rarity=2,MinLevel=51,SellPrice=7,Texture=135855,Link="|cff1eff00|Hitem:19316::::::::40:::::::|h[Ice Threaded Arrow]|h|r",EquipLoc="INVTYPE_AMMO",Type="Projectile"},["Monstrous War Axe"]={SubType="Two-Handed Axes",Level=42,id=1640,StackCount=1,Rarity=2,MinLevel=37,SellPrice=15637,Texture=132409,Link="|cff1eff00|Hitem:1640::::::::40:::::::|h[Monstrous War Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Mo'grosh Crystal"]={SubType="Quest",Level=1,id=2607,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134095,Type="Quest",Link="|cffffffff|Hitem:2607::::::::40:::::::|h[Mo'grosh Crystal]|h|r",EquipLoc=""},["AHNQIRAJ TEST ITEM C MAIL HELM"]={SubType="Miscellaneous",Level=1,id=21446,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21446::::::::40:::::::|h[AHNQIRAJ TEST ITEM C MAIL HELM]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Calico Belt"]={SubType="Cloth",Level=14,id=3374,StackCount=1,Rarity=0,MinLevel=9,SellPrice=45,Texture=132495,Type="Armor",Link="|cff9d9d9d|Hitem:3374::::::::40:::::::|h[Calico Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Small Lustrous Pearl"]={SubType="Trade Goods",Level=15,id=5498,StackCount=20,Rarity=2,MinLevel=0,SellPrice=200,Texture=134122,Link="|cff1eff00|Hitem:5498::::::::40:::::::|h[Small Lustrous Pearl]|h|r",EquipLoc="",Type="Trade Goods"},["Black Crystal Dagger"]={SubType="Daggers",Level=59,id=20647,StackCount=1,Rarity=2,MinLevel=0,SellPrice=40097,Texture=135656,Link="|cff1eff00|Hitem:20647::::::::40:::::::|h[Black Crystal Dagger]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Level 65 Test Gear Mail - Shaman 2"]={SubType="Junk",Level=1,id=17859,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17859::::::::40:::::::|h[Level 65 Test Gear Mail - Shaman 2]|h|r",Type="Miscellaneous"},["Battleforge Cloak"]={SubType="Cloth",Level=26,id=6593,StackCount=1,Rarity=2,MinLevel=21,SellPrice=922,Texture=133770,Type="Armor",Link="|cff1eff00|Hitem:6593::::::::40:::::::|h[Battleforge Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Snow Boots"]={SubType="Cloth",Level=5,id=6173,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:6173::::::::40:::::::|h[Snow Boots]|h|r"},["Ice Deflector"]={SubType="Devices",Level=31,id=4386,StackCount=1,Rarity=1,MinLevel=21,SellPrice=175,Texture=132995,Link="|cffffffff|Hitem:4386::::::::40:::::::|h[Ice Deflector]|h|r",EquipLoc="",Type="Trade Goods"},["QAEnchant Cloak +5 Resistances"]={SubType="Consumable",Level=1,id=17884,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17884::::::::40:::::::|h[QAEnchant Cloak +5 Resistances]|h|r",Type="Consumable"},["Lifeblood Amulet"]={SubType="Miscellaneous",Level=48,id=9641,StackCount=1,Rarity=3,MinLevel=43,SellPrice=13041,Texture=133289,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:9641::::::::40:::::::|h[Lifeblood Amulet]|h|r"},["Raw Bristle Whisker Catfish"]={SubType="Consumable",Level=25,id=6308,StackCount=20,Rarity=1,MinLevel=15,SellPrice=2,Texture=133916,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6308::::::::40:::::::|h[Raw Bristle Whisker Catfish]|h|r"},["Grunt's Harness"]={SubType="Leather",Level=27,id=6525,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1033,Texture=132716,Type="Armor",Link="|cffffffff|Hitem:6525::::::::40:::::::|h[Grunt's Harness]|h|r",EquipLoc="INVTYPE_CHEST"},["Magma Core"]={SubType="Quest",Level=1,id=21938,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134085,Link="|cffffffff|Hitem:21938::::::::40:::::::|h[Magma Core]|h|r",EquipLoc="",Type="Quest"},["High Councillor's Scepter"]={SubType="Miscellaneous",Level=64,id=15941,StackCount=1,Rarity=2,MinLevel=59,SellPrice=12345,Texture=135467,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15941::::::::40:::::::|h[High Councillor's Scepter]|h|r",Type="Armor"},["Silksand Boots"]={SubType="Cloth",Level=39,id=14418,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3098,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14418::::::::40:::::::|h[Silksand Boots]|h|r"},["D'Sak's Small bag"]={SubType="Soul Bag",Level=62,id=21313,StackCount=1,Rarity=3,MinLevel=0,SellPrice=40000,Texture=133646,Link="|cff0070dd|Hitem:21313::::::::40:::::::|h[D'Sak's Small bag]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Ethereal Talisman"]={SubType="Miscellaneous",Level=43,id=4430,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4307,Texture=133290,Type="Armor",Link="|cff1eff00|Hitem:4430::::::::40:::::::|h[Ethereal Talisman]|h|r",EquipLoc="INVTYPE_NECK"},["Slime-coated Leggings"]={SubType="Mail",Level=78,id=21626,StackCount=1,Rarity=4,MinLevel=60,SellPrice=97999,Texture=134663,Link="|cffa335ee|Hitem:21626::::::::40:::::::|h[Slime-coated Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["QAEnchant Gloves +5 Mining"]={SubType="Consumable",Level=1,id=22585,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22585::::::::40:::::::|h[QAEnchant Gloves +5 Mining]|h|r",EquipLoc="",Type="Consumable"},["Sayge's Fortune #19"]={SubType="Junk",Level=1,id=19237,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19237::::::::40:::::::|h[Sayge's Fortune #19]|h|r",EquipLoc="",Type="Miscellaneous"},["Balloo's Memorial"]={SubType="Quest",Level=1,id=4524,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135233,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4524::::::::40:::::::|h[Balloo's Memorial]|h|r"},["Nature Mantle of the Dawn"]={SubType="Quest",Level=60,id=18172,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25000,Texture=136074,Type="Quest",Link="|cff1eff00|Hitem:18172::::::::40:::::::|h[Nature Mantle of the Dawn]|h|r",EquipLoc=""},["Triumphant Girdle"]={SubType="Mail",Level=60,id=15683,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12666,Texture=132500,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15683::::::::40:::::::|h[Triumphant Girdle]|h|r",Type="Armor"},["Horn of the Black Wolf"]={SubType="Junk",Level=40,id=1041,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132224,EquipLoc="",Link="|cffffffff|Hitem:1041::::::::40:::::::|h[Horn of the Black Wolf]|h|r",Type="Miscellaneous"},["Gordok Shackle Key"]={SubType="Junk",Level=1,id=18250,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134245,Type="Miscellaneous",Link="|cff1eff00|Hitem:18250::::::::40:::::::|h[Gordok Shackle Key]|h|r",EquipLoc=""},["Deprecated Mantle of the Seas"]={SubType="Cloth",Level=18,id=1545,StackCount=1,Rarity=0,MinLevel=0,SellPrice=124,Texture=135037,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:1545::::::::40:::::::|h[Deprecated Mantle of the Seas]|h|r"},["Restored Twilight Tablet"]={SubType="Quest",Level=0,id=20401,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134458,Link="|cffffffff|Hitem:20401::::::::40:::::::|h[Restored Twilight Tablet]|h|r",EquipLoc="",Type="Quest"},["Monster - Sword, 1H Alliance PvP"]={SubType="One-Handed Swords",Level=1,id=21573,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:21573::::::::40:::::::|h[Monster - Sword, 1H Alliance PvP]|h|r"},["Frostweave Gloves"]={SubType="Cloth",Level=53,id=13870,StackCount=1,Rarity=2,MinLevel=47,SellPrice=5471,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:13870::::::::40:::::::|h[Frostweave Gloves]|h|r"},["Thunderbrew's Boot Flask"]={SubType="Miscellaneous",Level=44,id=744,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=132788,Link="|cff1eff00|Hitem:744::::::::40:::::::|h[Thunderbrew's Boot Flask]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Rackmore's Silver Key"]={SubType="Quest",Level=1,id=15878,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,EquipLoc="",Link="|cffffffff|Hitem:15878::::::::40:::::::|h[Rackmore's Silver Key]|h|r",Type="Quest"},["Field Marshal's Leather Mask"]={SubType="Leather",Level=74,id=16455,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25172,Texture=133143,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16455::::::::40:::::::|h[Field Marshal's Leather Mask]|h|r",Type="Armor"},["Windrunner Legguards"]={SubType="Mail",Level=56,id=13130,StackCount=1,Rarity=3,MinLevel=51,SellPrice=25065,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:13130::::::::40:::::::|h[Windrunner Legguards]|h|r"},["Orb of Lorica"]={SubType="Miscellaneous",Level=44,id=11262,StackCount=1,Rarity=3,MinLevel=0,SellPrice=8142,Texture=134333,Type="Armor",Link="|cff0070dd|Hitem:11262::::::::40:::::::|h[Orb of Lorica]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Raw Slitherskin Mackerel"]={SubType="Consumable",Level=5,id=6303,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=133910,Link="|cffffffff|Hitem:6303::::::::40:::::::|h[Raw Slitherskin Mackerel]|h|r",EquipLoc="",Type="Consumable"},["Turtle Egg (Olive)"]={SubType="Junk",Level=20,id=18967,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=132833,Type="Miscellaneous",Link="|cffffffff|Hitem:18967::::::::40:::::::|h[Turtle Egg (Olive)]|h|r",EquipLoc=""},["Loksey's Training Stick"]={SubType="Staves",Level=36,id=7710,StackCount=1,Rarity=3,MinLevel=31,SellPrice=12279,Texture=135155,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:7710::::::::40:::::::|h[Loksey's Training Stick]|h|r",Type="Weapon"},["Human Orphan Whistle"]={SubType="Junk",Level=10,id=18598,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132161,Type="Miscellaneous",Link="|cffffffff|Hitem:18598::::::::40:::::::|h[Human Orphan Whistle]|h|r",EquipLoc=""},["Polar Gauntlets"]={SubType="Mail",Level=22,id=7606,StackCount=1,Rarity=2,MinLevel=0,SellPrice=557,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7606::::::::40:::::::|h[Polar Gauntlets]|h|r",Type="Armor"},["Devout Gloves"]={SubType="Cloth",Level=59,id=16692,StackCount=1,Rarity=3,MinLevel=54,SellPrice=9372,Texture=132948,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16692::::::::40:::::::|h[Devout Gloves]|h|r",Type="Armor"},["Abyssal Cloth Handwraps"]={SubType="Cloth",Level=60,id=20655,StackCount=1,Rarity=2,MinLevel=55,SellPrice=8054,Texture=132966,Link="|cff1eff00|Hitem:20655::::::::40:::::::|h[Abyssal Cloth Handwraps]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Devout Robe"]={SubType="Cloth",Level=63,id=16690,StackCount=1,Rarity=3,MinLevel=58,SellPrice=22616,Texture=132652,EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:16690::::::::40:::::::|h[Devout Robe]|h|r",Type="Armor"},["Cuergo's Gold with Worm"]={SubType="Consumable",Level=1,id=9361,StackCount=1,Rarity=1,MinLevel=0,SellPrice=400,Texture=132788,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9361::::::::40:::::::|h[Cuergo's Gold with Worm]|h|r"},["Gouging Pick"]={SubType="One-Handed Axes",Level=22,id=1819,StackCount=1,Rarity=0,MinLevel=17,SellPrice=768,Texture=134708,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:1819::::::::40:::::::|h[Gouging Pick]|h|r"},["Tablet of Windfury Totem III"]={SubType="Book",Level=60,id=9180,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9180::::::::40:::::::|h[Tablet of Windfury Totem III]|h|r"},["Lucine Longsword"]={SubType="One-Handed Swords",Level=25,id=3400,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2761,Texture=135321,Link="|cff1eff00|Hitem:3400::::::::40:::::::|h[Lucine Longsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Filled Gahrron's Withering Bottle"]={SubType="Quest",Level=1,id=13193,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134828,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13193::::::::40:::::::|h[Filled Gahrron's Withering Bottle]|h|r"},["Leggings of Arcana"]={SubType="Leather",Level=62,id=12756,StackCount=1,Rarity=4,MinLevel=0,SellPrice=35057,Texture=134585,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:12756::::::::40:::::::|h[Leggings of Arcana]|h|r"},["Ebon Vise"]={SubType="Leather",Level=35,id=7690,StackCount=1,Rarity=3,MinLevel=30,SellPrice=2232,Texture=132966,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:7690::::::::40:::::::|h[Ebon Vise]|h|r",Type="Armor"},["Stonegrip Gauntlets"]={SubType="Plate",Level=60,id=13072,StackCount=1,Rarity=3,MinLevel=55,SellPrice=10426,Texture=132937,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13072::::::::40:::::::|h[Stonegrip Gauntlets]|h|r"},["Bronze Battle Axe"]={SubType="Two-Handed Axes",Level=27,id=7958,StackCount=1,Rarity=1,MinLevel=22,SellPrice=2435,Texture=132415,Link="|cffffffff|Hitem:7958::::::::40:::::::|h[Bronze Battle Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Case of Homebrew"]={SubType="Consumable",Level=1,id=22288,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132764,Link="|cffffffff|Hitem:22288::::::::40:::::::|h[Case of Homebrew]|h|r",EquipLoc="",Type="Consumable"},["Legionnaire's Mail Chestpiece"]={SubType="Mail",Level=63,id=16522,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16827,Texture=132638,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16522::::::::40:::::::|h[Legionnaire's Mail Chestpiece]|h|r",Type="Armor"},["Melrache's Cape"]={SubType="Cloth",Level=12,id=3331,StackCount=1,Rarity=1,MinLevel=7,SellPrice=101,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:3331::::::::40:::::::|h[Melrache's Cape]|h|r",Type="Armor"},["Windchaser Handguards"]={SubType="Cloth",Level=44,id=14431,StackCount=1,Rarity=2,MinLevel=39,SellPrice=2877,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14431::::::::40:::::::|h[Windchaser Handguards]|h|r"},["High Warlord's Razor"]={SubType="Daggers",Level=78,id=18840,StackCount=1,Rarity=4,MinLevel=60,SellPrice=48812,Texture=135649,Type="Weapon",Link="|cffa335ee|Hitem:18840::::::::40:::::::|h[High Warlord's Razor]|h|r",EquipLoc="INVTYPE_WEAPON"},["Smoked Sagefish"]={SubType="Consumable",Level=20,id=21072,StackCount=20,Rarity=1,MinLevel=10,SellPrice=40,Texture=133906,Type="Consumable",Link="|cffffffff|Hitem:21072::::::::40:::::::|h[Smoked Sagefish]|h|r",EquipLoc=""},["Bloodvine Leggings"]={SubType="Cloth",Level=65,id=19683,StackCount=1,Rarity=3,MinLevel=60,SellPrice=25129,Texture=134608,Link="|cff0070dd|Hitem:19683::::::::40:::::::|h[Bloodvine Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Pagan Bands"]={SubType="Cloth",Level=19,id=14160,StackCount=1,Rarity=2,MinLevel=14,SellPrice=251,Texture=132610,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14160::::::::40:::::::|h[Pagan Bands]|h|r"},["Dark Iron Bomb"]={SubType="Explosives",Level=57,id=16005,StackCount=10,Rarity=1,MinLevel=0,SellPrice=1250,Texture=133713,EquipLoc="",Link="|cffffffff|Hitem:16005::::::::40:::::::|h[Dark Iron Bomb]|h|r",Type="Trade Goods"},["Cask of Merlot"]={SubType="Quest",Level=1,id=1941,StackCount=1,Rarity=1,MinLevel=0,SellPrice=203,Texture=132620,Link="|cffffffff|Hitem:1941::::::::40:::::::|h[Cask of Merlot]|h|r",EquipLoc="",Type="Quest"},["Burnt Leather Gloves"]={SubType="Leather",Level=10,id=2964,StackCount=1,Rarity=1,MinLevel=5,SellPrice=36,Texture=132952,Link="|cffffffff|Hitem:2964::::::::40:::::::|h[Burnt Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Grimoire of Holy Ward"]={SubType="Book",Level=40,id=4216,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133738,Type="Recipe",Link="|cffffffff|Hitem:4216::::::::40:::::::|h[Grimoire of Holy Ward]|h|r",EquipLoc=""},["Satyr's Rod"]={SubType="Miscellaneous",Level=33,id=15962,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2716,Texture=135145,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15962::::::::40:::::::|h[Satyr's Rod]|h|r",Type="Armor"},["Highland Raptor Eye"]={SubType="Quest",Level=1,id=4512,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133884,Link="|cffffffff|Hitem:4512::::::::40:::::::|h[Highland Raptor Eye]|h|r",EquipLoc="",Type="Quest"},["OOX-09/HL Distress Beacon"]={SubType="Quest",Level=43,id=8704,StackCount=1,Rarity=2,MinLevel=43,SellPrice=0,Texture=132836,Link="|cff1eff00|Hitem:8704::::::::40:::::::|h[OOX-09/HL Distress Beacon]|h|r",EquipLoc="",Type="Quest"},["Blue Sack of Gems"]={SubType="Junk",Level=1,id=17962,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4762,Texture=133641,EquipLoc="",Link="|cff1eff00|Hitem:17962::::::::40:::::::|h[Blue Sack of Gems]|h|r",Type="Miscellaneous"},["Annihilator"]={SubType="One-Handed Axes",Level=63,id=12798,StackCount=1,Rarity=3,MinLevel=58,SellPrice=57150,Texture=132403,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:12798::::::::40:::::::|h[Annihilator]|h|r"},["Sterling Chain Pants"]={SubType="Mail",Level=64,id=4013,StackCount=1,Rarity=0,MinLevel=59,SellPrice=11759,Texture=134583,Type="Armor",Link="|cff9d9d9d|Hitem:4013::::::::40:::::::|h[Sterling Chain Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Formula: Enchant Chest - Major Mana"]={SubType="Enchanting",Level=58,id=16242,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5500,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16242::::::::40:::::::|h[Formula: Enchant Chest - Major Mana]|h|r",Type="Recipe"},["Desecrated Legguards"]={SubType="Junk",Level=60,id=22359,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133826,Link="|cffa335ee|Hitem:22359::::::::40:::::::|h[Desecrated Legguards]|h|r",EquipLoc="",Type="Miscellaneous"},["Polychromatic Visionwrap"]={SubType="Cloth",Level=61,id=12609,StackCount=1,Rarity=3,MinLevel=56,SellPrice=20498,Texture=132658,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:12609::::::::40:::::::|h[Polychromatic Visionwrap]|h|r"},["Engraved Bracers"]={SubType="Mail",Level=56,id=10229,StackCount=1,Rarity=2,MinLevel=51,SellPrice=10331,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10229::::::::40:::::::|h[Engraved Bracers]|h|r",Type="Armor"},["Friar's Robes of the Light"]={SubType="Cloth",Level=5,id=16605,StackCount=1,Rarity=2,MinLevel=0,SellPrice=17,Texture=132645,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:16605::::::::40:::::::|h[Friar's Robes of the Light]|h|r",Type="Armor"},["Intact Basilisk Spine"]={SubType="Junk",Level=1,id=1702,StackCount=5,Rarity=0,MinLevel=0,SellPrice=320,Texture=133720,EquipLoc="",Link="|cff9d9d9d|Hitem:1702::::::::40:::::::|h[Intact Basilisk Spine]|h|r",Type="Miscellaneous"},["Book of Mark of the Wild II"]={SubType="Book",Level=10,id=5155,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133743,Link="|cffffffff|Hitem:5155::::::::40:::::::|h[Book of Mark of the Wild II]|h|r",EquipLoc="",Type="Recipe"},["Totemic Clan Ring"]={SubType="Miscellaneous",Level=25,id=5313,StackCount=1,Rarity=2,MinLevel=0,SellPrice=650,Texture=134413,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:5313::::::::40:::::::|h[Totemic Clan Ring]|h|r",Type="Armor"},["Formula: Lesser Mana Oil"]={SubType="Enchanting",Level=50,id=20754,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134327,Link="|cffffffff|Hitem:20754::::::::40:::::::|h[Formula: Lesser Mana Oil]|h|r",EquipLoc="",Type="Recipe"},["Scooby Snack"]={SubType="Consumable",Level=1,id=8243,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133983,Link="|cffffffff|Hitem:8243::::::::40:::::::|h[Scooby Snack]|h|r",EquipLoc="",Type="Consumable"},["Emblazoned Gloves"]={SubType="Leather",Level=29,id=6397,StackCount=1,Rarity=2,MinLevel=24,SellPrice=985,Texture=132958,Type="Armor",Link="|cff1eff00|Hitem:6397::::::::40:::::::|h[Emblazoned Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Wrangler's Wraps"]={SubType="Leather",Level=29,id=15337,StackCount=1,Rarity=2,MinLevel=24,SellPrice=2027,Texture=132656,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15337::::::::40:::::::|h[Wrangler's Wraps]|h|r",Type="Armor"},["Iceblade Hacker"]={SubType="One-Handed Axes",Level=62,id=13952,StackCount=1,Rarity=3,MinLevel=57,SellPrice=56683,Texture=132394,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:13952::::::::40:::::::|h[Iceblade Hacker]|h|r"},["Frostbite"]={SubType="One-Handed Axes",Level=65,id=19103,StackCount=1,Rarity=3,MinLevel=60,SellPrice=63999,Texture=132416,Link="|cff0070dd|Hitem:19103::::::::40:::::::|h[Frostbite]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Cape of the Fire Salamander"]={SubType="Cloth",Level=58,id=11812,StackCount=1,Rarity=3,MinLevel=53,SellPrice=13979,Texture=133770,Type="Armor",Link="|cff0070dd|Hitem:11812::::::::40:::::::|h[Cape of the Fire Salamander]|h|r",EquipLoc="INVTYPE_CLOAK"},["Strength of Will"]={SubType="Miscellaneous",Level=30,id=4837,StackCount=1,Rarity=2,MinLevel=25,SellPrice=2000,Texture=133438,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:4837::::::::40:::::::|h[Strength of Will]|h|r"},["Black Vitriol"]={SubType="Trade Goods",Level=40,id=9262,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134133,Link="|cffffffff|Hitem:9262::::::::40:::::::|h[Black Vitriol]|h|r",EquipLoc="",Type="Trade Goods"},["Ghostweave Gloves"]={SubType="Cloth",Level=54,id=14142,StackCount=1,Rarity=2,MinLevel=49,SellPrice=6087,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14142::::::::40:::::::|h[Ghostweave Gloves]|h|r"},["Pattern: Guardian Leather Bracers"]={SubType="Leatherworking",Level=39,id=4300,StackCount=1,Rarity=2,MinLevel=0,SellPrice=700,Texture=134939,Link="|cff1eff00|Hitem:4300::::::::40:::::::|h[Pattern: Guardian Leather Bracers]|h|r",EquipLoc="",Type="Recipe"},["Horn of the Swift Gray Wolf"]={SubType="Junk",Level=60,id=18798,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132266,Type="Miscellaneous",Link="|cffa335ee|Hitem:18798::::::::40:::::::|h[Horn of the Swift Gray Wolf]|h|r",EquipLoc=""},["Lucky Charm"]={SubType="Junk",Level=1,id=5373,StackCount=5,Rarity=1,MinLevel=0,SellPrice=72,Texture=133601,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:5373::::::::40:::::::|h[Lucky Charm]|h|r"},["Deprecated Stormwind Guard Belt"]={SubType="Mail",Level=15,id=1969,StackCount=1,Rarity=0,MinLevel=0,SellPrice=85,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:1969::::::::40:::::::|h[Deprecated Stormwind Guard Belt]|h|r"},["Sayge's Fortune #26"]={SubType="Junk",Level=1,id=19451,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19451::::::::40:::::::|h[Sayge's Fortune #26]|h|r",EquipLoc="",Type="Miscellaneous"},["Recipe: Elixir of Greater Firepower"]={SubType="Alchemy",Level=50,id=21547,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2500,Texture=134942,Link="|cff1eff00|Hitem:21547::::::::40:::::::|h[Recipe: Elixir of Greater Firepower]|h|r",EquipLoc="",Type="Recipe"},["Claw of Celebras"]={SubType="Fist Weapons",Level=52,id=17738,StackCount=1,Rarity=3,MinLevel=47,SellPrice=33351,Texture=132369,EquipLoc="INVTYPE_WEAPONOFFHAND",Link="|cff0070dd|Hitem:17738::::::::40:::::::|h[Claw of Celebras]|h|r",Type="Weapon"},["Tablet of Will"]={SubType="Quest",Level=1,id=5824,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134414,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5824::::::::40:::::::|h[Tablet of Will]|h|r"},["Level 65 Test Gear Mail - Hunter 2"]={SubType="Junk",Level=1,id=17857,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17857::::::::40:::::::|h[Level 65 Test Gear Mail - Hunter 2]|h|r",Type="Miscellaneous"},["Knight-Lieutenant's Chain Vices"]={SubType="Mail",Level=66,id=23279,StackCount=1,Rarity=3,MinLevel=60,SellPrice=10160,Texture=132951,Link="|cff0070dd|Hitem:23279::::::::40:::::::|h[Knight-Lieutenant's Chain Vices]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Beastmaster's Pants"]={SubType="Mail",Level=66,id=22017,StackCount=1,Rarity=3,MinLevel=0,SellPrice=39735,Texture=134583,Link="|cff0070dd|Hitem:22017::::::::40:::::::|h[Beastmaster's Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Darrowshire Strongguard"]={SubType="Shields",Level=63,id=14002,StackCount=1,Rarity=3,MinLevel=0,SellPrice=36720,Texture=134951,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:14002::::::::40:::::::|h[Darrowshire Strongguard]|h|r"},["Essence of the Elements"]={SubType="Quest",Level=1,id=11129,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132878,Type="Quest",Link="|cffffffff|Hitem:11129::::::::40:::::::|h[Essence of the Elements]|h|r",EquipLoc=""},["Shredder Operating Manual - Page 2"]={SubType="Junk",Level=1,id=16646,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:16646::::::::40:::::::|h[Shredder Operating Manual - Page 2]|h|r",Type="Miscellaneous"},["Flayed Doomguard Belt"]={SubType="Leather",Level=68,id=19134,StackCount=1,Rarity=4,MinLevel=60,SellPrice=23365,Texture=132505,Link="|cffa335ee|Hitem:19134::::::::40:::::::|h[Flayed Doomguard Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Libram: Blessing of Might VII"]={SubType="Book",Level=60,id=21289,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133740,Link="|cff0070dd|Hitem:21289::::::::40:::::::|h[Libram: Blessing of Might VII]|h|r",EquipLoc="",Type="Recipe"},["Deprecated Padded Cloth Hat"]={SubType="Cloth",Level=27,id=3886,StackCount=1,Rarity=1,MinLevel=22,SellPrice=604,Texture=133072,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:3886::::::::40:::::::|h[Deprecated Padded Cloth Hat]|h|r"},["Freshly Baked Pie"]={SubType="Consumable",Level=1,id=22175,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133952,Link="|cffffffff|Hitem:22175::::::::40:::::::|h[Freshly Baked Pie]|h|r",EquipLoc="",Type="Consumable"},["Huntsman Malkhor's Skull"]={SubType="Quest",Level=1,id=19069,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133731,Link="|cffffffff|Hitem:19069::::::::40:::::::|h[Huntsman Malkhor's Skull]|h|r",EquipLoc="",Type="Quest"},["Pamela's Doll's Left Side"]={SubType="Quest",Level=1,id=12887,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134230,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12887::::::::40:::::::|h[Pamela's Doll's Left Side]|h|r"},["Two of Warlords"]={SubType="Junk",Level=1,id=19259,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134497,Link="|cff0070dd|Hitem:19259::::::::40:::::::|h[Two of Warlords]|h|r",EquipLoc="",Type="Miscellaneous"},["Resplendent Cloak"]={SubType="Cloth",Level=55,id=14321,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9438,Texture=133760,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14321::::::::40:::::::|h[Resplendent Cloak]|h|r"},["Test Arcane Resist Plate LockBox"]={SubType="Junk",Level=1,id=16185,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16185::::::::40:::::::|h[Test Arcane Resist Plate LockBox]|h|r",Type="Miscellaneous"},["Book of Moonfire III"]={SubType="Book",Level=16,id=1882,StackCount=1,Rarity=1,MinLevel=16,SellPrice=325,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:1882::::::::40:::::::|h[Book of Moonfire III]|h|r",Type="Recipe"},["Grimoire of Curse of Weakness II"]={SubType="Book",Level=14,id=9200,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9200::::::::40:::::::|h[Grimoire of Curse of Weakness II]|h|r"},["Level 65 Test Gear Leather - Druid 2"]={SubType="Junk",Level=1,id=17854,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17854::::::::40:::::::|h[Level 65 Test Gear Leather - Druid 2]|h|r",Type="Miscellaneous"},["Pattern: Admiral's Hat"]={SubType="Tailoring",Level=48,id=10318,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1750,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10318::::::::40:::::::|h[Pattern: Admiral's Hat]|h|r",Type="Recipe"},["Nemesis Boots"]={SubType="Cloth",Level=76,id=16927,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45551,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16927::::::::40:::::::|h[Nemesis Boots]|h|r",Type="Armor"},["Mantle of Phrenic Power"]={SubType="Cloth",Level=76,id=21686,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45577,Texture=135033,Link="|cffa335ee|Hitem:21686::::::::40:::::::|h[Mantle of Phrenic Power]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Prospector's Sash"]={SubType="Leather",Level=18,id=14559,StackCount=1,Rarity=2,MinLevel=13,SellPrice=279,Texture=132515,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14559::::::::40:::::::|h[Prospector's Sash]|h|r"},["Theramore Medal"]={SubType="Quest",Level=1,id=5078,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133277,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5078::::::::40:::::::|h[Theramore Medal]|h|r"},["Thin Black Claw"]={SubType="Junk",Level=1,id=5135,StackCount=5,Rarity=0,MinLevel=0,SellPrice=142,Texture=133723,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5135::::::::40:::::::|h[Thin Black Claw]|h|r"},["Subterranean Cape"]={SubType="Cloth",Level=18,id=14149,StackCount=1,Rarity=2,MinLevel=13,SellPrice=307,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14149::::::::40:::::::|h[Subterranean Cape]|h|r"},["Love Potion"]={SubType="Junk",Level=1,id=22258,StackCount=9,Rarity=1,MinLevel=1,SellPrice=0,Texture=134720,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22258::::::::40:::::::|h[Love Potion]|h|r"},["Rough Bronze Leggings"]={SubType="Mail",Level=21,id=2865,StackCount=1,Rarity=2,MinLevel=16,SellPrice=962,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:2865::::::::40:::::::|h[Rough Bronze Leggings]|h|r"},["Abyssal Plate Vambraces"]={SubType="Plate",Level=68,id=20687,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14019,Texture=132618,Link="|cff0070dd|Hitem:20687::::::::40:::::::|h[Abyssal Plate Vambraces]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Holy Spring Water"]={SubType="Quest",Level=1,id=737,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134712,Type="Quest",Link="|cffffffff|Hitem:737::::::::40:::::::|h[Holy Spring Water]|h|r",EquipLoc=""},["Permanent Sheen of Zanza"]={SubType="Consumable",Level=65,id=23794,StackCount=1,Rarity=2,MinLevel=55,SellPrice=0,Texture=134809,Link="|cff1eff00|Hitem:23794::::::::40:::::::|h[Permanent Sheen of Zanza]|h|r",EquipLoc="",Type="Consumable"},["Arcanist Mantle"]={SubType="Cloth",Level=66,id=16797,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25591,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16797::::::::40:::::::|h[Arcanist Mantle]|h|r",Type="Armor"},["Recipe: Frost Oil"]={SubType="Alchemy",Level=40,id=14634,StackCount=1,Rarity=2,MinLevel=0,SellPrice=625,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14634::::::::40:::::::|h[Recipe: Frost Oil]|h|r"},["Pouch of Reindeer Dust"]={SubType="Quest",Level=1,id=21211,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133645,Link="|cffffffff|Hitem:21211::::::::40:::::::|h[Pouch of Reindeer Dust]|h|r",EquipLoc="",Type="Quest"},["Ring of Unspoken Names"]={SubType="Miscellaneous",Level=65,id=21417,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133425,Link="|cffa335ee|Hitem:21417::::::::40:::::::|h[Ring of Unspoken Names]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Arachnid Gloves"]={SubType="Leather",Level=42,id=10777,StackCount=1,Rarity=3,MinLevel=37,SellPrice=4014,Texture=132966,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:10777::::::::40:::::::|h[Arachnid Gloves]|h|r",Type="Armor"},["Frostwolf Leather Belt"]={SubType="Leather",Level=60,id=19089,StackCount=1,Rarity=3,MinLevel=55,SellPrice=11860,Texture=132515,Link="|cff0070dd|Hitem:19089::::::::40:::::::|h[Frostwolf Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Onyx Ring"]={SubType="Miscellaneous",Level=46,id=7547,StackCount=1,Rarity=2,MinLevel=41,SellPrice=3092,Texture=133357,Link="|cff1eff00|Hitem:7547::::::::40:::::::|h[Onyx Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Test Nature Res Waist Cloth"]={SubType="Cloth",Level=35,id=16120,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1500,Texture=133693,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16120::::::::40:::::::|h[Test Nature Res Waist Cloth]|h|r",Type="Armor"},["Drake Talon Pauldrons"]={SubType="Plate",Level=75,id=19394,StackCount=1,Rarity=4,MinLevel=60,SellPrice=39395,Texture=135054,Link="|cffa335ee|Hitem:19394::::::::40:::::::|h[Drake Talon Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Cracked Leather Bracers"]={SubType="Leather",Level=5,id=2124,StackCount=1,Rarity=1,MinLevel=1,SellPrice=6,Texture=132611,Link="|cffffffff|Hitem:2124::::::::40:::::::|h[Cracked Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Holy Protection Potion"]={SubType="Consumable",Level=20,id=6051,StackCount=5,Rarity=1,MinLevel=10,SellPrice=62,Texture=134720,Type="Consumable",Link="|cffffffff|Hitem:6051::::::::40:::::::|h[Holy Protection Potion]|h|r",EquipLoc=""},["Zandalarian Shadow Mastery Talisman"]={SubType="Miscellaneous",Level=65,id=19617,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=133313,Link="|cffa335ee|Hitem:19617::::::::40:::::::|h[Zandalarian Shadow Mastery Talisman]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Force of the Hippogryph"]={SubType="One-Handed Axes",Level=51,id=9684,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25729,Texture=132403,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:9684::::::::40:::::::|h[Force of the Hippogryph]|h|r"},["Settler's Leggings"]={SubType="Mail",Level=17,id=2694,StackCount=1,Rarity=2,MinLevel=0,SellPrice=539,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:2694::::::::40:::::::|h[Settler's Leggings]|h|r"},["Schematic: Goblin Rocket Boots"]={SubType="Engineering",Level=26,id=7192,StackCount=1,Rarity=2,MinLevel=0,SellPrice=300,Texture=134939,EquipLoc="",Link="|cff1eff00|Hitem:7192::::::::40:::::::|h[Schematic: Goblin Rocket Boots]|h|r",Type="Recipe"},["Cleansed Timberling Heart"]={SubType="Quest",Level=1,id=5218,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5218::::::::40:::::::|h[Cleansed Timberling Heart]|h|r"},["Worn Stone Token"]={SubType="Quest",Level=1,id=3714,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134414,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3714::::::::40:::::::|h[Worn Stone Token]|h|r"},["War Paint Bindings"]={SubType="Mail",Level=17,id=14723,StackCount=1,Rarity=2,MinLevel=12,SellPrice=290,Texture=132605,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14723::::::::40:::::::|h[War Paint Bindings]|h|r"},["Bloodseeker"]={SubType="Crossbows",Level=63,id=19107,StackCount=1,Rarity=3,MinLevel=0,SellPrice=44171,Texture=135536,Link="|cff0070dd|Hitem:19107::::::::40:::::::|h[Bloodseeker]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Primal Tiger Leather"]={SubType="Trade Goods",Level=60,id=19768,StackCount=20,Rarity=1,MinLevel=0,SellPrice=2000,Texture=134348,Link="|cffffffff|Hitem:19768::::::::40:::::::|h[Primal Tiger Leather]|h|r",EquipLoc="",Type="Trade Goods"},["Hand of Iruxos"]={SubType="Quest",Level=1,id=14547,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132937,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14547::::::::40:::::::|h[Hand of Iruxos]|h|r"},["3300 Test Crossbow 63 blue"]={SubType="Crossbows",Level=63,id=19489,StackCount=1,Rarity=3,MinLevel=60,SellPrice=41191,Texture=135533,Link="|cff0070dd|Hitem:19489::::::::40:::::::|h[3300 Test Crossbow 63 blue]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Gold-capped Troll Tusk"]={SubType="Junk",Level=1,id=9336,StackCount=5,Rarity=0,MinLevel=0,SellPrice=1288,Texture=133025,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:9336::::::::40:::::::|h[Gold-capped Troll Tusk]|h|r"},["Clean Fishbones"]={SubType="Junk",Level=1,id=4874,StackCount=5,Rarity=0,MinLevel=0,SellPrice=46,Texture=133719,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:4874::::::::40:::::::|h[Clean Fishbones]|h|r",EquipLoc=""},["Monster - Mace2H, Horde Red Spiked Badass"]={SubType="Two-Handed Maces",Level=1,id=14823,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14823::::::::40:::::::|h[Monster - Mace2H, Horde Red Spiked Badass]|h|r"},["Bark Iron Pauldrons"]={SubType="Plate",Level=50,id=11889,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7345,Texture=135059,Type="Armor",Link="|cff1eff00|Hitem:11889::::::::40:::::::|h[Bark Iron Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Black Metal Shortsword"]={SubType="One-Handed Swords",Level=26,id=886,StackCount=1,Rarity=2,MinLevel=21,SellPrice=2949,Texture=135327,Type="Weapon",Link="|cff1eff00|Hitem:886::::::::40:::::::|h[Black Metal Shortsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Empty Writhing Haunt Bottle"]={SubType="Quest",Level=1,id=13188,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134870,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13188::::::::40:::::::|h[Empty Writhing Haunt Bottle]|h|r"},["Windtalker's Wristguards"]={SubType="Mail",Level=65,id=19582,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24220,Texture=132602,Link="|cffa335ee|Hitem:19582::::::::40:::::::|h[Windtalker's Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Formula: Enchant Weapon - Demonslaying"]={SubType="Enchanting",Level=46,id=11208,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1350,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11208::::::::40:::::::|h[Formula: Enchant Weapon - Demonslaying]|h|r",EquipLoc=""},["Libram: Judgement"]={SubType="Book",Level=40,id=4167,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133740,Type="Recipe",Link="|cffffffff|Hitem:4167::::::::40:::::::|h[Libram: Judgement]|h|r",EquipLoc=""},["Green Dragonskin Cloak"]={SubType="Cloth",Level=71,id=20579,StackCount=1,Rarity=4,MinLevel=60,SellPrice=32675,Texture=133769,Link="|cffa335ee|Hitem:20579::::::::40:::::::|h[Green Dragonskin Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Patchwork Cloak"]={SubType="Cloth",Level=6,id=1429,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7,Texture=133763,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:1429::::::::40:::::::|h[Patchwork Cloak]|h|r"},["[PH] Mail Bracers of the Shining Dawn"]={SubType="Mail",Level=100,id=13747,StackCount=1,Rarity=1,MinLevel=100,SellPrice=54476,Texture=132613,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:13747::::::::40:::::::|h[[PH] Mail Bracers of the Shining Dawn]|h|r"},["Monster - Dagger, Broad/Flat Blade"]={SubType="Daggers",Level=1,id=5281,StackCount=1,Rarity=0,MinLevel=1,SellPrice=6,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:5281::::::::40:::::::|h[Monster - Dagger, Broad/Flat Blade]|h|r",Type="Weapon"},["Field Marshal's Plate Shoulderguards"]={SubType="Plate",Level=74,id=16480,StackCount=1,Rarity=4,MinLevel=60,SellPrice=19047,Texture=135051,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16480::::::::40:::::::|h[Field Marshal's Plate Shoulderguards]|h|r",Type="Armor"},["Large Knapsack"]={SubType="Bag",Level=35,id=1725,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=133632,Link="|cffffffff|Hitem:1725::::::::40:::::::|h[Large Knapsack]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Snapjaw Crocolisk Skin"]={SubType="Quest",Level=1,id=4104,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134305,EquipLoc="",Link="|cffffffff|Hitem:4104::::::::40:::::::|h[Snapjaw Crocolisk Skin]|h|r",Type="Quest"},["Schematic: Large Blue Rocket Cluster"]={SubType="Engineering",Level=55,id=21733,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Link="|cff1eff00|Hitem:21733::::::::40:::::::|h[Schematic: Large Blue Rocket Cluster]|h|r",EquipLoc="",Type="Recipe"},["Monster - Sword, Red Long"]={SubType="One-Handed Swords",Level=1,id=10825,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135277,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:10825::::::::40:::::::|h[Monster - Sword, Red Long]|h|r",Type="Weapon"},["Frostwolf Plate Belt"]={SubType="Plate",Level=60,id=19087,StackCount=1,Rarity=3,MinLevel=55,SellPrice=10176,Texture=132524,Link="|cff0070dd|Hitem:19087::::::::40:::::::|h[Frostwolf Plate Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Desperado Cape"]={SubType="Cloth",Level=20,id=2241,StackCount=1,Rarity=2,MinLevel=15,SellPrice=615,Texture=133756,Type="Armor",Link="|cff1eff00|Hitem:2241::::::::40:::::::|h[Desperado Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Tome of Sleep"]={SubType="Book",Level=8,id=8809,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=133739,Link="|cffffffff|Hitem:8809::::::::40:::::::|h[Tome of Sleep]|h|r",EquipLoc="",Type="Recipe"},["Monster - Staff, 3 Piece Taped Staff Blue"]={SubType="Staves",Level=1,id=14707,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135146,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14707::::::::40:::::::|h[Monster - Staff, 3 Piece Taped Staff Blue]|h|r"},["Frostfire Sandals"]={SubType="Cloth",Level=86,id=22500,StackCount=1,Rarity=4,MinLevel=60,SellPrice=67930,Texture=132579,Link="|cffa335ee|Hitem:22500::::::::40:::::::|h[Frostfire Sandals]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Pure Un'Goro Sample"]={SubType="Quest",Level=1,id=12236,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134857,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12236::::::::40:::::::|h[Pure Un'Goro Sample]|h|r"},["Stormrage Chestguard"]={SubType="Leather",Level=76,id=16897,StackCount=1,Rarity=4,MinLevel=60,SellPrice=71351,Texture=132638,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16897::::::::40:::::::|h[Stormrage Chestguard]|h|r",Type="Armor"},["[PH] Everburning Elixir"]={SubType="Consumable",Level=0,id=23245,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135264,Link="|cffffffff|Hitem:23245::::::::40:::::::|h[[PH] Everburning Elixir]|h|r",EquipLoc="",Type="Consumable"},["Gloves of Kapelan"]={SubType="Cloth",Level=33,id=6744,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1190,Texture=132937,Type="Armor",Link="|cff1eff00|Hitem:6744::::::::40:::::::|h[Gloves of Kapelan]|h|r",EquipLoc="INVTYPE_HAND"},["Schematic: Shadow Goggles"]={SubType="Engineering",Level=24,id=4410,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:4410::::::::40:::::::|h[Schematic: Shadow Goggles]|h|r",Type="Recipe"},["Grimoire of Life Drain"]={SubType="Book",Level=14,id=3141,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:3141::::::::40:::::::|h[Grimoire of Life Drain]|h|r",Type="Recipe"},["Duskwing Gloves"]={SubType="Leather",Level=60,id=16994,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9884,Texture=132936,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:16994::::::::40:::::::|h[Duskwing Gloves]|h|r",Type="Armor"},["Moon Cleaver"]={SubType="One-Handed Axes",Level=52,id=15236,StackCount=1,Rarity=2,MinLevel=47,SellPrice=27485,Texture=132407,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15236::::::::40:::::::|h[Moon Cleaver]|h|r",Type="Weapon"},["Stormpike Soldier's Flesh"]={SubType="Quest",Level=1,id=17326,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=134008,EquipLoc="",Link="|cffffffff|Hitem:17326::::::::40:::::::|h[Stormpike Soldier's Flesh]|h|r",Type="Quest"},["Formidable Cape"]={SubType="Cloth",Level=46,id=15632,StackCount=1,Rarity=2,MinLevel=41,SellPrice=4997,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15632::::::::40:::::::|h[Formidable Cape]|h|r",Type="Armor"},["Cog #5"]={SubType="Quest",Level=1,id=4846,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134063,Type="Quest",Link="|cffffffff|Hitem:4846::::::::40:::::::|h[Cog #5]|h|r",EquipLoc=""},["Feathered Mantle"]={SubType="Leather",Level=30,id=4196,StackCount=1,Rarity=3,MinLevel=25,SellPrice=1944,Texture=135036,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:4196::::::::40:::::::|h[Feathered Mantle]|h|r",Type="Armor"},["Level 65 Test Gear Plate - Paladin"]={SubType="Junk",Level=1,id=13685,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13685::::::::40:::::::|h[Level 65 Test Gear Plate - Paladin]|h|r"},["Darkmoon Special Reserve"]={SubType="Consumable",Level=1,id=19221,StackCount=10,Rarity=1,MinLevel=0,SellPrice=12,Texture=132790,Link="|cffffffff|Hitem:19221::::::::40:::::::|h[Darkmoon Special Reserve]|h|r",EquipLoc="",Type="Consumable"},["Gelatinous Goo"]={SubType="Junk",Level=1,id=3669,StackCount=5,Rarity=0,MinLevel=0,SellPrice=195,Texture=134437,EquipLoc="",Link="|cff9d9d9d|Hitem:3669::::::::40:::::::|h[Gelatinous Goo]|h|r",Type="Miscellaneous"},["Small Throwing Knife"]={SubType="Thrown",Level=3,id=2947,StackCount=200,Rarity=1,MinLevel=1,SellPrice=0,Texture=135426,Type="Weapon",EquipLoc="INVTYPE_THROWN",Link="|cffffffff|Hitem:2947::::::::40:::::::|h[Small Throwing Knife]|h|r"},["Eight of Beasts"]={SubType="Junk",Level=1,id=19236,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134482,Link="|cff0070dd|Hitem:19236::::::::40:::::::|h[Eight of Beasts]|h|r",EquipLoc="",Type="Miscellaneous"},["Bright Yellow Shirt"]={SubType="Miscellaneous",Level=27,id=4332,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=135031,Type="Armor",Link="|cffffffff|Hitem:4332::::::::40:::::::|h[Bright Yellow Shirt]|h|r",EquipLoc="INVTYPE_BODY"},["Viridian Band"]={SubType="Miscellaneous",Level=26,id=6589,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1056,Texture=133354,Link="|cff1eff00|Hitem:6589::::::::40:::::::|h[Viridian Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Draenethyst Crystal"]={SubType="Quest",Level=1,id=6071,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134087,Type="Quest",Link="|cffffffff|Hitem:6071::::::::40:::::::|h[Draenethyst Crystal]|h|r",EquipLoc=""},["Hammer of Revitalization"]={SubType="One-Handed Maces",Level=61,id=22315,StackCount=1,Rarity=3,MinLevel=56,SellPrice=49816,Texture=133039,Link="|cff0070dd|Hitem:22315::::::::40:::::::|h[Hammer of Revitalization]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Flash Bundle"]={SubType="Consumable",Level=20,id=1127,StackCount=10,Rarity=1,MinLevel=0,SellPrice=25,Texture=133581,Type="Consumable",Link="|cffffffff|Hitem:1127::::::::40:::::::|h[Flash Bundle]|h|r",EquipLoc=""},["Thorbia's Gauntlets"]={SubType="Mail",Level=23,id=12994,StackCount=1,Rarity=3,MinLevel=18,SellPrice=787,Texture=132945,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:12994::::::::40:::::::|h[Thorbia's Gauntlets]|h|r"},["Well-stitched Robe"]={SubType="Cloth",Level=10,id=1171,StackCount=1,Rarity=1,MinLevel=0,SellPrice=55,Texture=132665,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:1171::::::::40:::::::|h[Well-stitched Robe]|h|r"},["Scallop Shell"]={SubType="Junk",Level=1,id=5377,StackCount=5,Rarity=0,MinLevel=0,SellPrice=57,Texture=134431,Link="|cff9d9d9d|Hitem:5377::::::::40:::::::|h[Scallop Shell]|h|r",EquipLoc="",Type="Miscellaneous"},["Shadowfang"]={SubType="One-Handed Swords",Level=24,id=1482,StackCount=1,Rarity=3,MinLevel=19,SellPrice=2964,Texture=135311,Link="|cff0070dd|Hitem:1482::::::::40:::::::|h[Shadowfang]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Violet Robes"]={SubType="Cloth",Level=9,id=5767,StackCount=1,Rarity=1,MinLevel=4,SellPrice=44,Texture=132679,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:5767::::::::40:::::::|h[Violet Robes]|h|r"},["Tome of Lesser Invisibility"]={SubType="Book",Level=26,id=1002,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1002::::::::40:::::::|h[Tome of Lesser Invisibility]|h|r"},["Highlander's Plate Spaulders"]={SubType="Plate",Level=65,id=20057,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24654,Texture=135032,Link="|cffa335ee|Hitem:20057::::::::40:::::::|h[Highlander's Plate Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Delicate Arcanite Converter"]={SubType="Parts",Level=58,id=16006,StackCount=10,Rarity=1,MinLevel=0,SellPrice=10000,Texture=133001,EquipLoc="",Link="|cffffffff|Hitem:16006::::::::40:::::::|h[Delicate Arcanite Converter]|h|r",Type="Trade Goods"},["Hot Wolf Ribs"]={SubType="Consumable",Level=35,id=13851,StackCount=20,Rarity=1,MinLevel=25,SellPrice=312,Texture=134004,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13851::::::::40:::::::|h[Hot Wolf Ribs]|h|r"},["Foror's Compendium of Dragon Slaying"]={SubType="Junk",Level=60,id=18401,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133743,Type="Miscellaneous",Link="|cffa335ee|Hitem:18401::::::::40:::::::|h[Foror's Compendium of Dragon Slaying]|h|r",EquipLoc=""},["Thunder Lizard Tail"]={SubType="Trade Goods",Level=22,id=5470,StackCount=10,Rarity=1,MinLevel=0,SellPrice=28,Texture=133721,EquipLoc="",Link="|cffffffff|Hitem:5470::::::::40:::::::|h[Thunder Lizard Tail]|h|r",Type="Trade Goods"},["Warsong Boots"]={SubType="Leather",Level=27,id=16977,StackCount=1,Rarity=3,MinLevel=0,SellPrice=1448,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16977::::::::40:::::::|h[Warsong Boots]|h|r",Type="Armor"},["Tok'kar's Murloc Shanker"]={SubType="Daggers",Level=43,id=9680,StackCount=1,Rarity=2,MinLevel=0,SellPrice=14090,Texture=135654,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:9680::::::::40:::::::|h[Tok'kar's Murloc Shanker]|h|r"},["Dalson Cabinet Key"]={SubType="Quest",Level=1,id=12739,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134246,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12739::::::::40:::::::|h[Dalson Cabinet Key]|h|r"},["Tome of Arcane Explosion V"]={SubType="Book",Level=46,id=8837,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=133739,Link="|cffffffff|Hitem:8837::::::::40:::::::|h[Tome of Arcane Explosion V]|h|r",EquipLoc="",Type="Recipe"},["Wildheart Gloves"]={SubType="Leather",Level=59,id=16717,StackCount=1,Rarity=3,MinLevel=54,SellPrice=12244,Texture=132951,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16717::::::::40:::::::|h[Wildheart Gloves]|h|r",Type="Armor"},["Bonecaster's Sarong"]={SubType="Cloth",Level=57,id=14305,StackCount=1,Rarity=2,MinLevel=52,SellPrice=14349,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14305::::::::40:::::::|h[Bonecaster's Sarong]|h|r"},["Marshal's Lamellar Legplates"]={SubType="Plate",Level=71,id=16475,StackCount=1,Rarity=4,MinLevel=60,SellPrice=23793,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16475::::::::40:::::::|h[Marshal's Lamellar Legplates]|h|r",Type="Armor"},["Raptor Skin Pouch"]={SubType="Bag",Level=35,id=1623,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=133642,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:1623::::::::40:::::::|h[Raptor Skin Pouch]|h|r"},["Tablet of Magma Totem"]={SubType="Book",Level=18,id=9076,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9076::::::::40:::::::|h[Tablet of Magma Totem]|h|r"},["Bonelink Helmet"]={SubType="Mail",Level=46,id=15615,StackCount=1,Rarity=2,MinLevel=41,SellPrice=7584,Texture=133070,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15615::::::::40:::::::|h[Bonelink Helmet]|h|r",Type="Armor"},["High Chief's Belt"]={SubType="Plate",Level=51,id=14960,StackCount=1,Rarity=2,MinLevel=46,SellPrice=4870,Texture=132518,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14960::::::::40:::::::|h[High Chief's Belt]|h|r"},["Mindbender Loop"]={SubType="Miscellaneous",Level=36,id=5009,StackCount=1,Rarity=2,MinLevel=31,SellPrice=1696,Texture=133357,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:5009::::::::40:::::::|h[Mindbender Loop]|h|r",Type="Armor"},["Bloodstained Knife"]={SubType="Daggers",Level=9,id=3225,StackCount=1,Rarity=1,MinLevel=4,SellPrice=109,Texture=135637,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:3225::::::::40:::::::|h[Bloodstained Knife]|h|r"},["Warlord's Mail Spaulders"]={SubType="Mail",Level=74,id=16580,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29466,Texture=135060,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16580::::::::40:::::::|h[Warlord's Mail Spaulders]|h|r",Type="Armor"},["Vanguard Girdle"]={SubType="Plate",Level=54,id=14856,StackCount=1,Rarity=2,MinLevel=49,SellPrice=6156,Texture=132511,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14856::::::::40:::::::|h[Vanguard Girdle]|h|r"},["Crystal Flake Throat Lozenge"]={SubType="Consumable",Level=55,id=23683,StackCount=20,Rarity=1,MinLevel=45,SellPrice=750,Texture=133984,Link="|cffffffff|Hitem:23683::::::::40:::::::|h[Crystal Flake Throat Lozenge]|h|r",EquipLoc="",Type="Consumable"},["Grimoire of Curse of Weakness III"]={SubType="Book",Level=24,id=9209,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133738,Link="|cffffffff|Hitem:9209::::::::40:::::::|h[Grimoire of Curse of Weakness III]|h|r",EquipLoc="",Type="Recipe"},["Boots of the Shadow Flame"]={SubType="Leather",Level=83,id=19381,StackCount=1,Rarity=4,MinLevel=60,SellPrice=74734,Texture=132562,Link="|cffa335ee|Hitem:19381::::::::40:::::::|h[Boots of the Shadow Flame]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["90 Epic Warrior Cloak"]={SubType="Cloth",Level=90,id=20145,StackCount=1,Rarity=4,MinLevel=60,SellPrice=40962,Texture=133759,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffa335ee|Hitem:20145::::::::40:::::::|h[90 Epic Warrior Cloak]|h|r"},["Core Forged Greaves"]={SubType="Plate",Level=70,id=18806,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33761,Texture=132590,Type="Armor",Link="|cffa335ee|Hitem:18806::::::::40:::::::|h[Core Forged Greaves]|h|r",EquipLoc="INVTYPE_FEET"},["Knight-Captain's Dragonhide Girdle"]={SubType="Leather",Level=60,id=16399,StackCount=1,Rarity=3,MinLevel=55,SellPrice=6450,Texture=132512,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16399::::::::40:::::::|h[Knight-Captain's Dragonhide Girdle]|h|r",Type="Armor"},["Zealot's Robe"]={SubType="Cloth",Level=36,id=17043,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3054,Texture=132647,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:17043::::::::40:::::::|h[Zealot's Robe]|h|r",Type="Armor"},["Midnight Axe"]={SubType="Two-Handed Axes",Level=34,id=12250,StackCount=1,Rarity=2,MinLevel=29,SellPrice=8068,Texture=132408,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:12250::::::::40:::::::|h[Midnight Axe]|h|r"},["Grimoire of Curse of Weakness"]={SubType="Book",Level=4,id=9191,StackCount=1,Rarity=1,MinLevel=4,SellPrice=10,Texture=133738,Link="|cffffffff|Hitem:9191::::::::40:::::::|h[Grimoire of Curse of Weakness]|h|r",EquipLoc="",Type="Recipe"},["Pagan Britches"]={SubType="Cloth",Level=25,id=14165,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1041,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14165::::::::40:::::::|h[Pagan Britches]|h|r"},["Silvery Claws"]={SubType="Quest",Level=1,id=11172,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134319,Type="Quest",Link="|cffffffff|Hitem:11172::::::::40:::::::|h[Silvery Claws]|h|r",EquipLoc=""},["Tome of Mana Shield III"]={SubType="Book",Level=36,id=8833,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133739,Link="|cffffffff|Hitem:8833::::::::40:::::::|h[Tome of Mana Shield III]|h|r",EquipLoc="",Type="Recipe"},["Choker of the High Shaman"]={SubType="Miscellaneous",Level=44,id=4112,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4182,Texture=133291,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:4112::::::::40:::::::|h[Choker of the High Shaman]|h|r"},["Mixed Berries"]={SubType="Consumable",Level=55,id=11415,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=133996,Type="Consumable",Link="|cffffffff|Hitem:11415::::::::40:::::::|h[Mixed Berries]|h|r",EquipLoc=""},["Embossed Plate Leggings"]={SubType="Plate",Level=44,id=9970,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5730,Texture=134586,Link="|cff1eff00|Hitem:9970::::::::40:::::::|h[Embossed Plate Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Libram: Seal of Wisdom"]={SubType="Book",Level=12,id=6132,StackCount=1,Rarity=1,MinLevel=12,SellPrice=250,Texture=133740,Link="|cffffffff|Hitem:6132::::::::40:::::::|h[Libram: Seal of Wisdom]|h|r",EquipLoc="",Type="Recipe"},["Zergling Leash"]={SubType="Junk",Level=20,id=13582,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136217,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13582::::::::40:::::::|h[Zergling Leash]|h|r"},["Codex of Holy Smite VI"]={SubType="Book",Level=38,id=4284,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4284::::::::40:::::::|h[Codex of Holy Smite VI]|h|r"},["Middle of Gelkak's Key"]={SubType="Quest",Level=1,id=7499,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134236,EquipLoc="",Link="|cffffffff|Hitem:7499::::::::40:::::::|h[Middle of Gelkak's Key]|h|r",Type="Quest"},["Gauntlets of Valor"]={SubType="Plate",Level=59,id=16737,StackCount=1,Rarity=3,MinLevel=54,SellPrice=9794,Texture=132960,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16737::::::::40:::::::|h[Gauntlets of Valor]|h|r",Type="Armor"},["Abyssal Mail Sabatons"]={SubType="Mail",Level=60,id=20656,StackCount=1,Rarity=2,MinLevel=55,SellPrice=18269,Texture=132552,Link="|cff1eff00|Hitem:20656::::::::40:::::::|h[Abyssal Mail Sabatons]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Thick Scale Crown"]={SubType="Mail",Level=35,id=15550,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3316,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15550::::::::40:::::::|h[Thick Scale Crown]|h|r",Type="Armor"},["Old Whistle of the Obsidian Raptor"]={SubType="Junk",Level=40,id=8590,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132253,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:8590::::::::40:::::::|h[Old Whistle of the Obsidian Raptor]|h|r"},["Symbolic Legplates"]={SubType="Plate",Level=42,id=14829,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5049,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14829::::::::40:::::::|h[Symbolic Legplates]|h|r"},["Tome of Dampen Magic II"]={SubType="Book",Level=24,id=8813,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133739,Link="|cffffffff|Hitem:8813::::::::40:::::::|h[Tome of Dampen Magic II]|h|r",EquipLoc="",Type="Recipe"},["Monster - Axe, Horde Badass Copper 01"]={SubType="One-Handed Axes",Level=1,id=12290,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12290::::::::40:::::::|h[Monster - Axe, Horde Badass Copper 01]|h|r"},["Fiery Flux"]={SubType="Quest",Level=1,id=18942,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=132863,Type="Quest",Link="|cffffffff|Hitem:18942::::::::40:::::::|h[Fiery Flux]|h|r",EquipLoc=""},["Siege Brigade Vest"]={SubType="Mail",Level=10,id=3151,StackCount=1,Rarity=1,MinLevel=0,SellPrice=87,Texture=132624,Type="Armor",Link="|cffffffff|Hitem:3151::::::::40:::::::|h[Siege Brigade Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Primal Buckler"]={SubType="Shields",Level=9,id=15006,StackCount=1,Rarity=1,MinLevel=4,SellPrice=72,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:15006::::::::40:::::::|h[Primal Buckler]|h|r",Type="Armor"},["Frostmane Staff"]={SubType="Staves",Level=10,id=2257,StackCount=1,Rarity=1,MinLevel=5,SellPrice=188,Texture=135148,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:2257::::::::40:::::::|h[Frostmane Staff]|h|r",Type="Weapon"},["Cape of Eternal Justice"]={SubType="Cloth",Level=67,id=21397,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133766,Link="|cffa335ee|Hitem:21397::::::::40:::::::|h[Cape of Eternal Justice]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Bundle of Hides"]={SubType="Consumable",Level=1,id=16282,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134252,EquipLoc="",Link="|cffffffff|Hitem:16282::::::::40:::::::|h[Bundle of Hides]|h|r",Type="Consumable"},["Vigilant Buckler"]={SubType="Shields",Level=39,id=4975,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6477,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:4975::::::::40:::::::|h[Vigilant Buckler]|h|r",Type="Armor"},["Deathbringer"]={SubType="One-Handed Axes",Level=75,id=17068,StackCount=1,Rarity=4,MinLevel=60,SellPrice=134832,Texture=132400,EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:17068::::::::40:::::::|h[Deathbringer]|h|r",Type="Weapon"},["Fangore's Paw"]={SubType="Quest",Level=1,id=3632,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134296,EquipLoc="",Link="|cffffffff|Hitem:3632::::::::40:::::::|h[Fangore's Paw]|h|r",Type="Quest"},["Hefty War Axe"]={SubType="Two-Handed Axes",Level=32,id=3779,StackCount=1,Rarity=0,MinLevel=27,SellPrice=2835,Texture=132402,Type="Weapon",Link="|cff9d9d9d|Hitem:3779::::::::40:::::::|h[Hefty War Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Plans: Dark Iron Reaver"]={SubType="Blacksmithing",Level=65,id=17059,StackCount=1,Rarity=3,MinLevel=0,SellPrice=55000,Texture=134941,EquipLoc="",Link="|cff0070dd|Hitem:17059::::::::40:::::::|h[Plans: Dark Iron Reaver]|h|r",Type="Recipe"},["Sunscale Gauntlets"]={SubType="Plate",Level=50,id=14846,StackCount=1,Rarity=2,MinLevel=45,SellPrice=4534,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14846::::::::40:::::::|h[Sunscale Gauntlets]|h|r"},["Recipe: Heavy Kodo Stew"]={SubType="Cooking",Level=40,id=12240,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1750,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12240::::::::40:::::::|h[Recipe: Heavy Kodo Stew]|h|r"},["Recipe: Heavy Crocolisk Stew"]={SubType="Cooking",Level=30,id=20075,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,Link="|cffffffff|Hitem:20075::::::::40:::::::|h[Recipe: Heavy Crocolisk Stew]|h|r",EquipLoc="",Type="Recipe"},["Moonwell Water Tube"]={SubType="Quest",Level=1,id=14339,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134800,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14339::::::::40:::::::|h[Moonwell Water Tube]|h|r"},["Chieftain's Bracers"]={SubType="Leather",Level=48,id=9949,StackCount=1,Rarity=2,MinLevel=43,SellPrice=4855,Texture=132615,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9949::::::::40:::::::|h[Chieftain's Bracers]|h|r"},["Gutrender"]={SubType="Two-Handed Swords",Level=41,id=1986,StackCount=1,Rarity=2,MinLevel=36,SellPrice=14861,Texture=135313,Type="Weapon",Link="|cff1eff00|Hitem:1986::::::::40:::::::|h[Gutrender]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Level 55 Test Gear Plate - Paladin/Warrior 2"]={SubType="Junk",Level=1,id=17842,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17842::::::::40:::::::|h[Level 55 Test Gear Plate - Paladin/Warrior 2]|h|r",Type="Miscellaneous"},["Deprecated Book: The History of Stormwind"]={SubType="Quest",Level=1,id=2793,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2793::::::::40:::::::|h[Deprecated Book: The History of Stormwind]|h|r"},["Pattern: Tuxedo Pants"]={SubType="Tailoring",Level=49,id=10323,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1125,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10323::::::::40:::::::|h[Pattern: Tuxedo Pants]|h|r",Type="Recipe"},["Staff of Horrors"]={SubType="Staves",Level=23,id=880,StackCount=1,Rarity=2,MinLevel=18,SellPrice=2692,Texture=135162,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:880::::::::40:::::::|h[Staff of Horrors]|h|r",Type="Weapon"},["Amulet of Union"]={SubType="Quest",Level=1,id=17758,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133279,EquipLoc="",Link="|cffffffff|Hitem:17758::::::::40:::::::|h[Amulet of Union]|h|r",Type="Quest"},["Dreamslayer"]={SubType="One-Handed Maces",Level=33,id=7752,StackCount=1,Rarity=3,MinLevel=28,SellPrice=6902,Texture=133054,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:7752::::::::40:::::::|h[Dreamslayer]|h|r",Type="Weapon"},["Brazier of Beckoning"]={SubType="Quest",Level=1,id=22050,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133881,Link="|cffffffff|Hitem:22050::::::::40:::::::|h[Brazier of Beckoning]|h|r",EquipLoc="",Type="Quest"},["Thunderwood"]={SubType="Wands",Level=27,id=13062,StackCount=1,Rarity=3,MinLevel=22,SellPrice=2991,Texture=135139,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13062::::::::40:::::::|h[Thunderwood]|h|r"},["Tharnariun's Hope"]={SubType="Quest",Level=1,id=7586,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134335,EquipLoc="",Link="|cffffffff|Hitem:7586::::::::40:::::::|h[Tharnariun's Hope]|h|r",Type="Quest"},["Hardened Leather Bracers"]={SubType="Leather",Level=34,id=3802,StackCount=1,Rarity=0,MinLevel=29,SellPrice=627,Texture=132606,Link="|cff9d9d9d|Hitem:3802::::::::40:::::::|h[Hardened Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Beheading Blade"]={SubType="Two-Handed Swords",Level=52,id=15253,StackCount=1,Rarity=2,MinLevel=47,SellPrice=31547,Texture=135330,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15253::::::::40:::::::|h[Beheading Blade]|h|r",Type="Weapon"},["Toughened Silithid Hide Gloves"]={SubType="Leather",Level=71,id=21501,StackCount=1,Rarity=3,MinLevel=60,SellPrice=20262,Texture=132958,Link="|cff0070dd|Hitem:21501::::::::40:::::::|h[Toughened Silithid Hide Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Ironhide Legguards"]={SubType="Mail",Level=55,id=15646,StackCount=1,Rarity=2,MinLevel=50,SellPrice=19506,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15646::::::::40:::::::|h[Ironhide Legguards]|h|r",Type="Armor"},["Seal of Wrynn"]={SubType="Miscellaneous",Level=31,id=2933,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3750,Texture=133347,Link="|cff0070dd|Hitem:2933::::::::40:::::::|h[Seal of Wrynn]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Spider Sausage"]={SubType="Consumable",Level=40,id=17222,StackCount=20,Rarity=1,MinLevel=35,SellPrice=300,Texture=134022,EquipLoc="",Link="|cffffffff|Hitem:17222::::::::40:::::::|h[Spider Sausage]|h|r",Type="Consumable"},["Inscribed Kodo Leather"]={SubType="Quest",Level=1,id=6500,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134257,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6500::::::::40:::::::|h[Inscribed Kodo Leather]|h|r"},["Plans: Copper Chain Vest"]={SubType="Blacksmithing",Level=10,id=3609,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:3609::::::::40:::::::|h[Plans: Copper Chain Vest]|h|r"},["Gem of the Second Khan"]={SubType="Quest",Level=1,id=17762,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134104,EquipLoc="",Link="|cffffffff|Hitem:17762::::::::40:::::::|h[Gem of the Second Khan]|h|r",Type="Quest"},["Military Ranks of the Horde & Alliance"]={SubType="Junk",Level=0,id=18675,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=133742,Type="Miscellaneous",Link="|cffffffff|Hitem:18675::::::::40:::::::|h[Military Ranks of the Horde & Alliance]|h|r",EquipLoc=""},["Phalanx Gauntlets"]={SubType="Mail",Level=33,id=7421,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1778,Texture=132945,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7421::::::::40:::::::|h[Phalanx Gauntlets]|h|r",Type="Armor"},["Head of Grimson"]={SubType="Quest",Level=1,id=3634,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,Link="|cffffffff|Hitem:3634::::::::40:::::::|h[Head of Grimson]|h|r",EquipLoc="",Type="Quest"},["Deprecated Brooch of the Night Watch"]={SubType="Miscellaneous",Level=40,id=1854,StackCount=1,Rarity=0,MinLevel=0,SellPrice=500,Texture=133282,EquipLoc="INVTYPE_TRINKET",Link="|cff9d9d9d|Hitem:1854::::::::40:::::::|h[Deprecated Brooch of the Night Watch]|h|r",Type="Armor"},["Fortified Bindings"]={SubType="Mail",Level=10,id=4969,StackCount=1,Rarity=1,MinLevel=0,SellPrice=42,Texture=132602,Link="|cffffffff|Hitem:4969::::::::40:::::::|h[Fortified Bindings]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Hibernal Armor"]={SubType="Cloth",Level=51,id=8106,StackCount=1,Rarity=2,MinLevel=45,SellPrice=10438,Texture=135010,Link="|cff1eff00|Hitem:8106::::::::40:::::::|h[Hibernal Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Crimson Shocker"]={SubType="Wands",Level=63,id=17077,StackCount=1,Rarity=4,MinLevel=58,SellPrice=59741,Texture=135150,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffa335ee|Hitem:17077::::::::40:::::::|h[Crimson Shocker]|h|r",Type="Weapon"},["Thorium Brotherhood Contract (OLD)"]={SubType="Quest",Level=60,id=18593,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=134941,Type="Quest",Link="|cffa335ee|Hitem:18593::::::::40:::::::|h[Thorium Brotherhood Contract (OLD)]|h|r",EquipLoc=""},["Monster - Item, Book - B02 Blue Glowing Offhand"]={SubType="Miscellaneous",Level=1,id=12869,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12869::::::::40:::::::|h[Monster - Item, Book - B02 Blue Glowing Offhand]|h|r"},["Battle Axe"]={SubType="Two-Handed Axes",Level=25,id=926,StackCount=1,Rarity=1,MinLevel=20,SellPrice=1956,Texture=135423,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:926::::::::40:::::::|h[Battle Axe]|h|r"},["Sharp Shortsword"]={SubType="One-Handed Swords",Level=46,id=4017,StackCount=1,Rarity=0,MinLevel=41,SellPrice=6910,Texture=135328,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:4017::::::::40:::::::|h[Sharp Shortsword]|h|r"},["Reforged Blade of Heroes"]={SubType="One-Handed Swords",Level=38,id=9718,StackCount=1,Rarity=3,MinLevel=33,SellPrice=11421,Texture=135280,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9718::::::::40:::::::|h[Reforged Blade of Heroes]|h|r"},["Warsong Oil"]={SubType="Quest",Level=1,id=16744,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134844,EquipLoc="",Link="|cffffffff|Hitem:16744::::::::40:::::::|h[Warsong Oil]|h|r",Type="Quest"},["Dig Rat"]={SubType="Quest",Level=1,id=5051,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1,Texture=134359,Link="|cffffffff|Hitem:5051::::::::40:::::::|h[Dig Rat]|h|r",EquipLoc="",Type="Quest"},["Pattern: Crimson Silk Cloak"]={SubType="Tailoring",Level=36,id=7087,StackCount=1,Rarity=1,MinLevel=0,SellPrice=300,Texture=134939,Link="|cffffffff|Hitem:7087::::::::40:::::::|h[Pattern: Crimson Silk Cloak]|h|r",EquipLoc="",Type="Recipe"},["Needle Threader"]={SubType="Bows",Level=47,id=13021,StackCount=1,Rarity=3,MinLevel=42,SellPrice=16694,Texture=135496,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff0070dd|Hitem:13021::::::::40:::::::|h[Needle Threader]|h|r"},["Rawhide Pants"]={SubType="Leather",Level=24,id=1800,StackCount=1,Rarity=0,MinLevel=19,SellPrice=479,Texture=134589,Type="Armor",Link="|cff9d9d9d|Hitem:1800::::::::40:::::::|h[Rawhide Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Festival Dumplings"]={SubType="Consumable",Level=55,id=21537,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134056,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:21537::::::::40:::::::|h[Festival Dumplings]|h|r"},["Tome of Arcane Missiles IV"]={SubType="Book",Level=32,id=8826,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=133739,Link="|cffffffff|Hitem:8826::::::::40:::::::|h[Tome of Arcane Missiles IV]|h|r",EquipLoc="",Type="Recipe"},["Warsong Gulch Field Ration"]={SubType="Consumable",Level=35,id=19062,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=133951,Link="|cffffffff|Hitem:19062::::::::40:::::::|h[Warsong Gulch Field Ration]|h|r",EquipLoc="",Type="Consumable"},["Feeble Shortbow"]={SubType="Bows",Level=13,id=2777,StackCount=1,Rarity=0,MinLevel=8,SellPrice=146,Texture=135493,Type="Weapon",Link="|cff9d9d9d|Hitem:2777::::::::40:::::::|h[Feeble Shortbow]|h|r",EquipLoc="INVTYPE_RANGED"},["Murloc Head"]={SubType="Quest",Level=1,id=3716,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134169,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3716::::::::40:::::::|h[Murloc Head]|h|r"},["Black Night Elf Gloves"]={SubType="Mail",Level=1,id=3526,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:3526::::::::40:::::::|h[Black Night Elf Gloves]|h|r",Type="Armor"},["Flimsy Female Nightelf Mask"]={SubType="Miscellaneous",Level=1,id=20563,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134162,Link="|cffffffff|Hitem:20563::::::::40:::::::|h[Flimsy Female Nightelf Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Gem-studded Leather Belt"]={SubType="Leather",Level=37,id=4262,StackCount=1,Rarity=3,MinLevel=32,SellPrice=2652,Texture=132490,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:4262::::::::40:::::::|h[Gem-studded Leather Belt]|h|r",Type="Armor"},["Monster - Axe, 2H Horde Blue War Axe"]={SubType="Two-Handed Axes",Level=1,id=17463,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:17463::::::::40:::::::|h[Monster - Axe, 2H Horde Blue War Axe]|h|r",Type="Weapon"},["Groddoc Liver"]={SubType="Quest",Level=1,id=6259,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,Type="Quest",Link="|cffffffff|Hitem:6259::::::::40:::::::|h[Groddoc Liver]|h|r",EquipLoc=""},["Band of Forced Concentration"]={SubType="Miscellaneous",Level=75,id=19403,StackCount=1,Rarity=4,MinLevel=60,SellPrice=105328,Texture=133376,Link="|cffa335ee|Hitem:19403::::::::40:::::::|h[Band of Forced Concentration]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Salt"]={SubType="Trade Goods",Level=10,id=4289,StackCount=20,Rarity=1,MinLevel=0,SellPrice=12,Texture=133849,EquipLoc="",Link="|cffffffff|Hitem:4289::::::::40:::::::|h[Salt]|h|r",Type="Trade Goods"},["Spore-covered Tunic"]={SubType="Leather",Level=15,id=5341,StackCount=1,Rarity=2,MinLevel=0,SellPrice=368,Texture=135011,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:5341::::::::40:::::::|h[Spore-covered Tunic]|h|r",Type="Armor"},["Tome of Scorch V"]={SubType="Book",Level=46,id=8847,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=133739,Link="|cffffffff|Hitem:8847::::::::40:::::::|h[Tome of Scorch V]|h|r",EquipLoc="",Type="Recipe"},["Renegade Bracers"]={SubType="Mail",Level=34,id=9865,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1942,Texture=132606,Link="|cff1eff00|Hitem:9865::::::::40:::::::|h[Renegade Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Shimmering Trousers"]={SubType="Cloth",Level=24,id=6568,StackCount=1,Rarity=2,MinLevel=19,SellPrice=920,Texture=134581,Type="Armor",Link="|cff1eff00|Hitem:6568::::::::40:::::::|h[Shimmering Trousers]|h|r",EquipLoc="INVTYPE_LEGS"},["Master's Boots"]={SubType="Cloth",Level=63,id=10247,StackCount=1,Rarity=2,MinLevel=58,SellPrice=14707,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10247::::::::40:::::::|h[Master's Boots]|h|r",Type="Armor"},["Captain's Boots"]={SubType="Mail",Level=42,id=7490,StackCount=1,Rarity=2,MinLevel=37,SellPrice=5680,Texture=132590,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7490::::::::40:::::::|h[Captain's Boots]|h|r"},["Carrion Scorpid Helm"]={SubType="Mail",Level=60,id=18479,StackCount=1,Rarity=2,MinLevel=55,SellPrice=17791,Texture=133090,Type="Armor",Link="|cff1eff00|Hitem:18479::::::::40:::::::|h[Carrion Scorpid Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Dense Dynamite"]={SubType="Explosives",Level=45,id=18641,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=133714,Type="Trade Goods",Link="|cffffffff|Hitem:18641::::::::40:::::::|h[Dense Dynamite]|h|r",EquipLoc=""},["Sundried Driftwood"]={SubType="Quest",Level=1,id=6146,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135437,Link="|cffffffff|Hitem:6146::::::::40:::::::|h[Sundried Driftwood]|h|r",EquipLoc="",Type="Quest"},["Vial of Spider Venom"]={SubType="Quest",Level=1,id=1130,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134799,Type="Quest",Link="|cffffffff|Hitem:1130::::::::40:::::::|h[Vial of Spider Venom]|h|r",EquipLoc=""},["Gray Woolen Robe"]={SubType="Cloth",Level=21,id=2585,StackCount=1,Rarity=2,MinLevel=16,SellPrice=638,Texture=132654,Link="|cff1eff00|Hitem:2585::::::::40:::::::|h[Gray Woolen Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Blood Guard's Leather Vices"]={SubType="Leather",Level=63,id=16499,StackCount=1,Rarity=3,MinLevel=58,SellPrice=6932,Texture=132949,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16499::::::::40:::::::|h[Blood Guard's Leather Vices]|h|r",Type="Armor"},["Gutwrencher"]={SubType="Daggers",Level=47,id=5616,StackCount=1,Rarity=3,MinLevel=42,SellPrice=22738,Texture=135341,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:5616::::::::40:::::::|h[Gutwrencher]|h|r"},["Pattern: Cindercloth Gloves"]={SubType="Tailoring",Level=54,id=14476,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14476::::::::40:::::::|h[Pattern: Cindercloth Gloves]|h|r"},["Blacklight Bracer"]={SubType="Cloth",Level=66,id=19135,StackCount=1,Rarity=4,MinLevel=60,SellPrice=16954,Texture=132606,Link="|cffa335ee|Hitem:19135::::::::40:::::::|h[Blacklight Bracer]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Dust Devil Debris"]={SubType="Quest",Level=1,id=5669,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,EquipLoc="",Link="|cffffffff|Hitem:5669::::::::40:::::::|h[Dust Devil Debris]|h|r",Type="Quest"},["Undercity Mint"]={SubType="Quest",Level=1,id=20491,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133984,Link="|cffffffff|Hitem:20491::::::::40:::::::|h[Undercity Mint]|h|r",EquipLoc="",Type="Quest"},["Hardened Leather Belt"]={SubType="Leather",Level=39,id=3800,StackCount=1,Rarity=0,MinLevel=34,SellPrice=1068,Texture=132515,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:3800::::::::40:::::::|h[Hardened Leather Belt]|h|r"},["Box of Goodies"]={SubType="Junk",Level=47,id=9541,StackCount=1,Rarity=1,MinLevel=0,SellPrice=200,Texture=132597,Link="|cffffffff|Hitem:9541::::::::40:::::::|h[Box of Goodies]|h|r",EquipLoc="",Type="Miscellaneous"},["Legplates of Valor"]={SubType="Plate",Level=61,id=16732,StackCount=1,Rarity=3,MinLevel=56,SellPrice=21213,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16732::::::::40:::::::|h[Legplates of Valor]|h|r",Type="Armor"},["Pattern: Bloodvine Leggings"]={SubType="Tailoring",Level=65,id=19765,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19765::::::::40:::::::|h[Pattern: Bloodvine Leggings]|h|r",EquipLoc="",Type="Recipe"},["Keefer's Angelfish"]={SubType="Junk",Level=45,id=19805,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=133894,Link="|cff1eff00|Hitem:19805::::::::40:::::::|h[Keefer's Angelfish]|h|r",EquipLoc="",Type="Miscellaneous"},["Hunt Tracker Blade"]={SubType="Daggers",Level=57,id=15706,StackCount=1,Rarity=2,MinLevel=0,SellPrice=33830,Texture=135651,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15706::::::::40:::::::|h[Hunt Tracker Blade]|h|r",Type="Weapon"},["Ogre Tannin"]={SubType="Trade Goods",Level=1,id=18240,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=134719,Type="Trade Goods",Link="|cff1eff00|Hitem:18240::::::::40:::::::|h[Ogre Tannin]|h|r",EquipLoc=""},["Vyral's Signet Ring"]={SubType="Quest",Level=1,id=20466,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133357,Link="|cffffffff|Hitem:20466::::::::40:::::::|h[Vyral's Signet Ring]|h|r",EquipLoc="",Type="Quest"},["Wool Bandage"]={SubType="Consumable",Level=1,id=3530,StackCount=20,Rarity=1,MinLevel=0,SellPrice=28,Texture=133684,Type="Consumable",Link="|cffffffff|Hitem:3530::::::::40:::::::|h[Wool Bandage]|h|r",EquipLoc=""},["Blood Ring"]={SubType="Miscellaneous",Level=24,id=4998,StackCount=1,Rarity=2,MinLevel=19,SellPrice=837,Texture=133346,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:4998::::::::40:::::::|h[Blood Ring]|h|r",Type="Armor"},["Depricated Sharp Arrow"]={SubType="Arrow",Level=8,id=2514,StackCount=200,Rarity=1,MinLevel=3,SellPrice=0,Texture=132382,Type="Projectile",EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:2514::::::::40:::::::|h[Depricated Sharp Arrow]|h|r"},["Schematic: Spellpower Goggles Xtreme"]={SubType="Engineering",Level=45,id=10605,StackCount=1,Rarity=3,MinLevel=0,SellPrice=875,Texture=134939,EquipLoc="",Link="|cff0070dd|Hitem:10605::::::::40:::::::|h[Schematic: Spellpower Goggles Xtreme]|h|r",Type="Recipe"},["Test Arcane Res Legs Mail"]={SubType="Mail",Level=35,id=16165,StackCount=1,Rarity=2,MinLevel=30,SellPrice=4140,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:16165::::::::40:::::::|h[Test Arcane Res Legs Mail]|h|r",Type="Armor"},["Zandalar Freethinker's Belt"]={SubType="Plate",Level=61,id=19826,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132521,Link="|cffa335ee|Hitem:19826::::::::40:::::::|h[Zandalar Freethinker's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Marshal McBride's Documents"]={SubType="Quest",Level=1,id=745,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",Link="|cffffffff|Hitem:745::::::::40:::::::|h[Marshal McBride's Documents]|h|r",EquipLoc=""},["Mercurial Breastplate"]={SubType="Mail",Level=64,id=10157,StackCount=1,Rarity=2,MinLevel=59,SellPrice=31216,Texture=132629,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10157::::::::40:::::::|h[Mercurial Breastplate]|h|r",Type="Armor"},["Beastmaster's Mantle"]={SubType="Mail",Level=65,id=22016,StackCount=1,Rarity=3,MinLevel=0,SellPrice=28402,Texture=135041,Link="|cff0070dd|Hitem:22016::::::::40:::::::|h[Beastmaster's Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Whisperwind Headdress"]={SubType="Leather",Level=32,id=6688,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2059,Texture=133119,Type="Armor",Link="|cff1eff00|Hitem:6688::::::::40:::::::|h[Whisperwind Headdress]|h|r",EquipLoc="INVTYPE_HEAD"},["Tablet of Frost Shock IV"]={SubType="Book",Level=58,id=9174,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9174::::::::40:::::::|h[Tablet of Frost Shock IV]|h|r"},["Orb of Fire"]={SubType="Miscellaneous",Level=46,id=12805,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3987,Texture=134337,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:12805::::::::40:::::::|h[Orb of Fire]|h|r"},["Bloodkelp Elixir of Dodging"]={SubType="Consumable",Level=60,id=22192,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134832,Link="|cffffffff|Hitem:22192::::::::40:::::::|h[Bloodkelp Elixir of Dodging]|h|r",EquipLoc="",Type="Consumable"},["Lofty Shield"]={SubType="Shields",Level=57,id=14930,StackCount=1,Rarity=2,MinLevel=52,SellPrice=22950,Texture=134963,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14930::::::::40:::::::|h[Lofty Shield]|h|r"},["Militant Shortsword"]={SubType="One-Handed Swords",Level=22,id=15211,StackCount=1,Rarity=2,MinLevel=17,SellPrice=1916,Texture=135321,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15211::::::::40:::::::|h[Militant Shortsword]|h|r",Type="Weapon"},["Nobles Brand"]={SubType="One-Handed Swords",Level=40,id=15214,StackCount=1,Rarity=2,MinLevel=35,SellPrice=11356,Texture=135321,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15214::::::::40:::::::|h[Nobles Brand]|h|r",Type="Weapon"},["Libram: Seal of Fury"]={SubType="Book",Level=14,id=6133,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133740,Type="Recipe",Link="|cffffffff|Hitem:6133::::::::40:::::::|h[Libram: Seal of Fury]|h|r",EquipLoc=""},["Huge Thorium Battleaxe"]={SubType="Two-Handed Axes",Level=56,id=12775,StackCount=1,Rarity=2,MinLevel=51,SellPrice=39949,Texture=135581,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:12775::::::::40:::::::|h[Huge Thorium Battleaxe]|h|r"},["Barbaric Cloth Boots"]={SubType="Cloth",Level=15,id=3307,StackCount=1,Rarity=2,MinLevel=10,SellPrice=215,Texture=132539,Link="|cff1eff00|Hitem:3307::::::::40:::::::|h[Barbaric Cloth Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Rhok'delar, Longbow of the Ancient Keepers DEP"]={SubType="Bows",Level=75,id=20488,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135489,Link="|cffa335ee|Hitem:20488::::::::40:::::::|h[Rhok'delar, Longbow of the Ancient Keepers DEP]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Schematic: Thorium Tube"]={SubType="Engineering",Level=55,id=16047,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:16047::::::::40:::::::|h[Schematic: Thorium Tube]|h|r",Type="Recipe"},["Test Enchant 2H Weapon Greater Impact"]={SubType="Consumable",Level=45,id=16108,StackCount=1,Rarity=1,MinLevel=0,SellPrice=650,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:16108::::::::40:::::::|h[Test Enchant 2H Weapon Greater Impact]|h|r",Type="Consumable"},["Desecrated Boots"]={SubType="Junk",Level=60,id=22365,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133821,Link="|cffa335ee|Hitem:22365::::::::40:::::::|h[Desecrated Boots]|h|r",EquipLoc="",Type="Miscellaneous"},["Lorgalis Manuscript"]={SubType="Quest",Level=1,id=5359,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,EquipLoc="",Link="|cffffffff|Hitem:5359::::::::40:::::::|h[Lorgalis Manuscript]|h|r",Type="Quest"},["Frozen Rune"]={SubType="Trade Goods",Level=80,id=22682,StackCount=20,Rarity=3,MinLevel=60,SellPrice=20000,Texture=134422,Link="|cff0070dd|Hitem:22682::::::::40:::::::|h[Frozen Rune]|h|r",EquipLoc="",Type="Trade Goods"},["Troll Charm"]={SubType="Quest",Level=1,id=16602,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133447,EquipLoc="",Link="|cffffffff|Hitem:16602::::::::40:::::::|h[Troll Charm]|h|r",Type="Quest"},["Robust Tunic"]={SubType="Leather",Level=31,id=15128,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2425,Texture=132646,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15128::::::::40:::::::|h[Robust Tunic]|h|r",Type="Armor"},["Deprecated Dull Razormane Backstabber"]={SubType="Quest",Level=1,id=5651,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135638,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5651::::::::40:::::::|h[Deprecated Dull Razormane Backstabber]|h|r"},["Arcanist Boots"]={SubType="Cloth",Level=66,id=16800,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25885,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16800::::::::40:::::::|h[Arcanist Boots]|h|r",Type="Armor"},["Pattern: Red Mageweave Shoulders"]={SubType="Tailoring",Level=47,id=10315,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1750,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10315::::::::40:::::::|h[Pattern: Red Mageweave Shoulders]|h|r",Type="Recipe"},["Highlander's Mail Girdle"]={SubType="Mail",Level=63,id=20044,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17677,Texture=132509,Link="|cff0070dd|Hitem:20044::::::::40:::::::|h[Highlander's Mail Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Gray Bear Tongue"]={SubType="Quest",Level=1,id=3476,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132121,Link="|cffffffff|Hitem:3476::::::::40:::::::|h[Gray Bear Tongue]|h|r",EquipLoc="",Type="Quest"},["Large Bat Fang"]={SubType="Junk",Level=1,id=11403,StackCount=10,Rarity=0,MinLevel=0,SellPrice=1592,Texture=133723,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11403::::::::40:::::::|h[Large Bat Fang]|h|r",EquipLoc=""},["Abyssal Scepter"]={SubType="Junk",Level=1,id=20515,StackCount=20,Rarity=4,MinLevel=1,SellPrice=0,Texture=135150,Link="|cffa335ee|Hitem:20515::::::::40:::::::|h[Abyssal Scepter]|h|r",EquipLoc="",Type="Miscellaneous"},["Kaleidoscope Chain"]={SubType="Miscellaneous",Level=35,id=13084,StackCount=1,Rarity=3,MinLevel=30,SellPrice=6614,Texture=133282,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:13084::::::::40:::::::|h[Kaleidoscope Chain]|h|r"},["Deprecated Stiff Leather Shirt"]={SubType="Miscellaneous",Level=1,id=134,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:134::::::::40:::::::|h[Deprecated Stiff Leather Shirt]|h|r"},["Serrated Petal"]={SubType="Junk",Level=1,id=18223,StackCount=20,Rarity=0,MinLevel=0,SellPrice=6142,Texture=134184,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18223::::::::40:::::::|h[Serrated Petal]|h|r",EquipLoc=""},["Formula: Enchant Weapon - Superior Striking"]={SubType="Enchanting",Level=60,id=16250,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16250::::::::40:::::::|h[Formula: Enchant Weapon - Superior Striking]|h|r",Type="Recipe"},["Shipment of Boots"]={SubType="Quest",Level=1,id=5076,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134143,Link="|cffffffff|Hitem:5076::::::::40:::::::|h[Shipment of Boots]|h|r",EquipLoc="",Type="Quest"},["Rockhide Strongfish"]={SubType="One-Handed Maces",Level=45,id=19808,StackCount=1,Rarity=2,MinLevel=40,SellPrice=15556,Texture=133913,Link="|cff1eff00|Hitem:19808::::::::40:::::::|h[Rockhide Strongfish]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Book of Wrath"]={SubType="Book",Level=6,id=8744,StackCount=1,Rarity=1,MinLevel=6,SellPrice=50,Texture=133743,Link="|cffffffff|Hitem:8744::::::::40:::::::|h[Book of Wrath]|h|r",EquipLoc="",Type="Recipe"},["Dalson's Tears Cauldron Key"]={SubType="Quest",Level=1,id=13195,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134247,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13195::::::::40:::::::|h[Dalson's Tears Cauldron Key]|h|r"},["Recipe: Roasted Kodo Meat"]={SubType="Cooking",Level=10,id=5484,StackCount=1,Rarity=1,MinLevel=0,SellPrice=60,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:5484::::::::40:::::::|h[Recipe: Roasted Kodo Meat]|h|r",Type="Recipe"},["Dagmire Gauntlets"]={SubType="Mail",Level=23,id=6481,StackCount=1,Rarity=2,MinLevel=0,SellPrice=641,Texture=132939,Type="Armor",Link="|cff1eff00|Hitem:6481::::::::40:::::::|h[Dagmire Gauntlets]|h|r",EquipLoc="INVTYPE_HAND"},["Shadumbra's Head"]={SubType="Quest",Level=20,id=16304,StackCount=1,Rarity=2,MinLevel=20,SellPrice=0,Texture=132225,EquipLoc="",Link="|cff1eff00|Hitem:16304::::::::40:::::::|h[Shadumbra's Head]|h|r",Type="Quest"},["Green Iron Boots"]={SubType="Mail",Level=29,id=3484,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1767,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:3484::::::::40:::::::|h[Green Iron Boots]|h|r",Type="Armor"},["Tome of Fireball XII"]={SubType="Book",Level=60,id=21279,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133739,Link="|cff0070dd|Hitem:21279::::::::40:::::::|h[Tome of Fireball XII]|h|r",EquipLoc="",Type="Recipe"},["Brigam Girdle"]={SubType="Plate",Level=63,id=13142,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11642,Texture=132522,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13142::::::::40:::::::|h[Brigam Girdle]|h|r"},["Stormpike Sage's Pendant"]={SubType="Miscellaneous",Level=60,id=19098,StackCount=1,Rarity=3,MinLevel=55,SellPrice=17912,Texture=133295,Link="|cff0070dd|Hitem:19098::::::::40:::::::|h[Stormpike Sage's Pendant]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Draconian Aegis of the Legion"]={SubType="Shields",Level=63,id=22336,StackCount=1,Rarity=3,MinLevel=58,SellPrice=35150,Texture=134948,Link="|cff0070dd|Hitem:22336::::::::40:::::::|h[Draconian Aegis of the Legion]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Necromantic Band"]={SubType="Miscellaneous",Level=62,id=18760,StackCount=1,Rarity=3,MinLevel=57,SellPrice=30866,Texture=133351,Type="Armor",Link="|cff0070dd|Hitem:18760::::::::40:::::::|h[Necromantic Band]|h|r",EquipLoc="INVTYPE_FINGER"},["Heavy Timbermaw Belt"]={SubType="Mail",Level=58,id=19043,StackCount=1,Rarity=3,MinLevel=53,SellPrice=13291,Texture=132505,Link="|cff0070dd|Hitem:19043::::::::40:::::::|h[Heavy Timbermaw Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Box of Chocolates"]={SubType="Junk",Level=1,id=21812,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132595,Link="|cffffffff|Hitem:21812::::::::40:::::::|h[Box of Chocolates]|h|r",EquipLoc="",Type="Miscellaneous"},["Remaining Drops of Purest Water"]={SubType="Quest",Level=1,id=7811,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134797,Link="|cffffffff|Hitem:7811::::::::40:::::::|h[Remaining Drops of Purest Water]|h|r",EquipLoc="",Type="Quest"},["Scepter of Celebras"]={SubType="Quest",Level=1,id=17191,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=135153,EquipLoc="",Link="|cff0070dd|Hitem:17191::::::::40:::::::|h[Scepter of Celebras]|h|r",Type="Quest"},["Skullcracking Mace"]={SubType="Two-Handed Maces",Level=60,id=18481,StackCount=1,Rarity=2,MinLevel=55,SellPrice=51451,Texture=133480,Type="Weapon",Link="|cff1eff00|Hitem:18481::::::::40:::::::|h[Skullcracking Mace]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Glowing Scorpid Blood"]={SubType="Junk",Level=1,id=19933,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2080,Texture=136168,Link="|cffffffff|Hitem:19933::::::::40:::::::|h[Glowing Scorpid Blood]|h|r",EquipLoc="",Type="Miscellaneous"},["Overspark's Signed Pledge"]={SubType="Quest",Level=0,id=11283,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,Type="Quest",Link="|cffffffff|Hitem:11283::::::::40:::::::|h[Overspark's Signed Pledge]|h|r",EquipLoc=""},["Expert Fishing - The Bass and You"]={SubType="Fishing",Level=30,id=16083,StackCount=1,Rarity=1,MinLevel=20,SellPrice=2500,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:16083::::::::40:::::::|h[Expert Fishing - The Bass and You]|h|r",Type="Recipe"},["QAEnchant Gloves Riding Skill"]={SubType="Consumable",Level=45,id=23728,StackCount=1,Rarity=1,MinLevel=0,SellPrice=650,Texture=133434,Link="|cffffffff|Hitem:23728::::::::40:::::::|h[QAEnchant Gloves Riding Skill]|h|r",EquipLoc="",Type="Consumable"},["Codex of Holy Word: Shield IV"]={SubType="Book",Level=24,id=4280,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133741,Type="Recipe",Link="|cffffffff|Hitem:4280::::::::40:::::::|h[Codex of Holy Word: Shield IV]|h|r",EquipLoc=""},["Battered Leather Boots"]={SubType="Leather",Level=10,id=2373,StackCount=1,Rarity=1,MinLevel=5,SellPrice=51,Texture=132592,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:2373::::::::40:::::::|h[Battered Leather Boots]|h|r"},["Regent's Cloak"]={SubType="Cloth",Level=23,id=5969,StackCount=1,Rarity=2,MinLevel=18,SellPrice=781,Texture=133766,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:5969::::::::40:::::::|h[Regent's Cloak]|h|r",Type="Armor"},["Grand Marshal's Stave"]={SubType="Staves",Level=78,id=18873,StackCount=1,Rarity=4,MinLevel=60,SellPrice=59459,Texture=135151,Type="Weapon",Link="|cffa335ee|Hitem:18873::::::::40:::::::|h[Grand Marshal's Stave]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Plans: Golden Scale Gauntlets"]={SubType="Blacksmithing",Level=41,id=9367,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:9367::::::::40:::::::|h[Plans: Golden Scale Gauntlets]|h|r"},["Dryleaf Pants"]={SubType="Cloth",Level=35,id=6737,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2805,Texture=134586,Link="|cff1eff00|Hitem:6737::::::::40:::::::|h[Dryleaf Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["A Bloodstained Journal Page"]={SubType="Quest",Level=1,id=939,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133688,Link="|cffffffff|Hitem:939::::::::40:::::::|h[A Bloodstained Journal Page]|h|r",EquipLoc="",Type="Quest"},["Overlord Ror's Claw"]={SubType="Quest",Level=1,id=15879,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134297,EquipLoc="",Link="|cffffffff|Hitem:15879::::::::40:::::::|h[Overlord Ror's Claw]|h|r",Type="Quest"},["Mar Alom's Grip"]={SubType="Leather",Level=56,id=12547,StackCount=1,Rarity=3,MinLevel=51,SellPrice=10519,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:12547::::::::40:::::::|h[Mar Alom's Grip]|h|r"},["Demonic Bone Ring"]={SubType="Miscellaneous",Level=64,id=12058,StackCount=1,Rarity=2,MinLevel=59,SellPrice=8376,Texture=133343,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12058::::::::40:::::::|h[Demonic Bone Ring]|h|r"},["Sadist's Collar"]={SubType="Miscellaneous",Level=83,id=23023,StackCount=1,Rarity=4,MinLevel=60,SellPrice=86443,Texture=133319,Link="|cffa335ee|Hitem:23023::::::::40:::::::|h[Sadist's Collar]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Small Round Shield"]={SubType="Shields",Level=22,id=2219,StackCount=1,Rarity=0,MinLevel=17,SellPrice=457,Texture=134955,Type="Armor",Link="|cff9d9d9d|Hitem:2219::::::::40:::::::|h[Small Round Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Aboriginal Sash"]={SubType="Cloth",Level=15,id=14113,StackCount=1,Rarity=2,MinLevel=10,SellPrice=139,Texture=132494,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14113::::::::40:::::::|h[Aboriginal Sash]|h|r"},["Leggings of Thero-shan"]={SubType="Leather",Level=36,id=7949,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3990,Texture=134592,Link="|cff1eff00|Hitem:7949::::::::40:::::::|h[Leggings of Thero-shan]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["2500 Test 2h Axe 60 blue"]={SubType="Two-Handed Axes",Level=60,id=19809,StackCount=1,Rarity=3,MinLevel=58,SellPrice=59920,Texture=132392,Link="|cff0070dd|Hitem:19809::::::::40:::::::|h[2500 Test 2h Axe 60 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Greater Spellstone"]={SubType="Miscellaneous",Level=48,id=13602,StackCount=1,Rarity=1,MinLevel=43,SellPrice=0,Texture=134131,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13602::::::::40:::::::|h[Greater Spellstone]|h|r"},["Brigade Boots"]={SubType="Mail",Level=43,id=9926,StackCount=1,Rarity=2,MinLevel=38,SellPrice=6368,Texture=132589,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9926::::::::40:::::::|h[Brigade Boots]|h|r"},["Wyrmslayer Spaulders"]={SubType="Plate",Level=51,id=13066,StackCount=1,Rarity=3,MinLevel=46,SellPrice=8997,Texture=135055,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13066::::::::40:::::::|h[Wyrmslayer Spaulders]|h|r"},["Gift of Adoration: Orgrimmar"]={SubType="Consumable",Level=1,id=22164,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135450,Link="|cffffffff|Hitem:22164::::::::40:::::::|h[Gift of Adoration: Orgrimmar]|h|r",EquipLoc="",Type="Consumable"},["Bruiser Club"]={SubType="One-Handed Maces",Level=22,id=4439,StackCount=1,Rarity=2,MinLevel=17,SellPrice=1788,Texture=133485,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:4439::::::::40:::::::|h[Bruiser Club]|h|r"},["Green Ribboned Wrapping Paper"]={SubType="Consumable",Level=5,id=17304,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2,Texture=133205,EquipLoc="",Link="|cffffffff|Hitem:17304::::::::40:::::::|h[Green Ribboned Wrapping Paper]|h|r",Type="Consumable"},["White Murloc Egg"]={SubType="Junk",Level=1,id=22780,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132834,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22780::::::::40:::::::|h[White Murloc Egg]|h|r"},["2800 Test Bow 63 Blue"]={SubType="Bows",Level=63,id=19490,StackCount=1,Rarity=3,MinLevel=60,SellPrice=41191,Texture=135496,Link="|cff0070dd|Hitem:19490::::::::40:::::::|h[2800 Test Bow 63 Blue]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Small Raptor Tooth"]={SubType="Junk",Level=1,id=5124,StackCount=10,Rarity=0,MinLevel=0,SellPrice=117,Texture=133725,EquipLoc="",Link="|cff9d9d9d|Hitem:5124::::::::40:::::::|h[Small Raptor Tooth]|h|r",Type="Miscellaneous"},["Duskwoven Sash"]={SubType="Cloth",Level=49,id=10066,StackCount=1,Rarity=2,MinLevel=44,SellPrice=4220,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10066::::::::40:::::::|h[Duskwoven Sash]|h|r",Type="Armor"},["Bladebane Armguards"]={SubType="Leather",Level=49,id=14550,StackCount=1,Rarity=4,MinLevel=44,SellPrice=8802,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:14550::::::::40:::::::|h[Bladebane Armguards]|h|r"},["The Deed to Caer Darrow"]={SubType="Quest",Level=1,id=13448,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134331,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13448::::::::40:::::::|h[The Deed to Caer Darrow]|h|r"},["Stonevault Bonebreaker"]={SubType="One-Handed Maces",Level=42,id=9427,StackCount=1,Rarity=3,MinLevel=37,SellPrice=14853,Texture=133718,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9427::::::::40:::::::|h[Stonevault Bonebreaker]|h|r"},["Spider Silk Slippers"]={SubType="Cloth",Level=28,id=4321,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1120,Texture=132537,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:4321::::::::40:::::::|h[Spider Silk Slippers]|h|r",Type="Armor"},["Stinglasher's Glands"]={SubType="Quest",Level=1,id=18962,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134343,Type="Quest",Link="|cffffffff|Hitem:18962::::::::40:::::::|h[Stinglasher's Glands]|h|r",EquipLoc=""},["Medicine Blanket"]={SubType="Cloth",Level=45,id=4113,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4853,Texture=133762,Type="Armor",Link="|cff1eff00|Hitem:4113::::::::40:::::::|h[Medicine Blanket]|h|r",EquipLoc="INVTYPE_CLOAK"},["Monster - Spear, Badass Blue"]={SubType="Polearms",Level=1,id=13632,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13632::::::::40:::::::|h[Monster - Spear, Badass Blue]|h|r"},["Stonescale Eel"]={SubType="Reagent",Level=45,id=13422,StackCount=20,Rarity=1,MinLevel=0,SellPrice=10,Texture=133897,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:13422::::::::40:::::::|h[Stonescale Eel]|h|r"},["Bolt Charged Bramble"]={SubType="Quest",Level=1,id=7272,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135463,EquipLoc="",Link="|cffffffff|Hitem:7272::::::::40:::::::|h[Bolt Charged Bramble]|h|r",Type="Quest"},["Flint and Tinder"]={SubType="Reagent",Level=5,id=4471,StackCount=1,Rarity=1,MinLevel=0,SellPrice=33,Texture=135237,Type="Reagent",Link="|cffffffff|Hitem:4471::::::::40:::::::|h[Flint and Tinder]|h|r",EquipLoc=""},["Sylvan Shoulders"]={SubType="Cloth",Level=70,id=22758,StackCount=1,Rarity=3,MinLevel=60,SellPrice=25051,Texture=135049,Link="|cff0070dd|Hitem:22758::::::::40:::::::|h[Sylvan Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Grunt's Shield"]={SubType="Shields",Level=24,id=15512,StackCount=1,Rarity=2,MinLevel=19,SellPrice=1578,Texture=134957,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15512::::::::40:::::::|h[Grunt's Shield]|h|r",Type="Armor"},["Gift of the Elven Magi"]={SubType="Daggers",Level=63,id=13360,StackCount=1,Rarity=3,MinLevel=58,SellPrice=56517,Texture=135651,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13360::::::::40:::::::|h[Gift of the Elven Magi]|h|r"},["Odious Greaves"]={SubType="Mail",Level=62,id=18379,StackCount=1,Rarity=3,MinLevel=57,SellPrice=23791,Texture=132587,Type="Armor",Link="|cff0070dd|Hitem:18379::::::::40:::::::|h[Odious Greaves]|h|r",EquipLoc="INVTYPE_FEET"},["Skull Hatchet"]={SubType="One-Handed Axes",Level=8,id=2066,StackCount=1,Rarity=1,MinLevel=3,SellPrice=81,Texture=132402,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2066::::::::40:::::::|h[Skull Hatchet]|h|r"},["Sack of Supplies"]={SubType="Quest",Level=1,id=4918,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133639,EquipLoc="",Link="|cffffffff|Hitem:4918::::::::40:::::::|h[Sack of Supplies]|h|r",Type="Quest"},["Furbolg Medicine Totem"]={SubType="One-Handed Maces",Level=52,id=16769,StackCount=1,Rarity=2,MinLevel=47,SellPrice=26616,Texture=133486,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:16769::::::::40:::::::|h[Furbolg Medicine Totem]|h|r",Type="Weapon"},["Grotslab Gloves"]={SubType="Mail",Level=55,id=11918,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9537,Texture=132951,Type="Armor",Link="|cff1eff00|Hitem:11918::::::::40:::::::|h[Grotslab Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Imperial Qiraji Armaments"]={SubType="Junk",Level=60,id=21232,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135161,Link="|cffa335ee|Hitem:21232::::::::40:::::::|h[Imperial Qiraji Armaments]|h|r",EquipLoc="",Type="Miscellaneous"},["Woolen Bag"]={SubType="Bag",Level=15,id=4240,StackCount=1,Rarity=1,MinLevel=0,SellPrice=300,Texture=133639,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:4240::::::::40:::::::|h[Woolen Bag]|h|r",Type="Container"},["Tidal Charm"]={SubType="Miscellaneous",Level=41,id=1404,StackCount=1,Rarity=2,MinLevel=36,SellPrice=10306,Texture=134414,Type="Armor",Link="|cff1eff00|Hitem:1404::::::::40:::::::|h[Tidal Charm]|h|r",EquipLoc="INVTYPE_TRINKET"},["Animal Skin Belt"]={SubType="Leather",Level=8,id=5936,StackCount=1,Rarity=1,MinLevel=0,SellPrice=19,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:5936::::::::40:::::::|h[Animal Skin Belt]|h|r",Type="Armor"},["Silver Defias Belt"]={SubType="Mail",Level=15,id=832,StackCount=1,Rarity=2,MinLevel=10,SellPrice=203,Texture=132492,Type="Armor",Link="|cff1eff00|Hitem:832::::::::40:::::::|h[Silver Defias Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["[PH] Brilliant Dawn Helm"]={SubType="Plate",Level=100,id=13795,StackCount=1,Rarity=1,MinLevel=100,SellPrice=50100,Texture=133126,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:13795::::::::40:::::::|h[[PH] Brilliant Dawn Helm]|h|r"},["Cape of the Black Baron"]={SubType="Cloth",Level=63,id=13340,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16498,Texture=133772,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:13340::::::::40:::::::|h[Cape of the Black Baron]|h|r"},["Milli's Lexicon"]={SubType="Miscellaneous",Level=59,id=18536,StackCount=1,Rarity=3,MinLevel=0,SellPrice=38664,Texture=133738,Type="Armor",Link="|cff0070dd|Hitem:18536::::::::40:::::::|h[Milli's Lexicon]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Monster - Item, Flowers - Boquet Roses"]={SubType="Miscellaneous",Level=1,id=6232,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133941,Link="|cff9d9d9d|Hitem:6232::::::::40:::::::|h[Monster - Item, Flowers - Boquet Roses]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Skorn's Hammer"]={SubType="One-Handed Maces",Level=12,id=4971,StackCount=1,Rarity=2,MinLevel=0,SellPrice=383,Texture=133046,Link="|cff1eff00|Hitem:4971::::::::40:::::::|h[Skorn's Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Relic of the Ancients"]={SubType="Miscellaneous",Level=30,id=2919,StackCount=1,Rarity=1,MinLevel=25,SellPrice=1000,Texture=133438,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:2919::::::::40:::::::|h[Relic of the Ancients]|h|r"},["Unused Scraping Vial"]={SubType="Quest",Level=0,id=11132,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134864,Type="Quest",Link="|cffffffff|Hitem:11132::::::::40:::::::|h[Unused Scraping Vial]|h|r",EquipLoc=""},["Dreamwalker Boots"]={SubType="Leather",Level=86,id=22492,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91165,Texture=132548,Link="|cffa335ee|Hitem:22492::::::::40:::::::|h[Dreamwalker Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Basalt Necklace"]={SubType="Miscellaneous",Level=32,id=12028,StackCount=1,Rarity=2,MinLevel=27,SellPrice=4007,Texture=133295,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12028::::::::40:::::::|h[Basalt Necklace]|h|r"},["Pink Dye"]={SubType="Trade Goods",Level=50,id=10290,StackCount=10,Rarity=1,MinLevel=0,SellPrice=625,Texture=134720,EquipLoc="",Link="|cffffffff|Hitem:10290::::::::40:::::::|h[Pink Dye]|h|r",Type="Trade Goods"},["Verek's Collar"]={SubType="Miscellaneous",Level=56,id=11755,StackCount=1,Rarity=3,MinLevel=51,SellPrice=14627,Texture=133684,Type="Armor",Link="|cff0070dd|Hitem:11755::::::::40:::::::|h[Verek's Collar]|h|r",EquipLoc="INVTYPE_NECK"},["Magenta Fungus Cap"]={SubType="Quest",Level=1,id=8047,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134530,Link="|cffffffff|Hitem:8047::::::::40:::::::|h[Magenta Fungus Cap]|h|r",EquipLoc="",Type="Quest"},["Book of Mark of the Wild"]={SubType="Book",Level=1,id=8743,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=133743,Link="|cffffffff|Hitem:8743::::::::40:::::::|h[Book of Mark of the Wild]|h|r",EquipLoc="",Type="Recipe"},["Crafted Heavy Shot"]={SubType="Bullet",Level=20,id=8068,StackCount=200,Rarity=1,MinLevel=15,SellPrice=0,Texture=132384,Link="|cffffffff|Hitem:8068::::::::40:::::::|h[Crafted Heavy Shot]|h|r",EquipLoc="INVTYPE_AMMO",Type="Projectile"},["Charger's Cloak"]={SubType="Cloth",Level=8,id=15475,StackCount=1,Rarity=1,MinLevel=3,SellPrice=24,Texture=133766,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:15475::::::::40:::::::|h[Charger's Cloak]|h|r",Type="Armor"},["Tome of Fire Blast VI"]={SubType="Book",Level=46,id=8859,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=133739,Link="|cffffffff|Hitem:8859::::::::40:::::::|h[Tome of Fire Blast VI]|h|r",EquipLoc="",Type="Recipe"},["Cenarion Bracers"]={SubType="Leather",Level=66,id=16830,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22972,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16830::::::::40:::::::|h[Cenarion Bracers]|h|r",Type="Armor"},["Bear Meat"]={SubType="Trade Goods",Level=11,id=3173,StackCount=10,Rarity=1,MinLevel=0,SellPrice=15,Texture=134027,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:3173::::::::40:::::::|h[Bear Meat]|h|r"},["Impenetrable Cloak"]={SubType="Cloth",Level=54,id=15661,StackCount=1,Rarity=2,MinLevel=49,SellPrice=9036,Texture=133763,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15661::::::::40:::::::|h[Impenetrable Cloak]|h|r",Type="Armor"},["Severed Voodoo Claw"]={SubType="Consumable",Level=5,id=5457,StackCount=10,Rarity=1,MinLevel=0,SellPrice=23,Texture=134296,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5457::::::::40:::::::|h[Severed Voodoo Claw]|h|r"},["Elixir of Greater Firepower"]={SubType="Consumable",Level=50,id=21546,StackCount=5,Rarity=1,MinLevel=40,SellPrice=35,Texture=134840,Link="|cffffffff|Hitem:21546::::::::40:::::::|h[Elixir of Greater Firepower]|h|r",EquipLoc="",Type="Consumable"},["Pattern: Bloodvine Boots"]={SubType="Tailoring",Level=65,id=19766,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19766::::::::40:::::::|h[Pattern: Bloodvine Boots]|h|r",EquipLoc="",Type="Recipe"},["Wildkin Muisek Vessel"]={SubType="Quest",Level=1,id=9618,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133841,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9618::::::::40:::::::|h[Wildkin Muisek Vessel]|h|r"},["Pattern: Enchanter's Cowl"]={SubType="Tailoring",Level=33,id=14630,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:14630::::::::40:::::::|h[Pattern: Enchanter's Cowl]|h|r"},["Crystal Ward"]={SubType="Quest",Level=55,id=11564,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134129,Type="Quest",Link="|cffffffff|Hitem:11564::::::::40:::::::|h[Crystal Ward]|h|r",EquipLoc=""},["Runed Copper Bracers"]={SubType="Mail",Level=19,id=2854,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=132602,Type="Armor",Link="|cffffffff|Hitem:2854::::::::40:::::::|h[Runed Copper Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Bingles' Flying Gloves"]={SubType="Leather",Level=15,id=12522,StackCount=1,Rarity=2,MinLevel=0,SellPrice=182,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:12522::::::::40:::::::|h[Bingles' Flying Gloves]|h|r"},["Black Whelp Scale"]={SubType="Junk",Level=1,id=7286,StackCount=10,Rarity=1,MinLevel=0,SellPrice=25,Texture=134305,EquipLoc="",Link="|cffffffff|Hitem:7286::::::::40:::::::|h[Black Whelp Scale]|h|r",Type="Miscellaneous"},["Watcher's Cuffs"]={SubType="Cloth",Level=26,id=14177,StackCount=1,Rarity=2,MinLevel=21,SellPrice=631,Texture=132605,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14177::::::::40:::::::|h[Watcher's Cuffs]|h|r"},["Forest Stalker's Bracers"]={SubType="Leather",Level=65,id=19587,StackCount=1,Rarity=4,MinLevel=60,SellPrice=20183,Texture=132611,Link="|cffa335ee|Hitem:19587::::::::40:::::::|h[Forest Stalker's Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Core Fragment"]={SubType="Quest",Level=1,id=18412,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134116,Type="Quest",Link="|cffffffff|Hitem:18412::::::::40:::::::|h[Core Fragment]|h|r",EquipLoc=""},["Unsigned Field Duty Papers"]={SubType="Quest",Level=60,id=21143,StackCount=1,Rarity=1,MinLevel=58,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:21143::::::::40:::::::|h[Unsigned Field Duty Papers]|h|r",EquipLoc="",Type="Quest"},["Defiler's Chain Greaves"]={SubType="Mail",Level=53,id=20155,StackCount=1,Rarity=3,MinLevel=48,SellPrice=15077,Texture=132545,Link="|cff0070dd|Hitem:20155::::::::40:::::::|h[Defiler's Chain Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Pattern: Mantle of the Timbermaw"]={SubType="Tailoring",Level=64,id=19218,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134939,Link="|cffffffff|Hitem:19218::::::::40:::::::|h[Pattern: Mantle of the Timbermaw]|h|r",EquipLoc="",Type="Recipe"},["Blessed Wizard Oil"]={SubType="Trade Goods",Level=55,id=23123,StackCount=20,Rarity=2,MinLevel=50,SellPrice=40,Texture=134806,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:23123::::::::40:::::::|h[Blessed Wizard Oil]|h|r"},["Smokywood Pastures Sampler"]={SubType="Junk",Level=1,id=17685,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133203,EquipLoc="",Link="|cffffffff|Hitem:17685::::::::40:::::::|h[Smokywood Pastures Sampler]|h|r",Type="Miscellaneous"},["Test Shadow Res Shoulder Mail"]={SubType="Mail",Level=35,id=16149,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3118,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16149::::::::40:::::::|h[Test Shadow Res Shoulder Mail]|h|r",Type="Armor"},["Item Properties Test"]={SubType="Cloth",Level=63,id=18747,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8238,Texture=135033,Type="Armor",Link="|cff0070dd|Hitem:18747::::::::40:::::::|h[Item Properties Test]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Jagged Axe"]={SubType="One-Handed Axes",Level=56,id=13818,StackCount=1,Rarity=0,MinLevel=51,SellPrice=13431,Texture=135421,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:13818::::::::40:::::::|h[Jagged Axe]|h|r"},["Monster - Mace2H, Horde Hammer A03/C01Black"]={SubType="Two-Handed Maces",Level=1,id=18062,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133041,Type="Weapon",Link="|cff9d9d9d|Hitem:18062::::::::40:::::::|h[Monster - Mace2H, Horde Hammer A03/C01Black]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Rough Leather Bracers"]={SubType="Leather",Level=10,id=1840,StackCount=1,Rarity=1,MinLevel=5,SellPrice=37,Texture=132601,Type="Armor",Link="|cffffffff|Hitem:1840::::::::40:::::::|h[Rough Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Lok'delar, Stave of the Ancient Keepers"]={SubType="Staves",Level=75,id=18715,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135158,Type="Weapon",Link="|cffa335ee|Hitem:18715::::::::40:::::::|h[Lok'delar, Stave of the Ancient Keepers]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Tough Leather Bracers"]={SubType="Leather",Level=27,id=1805,StackCount=1,Rarity=0,MinLevel=22,SellPrice=351,Texture=132600,EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:1805::::::::40:::::::|h[Tough Leather Bracers]|h|r",Type="Armor"},["90 Green Rogue Neck"]={SubType="Miscellaneous",Level=90,id=20305,StackCount=1,Rarity=2,MinLevel=60,SellPrice=15038,Texture=133440,Link="|cff1eff00|Hitem:20305::::::::40:::::::|h[90 Green Rogue Neck]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Mountain Silversage"]={SubType="Trade Goods",Level=56,id=13465,StackCount=20,Rarity=1,MinLevel=0,SellPrice=150,Texture=134215,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:13465::::::::40:::::::|h[Mountain Silversage]|h|r"},["High Councillor's Gloves"]={SubType="Cloth",Level=61,id=10140,StackCount=1,Rarity=2,MinLevel=56,SellPrice=9085,Texture=132940,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10140::::::::40:::::::|h[High Councillor's Gloves]|h|r",Type="Armor"},["Brown Linen Vest"]={SubType="Cloth",Level=8,id=2568,StackCount=1,Rarity=1,MinLevel=3,SellPrice=31,Texture=135009,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:2568::::::::40:::::::|h[Brown Linen Vest]|h|r"},["Elixir of Dream Vision"]={SubType="Consumable",Level=48,id=9197,StackCount=5,Rarity=1,MinLevel=38,SellPrice=600,Texture=134765,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9197::::::::40:::::::|h[Elixir of Dream Vision]|h|r"},["A Note to Magus Rimtori"]={SubType="Quest",Level=45,id=10664,StackCount=1,Rarity=1,MinLevel=45,SellPrice=0,Texture=134327,EquipLoc="",Link="|cffffffff|Hitem:10664::::::::40:::::::|h[A Note to Magus Rimtori]|h|r",Type="Quest"},["Gossamer Tunic"]={SubType="Cloth",Level=50,id=7517,StackCount=1,Rarity=2,MinLevel=45,SellPrice=9372,Texture=135007,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7517::::::::40:::::::|h[Gossamer Tunic]|h|r",Type="Armor"},["Libram: Divine Shield"]={SubType="Book",Level=34,id=1144,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133740,Link="|cffffffff|Hitem:1144::::::::40:::::::|h[Libram: Divine Shield]|h|r",EquipLoc="",Type="Recipe"},["Viewing Room Key"]={SubType="Key",Level=1,id=13873,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134248,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:13873::::::::40:::::::|h[Viewing Room Key]|h|r"},["Level 55 Test Gear Leather - Rogue 2"]={SubType="Junk",Level=1,id=17839,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17839::::::::40:::::::|h[Level 55 Test Gear Leather - Rogue 2]|h|r",Type="Miscellaneous"},["Vermillion Idol"]={SubType="Quest",Level=61,id=20872,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134910,Type="Quest",EquipLoc="",Link="|cff0070dd|Hitem:20872::::::::40:::::::|h[Vermillion Idol]|h|r"},["Sage's Sash"]={SubType="Cloth",Level=29,id=6611,StackCount=1,Rarity=2,MinLevel=24,SellPrice=812,Texture=133693,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:6611::::::::40:::::::|h[Sage's Sash]|h|r"},["Limited Invulnerability Potion"]={SubType="Consumable",Level=50,id=3387,StackCount=5,Rarity=1,MinLevel=45,SellPrice=30,Texture=134842,Type="Consumable",Link="|cffffffff|Hitem:3387::::::::40:::::::|h[Limited Invulnerability Potion]|h|r",EquipLoc=""},["Chillhide Bracers"]={SubType="Leather",Level=60,id=13537,StackCount=1,Rarity=2,MinLevel=55,SellPrice=9884,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:13537::::::::40:::::::|h[Chillhide Bracers]|h|r"},["Test Fire Resist Mail LockBox"]={SubType="Junk",Level=1,id=16070,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16070::::::::40:::::::|h[Test Fire Resist Mail LockBox]|h|r",Type="Miscellaneous"},["Choker of the Fire Lord"]={SubType="Miscellaneous",Level=78,id=18814,StackCount=1,Rarity=4,MinLevel=60,SellPrice=89135,Texture=133280,Type="Armor",Link="|cffa335ee|Hitem:18814::::::::40:::::::|h[Choker of the Fire Lord]|h|r",EquipLoc="INVTYPE_NECK"},["Deprecated Tome of Conjure Mana Jewel"]={SubType="Book",Level=37,id=4156,StackCount=1,Rarity=1,MinLevel=37,SellPrice=3925,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4156::::::::40:::::::|h[Deprecated Tome of Conjure Mana Jewel]|h|r"},["Monster - Axe, 2H Rev. Bearded Single Bladed - Red"]={SubType="Two-Handed Axes",Level=1,id=12285,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12285::::::::40:::::::|h[Monster - Axe, 2H Rev. Bearded Single Bladed - Red]|h|r"},["Plans: Dawnbringer Shoulders"]={SubType="Blacksmithing",Level=58,id=12698,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12698::::::::40:::::::|h[Plans: Dawnbringer Shoulders]|h|r"},["Gossamer Gloves"]={SubType="Cloth",Level=46,id=7521,StackCount=1,Rarity=2,MinLevel=41,SellPrice=3560,Texture=132966,Link="|cff1eff00|Hitem:7521::::::::40:::::::|h[Gossamer Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Un'Goro Tested Sample"]={SubType="Junk",Level=50,id=15102,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,EquipLoc="",Link="|cffffffff|Hitem:15102::::::::40:::::::|h[Un'Goro Tested Sample]|h|r",Type="Miscellaneous"},["Third Mosh'aru Tablet"]={SubType="Quest",Level=1,id=12411,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134417,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12411::::::::40:::::::|h[Third Mosh'aru Tablet]|h|r"},["Dim Necrotic Stone"]={SubType="Quest",Level=1,id=22892,StackCount=10,Rarity=1,MinLevel=1,SellPrice=0,Texture=134085,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:22892::::::::40:::::::|h[Dim Necrotic Stone]|h|r"},["Light Mail Boots"]={SubType="Mail",Level=10,id=2395,StackCount=1,Rarity=1,MinLevel=5,SellPrice=64,Texture=132535,Type="Armor",Link="|cffffffff|Hitem:2395::::::::40:::::::|h[Light Mail Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Recipe: Lean Venison"]={SubType="Cooking",Level=25,id=5489,StackCount=1,Rarity=1,MinLevel=0,SellPrice=300,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:5489::::::::40:::::::|h[Recipe: Lean Venison]|h|r",Type="Recipe"},["Ghostwalker Boots"]={SubType="Leather",Level=35,id=15142,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2603,Texture=132592,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15142::::::::40:::::::|h[Ghostwalker Boots]|h|r",Type="Armor"},["Shimmerweed"]={SubType="Quest",Level=1,id=2676,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134184,Type="Quest",Link="|cffffffff|Hitem:2676::::::::40:::::::|h[Shimmerweed]|h|r",EquipLoc=""},["Marshal Windsor's Lost Information"]={SubType="Quest",Level=1,id=11464,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134420,Type="Quest",Link="|cffffffff|Hitem:11464::::::::40:::::::|h[Marshal Windsor's Lost Information]|h|r",EquipLoc=""},["Plans: Dark Iron Mail"]={SubType="Blacksmithing",Level=54,id=11614,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:11614::::::::40:::::::|h[Plans: Dark Iron Mail]|h|r",EquipLoc=""},["Warglaive of Azzinoth (Left)"]={SubType="One-Handed Swords",Level=100,id=18584,StackCount=1,Rarity=6,MinLevel=70,SellPrice=1116267,Texture=135277,Type="Weapon",Link="|cffe6cc80|Hitem:18584::::::::40:::::::|h[Warglaive of Azzinoth (Left)]|h|r",EquipLoc="INVTYPE_WEAPON"},["Dregmetal Spaulders"]={SubType="Mail",Level=55,id=11722,StackCount=1,Rarity=3,MinLevel=50,SellPrice=16610,Texture=135061,Type="Armor",Link="|cff0070dd|Hitem:11722::::::::40:::::::|h[Dregmetal Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Walking Stick"]={SubType="Staves",Level=8,id=2495,StackCount=1,Rarity=1,MinLevel=3,SellPrice=100,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:2495::::::::40:::::::|h[Walking Stick]|h|r"},["General's Mail Waistband"]={SubType="Mail",Level=65,id=16575,StackCount=1,Rarity=4,MinLevel=60,SellPrice=12373,Texture=132503,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16575::::::::40:::::::|h[General's Mail Waistband]|h|r",Type="Armor"},["Crate of Ghost Magnets"]={SubType="Quest",Level=1,id=15848,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132763,EquipLoc="",Link="|cffffffff|Hitem:15848::::::::40:::::::|h[Crate of Ghost Magnets]|h|r",Type="Quest"},["Ringed Helm"]={SubType="Leather",Level=30,id=3392,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1663,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:3392::::::::40:::::::|h[Ringed Helm]|h|r",Type="Armor"},["Pattern: Chromatic Cloak"]={SubType="Leatherworking",Level=62,id=18517,StackCount=1,Rarity=4,MinLevel=0,SellPrice=40000,Texture=134940,Type="Recipe",Link="|cffa335ee|Hitem:18517::::::::40:::::::|h[Pattern: Chromatic Cloak]|h|r",EquipLoc=""},["Codex of Holy Word: Fortitude"]={SubType="Book",Level=1,id=8954,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:8954::::::::40:::::::|h[Codex of Holy Word: Fortitude]|h|r",Type="Recipe"},["Winged Helm"]={SubType="Leather",Level=48,id=13112,StackCount=1,Rarity=3,MinLevel=43,SellPrice=9624,Texture=133121,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:13112::::::::40:::::::|h[Winged Helm]|h|r"},["Bleach"]={SubType="Trade Goods",Level=5,id=2324,StackCount=10,Rarity=1,MinLevel=0,SellPrice=6,Texture=132799,Link="|cffffffff|Hitem:2324::::::::40:::::::|h[Bleach]|h|r",EquipLoc="",Type="Trade Goods"},["Mooncloth Vest"]={SubType="Cloth",Level=60,id=14138,StackCount=1,Rarity=3,MinLevel=55,SellPrice=20042,Texture=132649,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:14138::::::::40:::::::|h[Mooncloth Vest]|h|r"},["Bronze Hakkari Bijou"]={SubType="Quest",Level=61,id=19713,StackCount=250,Rarity=3,MinLevel=58,SellPrice=0,Texture=132527,Link="|cff0070dd|Hitem:19713::::::::40:::::::|h[Bronze Hakkari Bijou]|h|r",EquipLoc="",Type="Quest"},["Pickled Kodo Foot"]={SubType="Consumable",Level=25,id=19305,StackCount=20,Rarity=1,MinLevel=15,SellPrice=25,Texture=134061,Link="|cffffffff|Hitem:19305::::::::40:::::::|h[Pickled Kodo Foot]|h|r",EquipLoc="",Type="Consumable"},["Mark of the Kirin Tor"]={SubType="Miscellaneous",Level=35,id=5004,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1806,Texture=133295,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:5004::::::::40:::::::|h[Mark of the Kirin Tor]|h|r",Type="Armor"},["Goldthorn Tea"]={SubType="Consumable",Level=35,id=10841,StackCount=20,Rarity=1,MinLevel=25,SellPrice=85,Texture=132802,EquipLoc="",Link="|cffffffff|Hitem:10841::::::::40:::::::|h[Goldthorn Tea]|h|r",Type="Consumable"},["Charger's Armor"]={SubType="Mail",Level=11,id=15479,StackCount=1,Rarity=2,MinLevel=6,SellPrice=179,Texture=132638,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15479::::::::40:::::::|h[Charger's Armor]|h|r",Type="Armor"},["Dreamwalker Legguards"]={SubType="Leather",Level=88,id=22489,StackCount=1,Rarity=4,MinLevel=60,SellPrice=132583,Texture=134667,Link="|cffa335ee|Hitem:22489::::::::40:::::::|h[Dreamwalker Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Deprecated Dwarven Apprentice Boots"]={SubType="Miscellaneous",Level=1,id=114,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:114::::::::40:::::::|h[Deprecated Dwarven Apprentice Boots]|h|r",Type="Armor"},["Scroll: Create Signet of Beckoning"]={SubType="Junk",Level=1,id=20531,StackCount=20,Rarity=1,MinLevel=0,SellPrice=750,Texture=134937,Link="|cffffffff|Hitem:20531::::::::40:::::::|h[Scroll: Create Signet of Beckoning]|h|r",EquipLoc="",Type="Miscellaneous"},["Copper Axe"]={SubType="One-Handed Axes",Level=9,id=2845,StackCount=1,Rarity=1,MinLevel=4,SellPrice=109,Texture=132417,Link="|cffffffff|Hitem:2845::::::::40:::::::|h[Copper Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Libram: Turn Undead III"]={SubType="Book",Level=52,id=8938,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=133740,Link="|cffffffff|Hitem:8938::::::::40:::::::|h[Libram: Turn Undead III]|h|r",EquipLoc="",Type="Recipe"},["Book of Tranquility III"]={SubType="Book",Level=50,id=8786,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133743,Link="|cffffffff|Hitem:8786::::::::40:::::::|h[Book of Tranquility III]|h|r",EquipLoc="",Type="Recipe"},["Monster - Glaive - 2 Blade Silver"]={SubType="One-Handed Axes",Level=1,id=14882,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14882::::::::40:::::::|h[Monster - Glaive - 2 Blade Silver]|h|r"},["Nemesis Skullcap"]={SubType="Cloth",Level=76,id=16929,StackCount=1,Rarity=4,MinLevel=60,SellPrice=41521,Texture=133076,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16929::::::::40:::::::|h[Nemesis Skullcap]|h|r",Type="Armor"},["Grimoire of Drain Soul"]={SubType="Book",Level=10,id=9195,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9195::::::::40:::::::|h[Grimoire of Drain Soul]|h|r"},["Monster - Item, Bucket - Metal Dirty"]={SubType="Miscellaneous",Level=1,id=13608,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133942,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13608::::::::40:::::::|h[Monster - Item, Bucket - Metal Dirty]|h|r"},["Righteous Gloves"]={SubType="Leather",Level=51,id=10072,StackCount=1,Rarity=2,MinLevel=46,SellPrice=6177,Texture=132946,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10072::::::::40:::::::|h[Righteous Gloves]|h|r",Type="Armor"},["Tome of Flamestrike VI"]={SubType="Book",Level=56,id=8886,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8886::::::::40:::::::|h[Tome of Flamestrike VI]|h|r"},["Sayge's Fortune #3"]={SubType="Junk",Level=1,id=19238,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19238::::::::40:::::::|h[Sayge's Fortune #3]|h|r",EquipLoc="",Type="Miscellaneous"},["Level 55 Test Gear Leather - Druid"]={SubType="Junk",Level=1,id=13671,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13671::::::::40:::::::|h[Level 55 Test Gear Leather - Druid]|h|r"},["Tome of Devouring Shadows"]={SubType="Miscellaneous",Level=52,id=19989,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133743,Link="|cff0070dd|Hitem:19989::::::::40:::::::|h[Tome of Devouring Shadows]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Rune of Portals"]={SubType="Reagent",Level=40,id=17032,StackCount=10,Rarity=1,MinLevel=0,SellPrice=500,Texture=134421,EquipLoc="",Link="|cffffffff|Hitem:17032::::::::40:::::::|h[Rune of Portals]|h|r",Type="Reagent"},["Temporal Displacer"]={SubType="Quest",Level=1,id=12627,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134229,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12627::::::::40:::::::|h[Temporal Displacer]|h|r"},["Rancher's Trousers"]={SubType="Cloth",Level=12,id=10549,StackCount=1,Rarity=2,MinLevel=0,SellPrice=162,Texture=134593,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10549::::::::40:::::::|h[Rancher's Trousers]|h|r",Type="Armor"},["[PH] Brilliant Dawn Mitts"]={SubType="Leather",Level=100,id=13729,StackCount=1,Rarity=1,MinLevel=100,SellPrice=45725,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:13729::::::::40:::::::|h[[PH] Brilliant Dawn Mitts]|h|r"},["Oracle Crystal"]={SubType="Quest",Level=1,id=6442,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134564,Link="|cffffffff|Hitem:6442::::::::40:::::::|h[Oracle Crystal]|h|r",EquipLoc="",Type="Quest"},["Seal of Ascension"]={SubType="Miscellaneous",Level=61,id=12344,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133343,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:12344::::::::40:::::::|h[Seal of Ascension]|h|r"},["Ancient Chestpiece"]={SubType="Mail",Level=46,id=15601,StackCount=1,Rarity=2,MinLevel=41,SellPrice=10345,Texture=132632,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15601::::::::40:::::::|h[Ancient Chestpiece]|h|r",Type="Armor"},["90 Epic Rogue Spaulders"]={SubType="Leather",Level=90,id=20273,StackCount=1,Rarity=4,MinLevel=60,SellPrice=111177,Texture=135038,Link="|cffa335ee|Hitem:20273::::::::40:::::::|h[90 Epic Rogue Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Ancient Hakkari Manslayer"]={SubType="One-Handed Axes",Level=68,id=19852,StackCount=1,Rarity=4,MinLevel=60,SellPrice=98086,Texture=132428,Link="|cffa335ee|Hitem:19852::::::::40:::::::|h[Ancient Hakkari Manslayer]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Sweet Nectar"]={SubType="Consumable",Level=35,id=1708,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=132799,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:1708::::::::40:::::::|h[Sweet Nectar]|h|r"},["Heavy Kodo Meat"]={SubType="Trade Goods",Level=35,id=12204,StackCount=10,Rarity=1,MinLevel=0,SellPrice=112,Texture=134026,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12204::::::::40:::::::|h[Heavy Kodo Meat]|h|r"},["Deprecated Conjured Mana Gem"]={SubType="Junk",Level=28,id=1255,StackCount=1,Rarity=1,MinLevel=18,SellPrice=0,Texture=134134,Link="|cffffffff|Hitem:1255::::::::40:::::::|h[Deprecated Conjured Mana Gem]|h|r",EquipLoc="",Type="Miscellaneous"},["Hive'Zora Dossier"]={SubType="Junk",Level=1,id=22650,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133460,Link="|cffffffff|Hitem:22650::::::::40:::::::|h[Hive'Zora Dossier]|h|r",EquipLoc="",Type="Miscellaneous"},["Defiler's Epaulets"]={SubType="Cloth",Level=65,id=20176,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25889,Texture=135055,Link="|cffa335ee|Hitem:20176::::::::40:::::::|h[Defiler's Epaulets]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Tundra Ring"]={SubType="Miscellaneous",Level=33,id=12009,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2174,Texture=133347,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12009::::::::40:::::::|h[Tundra Ring]|h|r"},["Laced Mail Vest"]={SubType="Mail",Level=16,id=1745,StackCount=1,Rarity=0,MinLevel=11,SellPrice=198,Texture=132624,EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:1745::::::::40:::::::|h[Laced Mail Vest]|h|r",Type="Armor"},["Phase Blade"]={SubType="One-Handed Swords",Level=57,id=13182,StackCount=1,Rarity=3,MinLevel=52,SellPrice=44142,Texture=135346,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13182::::::::40:::::::|h[Phase Blade]|h|r"},["Balanced Long Bow"]={SubType="Bows",Level=45,id=4025,StackCount=1,Rarity=0,MinLevel=40,SellPrice=5070,Texture=135490,Type="Weapon",Link="|cff9d9d9d|Hitem:4025::::::::40:::::::|h[Balanced Long Bow]|h|r",EquipLoc="INVTYPE_RANGED"},["Feral Gloves"]={SubType="Leather",Level=18,id=15310,StackCount=1,Rarity=2,MinLevel=13,SellPrice=279,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15310::::::::40:::::::|h[Feral Gloves]|h|r",Type="Armor"},["Windchaser Robes"]={SubType="Cloth",Level=49,id=14434,StackCount=1,Rarity=2,MinLevel=44,SellPrice=8706,Texture=132670,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14434::::::::40:::::::|h[Windchaser Robes]|h|r"},["Tough Hunk of Bread"]={SubType="Consumable",Level=5,id=4540,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=133964,EquipLoc="",Link="|cffffffff|Hitem:4540::::::::40:::::::|h[Tough Hunk of Bread]|h|r",Type="Consumable"},["Sacrificial Gauntlets"]={SubType="Plate",Level=68,id=22714,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14936,Texture=132965,Link="|cff0070dd|Hitem:22714::::::::40:::::::|h[Sacrificial Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Arachnidian Girdle"]={SubType="Cloth",Level=51,id=14289,StackCount=1,Rarity=2,MinLevel=46,SellPrice=5131,Texture=132499,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14289::::::::40:::::::|h[Arachnidian Girdle]|h|r"},["Pattern: Wizardweave Turban"]={SubType="Tailoring",Level=61,id=14505,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14505::::::::40:::::::|h[Pattern: Wizardweave Turban]|h|r"},["Glimmering Mail Girdle"]={SubType="Mail",Level=29,id=4712,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1228,Texture=132521,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4712::::::::40:::::::|h[Glimmering Mail Girdle]|h|r"},["Shaky's Payment"]={SubType="Quest",Level=1,id=3922,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133789,Type="Quest",Link="|cffffffff|Hitem:3922::::::::40:::::::|h[Shaky's Payment]|h|r",EquipLoc=""},["Amberglow Talisman"]={SubType="Miscellaneous",Level=44,id=10824,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5930,Texture=133294,EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:10824::::::::40:::::::|h[Amberglow Talisman]|h|r",Type="Armor"},["Gurubashi Helm"]={SubType="Plate",Level=65,id=20263,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18495,Texture=133127,Link="|cff0070dd|Hitem:20263::::::::40:::::::|h[Gurubashi Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Impaling Harpoon"]={SubType="Polearms",Level=22,id=5200,StackCount=1,Rarity=2,MinLevel=20,SellPrice=2323,Texture=135130,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:5200::::::::40:::::::|h[Impaling Harpoon]|h|r",Type="Weapon"},["Buccaneer's Pants"]={SubType="Cloth",Level=22,id=14171,StackCount=1,Rarity=2,MinLevel=17,SellPrice=738,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14171::::::::40:::::::|h[Buccaneer's Pants]|h|r"},["Instant Poison VI"]={SubType="Consumable",Level=60,id=8928,StackCount=20,Rarity=1,MinLevel=60,SellPrice=125,Texture=132273,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8928::::::::40:::::::|h[Instant Poison VI]|h|r"},["Phalanx Boots"]={SubType="Mail",Level=34,id=7417,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2903,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7417::::::::40:::::::|h[Phalanx Boots]|h|r",Type="Armor"},["Cheap Beer"]={SubType="Consumable",Level=1,id=19222,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2,Texture=132795,Link="|cffffffff|Hitem:19222::::::::40:::::::|h[Cheap Beer]|h|r",EquipLoc="",Type="Consumable"},["Demonfork"]={SubType="One-Handed Axes",Level=59,id=12621,StackCount=1,Rarity=3,MinLevel=54,SellPrice=45085,Texture=135581,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:12621::::::::40:::::::|h[Demonfork]|h|r"},["Laird's Response"]={SubType="Quest",Level=1,id=16263,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133468,EquipLoc="",Link="|cffffffff|Hitem:16263::::::::40:::::::|h[Laird's Response]|h|r",Type="Quest"},["Satyrmane Sash"]={SubType="Cloth",Level=50,id=17755,StackCount=1,Rarity=3,MinLevel=45,SellPrice=5818,Texture=132513,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:17755::::::::40:::::::|h[Satyrmane Sash]|h|r",Type="Armor"},["Maraudine Key Fragment"]={SubType="Quest",Level=1,id=6077,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134232,Type="Quest",Link="|cffffffff|Hitem:6077::::::::40:::::::|h[Maraudine Key Fragment]|h|r",EquipLoc=""},["Test Arcane Res Waist Mail"]={SubType="Mail",Level=35,id=16163,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2070,Texture=132515,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16163::::::::40:::::::|h[Test Arcane Res Waist Mail]|h|r",Type="Armor"},["Lost Thunderbrew Recipe"]={SubType="Quest",Level=1,id=11312,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134329,Type="Quest",Link="|cffffffff|Hitem:11312::::::::40:::::::|h[Lost Thunderbrew Recipe]|h|r",EquipLoc=""},["Blue Murloc Egg"]={SubType="Junk",Level=20,id=20371,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132834,Link="|cffffffff|Hitem:20371::::::::40:::::::|h[Blue Murloc Egg]|h|r",EquipLoc="",Type="Miscellaneous"},["Brawler Gloves"]={SubType="Leather",Level=28,id=720,StackCount=1,Rarity=3,MinLevel=23,SellPrice=1070,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:720::::::::40:::::::|h[Brawler Gloves]|h|r"},["Blood Guard's Satin Gloves"]={SubType="Cloth",Level=63,id=17617,StackCount=1,Rarity=3,MinLevel=58,SellPrice=5868,Texture=132951,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:17617::::::::40:::::::|h[Blood Guard's Satin Gloves]|h|r",Type="Armor"},["Zandalar Augur's Hauberk"]={SubType="Mail",Level=65,id=19828,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132715,Link="|cffa335ee|Hitem:19828::::::::40:::::::|h[Zandalar Augur's Hauberk]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Ash Covered Boots"]={SubType="Leather",Level=61,id=18716,StackCount=1,Rarity=3,MinLevel=56,SellPrice=18655,Texture=132542,Type="Armor",Link="|cff0070dd|Hitem:18716::::::::40:::::::|h[Ash Covered Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Heavy Throwing Dagger"]={SubType="Thrown",Level=27,id=3108,StackCount=200,Rarity=1,MinLevel=22,SellPrice=0,Texture=135427,Type="Weapon",EquipLoc="INVTYPE_THROWN",Link="|cffffffff|Hitem:3108::::::::40:::::::|h[Heavy Throwing Dagger]|h|r"},["Murloc Scale Belt"]={SubType="Leather",Level=18,id=5780,StackCount=1,Rarity=2,MinLevel=13,SellPrice=260,Texture=132491,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:5780::::::::40:::::::|h[Murloc Scale Belt]|h|r",Type="Armor"},["Palomino"]={SubType="Junk",Level=40,id=2413,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132261,EquipLoc="",Link="|cffffffff|Hitem:2413::::::::40:::::::|h[Palomino]|h|r",Type="Miscellaneous"},["Heavy Weightstone"]={SubType="Trade Goods",Level=25,id=3241,StackCount=20,Rarity=1,MinLevel=15,SellPrice=40,Texture=135257,Link="|cffffffff|Hitem:3241::::::::40:::::::|h[Heavy Weightstone]|h|r",EquipLoc="",Type="Trade Goods"},["Fortified Spaulders"]={SubType="Mail",Level=26,id=9817,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1426,Texture=135038,Link="|cff1eff00|Hitem:9817::::::::40:::::::|h[Fortified Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Valentine's Day Card"]={SubType="Junk",Level=0,id=22059,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135453,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22059::::::::40:::::::|h[Valentine's Day Card]|h|r"},["Kazon's Maul"]={SubType="Two-Handed Maces",Level=27,id=2058,StackCount=1,Rarity=2,MinLevel=22,SellPrice=4197,Texture=133053,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:2058::::::::40:::::::|h[Kazon's Maul]|h|r",Type="Weapon"},["Tome of Conjure Food II"]={SubType="Book",Level=12,id=4143,StackCount=1,Rarity=1,MinLevel=12,SellPrice=125,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:4143::::::::40:::::::|h[Tome of Conjure Food II]|h|r",EquipLoc=""},["Bloodvine Vest"]={SubType="Cloth",Level=65,id=19682,StackCount=1,Rarity=3,MinLevel=60,SellPrice=25035,Texture=132648,Link="|cff0070dd|Hitem:19682::::::::40:::::::|h[Bloodvine Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Dense Triangle Mace"]={SubType="Two-Handed Maces",Level=28,id=3203,StackCount=1,Rarity=3,MinLevel=23,SellPrice=5436,Texture=133488,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:3203::::::::40:::::::|h[Dense Triangle Mace]|h|r"},["Bristleback Quilboar Tusk"]={SubType="Quest",Level=1,id=5085,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133721,EquipLoc="",Link="|cffffffff|Hitem:5085::::::::40:::::::|h[Bristleback Quilboar Tusk]|h|r",Type="Quest"},["Elemental Ember"]={SubType="Miscellaneous",Level=59,id=18672,StackCount=1,Rarity=2,MinLevel=54,SellPrice=17855,Texture=134337,Type="Armor",Link="|cff1eff00|Hitem:18672::::::::40:::::::|h[Elemental Ember]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Pyremail Wristguards"]={SubType="Mail",Level=57,id=11765,StackCount=1,Rarity=3,MinLevel=52,SellPrice=12525,Texture=132617,Type="Armor",Link="|cff0070dd|Hitem:11765::::::::40:::::::|h[Pyremail Wristguards]|h|r",EquipLoc="INVTYPE_WRIST"},["Imbued Plate Gauntlets"]={SubType="Plate",Level=58,id=10369,StackCount=1,Rarity=2,MinLevel=53,SellPrice=7377,Texture=132940,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10369::::::::40:::::::|h[Imbued Plate Gauntlets]|h|r",Type="Armor"},["JYoo Random Item Test"]={SubType="One-Handed Swords",Level=1,id=17342,StackCount=1,Rarity=1,MinLevel=1,SellPrice=3,Texture=135274,EquipLoc="INVTYPE_WEAPONOFFHAND",Link="|cffffffff|Hitem:17342::::::::40:::::::|h[JYoo Random Item Test]|h|r",Type="Weapon"},["Metzen's Letters and Notes"]={SubType="Junk",Level=1,id=21314,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133459,Link="|cffffffff|Hitem:21314::::::::40:::::::|h[Metzen's Letters and Notes]|h|r",EquipLoc="",Type="Miscellaneous"},["Codex of Renew IV"]={SubType="Book",Level=26,id=3115,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:3115::::::::40:::::::|h[Codex of Renew IV]|h|r",Type="Recipe"},["Venomshroud Boots"]={SubType="Cloth",Level=48,id=14438,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6192,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14438::::::::40:::::::|h[Venomshroud Boots]|h|r"},["Light Hunting Rifle"]={SubType="Guns",Level=5,id=12448,StackCount=1,Rarity=1,MinLevel=0,SellPrice=19,Texture=135616,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:12448::::::::40:::::::|h[Light Hunting Rifle]|h|r"},["Witchblade"]={SubType="Daggers",Level=62,id=13964,StackCount=1,Rarity=3,MinLevel=57,SellPrice=53612,Texture=135661,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13964::::::::40:::::::|h[Witchblade]|h|r"},["Conservator Helm"]={SubType="Mail",Level=54,id=12018,StackCount=1,Rarity=2,MinLevel=0,SellPrice=13842,Texture=133069,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:12018::::::::40:::::::|h[Conservator Helm]|h|r"},["Poached Sunscale Salmon"]={SubType="Consumable",Level=45,id=13932,StackCount=20,Rarity=1,MinLevel=35,SellPrice=12,Texture=133905,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13932::::::::40:::::::|h[Poached Sunscale Salmon]|h|r"},["Legionnaire's Satin Cuffs"]={SubType="Cloth",Level=60,id=17615,StackCount=1,Rarity=3,MinLevel=55,SellPrice=4744,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:17615::::::::40:::::::|h[Legionnaire's Satin Cuffs]|h|r",Type="Armor"},["Warsong Outrider Update"]={SubType="Quest",Level=1,id=16765,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133468,EquipLoc="",Link="|cffffffff|Hitem:16765::::::::40:::::::|h[Warsong Outrider Update]|h|r",Type="Quest"},["Monster - Shield, Horde B01 Brown"]={SubType="Shields",Level=1,id=12454,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:12454::::::::40:::::::|h[Monster - Shield, Horde B01 Brown]|h|r"},["War Paint Legguards"]={SubType="Mail",Level=19,id=14727,StackCount=1,Rarity=2,MinLevel=14,SellPrice=778,Texture=134585,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14727::::::::40:::::::|h[War Paint Legguards]|h|r"},["Book of Rejuvenation V"]={SubType="Book",Level=28,id=8762,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8762::::::::40:::::::|h[Book of Rejuvenation V]|h|r"},["Manual Crowd Pummeler"]={SubType="Two-Handed Maces",Level=34,id=9449,StackCount=1,Rarity=3,MinLevel=29,SellPrice=9564,Texture=133489,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9449::::::::40:::::::|h[Manual Crowd Pummeler]|h|r"},["Pattern: Mooncloth Shoulders"]={SubType="Tailoring",Level=61,id=14507,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:14507::::::::40:::::::|h[Pattern: Mooncloth Shoulders]|h|r"},["Flask of Oil"]={SubType="Trade Goods",Level=1,id=814,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=132794,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:814::::::::40:::::::|h[Flask of Oil]|h|r"},["Freshly-Squeezed Lemonade"]={SubType="Consumable",Level=55,id=23161,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=132801,Link="|cffffffff|Hitem:23161::::::::40:::::::|h[Freshly-Squeezed Lemonade]|h|r",EquipLoc="",Type="Consumable"},["Champion's Wall Shield"]={SubType="Shields",Level=48,id=7536,StackCount=1,Rarity=2,MinLevel=43,SellPrice=13048,Texture=134949,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:7536::::::::40:::::::|h[Champion's Wall Shield]|h|r",Type="Armor"},["Pestlezugg's Un'Goro Report"]={SubType="Quest",Level=1,id=11844,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",Link="|cffffffff|Hitem:11844::::::::40:::::::|h[Pestlezugg's Un'Goro Report]|h|r",EquipLoc=""},["Grom'gol Buckler"]={SubType="Shields",Level=37,id=4115,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5783,Texture=134948,Link="|cff1eff00|Hitem:4115::::::::40:::::::|h[Grom'gol Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Wendigo Collar"]={SubType="Leather",Level=15,id=2899,StackCount=1,Rarity=2,MinLevel=10,SellPrice=169,Texture=132490,Type="Armor",Link="|cff1eff00|Hitem:2899::::::::40:::::::|h[Wendigo Collar]|h|r",EquipLoc="INVTYPE_WAIST"},["Darkmist Orb"]={SubType="Miscellaneous",Level=46,id=15980,StackCount=1,Rarity=2,MinLevel=41,SellPrice=7469,Texture=134337,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15980::::::::40:::::::|h[Darkmist Orb]|h|r",Type="Armor"},["Ta'Kierthan Songblade"]={SubType="Two-Handed Swords",Level=57,id=16039,StackCount=1,Rarity=3,MinLevel=52,SellPrice=53598,Texture=135351,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:16039::::::::40:::::::|h[Ta'Kierthan Songblade]|h|r",Type="Weapon"},["Grelin's Report"]={SubType="Quest",Level=1,id=2619,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,EquipLoc="",Link="|cffffffff|Hitem:2619::::::::40:::::::|h[Grelin's Report]|h|r",Type="Quest"},["Flimsy Female Troll Mask"]={SubType="Miscellaneous",Level=1,id=20567,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134178,Link="|cffffffff|Hitem:20567::::::::40:::::::|h[Flimsy Female Troll Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Crystal Webbed Robe"]={SubType="Cloth",Level=85,id=23220,StackCount=1,Rarity=4,MinLevel=60,SellPrice=89270,Texture=132687,Link="|cffa335ee|Hitem:23220::::::::40:::::::|h[Crystal Webbed Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Peerless Cloak"]={SubType="Cloth",Level=54,id=15427,StackCount=1,Rarity=2,MinLevel=49,SellPrice=8536,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15427::::::::40:::::::|h[Peerless Cloak]|h|r",Type="Armor"},["Salbac Shield"]={SubType="Shields",Level=45,id=4652,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10126,Texture=134957,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:4652::::::::40:::::::|h[Salbac Shield]|h|r",Type="Armor"},["Deathmist Sandals"]={SubType="Cloth",Level=60,id=22076,StackCount=1,Rarity=4,MinLevel=0,SellPrice=20213,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:22076::::::::40:::::::|h[Deathmist Sandals]|h|r"},["Kum'isha's Junk"]={SubType="Junk",Level=1,id=10595,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cff1eff00|Hitem:10595::::::::40:::::::|h[Kum'isha's Junk]|h|r",Type="Miscellaneous"},["Winterfall Firewater"]={SubType="Consumable",Level=50,id=12820,StackCount=10,Rarity=1,MinLevel=45,SellPrice=0,Texture=134872,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12820::::::::40:::::::|h[Winterfall Firewater]|h|r"},["Nixx's Pledge of Secrecy"]={SubType="Quest",Level=1,id=10792,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,EquipLoc="",Link="|cffffffff|Hitem:10792::::::::40:::::::|h[Nixx's Pledge of Secrecy]|h|r",Type="Quest"},["Codex of Holy Word: Fortitude III"]={SubType="Book",Level=24,id=3123,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:3123::::::::40:::::::|h[Codex of Holy Word: Fortitude III]|h|r",Type="Recipe"},["Pattern: Molten Helm"]={SubType="Leatherworking",Level=60,id=17023,StackCount=1,Rarity=1,MinLevel=0,SellPrice=40000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:17023::::::::40:::::::|h[Pattern: Molten Helm]|h|r",Type="Recipe"},["Codex of Holy Word: Shield VIII"]={SubType="Book",Level=48,id=9006,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9006::::::::40:::::::|h[Codex of Holy Word: Shield VIII]|h|r"},["High Chief's Bindings"]={SubType="Plate",Level=49,id=14965,StackCount=1,Rarity=2,MinLevel=44,SellPrice=4450,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14965::::::::40:::::::|h[High Chief's Bindings]|h|r"},["Monster - Staff, Ornate Jeweled Staff - Blue"]={SubType="Staves",Level=1,id=14873,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14873::::::::40:::::::|h[Monster - Staff, Ornate Jeweled Staff - Blue]|h|r"},["Slayer's Shield"]={SubType="Shields",Level=32,id=15892,StackCount=1,Rarity=2,MinLevel=27,SellPrice=3582,Texture=134961,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15892::::::::40:::::::|h[Slayer's Shield]|h|r",Type="Armor"},["Charger's Handwraps"]={SubType="Mail",Level=10,id=15476,StackCount=1,Rarity=1,MinLevel=5,SellPrice=44,Texture=132952,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:15476::::::::40:::::::|h[Charger's Handwraps]|h|r",Type="Armor"},["Bloated Catfish"]={SubType="Consumable",Level=25,id=6647,StackCount=1,Rarity=1,MinLevel=15,SellPrice=40,Texture=133915,Link="|cffffffff|Hitem:6647::::::::40:::::::|h[Bloated Catfish]|h|r",EquipLoc="",Type="Consumable"},["Horn of Uber Buffing (test)"]={SubType="Junk",Level=1,id=12789,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134228,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:12789::::::::40:::::::|h[Horn of Uber Buffing (test)]|h|r"},["Test Arcane Res Wrist Mail"]={SubType="Mail",Level=35,id=16158,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2070,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:16158::::::::40:::::::|h[Test Arcane Res Wrist Mail]|h|r",Type="Armor"},["Nemesis Spaulders"]={SubType="Cloth",Level=76,id=16932,StackCount=1,Rarity=4,MinLevel=60,SellPrice=41998,Texture=135050,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16932::::::::40:::::::|h[Nemesis Spaulders]|h|r",Type="Armor"},["Orcish Battle Bow"]={SubType="Bows",Level=14,id=5346,StackCount=1,Rarity=2,MinLevel=0,SellPrice=425,Texture=135496,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:5346::::::::40:::::::|h[Orcish Battle Bow]|h|r",Type="Weapon"},["Deprecated Calico Shoulderpads"]={SubType="Cloth",Level=12,id=1500,StackCount=1,Rarity=0,MinLevel=7,SellPrice=47,Texture=135037,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:1500::::::::40:::::::|h[Deprecated Calico Shoulderpads]|h|r",Type="Armor"},["Fast Test Spear"]={SubType="Spears",Level=45,id=5557,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7940,Texture=135129,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5557::::::::40:::::::|h[Fast Test Spear]|h|r",Type="Weapon"},["Codex of Mana Burn II"]={SubType="Book",Level=32,id=8977,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8977::::::::40:::::::|h[Codex of Mana Burn II]|h|r"},["Greater Dreamless Sleep Potion"]={SubType="Consumable",Level=60,id=20002,StackCount=5,Rarity=1,MinLevel=55,SellPrice=1000,Texture=134863,Link="|cffffffff|Hitem:20002::::::::40:::::::|h[Greater Dreamless Sleep Potion]|h|r",EquipLoc="",Type="Consumable"},["Large Venom Sac"]={SubType="Trade Goods",Level=1,id=1288,StackCount=5,Rarity=1,MinLevel=0,SellPrice=185,Texture=134338,Link="|cffffffff|Hitem:1288::::::::40:::::::|h[Large Venom Sac]|h|r",EquipLoc="",Type="Trade Goods"},["Green Hills of Stranglethorn - Chapter I"]={SubType="Quest",Level=1,id=2756,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133677,EquipLoc="",Link="|cffffffff|Hitem:2756::::::::40:::::::|h[Green Hills of Stranglethorn - Chapter I]|h|r",Type="Quest"},["Druidical Remains"]={SubType="Quest",Level=1,id=22226,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133719,Link="|cffffffff|Hitem:22226::::::::40:::::::|h[Druidical Remains]|h|r",EquipLoc="",Type="Quest"},["Ring of the Dreadnaught"]={SubType="Miscellaneous",Level=92,id=23059,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133393,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:23059::::::::40:::::::|h[Ring of the Dreadnaught]|h|r"},["Deprecated Amulet of the Palomino"]={SubType="Miscellaneous",Level=45,id=1124,StackCount=1,Rarity=1,MinLevel=40,SellPrice=25000,Texture=133279,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cffffffff|Hitem:1124::::::::40:::::::|h[Deprecated Amulet of the Palomino]|h|r"},["Captured Flame"]={SubType="Junk",Level=1,id=23083,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134813,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:23083::::::::40:::::::|h[Captured Flame]|h|r"},["Deprecated Fine Panther Whisker"]={SubType="Junk",Level=1,id=1690,StackCount=20,Rarity=1,MinLevel=0,SellPrice=331,Texture=134325,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:1690::::::::40:::::::|h[Deprecated Fine Panther Whisker]|h|r"},["Frayed Pants"]={SubType="Cloth",Level=2,id=1378,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134589,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:1378::::::::40:::::::|h[Frayed Pants]|h|r",Type="Armor"},["Warbringer's Belt"]={SubType="Plate",Level=42,id=14943,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2534,Texture=132503,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14943::::::::40:::::::|h[Warbringer's Belt]|h|r"},["Twill Vest"]={SubType="Cloth",Level=57,id=3951,StackCount=1,Rarity=0,MinLevel=52,SellPrice=5897,Texture=135008,Link="|cff9d9d9d|Hitem:3951::::::::40:::::::|h[Twill Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Emerald Flame Ring"]={SubType="Miscellaneous",Level=62,id=18395,StackCount=1,Rarity=3,MinLevel=57,SellPrice=36645,Texture=133353,Type="Armor",Link="|cff0070dd|Hitem:18395::::::::40:::::::|h[Emerald Flame Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Formula: Enchant Bracer - Greater Spirit"]={SubType="Enchanting",Level=44,id=11204,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1100,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11204::::::::40:::::::|h[Formula: Enchant Bracer - Greater Spirit]|h|r",EquipLoc=""},["Truesilver Rod"]={SubType="Trade Goods",Level=40,id=11144,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=135148,Type="Trade Goods",Link="|cffffffff|Hitem:11144::::::::40:::::::|h[Truesilver Rod]|h|r",EquipLoc=""},["Glorious Shield"]={SubType="Shields",Level=60,id=14973,StackCount=1,Rarity=2,MinLevel=55,SellPrice=27810,Texture=134961,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14973::::::::40:::::::|h[Glorious Shield]|h|r"},["Tristam Legguards"]={SubType="Mail",Level=63,id=12964,StackCount=1,Rarity=3,MinLevel=58,SellPrice=33388,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:12964::::::::40:::::::|h[Tristam Legguards]|h|r"},["Rugged Leather Pants"]={SubType="Leather",Level=11,id=7280,StackCount=1,Rarity=2,MinLevel=6,SellPrice=162,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7280::::::::40:::::::|h[Rugged Leather Pants]|h|r"},["Tharg's Disk"]={SubType="Shields",Level=43,id=9706,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9212,Texture=134961,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9706::::::::40:::::::|h[Tharg's Disk]|h|r"},["Permanent Gizzard Gum"]={SubType="Consumable",Level=1,id=23721,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133986,Link="|cffffffff|Hitem:23721::::::::40:::::::|h[Permanent Gizzard Gum]|h|r",EquipLoc="",Type="Consumable"},["Stonecloth Britches"]={SubType="Cloth",Level=37,id=14415,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3410,Texture=134581,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14415::::::::40:::::::|h[Stonecloth Britches]|h|r"},["Royal Boots"]={SubType="Cloth",Level=44,id=9907,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4581,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9907::::::::40:::::::|h[Royal Boots]|h|r"},["Marshal's Lamellar Boots"]={SubType="Plate",Level=71,id=16472,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17205,Texture=132590,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16472::::::::40:::::::|h[Marshal's Lamellar Boots]|h|r",Type="Armor"},["Heart of Wyrmthalak"]={SubType="Miscellaneous",Level=61,id=22321,StackCount=1,Rarity=3,MinLevel=56,SellPrice=10539,Texture=134084,Link="|cff0070dd|Hitem:22321::::::::40:::::::|h[Heart of Wyrmthalak]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Embersilk Stave"]={SubType="Miscellaneous",Level=42,id=15979,StackCount=1,Rarity=2,MinLevel=37,SellPrice=7215,Texture=135165,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15979::::::::40:::::::|h[Embersilk Stave]|h|r",Type="Armor"},["Circlet of Faith"]={SubType="Cloth",Level=88,id=22514,StackCount=1,Rarity=4,MinLevel=60,SellPrice=80969,Texture=132767,Link="|cffa335ee|Hitem:22514::::::::40:::::::|h[Circlet of Faith]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Threshadon Claw"]={SubType="Quest",Level=1,id=2669,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,EquipLoc="",Link="|cffffffff|Hitem:2669::::::::40:::::::|h[Threshadon Claw]|h|r",Type="Quest"},["Diamond Runestone"]={SubType="Quest",Level=1,id=4845,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134094,Type="Quest",Link="|cffffffff|Hitem:4845::::::::40:::::::|h[Diamond Runestone]|h|r",EquipLoc=""},["Codex of Flash Heal VI"]={SubType="Book",Level=50,id=9010,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9010::::::::40:::::::|h[Codex of Flash Heal VI]|h|r"},["Legionnaire's Mail Hauberk"]={SubType="Mail",Level=68,id=22876,StackCount=1,Rarity=3,MinLevel=60,SellPrice=21505,Texture=132638,Link="|cff0070dd|Hitem:22876::::::::40:::::::|h[Legionnaire's Mail Hauberk]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Ring of Living Stone"]={SubType="Miscellaneous",Level=57,id=18400,StackCount=1,Rarity=2,MinLevel=0,SellPrice=14853,Texture=133361,Type="Armor",Link="|cff1eff00|Hitem:18400::::::::40:::::::|h[Ring of Living Stone]|h|r",EquipLoc="INVTYPE_FINGER"},["Field Plate Leggings"]={SubType="Plate",Level=43,id=9291,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5286,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9291::::::::40:::::::|h[Field Plate Leggings]|h|r"},["Sayge's Fortune #13"]={SubType="Junk",Level=1,id=19248,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19248::::::::40:::::::|h[Sayge's Fortune #13]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Sword2H, Broadsword (1H, Special)"]={SubType="One-Handed Swords",Level=1,id=5502,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135315,Link="|cff9d9d9d|Hitem:5502::::::::40:::::::|h[Monster - Sword2H, Broadsword (1H, Special)]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Black War Kodo"]={SubType="Junk",Level=40,id=18247,StackCount=1,Rarity=4,MinLevel=40,SellPrice=0,Texture=132245,Type="Miscellaneous",Link="|cffa335ee|Hitem:18247::::::::40:::::::|h[Black War Kodo]|h|r",EquipLoc=""},["Petrolspill Leggings"]={SubType="Leather",Level=30,id=9509,StackCount=1,Rarity=3,MinLevel=25,SellPrice=2683,Texture=134588,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:9509::::::::40:::::::|h[Petrolspill Leggings]|h|r"},["Soulrender"]={SubType="One-Handed Axes",Level=62,id=20675,StackCount=1,Rarity=3,MinLevel=57,SellPrice=52306,Texture=132404,Link="|cff0070dd|Hitem:20675::::::::40:::::::|h[Soulrender]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Plans: Ironvine Gloves"]={SubType="Blacksmithing",Level=70,id=22767,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:22767::::::::40:::::::|h[Plans: Ironvine Gloves]|h|r"},["Heathen's Brand"]={SubType="Miscellaneous",Level=60,id=19579,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133310,Link="|cff1eff00|Hitem:19579::::::::40:::::::|h[Heathen's Brand]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Stormcloth Boots"]={SubType="Cloth",Level=50,id=10039,StackCount=1,Rarity=2,MinLevel=45,SellPrice=7110,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10039::::::::40:::::::|h[Stormcloth Boots]|h|r",Type="Armor"},["Nomadic Vest"]={SubType="Leather",Level=5,id=6059,StackCount=1,Rarity=1,MinLevel=0,SellPrice=13,Texture=132721,Link="|cffffffff|Hitem:6059::::::::40:::::::|h[Nomadic Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Lupine Vest"]={SubType="Leather",Level=20,id=15018,StackCount=1,Rarity=2,MinLevel=15,SellPrice=706,Texture=132715,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15018::::::::40:::::::|h[Lupine Vest]|h|r",Type="Armor"},["The Cruel Hand of Timmy"]={SubType="One-Handed Maces",Level=61,id=13401,StackCount=1,Rarity=3,MinLevel=56,SellPrice=51440,Texture=133729,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13401::::::::40:::::::|h[The Cruel Hand of Timmy]|h|r"},["Stormpike Leather Girdle"]={SubType="Leather",Level=60,id=19093,StackCount=1,Rarity=3,MinLevel=55,SellPrice=11860,Texture=132515,Link="|cff0070dd|Hitem:19093::::::::40:::::::|h[Stormpike Leather Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Test Nature Resist Mail LockBox"]={SubType="Junk",Level=1,id=16179,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16179::::::::40:::::::|h[Test Nature Resist Mail LockBox]|h|r",Type="Miscellaneous"},["Twilight Gloves"]={SubType="Cloth",Level=37,id=7433,StackCount=1,Rarity=2,MinLevel=32,SellPrice=1684,Texture=132955,Link="|cff1eff00|Hitem:7433::::::::40:::::::|h[Twilight Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Monster - Item, Skull"]={SubType="One-Handed Maces",Level=1,id=4993,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133729,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:4993::::::::40:::::::|h[Monster - Item, Skull]|h|r",Type="Weapon"},["Knight-Lieutenant's Dragonhide Treads"]={SubType="Leather",Level=66,id=23281,StackCount=1,Rarity=3,MinLevel=60,SellPrice=12792,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:23281::::::::40:::::::|h[Knight-Lieutenant's Dragonhide Treads]|h|r"},["Mystic's Woolies"]={SubType="Cloth",Level=19,id=14370,StackCount=1,Rarity=2,MinLevel=14,SellPrice=472,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14370::::::::40:::::::|h[Mystic's Woolies]|h|r"},["Devilsaur Tooth"]={SubType="Miscellaneous",Level=52,id=19992,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133724,Link="|cff0070dd|Hitem:19992::::::::40:::::::|h[Devilsaur Tooth]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Test Frost Res Wrist Mail"]={SubType="Mail",Level=35,id=16142,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2070,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:16142::::::::40:::::::|h[Test Frost Res Wrist Mail]|h|r",Type="Armor"},["Hulking Chestguard"]={SubType="Mail",Level=28,id=14744,StackCount=1,Rarity=2,MinLevel=23,SellPrice=2310,Texture=132637,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14744::::::::40:::::::|h[Hulking Chestguard]|h|r"},["Shackle Key"]={SubType="Key",Level=1,id=4103,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,EquipLoc="",Link="|cffffffff|Hitem:4103::::::::40:::::::|h[Shackle Key]|h|r",Type="Key"},["[PH] Leather Leggings of the Rising Dawn"]={SubType="Leather",Level=100,id=13778,StackCount=1,Rarity=1,MinLevel=100,SellPrice=87878,Texture=134585,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:13778::::::::40:::::::|h[[PH] Leather Leggings of the Rising Dawn]|h|r"},["Blackrock Pauldrons"]={SubType="Mail",Level=23,id=1445,StackCount=1,Rarity=1,MinLevel=18,SellPrice=583,Texture=135038,Type="Armor",Link="|cffffffff|Hitem:1445::::::::40:::::::|h[Blackrock Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Crumpled Scroll Fragment"]={SubType="Quest",Level=1,id=4519,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,EquipLoc="",Link="|cffffffff|Hitem:4519::::::::40:::::::|h[Crumpled Scroll Fragment]|h|r",Type="Quest"},["Crate of Grimtotem Horns"]={SubType="Quest",Level=1,id=9462,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132765,Link="|cffffffff|Hitem:9462::::::::40:::::::|h[Crate of Grimtotem Horns]|h|r",EquipLoc="",Type="Quest"},["Short Staff"]={SubType="Staves",Level=4,id=2132,StackCount=1,Rarity=1,MinLevel=1,SellPrice=20,Texture=135139,Link="|cffffffff|Hitem:2132::::::::40:::::::|h[Short Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Monster - Mace2H, Warhammer Jade"]={SubType="Two-Handed Maces",Level=1,id=14532,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133489,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14532::::::::40:::::::|h[Monster - Mace2H, Warhammer Jade]|h|r"},["Amulet of the Shifting Sands"]={SubType="Miscellaneous",Level=70,id=21507,StackCount=1,Rarity=4,MinLevel=60,SellPrice=111628,Texture=133341,Link="|cffa335ee|Hitem:21507::::::::40:::::::|h[Amulet of the Shifting Sands]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["The Skull of Chronalis"]={SubType="Quest",Level=1,id=16871,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134153,EquipLoc="",Link="|cffffffff|Hitem:16871::::::::40:::::::|h[The Skull of Chronalis]|h|r",Type="Quest"},["AHNQIRAJ TEST ITEM D PLATE BELT"]={SubType="Miscellaneous",Level=1,id=21441,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21441::::::::40:::::::|h[AHNQIRAJ TEST ITEM D PLATE BELT]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Chimeric Boots"]={SubType="Leather",Level=55,id=15073,StackCount=1,Rarity=2,MinLevel=50,SellPrice=11530,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15073::::::::40:::::::|h[Chimeric Boots]|h|r",Type="Armor"},["Field Marshal's Chain Helm"]={SubType="Mail",Level=74,id=16465,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29117,Texture=133073,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16465::::::::40:::::::|h[Field Marshal's Chain Helm]|h|r",Type="Armor"},["Bulky Iron Spaulders"]={SubType="Plate",Level=60,id=18493,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14233,Texture=135057,Type="Armor",Link="|cff0070dd|Hitem:18493::::::::40:::::::|h[Bulky Iron Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Hands of Darkness"]={SubType="Cloth",Level=29,id=7047,StackCount=1,Rarity=2,MinLevel=24,SellPrice=824,Texture=132956,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7047::::::::40:::::::|h[Hands of Darkness]|h|r"},["Bad Egg Nog"]={SubType="Consumable",Level=10,id=17199,StackCount=20,Rarity=1,MinLevel=1,SellPrice=9,Texture=132792,EquipLoc="",Link="|cffffffff|Hitem:17199::::::::40:::::::|h[Bad Egg Nog]|h|r",Type="Consumable"},["Thistlefur Branch"]={SubType="Miscellaneous",Level=36,id=15976,StackCount=1,Rarity=2,MinLevel=31,SellPrice=4146,Texture=135474,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15976::::::::40:::::::|h[Thistlefur Branch]|h|r",Type="Armor"},["Band of Jin"]={SubType="Miscellaneous",Level=68,id=19925,StackCount=1,Rarity=3,MinLevel=60,SellPrice=43635,Texture=133386,Link="|cff0070dd|Hitem:19925::::::::40:::::::|h[Band of Jin]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Recipe: Transmute Life to Earth"]={SubType="Alchemy",Level=55,id=13488,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3750,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13488::::::::40:::::::|h[Recipe: Transmute Life to Earth]|h|r"},["Thick Scaly Tail"]={SubType="Junk",Level=1,id=4555,StackCount=5,Rarity=0,MinLevel=0,SellPrice=155,Texture=134306,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:4555::::::::40:::::::|h[Thick Scaly Tail]|h|r"},["Cadaverous Gloves"]={SubType="Leather",Level=61,id=14640,StackCount=1,Rarity=3,MinLevel=56,SellPrice=12668,Texture=132949,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:14640::::::::40:::::::|h[Cadaverous Gloves]|h|r"},["Jade Epaulets"]={SubType="Plate",Level=49,id=14921,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6407,Texture=135047,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14921::::::::40:::::::|h[Jade Epaulets]|h|r"},["Plans: Barbaric Iron Breastplate"]={SubType="Blacksmithing",Level=32,id=7979,StackCount=1,Rarity=2,MinLevel=0,SellPrice=750,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7979::::::::40:::::::|h[Plans: Barbaric Iron Breastplate]|h|r",Type="Recipe"},["Incendosaur Scale"]={SubType="Quest",Level=1,id=18944,StackCount=100,Rarity=1,MinLevel=0,SellPrice=123,Texture=134318,Type="Quest",Link="|cffffffff|Hitem:18944::::::::40:::::::|h[Incendosaur Scale]|h|r",EquipLoc=""},["Tracker's Boots"]={SubType="Leather",Level=44,id=9917,StackCount=1,Rarity=2,MinLevel=39,SellPrice=5519,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9917::::::::40:::::::|h[Tracker's Boots]|h|r"},["Ancient Gauntlets"]={SubType="Mail",Level=42,id=15605,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3858,Texture=132950,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15605::::::::40:::::::|h[Ancient Gauntlets]|h|r",Type="Armor"},["Doom Weed"]={SubType="Quest",Level=1,id=13702,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134194,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13702::::::::40:::::::|h[Doom Weed]|h|r"},["Golem Shard Leggings"]={SubType="Plate",Level=46,id=13074,StackCount=1,Rarity=3,MinLevel=41,SellPrice=8024,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:13074::::::::40:::::::|h[Golem Shard Leggings]|h|r"},["Rune of the Dawn"]={SubType="Miscellaneous",Level=61,id=19812,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=134419,Link="|cff0070dd|Hitem:19812::::::::40:::::::|h[Rune of the Dawn]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Idol of Death"]={SubType="Quest",Level=61,id=20876,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134899,Link="|cff0070dd|Hitem:20876::::::::40:::::::|h[Idol of Death]|h|r",EquipLoc="",Type="Quest"},["Artisan Cookbook"]={SubType="Cooking",Level=45,id=16073,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=133742,EquipLoc="",Link="|cffffffff|Hitem:16073::::::::40:::::::|h[Artisan Cookbook]|h|r",Type="Recipe"},["Schematic: Thorium Widget"]={SubType="Engineering",Level=52,id=16042,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:16042::::::::40:::::::|h[Schematic: Thorium Widget]|h|r",Type="Recipe"},["Deprecated Cured Leather Cap"]={SubType="Leather",Level=22,id=3884,StackCount=1,Rarity=1,MinLevel=17,SellPrice=418,Texture=133072,Type="Armor",Link="|cffffffff|Hitem:3884::::::::40:::::::|h[Deprecated Cured Leather Cap]|h|r",EquipLoc="INVTYPE_HEAD"},["Iridescent Hammer"]={SubType="One-Handed Maces",Level=28,id=5541,StackCount=1,Rarity=2,MinLevel=23,SellPrice=3693,Texture=133042,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:5541::::::::40:::::::|h[Iridescent Hammer]|h|r",Type="Weapon"},["Scorpashi Gloves"]={SubType="Leather",Level=46,id=14657,StackCount=1,Rarity=2,MinLevel=41,SellPrice=4195,Texture=132959,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14657::::::::40:::::::|h[Scorpashi Gloves]|h|r"},["Blackwater Tunic"]={SubType="Mail",Level=45,id=4138,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10140,Texture=132638,Link="|cff1eff00|Hitem:4138::::::::40:::::::|h[Blackwater Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Desert Bloom Gloves"]={SubType="Cloth",Level=63,id=20717,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10984,Texture=132951,Link="|cff0070dd|Hitem:20717::::::::40:::::::|h[Desert Bloom Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Plans: Fiery Chain Shoulders"]={SubType="Blacksmithing",Level=62,id=17053,StackCount=1,Rarity=3,MinLevel=0,SellPrice=50000,Texture=134941,EquipLoc="",Link="|cff0070dd|Hitem:17053::::::::40:::::::|h[Plans: Fiery Chain Shoulders]|h|r",Type="Recipe"},["Brass Scale Pants"]={SubType="Mail",Level=11,id=5941,StackCount=1,Rarity=1,MinLevel=0,SellPrice=115,Texture=134583,Link="|cffffffff|Hitem:5941::::::::40:::::::|h[Brass Scale Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Book of Mark of the Wild VI"]={SubType="Book",Level=50,id=8776,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8776::::::::40:::::::|h[Book of Mark of the Wild VI]|h|r"},["Lilac Sash"]={SubType="Cloth",Level=36,id=6780,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1560,Texture=132513,Type="Armor",Link="|cff1eff00|Hitem:6780::::::::40:::::::|h[Lilac Sash]|h|r",EquipLoc="INVTYPE_WAIST"},["Gnome Prize Box"]={SubType="Quest",Level=1,id=5857,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37,Texture=134142,Link="|cffffffff|Hitem:5857::::::::40:::::::|h[Gnome Prize Box]|h|r",EquipLoc="",Type="Quest"},["Reins of the Spotted Frostsaber"]={SubType="Junk",Level=40,id=8632,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132267,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:8632::::::::40:::::::|h[Reins of the Spotted Frostsaber]|h|r"},["Mail Helmet C (test)"]={SubType="Leather",Level=1,id=1023,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133071,Link="|cffffffff|Hitem:1023::::::::40:::::::|h[Mail Helmet C (test)]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Heavy Pavise"]={SubType="Shields",Level=37,id=2448,StackCount=1,Rarity=1,MinLevel=32,SellPrice=3231,Texture=134949,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:2448::::::::40:::::::|h[Heavy Pavise]|h|r",Type="Armor"},["Netherwind Bindings"]={SubType="Cloth",Level=76,id=16918,StackCount=1,Rarity=4,MinLevel=60,SellPrice=28642,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16918::::::::40:::::::|h[Netherwind Bindings]|h|r",Type="Armor"},["Scroll of Agility IV"]={SubType="Consumable",Level=65,id=10309,StackCount=5,Rarity=1,MinLevel=55,SellPrice=125,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:10309::::::::40:::::::|h[Scroll of Agility IV]|h|r",Type="Consumable"},["Righteous Spaulders"]={SubType="Leather",Level=51,id=10075,StackCount=1,Rarity=2,MinLevel=46,SellPrice=9369,Texture=135044,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10075::::::::40:::::::|h[Righteous Spaulders]|h|r",Type="Armor"},["Monster - Item, Fish - Green Offhand"]={SubType="Miscellaneous",Level=1,id=19486,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133888,Link="|cff9d9d9d|Hitem:19486::::::::40:::::::|h[Monster - Item, Fish - Green Offhand]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND",Type="Weapon"},["Traveler's Helm"]={SubType="Leather",Level=59,id=8299,StackCount=1,Rarity=2,MinLevel=54,SellPrice=14353,Texture=133076,Link="|cff1eff00|Hitem:8299::::::::40:::::::|h[Traveler's Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Sanguine Belt"]={SubType="Cloth",Level=25,id=14373,StackCount=1,Rarity=2,MinLevel=20,SellPrice=524,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14373::::::::40:::::::|h[Sanguine Belt]|h|r"},["Four of Elementals"]={SubType="Junk",Level=1,id=19271,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134486,Link="|cff0070dd|Hitem:19271::::::::40:::::::|h[Four of Elementals]|h|r",EquipLoc="",Type="Miscellaneous"},["Stonewood Hammer"]={SubType="Two-Handed Maces",Level=14,id=5345,StackCount=1,Rarity=2,MinLevel=0,SellPrice=705,Texture=133052,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:5345::::::::40:::::::|h[Stonewood Hammer]|h|r",Type="Weapon"},["General's Dragonhide Bracers"]={SubType="Leather",Level=65,id=16553,StackCount=1,Rarity=4,MinLevel=60,SellPrice=11013,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16553::::::::40:::::::|h[General's Dragonhide Bracers]|h|r",Type="Armor"},["Moon Robes of Elune"]={SubType="Cloth",Level=5,id=16604,StackCount=1,Rarity=2,MinLevel=0,SellPrice=17,Texture=132677,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:16604::::::::40:::::::|h[Moon Robes of Elune]|h|r",Type="Armor"},["Plans: Iron Counterweight"]={SubType="Blacksmithing",Level=33,id=6045,StackCount=1,Rarity=2,MinLevel=0,SellPrice=650,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:6045::::::::40:::::::|h[Plans: Iron Counterweight]|h|r"},["Conjurer's Mantle"]={SubType="Cloth",Level=36,id=9850,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2394,Texture=135036,Link="|cff1eff00|Hitem:9850::::::::40:::::::|h[Conjurer's Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Rondel"]={SubType="Daggers",Level=44,id=2534,StackCount=1,Rarity=1,MinLevel=39,SellPrice=9086,Texture=135341,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:2534::::::::40:::::::|h[Rondel]|h|r",Type="Weapon"},["Pattern: Tough Scorpid Leggings"]={SubType="Leatherworking",Level=49,id=8401,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1375,Texture=134942,Link="|cff1eff00|Hitem:8401::::::::40:::::::|h[Pattern: Tough Scorpid Leggings]|h|r",EquipLoc="",Type="Recipe"},["Codex of Mind Control II"]={SubType="Book",Level=44,id=8997,StackCount=1,Rarity=1,MinLevel=44,SellPrice=6250,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8997::::::::40:::::::|h[Codex of Mind Control II]|h|r"},["Magnificent Bracers"]={SubType="Mail",Level=58,id=15668,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11697,Texture=132609,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15668::::::::40:::::::|h[Magnificent Bracers]|h|r",Type="Armor"},["Large Brown Sack"]={SubType="Bag",Level=25,id=5576,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133639,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:5576::::::::40:::::::|h[Large Brown Sack]|h|r",Type="Container"},["Legionnaire's Dragonhide Breastplate"]={SubType="Leather",Level=63,id=16504,StackCount=1,Rarity=3,MinLevel=58,SellPrice=14130,Texture=132722,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16504::::::::40:::::::|h[Legionnaire's Dragonhide Breastplate]|h|r",Type="Armor"},["Savage Gladiator Helm"]={SubType="Mail",Level=57,id=11729,StackCount=1,Rarity=3,MinLevel=52,SellPrice=19073,Texture=133069,Type="Armor",Link="|cff0070dd|Hitem:11729::::::::40:::::::|h[Savage Gladiator Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Hoodoo Hunting Bow"]={SubType="Bows",Level=68,id=19993,StackCount=1,Rarity=3,MinLevel=60,SellPrice=56783,Texture=135462,Link="|cff0070dd|Hitem:19993::::::::40:::::::|h[Hoodoo Hunting Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Plans: Heavy Obsidian Belt"]={SubType="Blacksmithing",Level=68,id=22209,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:22209::::::::40:::::::|h[Plans: Heavy Obsidian Belt]|h|r",EquipLoc="",Type="Recipe"},["Ichor Spitter"]={SubType="One-Handed Axes",Level=61,id=17002,StackCount=1,Rarity=2,MinLevel=0,SellPrice=44825,Texture=135575,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:17002::::::::40:::::::|h[Ichor Spitter]|h|r",Type="Weapon"},["Shadowskin Spaulders"]={SubType="Leather",Level=55,id=15822,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11290,Texture=135055,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15822::::::::40:::::::|h[Shadowskin Spaulders]|h|r",Type="Armor"},["Frostwolf Battle Tabard"]={SubType="Miscellaneous",Level=20,id=19031,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=135026,Link="|cffffffff|Hitem:19031::::::::40:::::::|h[Frostwolf Battle Tabard]|h|r",EquipLoc="INVTYPE_TABARD",Type="Armor"},["Air Totem"]={SubType="Reagent",Level=30,id=5178,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136232,Link="|cffffffff|Hitem:5178::::::::40:::::::|h[Air Totem]|h|r",EquipLoc="",Type="Reagent"},["Green Skeletal Warhorse"]={SubType="Junk",Level=60,id=13334,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132264,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:13334::::::::40:::::::|h[Green Skeletal Warhorse]|h|r"},["Monster - Sword, Longsword Exotic Black - Low Red Flame"]={SubType="One-Handed Swords",Level=1,id=18983,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135277,Type="Weapon",Link="|cff9d9d9d|Hitem:18983::::::::40:::::::|h[Monster - Sword, Longsword Exotic Black - Low Red Flame]|h|r",EquipLoc="INVTYPE_WEAPON"},["Embossed Leather Cloak"]={SubType="Cloth",Level=13,id=2310,StackCount=1,Rarity=1,MinLevel=8,SellPrice=112,Texture=133150,Link="|cffffffff|Hitem:2310::::::::40:::::::|h[Embossed Leather Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Wildkin E'ko"]={SubType="Quest",Level=1,id=12433,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135227,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12433::::::::40:::::::|h[Wildkin E'ko]|h|r"},["Maelstrom's Tendril"]={SubType="Miscellaneous",Level=60,id=19618,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133310,Link="|cff1eff00|Hitem:19618::::::::40:::::::|h[Maelstrom's Tendril]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Ranger Leggings"]={SubType="Leather",Level=43,id=7478,StackCount=1,Rarity=2,MinLevel=38,SellPrice=6991,Texture=134594,Link="|cff1eff00|Hitem:7478::::::::40:::::::|h[Ranger Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Dark Iron Helm"]={SubType="Plate",Level=66,id=19148,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25399,Texture=133124,Link="|cffa335ee|Hitem:19148::::::::40:::::::|h[Dark Iron Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Tattered Cloth Bracers"]={SubType="Cloth",Level=5,id=3596,StackCount=1,Rarity=1,MinLevel=1,SellPrice=4,Texture=132606,Type="Armor",Link="|cffffffff|Hitem:3596::::::::40:::::::|h[Tattered Cloth Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Bloodforged Chestpiece"]={SubType="Plate",Level=51,id=14948,StackCount=1,Rarity=2,MinLevel=46,SellPrice=10301,Texture=132629,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14948::::::::40:::::::|h[Bloodforged Chestpiece]|h|r"},["Chiselbrand Girdle"]={SubType="Mail",Level=60,id=12634,StackCount=1,Rarity=3,MinLevel=55,SellPrice=15310,Texture=132502,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:12634::::::::40:::::::|h[Chiselbrand Girdle]|h|r"},["Schematic: Large Green Rocket Cluster"]={SubType="Engineering",Level=55,id=21734,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Link="|cff1eff00|Hitem:21734::::::::40:::::::|h[Schematic: Large Green Rocket Cluster]|h|r",EquipLoc="",Type="Recipe"},["Ghoul Skin Tunic"]={SubType="Leather",Level=83,id=23226,StackCount=1,Rarity=4,MinLevel=60,SellPrice=97150,Texture=132717,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:23226::::::::40:::::::|h[Ghoul Skin Tunic]|h|r"},["Abyssal Cloth Slippers"]={SubType="Cloth",Level=60,id=20652,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12858,Texture=132567,Link="|cff1eff00|Hitem:20652::::::::40:::::::|h[Abyssal Cloth Slippers]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Filled Red Waterskin"]={SubType="Quest",Level=0,id=7771,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132828,EquipLoc="",Link="|cffffffff|Hitem:7771::::::::40:::::::|h[Filled Red Waterskin]|h|r",Type="Quest"},["Bristlebark Amice"]={SubType="Leather",Level=27,id=14573,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1289,Texture=135037,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14573::::::::40:::::::|h[Bristlebark Amice]|h|r"},["Stoley's Shipment"]={SubType="Quest",Level=1,id=9244,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132620,Link="|cffffffff|Hitem:9244::::::::40:::::::|h[Stoley's Shipment]|h|r",EquipLoc="",Type="Quest"},["Deprecated Ebony Panther Claw"]={SubType="Junk",Level=1,id=1691,StackCount=10,Rarity=1,MinLevel=0,SellPrice=237,Texture=134296,Link="|cffffffff|Hitem:1691::::::::40:::::::|h[Deprecated Ebony Panther Claw]|h|r",EquipLoc="",Type="Miscellaneous"},["Frayed Abomination Stitching"]={SubType="Quest",Level=1,id=12735,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=134365,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:12735::::::::40:::::::|h[Frayed Abomination Stitching]|h|r"},["Bug Eye"]={SubType="Junk",Level=1,id=7101,StackCount=5,Rarity=0,MinLevel=0,SellPrice=5,Texture=133884,EquipLoc="",Link="|cff9d9d9d|Hitem:7101::::::::40:::::::|h[Bug Eye]|h|r",Type="Miscellaneous"},["Plans: Whitesoul Helm"]={SubType="Blacksmithing",Level=60,id=12711,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12711::::::::40:::::::|h[Plans: Whitesoul Helm]|h|r"},["Flameweave Cuffs"]={SubType="Cloth",Level=57,id=11766,StackCount=1,Rarity=3,MinLevel=52,SellPrice=8606,Texture=132604,Type="Armor",Link="|cff0070dd|Hitem:11766::::::::40:::::::|h[Flameweave Cuffs]|h|r",EquipLoc="INVTYPE_WRIST"},["Codex of Mind Soothe"]={SubType="Book",Level=20,id=8963,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133741,Link="|cffffffff|Hitem:8963::::::::40:::::::|h[Codex of Mind Soothe]|h|r",EquipLoc="",Type="Recipe"},["Plans: Light Obsidian Belt"]={SubType="Blacksmithing",Level=68,id=22214,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:22214::::::::40:::::::|h[Plans: Light Obsidian Belt]|h|r",EquipLoc="",Type="Recipe"},["Benediction"]={SubType="Staves",Level=75,id=18608,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135167,Type="Weapon",Link="|cffa335ee|Hitem:18608::::::::40:::::::|h[Benediction]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Clergy Ring"]={SubType="Miscellaneous",Level=22,id=5622,StackCount=1,Rarity=2,MinLevel=0,SellPrice=556,Texture=132522,Link="|cff1eff00|Hitem:5622::::::::40:::::::|h[Clergy Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Preserved Threshadon Meat"]={SubType="Quest",Level=1,id=11569,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133970,Type="Quest",Link="|cffffffff|Hitem:11569::::::::40:::::::|h[Preserved Threshadon Meat]|h|r",EquipLoc=""},["Splintering Battle Axe"]={SubType="Two-Handed Axes",Level=49,id=4020,StackCount=1,Rarity=0,MinLevel=44,SellPrice=11189,Texture=135424,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:4020::::::::40:::::::|h[Splintering Battle Axe]|h|r"},["Iblis, Blade of the Fallen Seraph"]={SubType="One-Handed Swords",Level=81,id=23014,StackCount=1,Rarity=4,MinLevel=60,SellPrice=183589,Texture=135277,Link="|cffa335ee|Hitem:23014::::::::40:::::::|h[Iblis, Blade of the Fallen Seraph]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Pattern: Heavy Leather Ball"]={SubType="Leatherworking",Level=30,id=18731,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:18731::::::::40:::::::|h[Pattern: Heavy Leather Ball]|h|r",EquipLoc=""},["Skullance Shield"]={SubType="Shields",Level=38,id=13081,StackCount=1,Rarity=3,MinLevel=33,SellPrice=7123,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:13081::::::::40:::::::|h[Skullance Shield]|h|r"},["Tablet of Healing Wave VII"]={SubType="Book",Level=40,id=9105,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9105::::::::40:::::::|h[Tablet of Healing Wave VII]|h|r"},["Tomb Rot"]={SubType="Trade Goods",Level=12,id=2929,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2,Texture=133848,Type="Trade Goods",Link="|cffffffff|Hitem:2929::::::::40:::::::|h[Tomb Rot]|h|r",EquipLoc=""},["Lumberjack Jerkin"]={SubType="Leather",Level=9,id=2112,StackCount=1,Rarity=1,MinLevel=4,SellPrice=54,Texture=132725,Type="Armor",Link="|cffffffff|Hitem:2112::::::::40:::::::|h[Lumberjack Jerkin]|h|r",EquipLoc="INVTYPE_CHEST"},["Turtle Egg (Loggerhead)"]={SubType="Junk",Level=20,id=18964,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=132833,Type="Miscellaneous",Link="|cffffffff|Hitem:18964::::::::40:::::::|h[Turtle Egg (Loggerhead)]|h|r",EquipLoc=""},["Wizardweave Turban"]={SubType="Cloth",Level=61,id=14130,StackCount=1,Rarity=2,MinLevel=56,SellPrice=12768,Texture=133165,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14130::::::::40:::::::|h[Wizardweave Turban]|h|r"},["Loamflake Bracers"]={SubType="Leather",Level=25,id=15462,StackCount=1,Rarity=2,MinLevel=0,SellPrice=653,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15462::::::::40:::::::|h[Loamflake Bracers]|h|r",Type="Armor"},["Beginnings of the Undead Threat"]={SubType="Quest",Level=1,id=5861,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:5861::::::::40:::::::|h[Beginnings of the Undead Threat]|h|r",Type="Quest"},["Small Rocket Recipes"]={SubType="Consumable",Level=1,id=21740,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:21740::::::::40:::::::|h[Small Rocket Recipes]|h|r",EquipLoc="",Type="Consumable"},["Relic of Righteousness"]={SubType="Miscellaneous",Level=25,id=2923,StackCount=1,Rarity=1,MinLevel=20,SellPrice=500,Texture=133434,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:2923::::::::40:::::::|h[Relic of Righteousness]|h|r"},["Lord's Boots"]={SubType="Mail",Level=51,id=10082,StackCount=1,Rarity=2,MinLevel=46,SellPrice=10752,Texture=132587,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10082::::::::40:::::::|h[Lord's Boots]|h|r",Type="Armor"},["Horns of Nez'ra"]={SubType="Quest",Level=1,id=7906,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134228,EquipLoc="",Link="|cffffffff|Hitem:7906::::::::40:::::::|h[Horns of Nez'ra]|h|r",Type="Quest"},["Renegade Shield"]={SubType="Shields",Level=37,id=9873,StackCount=1,Rarity=2,MinLevel=32,SellPrice=5828,Texture=134953,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9873::::::::40:::::::|h[Renegade Shield]|h|r"},["Spellbinder Orb"]={SubType="Miscellaneous",Level=17,id=15926,StackCount=1,Rarity=2,MinLevel=12,SellPrice=802,Texture=134333,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15926::::::::40:::::::|h[Spellbinder Orb]|h|r",Type="Armor"},["Giant Clam Meat"]={SubType="Trade Goods",Level=35,id=4655,StackCount=10,Rarity=1,MinLevel=0,SellPrice=71,Texture=134007,Link="|cffffffff|Hitem:4655::::::::40:::::::|h[Giant Clam Meat]|h|r",EquipLoc="",Type="Trade Goods"},["Mystery Stew"]={SubType="Consumable",Level=35,id=12214,StackCount=20,Rarity=1,MinLevel=25,SellPrice=300,Texture=132806,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12214::::::::40:::::::|h[Mystery Stew]|h|r"},["Burnished Tunic"]={SubType="Mail",Level=21,id=2989,StackCount=1,Rarity=2,MinLevel=16,SellPrice=1001,Texture=132628,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:2989::::::::40:::::::|h[Burnished Tunic]|h|r",Type="Armor"},["Lieutenant Commander's Chain Shoulders"]={SubType="Mail",Level=71,id=23307,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18684,Texture=135047,Link="|cff0070dd|Hitem:23307::::::::40:::::::|h[Lieutenant Commander's Chain Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Embersilk Robes"]={SubType="Cloth",Level=42,id=14234,StackCount=1,Rarity=2,MinLevel=37,SellPrice=5240,Texture=132666,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14234::::::::40:::::::|h[Embersilk Robes]|h|r"},["Coarse Snuff"]={SubType="Junk",Level=1,id=24231,StackCount=20,Rarity=0,MinLevel=0,SellPrice=52,Texture=133849,Link="|cff9d9d9d|Hitem:24231::::::::40:::::::|h[Coarse Snuff]|h|r",EquipLoc="",Type="Miscellaneous"},["Blanchard's Stout"]={SubType="Two-Handed Maces",Level=50,id=13046,StackCount=1,Rarity=3,MinLevel=45,SellPrice=35042,Texture=133041,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13046::::::::40:::::::|h[Blanchard's Stout]|h|r"},["Stratholme Courier's Pouch"]={SubType="Quest",Level=1,id=13223,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133629,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13223::::::::40:::::::|h[Stratholme Courier's Pouch]|h|r"},["Blackened Iron Shield"]={SubType="Quest",Level=1,id=5919,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134950,EquipLoc="",Link="|cffffffff|Hitem:5919::::::::40:::::::|h[Blackened Iron Shield]|h|r",Type="Quest"},["Snapvine Watermelon"]={SubType="Consumable",Level=25,id=4538,StackCount=20,Rarity=1,MinLevel=15,SellPrice=25,Texture=133978,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:4538::::::::40:::::::|h[Snapvine Watermelon]|h|r"},["Triumphant Skullcap"]={SubType="Mail",Level=64,id=15684,StackCount=1,Rarity=2,MinLevel=59,SellPrice=23178,Texture=133101,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15684::::::::40:::::::|h[Triumphant Skullcap]|h|r",Type="Armor"},["Ivycloth Bracelets"]={SubType="Cloth",Level=25,id=9793,StackCount=1,Rarity=2,MinLevel=20,SellPrice=550,Texture=132611,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9793::::::::40:::::::|h[Ivycloth Bracelets]|h|r"},["Jeweled Dagger"]={SubType="Daggers",Level=10,id=1917,StackCount=1,Rarity=2,MinLevel=5,SellPrice=251,Texture=135651,Link="|cff1eff00|Hitem:1917::::::::40:::::::|h[Jeweled Dagger]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Imbued Vial"]={SubType="Trade Goods",Level=55,id=18256,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1500,Texture=132793,Type="Trade Goods",Link="|cffffffff|Hitem:18256::::::::40:::::::|h[Imbued Vial]|h|r",EquipLoc=""},["Trickster's Protector"]={SubType="Shields",Level=39,id=15367,StackCount=1,Rarity=2,MinLevel=34,SellPrice=6246,Texture=134962,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15367::::::::40:::::::|h[Trickster's Protector]|h|r",Type="Armor"},["Warbear Harness"]={SubType="Leather",Level=55,id=15064,StackCount=1,Rarity=3,MinLevel=50,SellPrice=19717,Texture=132719,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:15064::::::::40:::::::|h[Warbear Harness]|h|r",Type="Armor"},["Oblivion Orb"]={SubType="Miscellaneous",Level=54,id=11870,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10287,Texture=133731,Type="Armor",Link="|cff1eff00|Hitem:11870::::::::40:::::::|h[Oblivion Orb]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Peacebloom"]={SubType="Trade Goods",Level=5,id=2447,StackCount=20,Rarity=1,MinLevel=0,SellPrice=10,Texture=133939,EquipLoc="",Link="|cffffffff|Hitem:2447::::::::40:::::::|h[Peacebloom]|h|r",Type="Trade Goods"},["Ghostly Mantle"]={SubType="Cloth",Level=28,id=3324,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1119,Texture=135040,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:3324::::::::40:::::::|h[Ghostly Mantle]|h|r"},["Test Shadow Res Hands Plate"]={SubType="Plate",Level=40,id=16161,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2103,Texture=132957,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:16161::::::::40:::::::|h[Test Shadow Res Hands Plate]|h|r",Type="Armor"},["Minor Channeling Ring"]={SubType="Miscellaneous",Level=24,id=1449,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1875,Texture=133355,Link="|cff1eff00|Hitem:1449::::::::40:::::::|h[Minor Channeling Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Wicked Leather Armor"]={SubType="Leather",Level=61,id=15085,StackCount=1,Rarity=2,MinLevel=56,SellPrice=22732,Texture=132741,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15085::::::::40:::::::|h[Wicked Leather Armor]|h|r",Type="Armor"},["Stormbringer Belt"]={SubType="Mail",Level=20,id=12978,StackCount=1,Rarity=3,MinLevel=15,SellPrice=534,Texture=132504,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:12978::::::::40:::::::|h[Stormbringer Belt]|h|r"},["Totem of Hawkwind"]={SubType="Quest",Level=1,id=4783,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133942,EquipLoc="",Link="|cffffffff|Hitem:4783::::::::40:::::::|h[Totem of Hawkwind]|h|r",Type="Quest"},["Cloak of the Brood Lord"]={SubType="Cloth",Level=83,id=19378,StackCount=1,Rarity=4,MinLevel=60,SellPrice=59115,Texture=133772,Link="|cffa335ee|Hitem:19378::::::::40:::::::|h[Cloak of the Brood Lord]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Robust Leggings"]={SubType="Leather",Level=29,id=15126,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1989,Texture=134587,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15126::::::::40:::::::|h[Robust Leggings]|h|r",Type="Armor"},["Tablet of Molten Blast VII"]={SubType="Book",Level=54,id=9156,StackCount=1,Rarity=1,MinLevel=54,SellPrice=8750,Texture=134459,Link="|cffffffff|Hitem:9156::::::::40:::::::|h[Tablet of Molten Blast VII]|h|r",EquipLoc="",Type="Recipe"},["Goblin Mining Helmet"]={SubType="Mail",Level=41,id=10542,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5255,Texture=133127,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10542::::::::40:::::::|h[Goblin Mining Helmet]|h|r",Type="Armor"},["Necklace and Gem Salvage"]={SubType="Quest",Level=1,id=7887,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133645,EquipLoc="",Link="|cffffffff|Hitem:7887::::::::40:::::::|h[Necklace and Gem Salvage]|h|r",Type="Quest"},["Tribal Raptor Feathers"]={SubType="Junk",Level=1,id=4587,StackCount=10,Rarity=0,MinLevel=0,SellPrice=807,Texture=135992,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:4587::::::::40:::::::|h[Tribal Raptor Feathers]|h|r",EquipLoc=""},["Head of Baron Vardus"]={SubType="Quest",Level=1,id=3626,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Type="Quest",Link="|cffffffff|Hitem:3626::::::::40:::::::|h[Head of Baron Vardus]|h|r",EquipLoc=""},["Sylvan Cloak"]={SubType="Cloth",Level=24,id=4793,StackCount=1,Rarity=2,MinLevel=19,SellPrice=744,Texture=133753,Link="|cff1eff00|Hitem:4793::::::::40:::::::|h[Sylvan Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Trogg Brew"]={SubType="Consumable",Level=17,id=4953,StackCount=10,Rarity=1,MinLevel=0,SellPrice=88,Texture=132800,Link="|cffffffff|Hitem:4953::::::::40:::::::|h[Trogg Brew]|h|r",EquipLoc="",Type="Consumable"},["Gloves of the Redeemed Prophecy"]={SubType="Plate",Level=75,id=21889,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27906,Texture=132953,Link="|cffa335ee|Hitem:21889::::::::40:::::::|h[Gloves of the Redeemed Prophecy]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Reagent Pouch"]={SubType="Quest",Level=1,id=6652,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133644,Link="|cffffffff|Hitem:6652::::::::40:::::::|h[Reagent Pouch]|h|r",EquipLoc="",Type="Quest"},["Head of Arugal"]={SubType="Quest",Level=1,id=5442,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,EquipLoc="",Link="|cffffffff|Hitem:5442::::::::40:::::::|h[Head of Arugal]|h|r",Type="Quest"},["Tome of Arcane Intellect II"]={SubType="Book",Level=14,id=3091,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133739,Link="|cffffffff|Hitem:3091::::::::40:::::::|h[Tome of Arcane Intellect II]|h|r",EquipLoc="",Type="Recipe"},["Ironfeather Breastplate"]={SubType="Leather",Level=58,id=15066,StackCount=1,Rarity=3,MinLevel=53,SellPrice=23650,Texture=132721,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:15066::::::::40:::::::|h[Ironfeather Breastplate]|h|r",Type="Armor"},["Tender Crocolisk Meat"]={SubType="Trade Goods",Level=23,id=3667,StackCount=10,Rarity=1,MinLevel=0,SellPrice=25,Texture=133970,Link="|cffffffff|Hitem:3667::::::::40:::::::|h[Tender Crocolisk Meat]|h|r",EquipLoc="",Type="Trade Goods"},["High Warlord's Left Claw"]={SubType="Fist Weapons",Level=78,id=18848,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50215,Texture=134297,Type="Weapon",Link="|cffa335ee|Hitem:18848::::::::40:::::::|h[High Warlord's Left Claw]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND"},["Broken Fang"]={SubType="Junk",Level=1,id=7073,StackCount=5,Rarity=0,MinLevel=0,SellPrice=6,Texture=133725,EquipLoc="",Link="|cff9d9d9d|Hitem:7073::::::::40:::::::|h[Broken Fang]|h|r",Type="Miscellaneous"},["Headhunter's Mitts"]={SubType="Leather",Level=34,id=15355,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1620,Texture=132956,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15355::::::::40:::::::|h[Headhunter's Mitts]|h|r",Type="Armor"},["Darkspear Boots"]={SubType="Mail",Level=42,id=4136,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6021,Texture=132535,Link="|cff1eff00|Hitem:4136::::::::40:::::::|h[Darkspear Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Sparkleshell Bracers"]={SubType="Mail",Level=36,id=15577,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2317,Texture=132609,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15577::::::::40:::::::|h[Sparkleshell Bracers]|h|r",Type="Armor"},["Guardian Armor"]={SubType="Leather",Level=35,id=4256,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3477,Texture=132723,Type="Armor",Link="|cff1eff00|Hitem:4256::::::::40:::::::|h[Guardian Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Blue Dragonscale"]={SubType="Junk",Level=50,id=15415,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134311,EquipLoc="",Link="|cffffffff|Hitem:15415::::::::40:::::::|h[Blue Dragonscale]|h|r",Type="Miscellaneous"},["Sorcerer Gloves"]={SubType="Cloth",Level=40,id=9880,StackCount=1,Rarity=2,MinLevel=35,SellPrice=2130,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9880::::::::40:::::::|h[Sorcerer Gloves]|h|r"},["Thistlewood Blade"]={SubType="One-Handed Swords",Level=5,id=5586,StackCount=1,Rarity=1,MinLevel=0,SellPrice=26,Texture=135274,Link="|cffffffff|Hitem:5586::::::::40:::::::|h[Thistlewood Blade]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Bone-studded Leather"]={SubType="Leather",Level=25,id=3431,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1335,Texture=132717,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:3431::::::::40:::::::|h[Bone-studded Leather]|h|r",Type="Armor"},["Festive Green Dress"]={SubType="Miscellaneous",Level=1,id=21157,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132698,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:21157::::::::40:::::::|h[Festive Green Dress]|h|r"},["Waveslicer"]={SubType="Two-Handed Axes",Level=58,id=18324,StackCount=1,Rarity=3,MinLevel=53,SellPrice=55189,Texture=132408,Type="Weapon",Link="|cff0070dd|Hitem:18324::::::::40:::::::|h[Waveslicer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["High Warlord's Cleaver"]={SubType="One-Handed Axes",Level=78,id=18828,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50225,Texture=132393,Type="Weapon",Link="|cffa335ee|Hitem:18828::::::::40:::::::|h[High Warlord's Cleaver]|h|r",EquipLoc="INVTYPE_WEAPON"},["Lesser Arcanum of Voracity"]={SubType="Quest",Level=50,id=11645,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134073,Type="Quest",Link="|cff1eff00|Hitem:11645::::::::40:::::::|h[Lesser Arcanum of Voracity]|h|r",EquipLoc=""},["Harbinger of Doom"]={SubType="Daggers",Level=83,id=23044,StackCount=1,Rarity=4,MinLevel=60,SellPrice=194870,Texture=133456,Link="|cffa335ee|Hitem:23044::::::::40:::::::|h[Harbinger of Doom]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Raincaller Cap"]={SubType="Cloth",Level=32,id=14189,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1588,Texture=133131,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14189::::::::40:::::::|h[Raincaller Cap]|h|r"},["Miniaturization Residue"]={SubType="Quest",Level=1,id=18956,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132857,Type="Quest",Link="|cffffffff|Hitem:18956::::::::40:::::::|h[Miniaturization Residue]|h|r",EquipLoc=""},["Cragfists"]={SubType="Plate",Level=45,id=9410,StackCount=1,Rarity=3,MinLevel=40,SellPrice=3785,Texture=132946,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:9410::::::::40:::::::|h[Cragfists]|h|r"},["Heavy Lamellar Pauldrons"]={SubType="Plate",Level=53,id=10245,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8548,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10245::::::::40:::::::|h[Heavy Lamellar Pauldrons]|h|r",Type="Armor"},["Deviate Scale Gloves"]={SubType="Leather",Level=21,id=6467,StackCount=1,Rarity=2,MinLevel=16,SellPrice=420,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:6467::::::::40:::::::|h[Deviate Scale Gloves]|h|r"},["Sayge's Fortune #22"]={SubType="Junk",Level=1,id=19255,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19255::::::::40:::::::|h[Sayge's Fortune #22]|h|r",EquipLoc="",Type="Miscellaneous"},["OLDAcolyte's Belt"]={SubType="Miscellaneous",Level=1,id=58,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132492,Link="|cffffffff|Hitem:58::::::::40:::::::|h[OLDAcolyte's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Heraldic Boots"]={SubType="Leather",Level=47,id=8117,StackCount=1,Rarity=2,MinLevel=42,SellPrice=7161,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:8117::::::::40:::::::|h[Heraldic Boots]|h|r"},["Deprecated Bridge Worker's Yoke"]={SubType="Leather",Level=15,id=1435,StackCount=1,Rarity=0,MinLevel=0,SellPrice=103,Texture=135039,Type="Armor",Link="|cff9d9d9d|Hitem:1435::::::::40:::::::|h[Deprecated Bridge Worker's Yoke]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Swashbuckler's Boots"]={SubType="Leather",Level=54,id=10183,StackCount=1,Rarity=2,MinLevel=49,SellPrice=10954,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10183::::::::40:::::::|h[Swashbuckler's Boots]|h|r",Type="Armor"},["Blood Guard's Dragonhide Treads"]={SubType="Leather",Level=66,id=22852,StackCount=1,Rarity=3,MinLevel=60,SellPrice=11921,Texture=132542,Link="|cff0070dd|Hitem:22852::::::::40:::::::|h[Blood Guard's Dragonhide Treads]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Lord Brandon's Tabard (Test)"]={SubType="Miscellaneous",Level=1,id=746,StackCount=1,Rarity=1,MinLevel=1,SellPrice=18,Texture=132483,Type="Armor",EquipLoc="INVTYPE_TABARD",Link="|cffffffff|Hitem:746::::::::40:::::::|h[Lord Brandon's Tabard (Test)]|h|r"},["Book of the Ancients"]={SubType="Quest",Level=1,id=15803,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:15803::::::::40:::::::|h[Book of the Ancients]|h|r",Type="Quest"},["Belt of the Grand Crusader"]={SubType="Plate",Level=85,id=23666,StackCount=1,Rarity=4,MinLevel=60,SellPrice=43647,Texture=132516,Link="|cffa335ee|Hitem:23666::::::::40:::::::|h[Belt of the Grand Crusader]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Bronze Axe"]={SubType="One-Handed Axes",Level=23,id=2849,StackCount=1,Rarity=1,MinLevel=18,SellPrice=1269,Texture=132408,Link="|cffffffff|Hitem:2849::::::::40:::::::|h[Bronze Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Narain's Scrying Goggles"]={SubType="Quest",Level=1,id=20951,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133149,Link="|cffffffff|Hitem:20951::::::::40:::::::|h[Narain's Scrying Goggles]|h|r",EquipLoc="",Type="Quest"},["Grimoire of Blood Pact (Rank 4)"]={SubType="Book",Level=38,id=16324,StackCount=1,Rarity=1,MinLevel=38,SellPrice=2500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16324::::::::40:::::::|h[Grimoire of Blood Pact (Rank 4)]|h|r",Type="Recipe"},["Shredder Operating Manual - Page 4"]={SubType="Junk",Level=1,id=16648,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:16648::::::::40:::::::|h[Shredder Operating Manual - Page 4]|h|r",Type="Miscellaneous"},["Murmuring Ring"]={SubType="Miscellaneous",Level=60,id=18345,StackCount=1,Rarity=2,MinLevel=55,SellPrice=14727,Texture=133357,Type="Armor",Link="|cff1eff00|Hitem:18345::::::::40:::::::|h[Murmuring Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Book of Healing Touch XI"]={SubType="Book",Level=60,id=21294,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133743,Link="|cff0070dd|Hitem:21294::::::::40:::::::|h[Book of Healing Touch XI]|h|r",EquipLoc="",Type="Recipe"},["Recipe: Slitherskin Mackerel"]={SubType="Cooking",Level=5,id=6326,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:6326::::::::40:::::::|h[Recipe: Slitherskin Mackerel]|h|r",EquipLoc=""},["Wildmane Cleansing Totem"]={SubType="Quest",Level=1,id=5416,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135139,EquipLoc="",Link="|cffffffff|Hitem:5416::::::::40:::::::|h[Wildmane Cleansing Totem]|h|r",Type="Quest"},["Sanguine Handwraps"]={SubType="Cloth",Level=26,id=14377,StackCount=1,Rarity=2,MinLevel=21,SellPrice=602,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14377::::::::40:::::::|h[Sanguine Handwraps]|h|r"},["Gnomish Alarm-O-Bot"]={SubType="Devices",Level=53,id=18645,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=133871,Type="Trade Goods",Link="|cffffffff|Hitem:18645::::::::40:::::::|h[Gnomish Alarm-O-Bot]|h|r",EquipLoc=""},["Monster - Staff, Holy Staff"]={SubType="Staves",Level=1,id=12591,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12591::::::::40:::::::|h[Monster - Staff, Holy Staff]|h|r"},["Carved Ivory Bone"]={SubType="Junk",Level=1,id=24281,StackCount=5,Rarity=0,MinLevel=0,SellPrice=302,Texture=133727,Link="|cff9d9d9d|Hitem:24281::::::::40:::::::|h[Carved Ivory Bone]|h|r",EquipLoc="",Type="Miscellaneous"},["Black Drake's Heart"]={SubType="Quest",Level=1,id=4612,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Link="|cffffffff|Hitem:4612::::::::40:::::::|h[Black Drake's Heart]|h|r",EquipLoc="",Type="Quest"},["Freewind Gloves"]={SubType="Cloth",Level=59,id=15858,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7530,Texture=132950,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15858::::::::40:::::::|h[Freewind Gloves]|h|r",Type="Armor"},["Sealed Note to Watcher Backus"]={SubType="Quest",Level=1,id=5960,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133468,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5960::::::::40:::::::|h[Sealed Note to Watcher Backus]|h|r"},["White Stallion"]={SubType="Junk",Level=40,id=2415,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132261,Type="Miscellaneous",Link="|cffffffff|Hitem:2415::::::::40:::::::|h[White Stallion]|h|r",EquipLoc=""},["Seer's Robe"]={SubType="Cloth",Level=21,id=2981,StackCount=1,Rarity=2,MinLevel=16,SellPrice=648,Texture=132649,Link="|cff1eff00|Hitem:2981::::::::40:::::::|h[Seer's Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Woolen Cape"]={SubType="Cloth",Level=16,id=2584,StackCount=1,Rarity=1,MinLevel=11,SellPrice=142,Texture=133762,Type="Armor",Link="|cffffffff|Hitem:2584::::::::40:::::::|h[Woolen Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Dark Heart Pants"]={SubType="Leather",Level=71,id=20627,StackCount=1,Rarity=4,MinLevel=60,SellPrice=57613,Texture=134636,Link="|cffa335ee|Hitem:20627::::::::40:::::::|h[Dark Heart Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Bands of Serra'kis"]={SubType="Leather",Level=27,id=6902,StackCount=1,Rarity=2,MinLevel=22,SellPrice=877,Texture=132607,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:6902::::::::40:::::::|h[Bands of Serra'kis]|h|r"},["Drakefire Amulet"]={SubType="Miscellaneous",Level=63,id=16309,StackCount=1,Rarity=3,MinLevel=50,SellPrice=0,Texture=133444,EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:16309::::::::40:::::::|h[Drakefire Amulet]|h|r",Type="Armor"},["Shadowstrike"]={SubType="Polearms",Level=63,id=17074,StackCount=1,Rarity=4,MinLevel=58,SellPrice=98514,Texture=135131,EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:17074::::::::40:::::::|h[Shadowstrike]|h|r",Type="Weapon"},["Twin-bladed Axe"]={SubType="Two-Handed Axes",Level=16,id=15268,StackCount=1,Rarity=2,MinLevel=11,SellPrice=1024,Texture=132400,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15268::::::::40:::::::|h[Twin-bladed Axe]|h|r",Type="Weapon"},["Monster - Sword2H, Horde Massive"]={SubType="Two-Handed Swords",Level=1,id=11321,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",Link="|cff9d9d9d|Hitem:11321::::::::40:::::::|h[Monster - Sword2H, Horde Massive]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Abjurer's Robe"]={SubType="Cloth",Level=53,id=9943,StackCount=1,Rarity=2,MinLevel=48,SellPrice=11271,Texture=132664,Link="|cff1eff00|Hitem:9943::::::::40:::::::|h[Abjurer's Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Deprecated Tauren Recruit's Pants"]={SubType="Cloth",Level=1,id=156,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Link="|cff9d9d9d|Hitem:156::::::::40:::::::|h[Deprecated Tauren Recruit's Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Sturdy Male Gnome Mask"]={SubType="Miscellaneous",Level=45,id=20592,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5028,Texture=134164,Link="|cff1eff00|Hitem:20592::::::::40:::::::|h[Sturdy Male Gnome Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Strapped Shoulderpads"]={SubType="Leather",Level=65,id=3983,StackCount=1,Rarity=0,MinLevel=60,SellPrice=8010,Texture=135037,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3983::::::::40:::::::|h[Strapped Shoulderpads]|h|r",Type="Armor"},["Dalaran Pendant"]={SubType="Quest",Level=1,id=3354,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133438,EquipLoc="",Link="|cffffffff|Hitem:3354::::::::40:::::::|h[Dalaran Pendant]|h|r",Type="Quest"},["Desecrated Shoulderpads"]={SubType="Junk",Level=60,id=22368,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133811,Link="|cffa335ee|Hitem:22368::::::::40:::::::|h[Desecrated Shoulderpads]|h|r",EquipLoc="",Type="Miscellaneous"},["Soldier's Gauntlets"]={SubType="Mail",Level=17,id=6547,StackCount=1,Rarity=2,MinLevel=12,SellPrice=267,Texture=132946,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:6547::::::::40:::::::|h[Soldier's Gauntlets]|h|r"},["Tablet of Lightning Shield II"]={SubType="Book",Level=16,id=1048,StackCount=1,Rarity=1,MinLevel=16,SellPrice=325,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:1048::::::::40:::::::|h[Tablet of Lightning Shield II]|h|r",Type="Recipe"},["Grimoire of Sacrifice (Rank 6)"]={SubType="Book",Level=56,id=16356,StackCount=1,Rarity=1,MinLevel=56,SellPrice=5500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16356::::::::40:::::::|h[Grimoire of Sacrifice (Rank 6)]|h|r",Type="Recipe"},["Filled Vial Labeled #4"]={SubType="Quest",Level=1,id=10694,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134857,EquipLoc="",Link="|cffffffff|Hitem:10694::::::::40:::::::|h[Filled Vial Labeled #4]|h|r",Type="Quest"},["Sapphiron Drape"]={SubType="Cloth",Level=72,id=17078,StackCount=1,Rarity=4,MinLevel=60,SellPrice=37203,Texture=133768,EquipLoc="INVTYPE_CLOAK",Link="|cffa335ee|Hitem:17078::::::::40:::::::|h[Sapphiron Drape]|h|r",Type="Armor"},["Heavy Scorpid Bracers"]={SubType="Mail",Level=51,id=15077,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7615,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15077::::::::40:::::::|h[Heavy Scorpid Bracers]|h|r",Type="Armor"},["Warsong Gauntlets"]={SubType="Mail",Level=27,id=16978,StackCount=1,Rarity=3,MinLevel=0,SellPrice=1158,Texture=132949,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16978::::::::40:::::::|h[Warsong Gauntlets]|h|r",Type="Armor"},["Test Fire Res Hands Cloth"]={SubType="Cloth",Level=35,id=16063,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1516,Texture=132951,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:16063::::::::40:::::::|h[Test Fire Res Hands Cloth]|h|r",Type="Armor"},["Thawpelt Sack"]={SubType="Bag",Level=45,id=9587,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6250,Texture=133650,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:9587::::::::40:::::::|h[Thawpelt Sack]|h|r"},["[PH] Greater Arcane Amalgamation (SPI/FR)"]={SubType="Quest",Level=50,id=11672,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=134094,Type="Quest",Link="|cff0070dd|Hitem:11672::::::::40:::::::|h[[PH] Greater Arcane Amalgamation (SPI/FR)]|h|r",EquipLoc=""},["Selenium Chain"]={SubType="Miscellaneous",Level=54,id=12025,StackCount=1,Rarity=2,MinLevel=49,SellPrice=5282,Texture=133291,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12025::::::::40:::::::|h[Selenium Chain]|h|r"},["Nocturnal Shoulder Pads"]={SubType="Leather",Level=40,id=15158,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4320,Texture=135053,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15158::::::::40:::::::|h[Nocturnal Shoulder Pads]|h|r",Type="Armor"},["Bloodwoven Mitts"]={SubType="Cloth",Level=45,id=14262,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3156,Texture=132953,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14262::::::::40:::::::|h[Bloodwoven Mitts]|h|r"},["Green Dragonscale Breastplate"]={SubType="Mail",Level=52,id=15045,StackCount=1,Rarity=3,MinLevel=47,SellPrice=19938,Texture=132628,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:15045::::::::40:::::::|h[Green Dragonscale Breastplate]|h|r",Type="Armor"},["Hand of Lucifron"]={SubType="Quest",Level=1,id=17329,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132960,EquipLoc="",Link="|cffffffff|Hitem:17329::::::::40:::::::|h[Hand of Lucifron]|h|r",Type="Quest"},["2200 Test sword 80 purple"]={SubType="One-Handed Swords",Level=80,id=19503,StackCount=1,Rarity=4,MinLevel=58,SellPrice=167843,Texture=135637,Link="|cffa335ee|Hitem:19503::::::::40:::::::|h[2200 Test sword 80 purple]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Tome of Whirlwind (TEST)"]={SubType="Consumable",Level=1,id=951,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134943,Type="Consumable",Link="|cffffffff|Hitem:951::::::::40:::::::|h[Tome of Whirlwind (TEST)]|h|r",EquipLoc=""},["Mana Agate"]={SubType="Miscellaneous",Level=28,id=5514,StackCount=1,Rarity=1,MinLevel=23,SellPrice=0,Texture=134104,EquipLoc="",Link="|cffffffff|Hitem:5514::::::::40:::::::|h[Mana Agate]|h|r",Type="Armor"},["Plans: Huge Thorium Battleaxe"]={SubType="Blacksmithing",Level=56,id=12823,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12823::::::::40:::::::|h[Plans: Huge Thorium Battleaxe]|h|r"},["Viagra"]={SubType="Consumable",Level=1,id=12729,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134743,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12729::::::::40:::::::|h[Viagra]|h|r"},["Blood of Cobrahn"]={SubType="Quest",Level=1,id=5400,StackCount=1,Rarity=1,MinLevel=0,SellPrice=17,Texture=134719,Link="|cffffffff|Hitem:5400::::::::40:::::::|h[Blood of Cobrahn]|h|r",EquipLoc="",Type="Quest"},["Slashclaw Bracers"]={SubType="Mail",Level=60,id=13211,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14474,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13211::::::::40:::::::|h[Slashclaw Bracers]|h|r"},["Small Bat Skull"]={SubType="Junk",Level=1,id=11393,StackCount=10,Rarity=0,MinLevel=0,SellPrice=780,Texture=133731,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11393::::::::40:::::::|h[Small Bat Skull]|h|r",EquipLoc=""},["Sanguine Star"]={SubType="Miscellaneous",Level=28,id=15947,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1887,Texture=135160,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15947::::::::40:::::::|h[Sanguine Star]|h|r",Type="Armor"},["Doomsayer's Robe"]={SubType="Cloth",Level=40,id=4746,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4324,Texture=132660,Type="Armor",Link="|cff1eff00|Hitem:4746::::::::40:::::::|h[Doomsayer's Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Willow Cape"]={SubType="Cloth",Level=15,id=6542,StackCount=1,Rarity=2,MinLevel=10,SellPrice=219,Texture=133769,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:6542::::::::40:::::::|h[Willow Cape]|h|r"},["Fine Moonstalker Pelt"]={SubType="Quest",Level=1,id=5386,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134366,EquipLoc="",Link="|cffffffff|Hitem:5386::::::::40:::::::|h[Fine Moonstalker Pelt]|h|r",Type="Quest"},["Bloodvine Boots"]={SubType="Cloth",Level=65,id=19684,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18915,Texture=132559,Link="|cff0070dd|Hitem:19684::::::::40:::::::|h[Bloodvine Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Living Rot"]={SubType="Quest",Level=1,id=15447,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134350,EquipLoc="",Link="|cffffffff|Hitem:15447::::::::40:::::::|h[Living Rot]|h|r",Type="Quest"},["Soot Encrusted Footwear"]={SubType="Cloth",Level=56,id=22245,StackCount=1,Rarity=3,MinLevel=51,SellPrice=12375,Texture=132562,Link="|cff0070dd|Hitem:22245::::::::40:::::::|h[Soot Encrusted Footwear]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Fenwick's Head"]={SubType="Quest",Level=1,id=7306,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134179,EquipLoc="",Link="|cffffffff|Hitem:7306::::::::40:::::::|h[Fenwick's Head]|h|r",Type="Quest"},["Coarse Gorilla Hair"]={SubType="Junk",Level=1,id=4096,StackCount=10,Rarity=1,MinLevel=0,SellPrice=608,Texture=134324,EquipLoc="",Link="|cffffffff|Hitem:4096::::::::40:::::::|h[Coarse Gorilla Hair]|h|r",Type="Miscellaneous"},["Deprecated Broiled Sunfish"]={SubType="Consumable",Level=15,id=1321,StackCount=10,Rarity=1,MinLevel=0,SellPrice=52,Texture=133888,Link="|cffffffff|Hitem:1321::::::::40:::::::|h[Deprecated Broiled Sunfish]|h|r",EquipLoc="",Type="Consumable"},["Bat Heart"]={SubType="Junk",Level=1,id=11394,StackCount=10,Rarity=0,MinLevel=0,SellPrice=580,Texture=134343,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11394::::::::40:::::::|h[Bat Heart]|h|r",EquipLoc=""},["Combat Task Briefing II"]={SubType="Quest",Level=60,id=21247,StackCount=1,Rarity=2,MinLevel=58,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21247::::::::40:::::::|h[Combat Task Briefing II]|h|r",EquipLoc="",Type="Quest"},["Runic Plate Helm"]={SubType="Plate",Level=61,id=12612,StackCount=1,Rarity=2,MinLevel=56,SellPrice=12956,Texture=133071,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:12612::::::::40:::::::|h[Runic Plate Helm]|h|r"},["1500 Test sword 80 purple"]={SubType="One-Handed Swords",Level=80,id=19457,StackCount=1,Rarity=4,MinLevel=60,SellPrice=167843,Texture=135637,Link="|cffa335ee|Hitem:19457::::::::40:::::::|h[1500 Test sword 80 purple]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Monster - Bow, Short"]={SubType="Bows",Level=1,id=2550,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135493,Type="Weapon",Link="|cff9d9d9d|Hitem:2550::::::::40:::::::|h[Monster - Bow, Short]|h|r",EquipLoc="INVTYPE_RANGED"},["Vial of Innocent Blood"]={SubType="Quest",Level=1,id=5620,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134732,EquipLoc="",Link="|cffffffff|Hitem:5620::::::::40:::::::|h[Vial of Innocent Blood]|h|r",Type="Quest"},["Scimitar of Atun"]={SubType="One-Handed Swords",Level=19,id=1469,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1180,Texture=135325,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:1469::::::::40:::::::|h[Scimitar of Atun]|h|r",Type="Weapon"},["Monster - Item, Tankard Gold"]={SubType="Miscellaneous",Level=1,id=13861,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132795,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13861::::::::40:::::::|h[Monster - Item, Tankard Gold]|h|r"},["Bracers of Earth Binding"]={SubType="Quest",Level=1,id=3715,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132612,Link="|cffffffff|Hitem:3715::::::::40:::::::|h[Bracers of Earth Binding]|h|r",EquipLoc="",Type="Quest"},["Saber Leggings"]={SubType="Leather",Level=28,id=4830,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1894,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:4830::::::::40:::::::|h[Saber Leggings]|h|r"},["Trogg Slicer"]={SubType="Two-Handed Swords",Level=18,id=6186,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1372,Texture=135356,Type="Weapon",Link="|cff1eff00|Hitem:6186::::::::40:::::::|h[Trogg Slicer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Handmade Leather Bag"]={SubType="Bag",Level=5,id=4930,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=133639,Link="|cffffffff|Hitem:4930::::::::40:::::::|h[Handmade Leather Bag]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Adventurer's Belt"]={SubType="Leather",Level=62,id=10259,StackCount=1,Rarity=2,MinLevel=57,SellPrice=11335,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10259::::::::40:::::::|h[Adventurer's Belt]|h|r",Type="Armor"},["Inquisitor's Shawl"]={SubType="Cloth",Level=41,id=19507,StackCount=1,Rarity=2,MinLevel=36,SellPrice=1701,Texture=135058,Link="|cff1eff00|Hitem:19507::::::::40:::::::|h[Inquisitor's Shawl]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Glimmering Cloak"]={SubType="Cloth",Level=28,id=4711,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1112,Texture=133762,Type="Armor",Link="|cff1eff00|Hitem:4711::::::::40:::::::|h[Glimmering Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Radiant Boots"]={SubType="Mail",Level=58,id=12419,StackCount=1,Rarity=2,MinLevel=53,SellPrice=16421,Texture=132584,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:12419::::::::40:::::::|h[Radiant Boots]|h|r"},["Bloody Apron"]={SubType="Cloth",Level=23,id=6226,StackCount=1,Rarity=2,MinLevel=18,SellPrice=890,Texture=132665,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:6226::::::::40:::::::|h[Bloody Apron]|h|r"},["Secret Note #2"]={SubType="Quest",Level=0,id=12766,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134943,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12766::::::::40:::::::|h[Secret Note #2]|h|r"},["Long Silken Cloak"]={SubType="Cloth",Level=37,id=4326,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2496,Texture=133754,Type="Armor",Link="|cff1eff00|Hitem:4326::::::::40:::::::|h[Long Silken Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Empty Vial Labeled #4"]={SubType="Consumable",Level=1,id=10690,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132793,EquipLoc="",Link="|cffffffff|Hitem:10690::::::::40:::::::|h[Empty Vial Labeled #4]|h|r",Type="Consumable"},["Gem of Nerubis"]={SubType="Miscellaneous",Level=83,id=22937,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72651,Texture=134548,Link="|cffa335ee|Hitem:22937::::::::40:::::::|h[Gem of Nerubis]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Monster - Item, Ahn'Qiraj Held Scepter"]={SubType="Miscellaneous",Level=1,id=21796,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135473,Link="|cff9d9d9d|Hitem:21796::::::::40:::::::|h[Monster - Item, Ahn'Qiraj Held Scepter]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Orange Murloc Egg"]={SubType="Junk",Level=20,id=20651,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132834,Link="|cffffffff|Hitem:20651::::::::40:::::::|h[Orange Murloc Egg]|h|r",EquipLoc="",Type="Miscellaneous"},["Pathfinder Cloak"]={SubType="Cloth",Level=27,id=15340,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1016,Texture=133753,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15340::::::::40:::::::|h[Pathfinder Cloak]|h|r",Type="Armor"},["Codex of Mind Blast IV"]={SubType="Book",Level=28,id=8972,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133741,Link="|cffffffff|Hitem:8972::::::::40:::::::|h[Codex of Mind Blast IV]|h|r",EquipLoc="",Type="Recipe"},["Crusader's Pauldrons"]={SubType="Mail",Level=53,id=10200,StackCount=1,Rarity=2,MinLevel=48,SellPrice=12314,Texture=135059,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10200::::::::40:::::::|h[Crusader's Pauldrons]|h|r",Type="Armor"},["Simple Wildflowers"]={SubType="Miscellaneous",Level=10,id=3421,StackCount=1,Rarity=1,MinLevel=0,SellPrice=50,Texture=133939,Link="|cffffffff|Hitem:3421::::::::40:::::::|h[Simple Wildflowers]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Frost Oil"]={SubType="Consumable",Level=40,id=3829,StackCount=5,Rarity=1,MinLevel=30,SellPrice=150,Texture=134800,Link="|cffffffff|Hitem:3829::::::::40:::::::|h[Frost Oil]|h|r",EquipLoc="",Type="Consumable"},["Blackfury"]={SubType="Polearms",Level=66,id=19167,StackCount=1,Rarity=4,MinLevel=60,SellPrice=116531,Texture=135131,Link="|cffa335ee|Hitem:19167::::::::40:::::::|h[Blackfury]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Pattern: Hillman's Leather Vest"]={SubType="Leatherworking",Level=20,id=4293,StackCount=1,Rarity=2,MinLevel=0,SellPrice=162,Texture=134939,Type="Recipe",Link="|cff1eff00|Hitem:4293::::::::40:::::::|h[Pattern: Hillman's Leather Vest]|h|r",EquipLoc=""},["Pendant of the Shifting Sands"]={SubType="Miscellaneous",Level=70,id=21506,StackCount=1,Rarity=4,MinLevel=60,SellPrice=111628,Texture=133341,Link="|cffa335ee|Hitem:21506::::::::40:::::::|h[Pendant of the Shifting Sands]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Plans: Thorium Helm"]={SubType="Blacksmithing",Level=56,id=12694,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12694::::::::40:::::::|h[Plans: Thorium Helm]|h|r"},["Highborne Star"]={SubType="Miscellaneous",Level=59,id=15967,StackCount=1,Rarity=2,MinLevel=54,SellPrice=10304,Texture=135464,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15967::::::::40:::::::|h[Highborne Star]|h|r",Type="Armor"},["Black Moro'gai Gem"]={SubType="Quest",Level=1,id=18157,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133367,Type="Quest",Link="|cff1eff00|Hitem:18157::::::::40:::::::|h[Black Moro'gai Gem]|h|r",EquipLoc=""},["Bottle of Moonshine"]={SubType="Quest",Level=1,id=1942,StackCount=1,Rarity=1,MinLevel=0,SellPrice=316,Texture=132798,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1942::::::::40:::::::|h[Bottle of Moonshine]|h|r"},["Darksoul Shackle"]={SubType="Quest",Level=1,id=3157,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132606,Link="|cffffffff|Hitem:3157::::::::40:::::::|h[Darksoul Shackle]|h|r",EquipLoc="",Type="Quest"},["Monster - Mace, Basic Stone Hammer"]={SubType="One-Handed Maces",Level=1,id=1901,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133040,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:1901::::::::40:::::::|h[Monster - Mace, Basic Stone Hammer]|h|r",Type="Weapon"},["Orcish War Leggings"]={SubType="Mail",Level=42,id=7929,StackCount=1,Rarity=2,MinLevel=37,SellPrice=7739,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7929::::::::40:::::::|h[Orcish War Leggings]|h|r",Type="Armor"},["Selenium Loop"]={SubType="Miscellaneous",Level=55,id=11990,StackCount=1,Rarity=2,MinLevel=50,SellPrice=8306,Texture=133346,Type="Armor",Link="|cff1eff00|Hitem:11990::::::::40:::::::|h[Selenium Loop]|h|r",EquipLoc="INVTYPE_FINGER"},["Wavethrasher Scales"]={SubType="Junk",Level=1,id=20087,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134314,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:20087::::::::40:::::::|h[Wavethrasher Scales]|h|r"},["Pattern: Murloc Scale Belt"]={SubType="Leatherworking",Level=18,id=5786,StackCount=1,Rarity=1,MinLevel=0,SellPrice=137,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:5786::::::::40:::::::|h[Pattern: Murloc Scale Belt]|h|r",Type="Recipe"},["Shadowgem"]={SubType="Trade Goods",Level=20,id=1210,StackCount=20,Rarity=2,MinLevel=0,SellPrice=250,Texture=134074,Link="|cff1eff00|Hitem:1210::::::::40:::::::|h[Shadowgem]|h|r",EquipLoc="",Type="Trade Goods"},["Libram: Seal of Righteousness IV"]={SubType="Book",Level=46,id=8930,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=133740,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8930::::::::40:::::::|h[Libram: Seal of Righteousness IV]|h|r"},["QAEnchant Cloak +15 Fire Resistance"]={SubType="Consumable",Level=1,id=22039,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22039::::::::40:::::::|h[QAEnchant Cloak +15 Fire Resistance]|h|r",EquipLoc="",Type="Consumable"},["Basilisk Bone"]={SubType="Miscellaneous",Level=51,id=13030,StackCount=1,Rarity=3,MinLevel=46,SellPrice=13113,Texture=133727,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:13030::::::::40:::::::|h[Basilisk Bone]|h|r"},["Murloc Fin"]={SubType="Trade Goods",Level=16,id=1468,StackCount=10,Rarity=1,MinLevel=0,SellPrice=28,Texture=134304,Type="Trade Goods",Link="|cffffffff|Hitem:1468::::::::40:::::::|h[Murloc Fin]|h|r",EquipLoc=""},["Cenarion Vestments"]={SubType="Leather",Level=66,id=16833,StackCount=1,Rarity=4,MinLevel=60,SellPrice=46439,Texture=132647,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:16833::::::::40:::::::|h[Cenarion Vestments]|h|r",Type="Armor"},["Voodoo Mantle"]={SubType="Cloth",Level=26,id=6664,StackCount=1,Rarity=2,MinLevel=0,SellPrice=892,Texture=135036,Type="Armor",Link="|cff1eff00|Hitem:6664::::::::40:::::::|h[Voodoo Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Runecloth"]={SubType="Trade Goods",Level=50,id=14047,StackCount=20,Rarity=1,MinLevel=0,SellPrice=400,Texture=132903,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:14047::::::::40:::::::|h[Runecloth]|h|r"},["Rubbing: Rune of Sael'hai"]={SubType="Quest",Level=0,id=10566,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:10566::::::::40:::::::|h[Rubbing: Rune of Sael'hai]|h|r",Type="Quest"},["Tear of Tilloa"]={SubType="Quest",Level=1,id=2779,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133939,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2779::::::::40:::::::|h[Tear of Tilloa]|h|r"},["Taut Dragonhide Belt"]={SubType="Leather",Level=75,id=19396,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33084,Texture=132505,Link="|cffa335ee|Hitem:19396::::::::40:::::::|h[Taut Dragonhide Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Last Year's Mutton"]={SubType="One-Handed Maces",Level=55,id=19293,StackCount=1,Rarity=1,MinLevel=50,SellPrice=19376,Texture=133974,Link="|cffffffff|Hitem:19293::::::::40:::::::|h[Last Year's Mutton]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Rockshard Pauldrons"]={SubType="Mail",Level=45,id=9411,StackCount=1,Rarity=2,MinLevel=40,SellPrice=7156,Texture=135033,Link="|cff1eff00|Hitem:9411::::::::40:::::::|h[Rockshard Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Headhunter's Slippers"]={SubType="Leather",Level=34,id=15350,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2384,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15350::::::::40:::::::|h[Headhunter's Slippers]|h|r",Type="Armor"},["Thorium Grenade"]={SubType="Explosives",Level=52,id=15993,StackCount=10,Rarity=1,MinLevel=0,SellPrice=1500,Texture=133716,EquipLoc="",Link="|cffffffff|Hitem:15993::::::::40:::::::|h[Thorium Grenade]|h|r",Type="Trade Goods"},["Spider's Silk"]={SubType="Trade Goods",Level=20,id=3182,StackCount=10,Rarity=1,MinLevel=0,SellPrice=387,Texture=136113,Link="|cffffffff|Hitem:3182::::::::40:::::::|h[Spider's Silk]|h|r",EquipLoc="",Type="Trade Goods"},["Crest of Beckoning: Stone"]={SubType="Junk",Level=1,id=20419,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134458,Link="|cffffffff|Hitem:20419::::::::40:::::::|h[Crest of Beckoning: Stone]|h|r",EquipLoc="",Type="Miscellaneous"},["Silver Hook"]={SubType="Junk",Level=1,id=5567,StackCount=5,Rarity=0,MinLevel=0,SellPrice=196,Texture=136245,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5567::::::::40:::::::|h[Silver Hook]|h|r"},["Light Leather"]={SubType="Trade Goods",Level=10,id=2318,StackCount=20,Rarity=1,MinLevel=0,SellPrice=15,Texture=134252,Link="|cffffffff|Hitem:2318::::::::40:::::::|h[Light Leather]|h|r",EquipLoc="",Type="Trade Goods"},["Scaber Stalk"]={SubType="Quest",Level=1,id=5271,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134531,Link="|cffffffff|Hitem:5271::::::::40:::::::|h[Scaber Stalk]|h|r",EquipLoc="",Type="Quest"},["Wolf Rider's Boots"]={SubType="Leather",Level=44,id=15370,StackCount=1,Rarity=2,MinLevel=39,SellPrice=5439,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15370::::::::40:::::::|h[Wolf Rider's Boots]|h|r",Type="Armor"},["Boots of the Unwavering Will"]={SubType="Plate",Level=73,id=21706,StackCount=1,Rarity=4,MinLevel=60,SellPrice=39364,Texture=132587,Link="|cffa335ee|Hitem:21706::::::::40:::::::|h[Boots of the Unwavering Will]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Captain's Shoulderguards"]={SubType="Mail",Level=43,id=7491,StackCount=1,Rarity=2,MinLevel=38,SellPrice=6158,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7491::::::::40:::::::|h[Captain's Shoulderguards]|h|r",Type="Armor"},["Knight-Lieutenant's Leather Gauntlets"]={SubType="Leather",Level=63,id=16396,StackCount=1,Rarity=3,MinLevel=58,SellPrice=7388,Texture=132949,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16396::::::::40:::::::|h[Knight-Lieutenant's Leather Gauntlets]|h|r",Type="Armor"},["Battle Chain Tunic"]={SubType="Mail",Level=13,id=3283,StackCount=1,Rarity=2,MinLevel=8,SellPrice=295,Texture=132719,Link="|cff1eff00|Hitem:3283::::::::40:::::::|h[Battle Chain Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Dragon's Call"]={SubType="One-Handed Swords",Level=57,id=10847,StackCount=1,Rarity=4,MinLevel=52,SellPrice=56921,Texture=135348,EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:10847::::::::40:::::::|h[Dragon's Call]|h|r",Type="Weapon"},["Twilight Cultist Cowl"]={SubType="Cloth",Level=60,id=20408,StackCount=1,Rarity=2,MinLevel=60,SellPrice=1942,Texture=133129,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:20408::::::::40:::::::|h[Twilight Cultist Cowl]|h|r"},["Arcanite Fishing Pole"]={SubType="Fishing Pole",Level=20,id=19970,StackCount=1,Rarity=3,MinLevel=0,SellPrice=2175,Texture=132931,Link="|cff0070dd|Hitem:19970::::::::40:::::::|h[Arcanite Fishing Pole]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Dal'Rend's Sacred Charge"]={SubType="One-Handed Swords",Level=63,id=12940,StackCount=1,Rarity=3,MinLevel=58,SellPrice=54812,Texture=135353,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:12940::::::::40:::::::|h[Dal'Rend's Sacred Charge]|h|r"},["Strangely Marked Box"]={SubType="Quest",Level=0,id=12292,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132762,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12292::::::::40:::::::|h[Strangely Marked Box]|h|r"},["Stout Battlehammer"]={SubType="One-Handed Maces",Level=22,id=789,StackCount=1,Rarity=2,MinLevel=17,SellPrice=1969,Texture=133045,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:789::::::::40:::::::|h[Stout Battlehammer]|h|r"},["Recipe: Big Bear Steak"]={SubType="Cooking",Level=25,id=3734,StackCount=1,Rarity=1,MinLevel=0,SellPrice=400,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:3734::::::::40:::::::|h[Recipe: Big Bear Steak]|h|r"},["Codex of Dispel Magic"]={SubType="Book",Level=18,id=1095,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=133741,Type="Recipe",Link="|cffffffff|Hitem:1095::::::::40:::::::|h[Codex of Dispel Magic]|h|r",EquipLoc=""},["Horde Battle Standard"]={SubType="Consumable",Level=0,id=18607,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=132485,Type="Consumable",Link="|cffffffff|Hitem:18607::::::::40:::::::|h[Horde Battle Standard]|h|r",EquipLoc=""},["Gordunni Scroll"]={SubType="Quest",Level=38,id=9370,StackCount=1,Rarity=1,MinLevel=38,SellPrice=0,Texture=134943,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9370::::::::40:::::::|h[Gordunni Scroll]|h|r"},["Tablet of Stoneclaw Totem V"]={SubType="Book",Level=48,id=9141,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9141::::::::40:::::::|h[Tablet of Stoneclaw Totem V]|h|r"},["Celestial Tunic"]={SubType="Cloth",Level=61,id=14308,StackCount=1,Rarity=2,MinLevel=56,SellPrice=17799,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14308::::::::40:::::::|h[Celestial Tunic]|h|r"},["Chromite Shield"]={SubType="Shields",Level=46,id=8135,StackCount=1,Rarity=2,MinLevel=41,SellPrice=11234,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:8135::::::::40:::::::|h[Chromite Shield]|h|r"},["Ataeric's Staff"]={SubType="Quest",Level=1,id=3515,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135144,Link="|cffffffff|Hitem:3515::::::::40:::::::|h[Ataeric's Staff]|h|r",EquipLoc="",Type="Quest"},["Recipe: Elixir of Giant Growth"]={SubType="Alchemy",Level=18,id=6663,StackCount=1,Rarity=2,MinLevel=0,SellPrice=150,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:6663::::::::40:::::::|h[Recipe: Elixir of Giant Growth]|h|r"},["Recipe: Transmute Undeath to Water"]={SubType="Alchemy",Level=55,id=13486,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3750,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13486::::::::40:::::::|h[Recipe: Transmute Undeath to Water]|h|r"},["High Warlord's Crossbow"]={SubType="Crossbows",Level=78,id=18837,StackCount=1,Rarity=4,MinLevel=60,SellPrice=35259,Texture=135539,Type="Weapon",Link="|cffa335ee|Hitem:18837::::::::40:::::::|h[High Warlord's Crossbow]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Keris of Zul'Serak"]={SubType="Daggers",Level=60,id=12582,StackCount=1,Rarity=3,MinLevel=55,SellPrice=51199,Texture=135648,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:12582::::::::40:::::::|h[Keris of Zul'Serak]|h|r"},["Empty Sampling Tube"]={SubType="Quest",Level=1,id=12350,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134865,Link="|cffffffff|Hitem:12350::::::::40:::::::|h[Empty Sampling Tube]|h|r",EquipLoc="",Type="Quest"},["Felstone Good Luck Charm"]={SubType="Miscellaneous",Level=54,id=13473,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7164,Texture=133444,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:13473::::::::40:::::::|h[Felstone Good Luck Charm]|h|r"},["Tome of Fire Blast V"]={SubType="Book",Level=38,id=8841,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133739,Link="|cffffffff|Hitem:8841::::::::40:::::::|h[Tome of Fire Blast V]|h|r",EquipLoc="",Type="Recipe"},["Rusted Iron Key"]={SubType="Key",Level=1,id=3704,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134235,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:3704::::::::40:::::::|h[Rusted Iron Key]|h|r"},["Staff of Dar'Orahil"]={SubType="Staves",Level=40,id=15106,StackCount=1,Rarity=2,MinLevel=0,SellPrice=14447,Texture=135149,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15106::::::::40:::::::|h[Staff of Dar'Orahil]|h|r",Type="Weapon"},["Nocturnal Leggings"]={SubType="Leather",Level=41,id=15157,StackCount=1,Rarity=2,MinLevel=36,SellPrice=6200,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15157::::::::40:::::::|h[Nocturnal Leggings]|h|r",Type="Armor"},["Partially Digested Meat"]={SubType="Junk",Level=15,id=3181,StackCount=5,Rarity=0,MinLevel=0,SellPrice=23,Texture=133970,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:3181::::::::40:::::::|h[Partially Digested Meat]|h|r"},["Shadow Crescent Axe"]={SubType="Two-Handed Axes",Level=40,id=3856,StackCount=1,Rarity=2,MinLevel=35,SellPrice=14221,Texture=132408,Link="|cff1eff00|Hitem:3856::::::::40:::::::|h[Shadow Crescent Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Captain's Waistguard"]={SubType="Mail",Level=41,id=7494,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3543,Texture=132514,Link="|cff1eff00|Hitem:7494::::::::40:::::::|h[Captain's Waistguard]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Marcel's Head"]={SubType="Quest",Level=1,id=5832,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,EquipLoc="",Link="|cffffffff|Hitem:5832::::::::40:::::::|h[Marcel's Head]|h|r",Type="Quest"},["Limb Cleaver"]={SubType="Two-Handed Axes",Level=55,id=12000,StackCount=1,Rarity=2,MinLevel=0,SellPrice=41053,Texture=132393,Type="Weapon",Link="|cff1eff00|Hitem:12000::::::::40:::::::|h[Limb Cleaver]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Corehound Belt"]={SubType="Leather",Level=70,id=19162,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27831,Texture=132513,Link="|cffa335ee|Hitem:19162::::::::40:::::::|h[Corehound Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Sparkleshell Mantle"]={SubType="Mail",Level=29,id=13131,StackCount=1,Rarity=3,MinLevel=24,SellPrice=2312,Texture=135049,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13131::::::::40:::::::|h[Sparkleshell Mantle]|h|r"},["Spiritchaser Staff"]={SubType="Staves",Level=44,id=1613,StackCount=1,Rarity=2,MinLevel=39,SellPrice=19139,Texture=135140,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1613::::::::40:::::::|h[Spiritchaser Staff]|h|r"},["Triune Amulet"]={SubType="Miscellaneous",Level=44,id=7722,StackCount=1,Rarity=3,MinLevel=39,SellPrice=9295,Texture=133276,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:7722::::::::40:::::::|h[Triune Amulet]|h|r"},["Beaststalker Blade"]={SubType="One-Handed Swords",Level=60,id=15782,StackCount=1,Rarity=2,MinLevel=0,SellPrice=43142,Texture=135343,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15782::::::::40:::::::|h[Beaststalker Blade]|h|r",Type="Weapon"},["Stormcloth Gloves"]={SubType="Cloth",Level=44,id=10011,StackCount=1,Rarity=2,MinLevel=39,SellPrice=2875,Texture=132951,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10011::::::::40:::::::|h[Stormcloth Gloves]|h|r",Type="Armor"},["Etched Rune"]={SubType="Quest",Level=1,id=9566,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134419,Link="|cffffffff|Hitem:9566::::::::40:::::::|h[Etched Rune]|h|r",EquipLoc="",Type="Quest"},["Lotwil's Shackles of Elemental Binding"]={SubType="Quest",Level=1,id=4847,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132608,Type="Quest",Link="|cffffffff|Hitem:4847::::::::40:::::::|h[Lotwil's Shackles of Elemental Binding]|h|r",EquipLoc=""},["Tablet of Flametongue Totem III"]={SubType="Book",Level=56,id=9165,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=134459,Link="|cffffffff|Hitem:9165::::::::40:::::::|h[Tablet of Flametongue Totem III]|h|r",EquipLoc="",Type="Recipe"},["Shard of the Defiler"]={SubType="Daggers",Level=70,id=17142,StackCount=1,Rarity=5,MinLevel=60,SellPrice=159115,Texture=135271,EquipLoc="INVTYPE_WEAPON",Link="|cffff8000|Hitem:17142::::::::40:::::::|h[Shard of the Defiler]|h|r",Type="Weapon"},["Abyssal Leather Shoulders"]={SubType="Leather",Level=68,id=20689,StackCount=1,Rarity=3,MinLevel=60,SellPrice=26286,Texture=135039,Link="|cff0070dd|Hitem:20689::::::::40:::::::|h[Abyssal Leather Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Nessa's Collection"]={SubType="Quest",Level=1,id=16262,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133720,EquipLoc="",Link="|cffffffff|Hitem:16262::::::::40:::::::|h[Nessa's Collection]|h|r",Type="Quest"},["Julie's Dagger"]={SubType="Daggers",Level=55,id=6660,StackCount=1,Rarity=3,MinLevel=50,SellPrice=36157,Texture=135643,Type="Weapon",Link="|cff0070dd|Hitem:6660::::::::40:::::::|h[Julie's Dagger]|h|r",EquipLoc="INVTYPE_WEAPON"},["Guttbuster"]={SubType="Guns",Level=50,id=13139,StackCount=1,Rarity=3,MinLevel=45,SellPrice=21029,Texture=135617,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13139::::::::40:::::::|h[Guttbuster]|h|r"},["Arathi Basin Mark of Honor"]={SubType="Quest",Level=1,id=20559,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=133282,Link="|cff1eff00|Hitem:20559::::::::40:::::::|h[Arathi Basin Mark of Honor]|h|r",EquipLoc="",Type="Quest"},["Stromgarde Badge"]={SubType="Quest",Level=1,id=4506,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133281,Type="Quest",Link="|cffffffff|Hitem:4506::::::::40:::::::|h[Stromgarde Badge]|h|r",EquipLoc=""},["Barbaric Loincloth"]={SubType="Cloth",Level=16,id=3309,StackCount=1,Rarity=2,MinLevel=11,SellPrice=333,Texture=134706,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:3309::::::::40:::::::|h[Barbaric Loincloth]|h|r"},["Pridelord Girdle"]={SubType="Leather",Level=55,id=14674,StackCount=1,Rarity=2,MinLevel=50,SellPrice=8270,Texture=132501,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14674::::::::40:::::::|h[Pridelord Girdle]|h|r"},["Libram: Holy Strike III"]={SubType="Book",Level=16,id=8913,StackCount=1,Rarity=1,MinLevel=16,SellPrice=325,Texture=133740,Link="|cffffffff|Hitem:8913::::::::40:::::::|h[Libram: Holy Strike III]|h|r",EquipLoc="",Type="Recipe"},["Sandals of the Insurgent"]={SubType="Leather",Level=54,id=13111,StackCount=1,Rarity=3,MinLevel=49,SellPrice=13993,Texture=132579,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13111::::::::40:::::::|h[Sandals of the Insurgent]|h|r"},["Traveler's Backpack"]={SubType="Bag",Level=55,id=4500,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8750,Texture=133633,EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:4500::::::::40:::::::|h[Traveler's Backpack]|h|r",Type="Container"},["Pattern: Pink Mageweave Shirt"]={SubType="Tailoring",Level=47,id=10317,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10317::::::::40:::::::|h[Pattern: Pink Mageweave Shirt]|h|r",Type="Recipe"},["Quinn's Potion"]={SubType="Quest",Level=1,id=3165,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134720,EquipLoc="",Link="|cffffffff|Hitem:3165::::::::40:::::::|h[Quinn's Potion]|h|r",Type="Quest"},["Doomcaller's Footwraps"]={SubType="Cloth",Level=78,id=21338,StackCount=1,Rarity=4,MinLevel=60,SellPrice=47395,Texture=132559,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:21338::::::::40:::::::|h[Doomcaller's Footwraps]|h|r"},["Deprecated Dwarven Novice's Pants"]={SubType="Cloth",Level=1,id=1398,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Link="|cff9d9d9d|Hitem:1398::::::::40:::::::|h[Deprecated Dwarven Novice's Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Gahz'rilla Scale Armor"]={SubType="Mail",Level=48,id=9469,StackCount=1,Rarity=3,MinLevel=43,SellPrice=14634,Texture=132628,Link="|cff0070dd|Hitem:9469::::::::40:::::::|h[Gahz'rilla Scale Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Imperial Leather Spaulders"]={SubType="Leather",Level=44,id=4737,StackCount=1,Rarity=2,MinLevel=39,SellPrice=5743,Texture=135036,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:4737::::::::40:::::::|h[Imperial Leather Spaulders]|h|r"},["Shadowcraft Cap"]={SubType="Leather",Level=62,id=16707,StackCount=1,Rarity=3,MinLevel=57,SellPrice=19962,Texture=133143,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16707::::::::40:::::::|h[Shadowcraft Cap]|h|r",Type="Armor"},["Grimgore Noose"]={SubType="Cloth",Level=59,id=13403,StackCount=1,Rarity=3,MinLevel=54,SellPrice=9401,Texture=132491,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13403::::::::40:::::::|h[Grimgore Noose]|h|r"},["Acumen Robes"]={SubType="Cloth",Level=47,id=17775,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7841,Texture=132690,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:17775::::::::40:::::::|h[Acumen Robes]|h|r",Type="Armor"},["Tanned Leather Bracers"]={SubType="Leather",Level=17,id=1844,StackCount=1,Rarity=1,MinLevel=12,SellPrice=145,Texture=132607,Type="Armor",Link="|cffffffff|Hitem:1844::::::::40:::::::|h[Tanned Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Spirit of the Faerie Dragon"]={SubType="One-Handed Maces",Level=51,id=9686,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25914,Texture=133060,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:9686::::::::40:::::::|h[Spirit of the Faerie Dragon]|h|r"},["Dog Training Gloves"]={SubType="Leather",Level=34,id=7756,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1606,Texture=132941,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7756::::::::40:::::::|h[Dog Training Gloves]|h|r"},["Symbol of Kings"]={SubType="Reagent",Level=60,id=21177,StackCount=100,Rarity=1,MinLevel=0,SellPrice=37,Texture=134471,Link="|cffffffff|Hitem:21177::::::::40:::::::|h[Symbol of Kings]|h|r",EquipLoc="",Type="Reagent"},["Fetish of Chitinous Spikes"]={SubType="Miscellaneous",Level=73,id=21488,StackCount=1,Rarity=3,MinLevel=60,SellPrice=67812,Texture=133571,Link="|cff0070dd|Hitem:21488::::::::40:::::::|h[Fetish of Chitinous Spikes]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Monster - Shield, Small Wooden Damaged"]={SubType="Shields",Level=1,id=2051,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",Link="|cff9d9d9d|Hitem:2051::::::::40:::::::|h[Monster - Shield, Small Wooden Damaged]|h|r",EquipLoc="INVTYPE_SHIELD"},["Monster - Sword, Long Silver - Green Pommel - High Black Glow"]={SubType="One-Handed Swords",Level=1,id=18985,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,Type="Weapon",Link="|cff9d9d9d|Hitem:18985::::::::40:::::::|h[Monster - Sword, Long Silver - Green Pommel - High Black Glow]|h|r",EquipLoc="INVTYPE_WEAPON"},["Wild Leather Boots"]={SubType="Leather",Level=49,id=8213,StackCount=1,Rarity=2,MinLevel=44,SellPrice=8150,Texture=132541,Link="|cff1eff00|Hitem:8213::::::::40:::::::|h[Wild Leather Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Brood Mother Carapace"]={SubType="Leather",Level=10,id=3000,StackCount=1,Rarity=2,MinLevel=5,SellPrice=119,Texture=132724,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:3000::::::::40:::::::|h[Brood Mother Carapace]|h|r"},["Plagueheart Circlet"]={SubType="Cloth",Level=88,id=22506,StackCount=1,Rarity=4,MinLevel=60,SellPrice=78676,Texture=132767,Link="|cffa335ee|Hitem:22506::::::::40:::::::|h[Plagueheart Circlet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Tapered Greatsword"]={SubType="Two-Handed Swords",Level=58,id=13817,StackCount=1,Rarity=0,MinLevel=53,SellPrice=18796,Texture=135349,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13817::::::::40:::::::|h[Tapered Greatsword]|h|r"},["Monster - Shield, Round A01/Buckler Damaged A02Black"]={SubType="Shields",Level=1,id=19763,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Link="|cff9d9d9d|Hitem:19763::::::::40:::::::|h[Monster - Shield, Round A01/Buckler Damaged A02Black]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Truesilver Breastplate"]={SubType="Plate",Level=49,id=7939,StackCount=1,Rarity=3,MinLevel=44,SellPrice=10899,Texture=132739,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:7939::::::::40:::::::|h[Truesilver Breastplate]|h|r",Type="Armor"},["Elders' Square Postbox Key"]={SubType="Key",Level=1,id=13305,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:13305::::::::40:::::::|h[Elders' Square Postbox Key]|h|r"},["Bloodwoven Mask"]={SubType="Cloth",Level=48,id=14263,StackCount=1,Rarity=2,MinLevel=43,SellPrice=5987,Texture=133694,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14263::::::::40:::::::|h[Bloodwoven Mask]|h|r"},["Phalanx Spaulders"]={SubType="Mail",Level=33,id=7424,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2709,Texture=135057,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7424::::::::40:::::::|h[Phalanx Spaulders]|h|r",Type="Armor"},["Cracked Buckler"]={SubType="Shields",Level=6,id=2212,StackCount=1,Rarity=0,MinLevel=1,SellPrice=16,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:2212::::::::40:::::::|h[Cracked Buckler]|h|r",Type="Armor"},["Fragments of Rok'Alim"]={SubType="Quest",Level=1,id=5844,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135239,EquipLoc="",Link="|cffffffff|Hitem:5844::::::::40:::::::|h[Fragments of Rok'Alim]|h|r",Type="Quest"},["Deprecated Crusader's Mantle"]={SubType="Mail",Level=15,id=3159,StackCount=1,Rarity=0,MinLevel=0,SellPrice=132,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3159::::::::40:::::::|h[Deprecated Crusader's Mantle]|h|r"},["Monster - Dagger, Curvey Silver"]={SubType="Daggers",Level=1,id=10616,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135637,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:10616::::::::40:::::::|h[Monster - Dagger, Curvey Silver]|h|r",Type="Weapon"},["First Mate Hat"]={SubType="Cloth",Level=40,id=2955,StackCount=1,Rarity=2,MinLevel=35,SellPrice=3449,Texture=133132,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:2955::::::::40:::::::|h[First Mate Hat]|h|r"},["Schematic: Gnomish Cloaking Device"]={SubType="Engineering",Level=40,id=7742,StackCount=1,Rarity=1,MinLevel=0,SellPrice=600,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:7742::::::::40:::::::|h[Schematic: Gnomish Cloaking Device]|h|r",Type="Recipe"},["Battle Knife"]={SubType="Daggers",Level=26,id=15241,StackCount=1,Rarity=2,MinLevel=21,SellPrice=3012,Texture=135637,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15241::::::::40:::::::|h[Battle Knife]|h|r",Type="Weapon"},["Humbert's Helm"]={SubType="Leather",Level=30,id=4724,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1763,Texture=133122,Link="|cff1eff00|Hitem:4724::::::::40:::::::|h[Humbert's Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Saltstone Gauntlets"]={SubType="Plate",Level=40,id=14897,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2286,Texture=132956,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14897::::::::40:::::::|h[Saltstone Gauntlets]|h|r"},["Deprecated Light Soldier Boots"]={SubType="Mail",Level=10,id=1174,StackCount=1,Rarity=1,MinLevel=0,SellPrice=65,Texture=132535,Type="Armor",Link="|cffffffff|Hitem:1174::::::::40:::::::|h[Deprecated Light Soldier Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Dull Heater Shield"]={SubType="Shields",Level=10,id=1201,StackCount=1,Rarity=1,MinLevel=5,SellPrice=94,Texture=134950,Link="|cffffffff|Hitem:1201::::::::40:::::::|h[Dull Heater Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Pattern: Red Dragonscale Breastplate"]={SubType="Leatherworking",Level=61,id=15730,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3000,Texture=134939,EquipLoc="",Link="|cff0070dd|Hitem:15730::::::::40:::::::|h[Pattern: Red Dragonscale Breastplate]|h|r",Type="Recipe"},["Mo'grosh Toothpick"]={SubType="Two-Handed Swords",Level=18,id=2822,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1402,Texture=135355,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:2822::::::::40:::::::|h[Mo'grosh Toothpick]|h|r",Type="Weapon"},["Plans: Mithril Shield Spike"]={SubType="Blacksmithing",Level=43,id=7976,StackCount=1,Rarity=3,MinLevel=0,SellPrice=2000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:7976::::::::40:::::::|h[Plans: Mithril Shield Spike]|h|r"},["Gnomish Water Sinking Device"]={SubType="Plate",Level=49,id=9646,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6791,Texture=132588,Link="|cff1eff00|Hitem:9646::::::::40:::::::|h[Gnomish Water Sinking Device]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Bloodforged Sabatons"]={SubType="Plate",Level=47,id=14951,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5902,Texture=132536,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14951::::::::40:::::::|h[Bloodforged Sabatons]|h|r"},["Harness: Blue Ram"]={SubType="Junk",Level=40,id=5875,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132248,EquipLoc="",Link="|cffffffff|Hitem:5875::::::::40:::::::|h[Harness: Blue Ram]|h|r",Type="Miscellaneous"},["Gold-flecked Gloves"]={SubType="Cloth",Level=22,id=5195,StackCount=1,Rarity=2,MinLevel=17,SellPrice=364,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:5195::::::::40:::::::|h[Gold-flecked Gloves]|h|r"},["Test Random Chest"]={SubType="Cloth",Level=1,id=17343,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132633,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:17343::::::::40:::::::|h[Test Random Chest]|h|r",Type="Armor"},["Goggles of Gem Hunting"]={SubType="Quest",Level=1,id=4491,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133149,Type="Quest",Link="|cffffffff|Hitem:4491::::::::40:::::::|h[Goggles of Gem Hunting]|h|r",EquipLoc="INVTYPE_HEAD"},["Thazz'ril's Pick"]={SubType="Quest",Level=1,id=16332,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134707,EquipLoc="",Link="|cffffffff|Hitem:16332::::::::40:::::::|h[Thazz'ril's Pick]|h|r",Type="Quest"},["Silixiz's Tower Key"]={SubType="Key",Level=1,id=8072,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134241,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:8072::::::::40:::::::|h[Silixiz's Tower Key]|h|r"},["Emerald Dreamcatcher"]={SubType="Consumable",Level=1,id=8048,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134430,Link="|cffffffff|Hitem:8048::::::::40:::::::|h[Emerald Dreamcatcher]|h|r",EquipLoc="",Type="Consumable"},["Elixir of Water Breathing"]={SubType="Consumable",Level=18,id=5996,StackCount=5,Rarity=1,MinLevel=8,SellPrice=95,Texture=134797,Link="|cffffffff|Hitem:5996::::::::40:::::::|h[Elixir of Water Breathing]|h|r",EquipLoc="",Type="Consumable"},["Fused Wiring"]={SubType="Parts",Level=26,id=7191,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134065,EquipLoc="",Link="|cffffffff|Hitem:7191::::::::40:::::::|h[Fused Wiring]|h|r",Type="Trade Goods"},["Redhorn Well Water"]={SubType="Quest",Level=1,id=4748,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133748,EquipLoc="",Link="|cffffffff|Hitem:4748::::::::40:::::::|h[Redhorn Well Water]|h|r",Type="Quest"},["Pattern: Earthen Leather Shoulders"]={SubType="Leatherworking",Level=27,id=7362,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:7362::::::::40:::::::|h[Pattern: Earthen Leather Shoulders]|h|r",Type="Recipe"},["Darkstalker Boots"]={SubType="Leather",Level=24,id=5821,StackCount=1,Rarity=2,MinLevel=0,SellPrice=900,Texture=132541,Link="|cff1eff00|Hitem:5821::::::::40:::::::|h[Darkstalker Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Skilled Fighting Blade"]={SubType="Daggers",Level=60,id=12062,StackCount=1,Rarity=2,MinLevel=0,SellPrice=40365,Texture=135322,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:12062::::::::40:::::::|h[Skilled Fighting Blade]|h|r"},["90 Epic Rogue Bow"]={SubType="Bows",Level=90,id=20278,StackCount=1,Rarity=4,MinLevel=60,SellPrice=204791,Texture=135492,Link="|cffa335ee|Hitem:20278::::::::40:::::::|h[90 Epic Rogue Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Ancestral Woollies"]={SubType="Cloth",Level=13,id=3291,StackCount=1,Rarity=2,MinLevel=8,SellPrice=202,Texture=134706,Link="|cff1eff00|Hitem:3291::::::::40:::::::|h[Ancestral Woollies]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Champion's Plate Headguard"]={SubType="Plate",Level=63,id=16514,StackCount=1,Rarity=3,MinLevel=58,SellPrice=9024,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16514::::::::40:::::::|h[Champion's Plate Headguard]|h|r",Type="Armor"},["Small Silk Pack"]={SubType="Bag",Level=25,id=4245,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2000,Texture=133628,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:4245::::::::40:::::::|h[Small Silk Pack]|h|r",Type="Container"},["Gnomish Rocket Boots"]={SubType="Cloth",Level=45,id=10724,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4697,Texture=132536,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10724::::::::40:::::::|h[Gnomish Rocket Boots]|h|r",Type="Armor"},["Thick Cloth Shoes"]={SubType="Cloth",Level=22,id=202,StackCount=1,Rarity=1,MinLevel=17,SellPrice=342,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:202::::::::40:::::::|h[Thick Cloth Shoes]|h|r"},["Wand of Biting Cold"]={SubType="Wands",Level=63,id=19108,StackCount=1,Rarity=3,MinLevel=0,SellPrice=44327,Texture=135463,Link="|cff0070dd|Hitem:19108::::::::40:::::::|h[Wand of Biting Cold]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Dry Scorpid Eye"]={SubType="Junk",Level=1,id=4872,StackCount=5,Rarity=0,MinLevel=0,SellPrice=95,Texture=133884,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:4872::::::::40:::::::|h[Dry Scorpid Eye]|h|r",EquipLoc=""},["Lesser Belt of the Spire"]={SubType="Cloth",Level=22,id=1299,StackCount=1,Rarity=2,MinLevel=17,SellPrice=390,Texture=132518,Link="|cff1eff00|Hitem:1299::::::::40:::::::|h[Lesser Belt of the Spire]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Wiley's Note"]={SubType="Quest",Level=1,id=1327,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1327::::::::40:::::::|h[Wiley's Note]|h|r"},["Exalted Epaulets"]={SubType="Plate",Level=62,id=14981,StackCount=1,Rarity=2,MinLevel=57,SellPrice=13764,Texture=135044,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14981::::::::40:::::::|h[Exalted Epaulets]|h|r"},["Heartstriker"]={SubType="Bows",Level=75,id=19350,StackCount=1,Rarity=4,MinLevel=60,SellPrice=104609,Texture=135497,Link="|cffa335ee|Hitem:19350::::::::40:::::::|h[Heartstriker]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Robe of Undead Cleansing"]={SubType="Cloth",Level=63,id=23085,StackCount=1,Rarity=3,MinLevel=58,SellPrice=22722,Texture=132645,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:23085::::::::40:::::::|h[Robe of Undead Cleansing]|h|r"},["Ivycloth Boots"]={SubType="Cloth",Level=25,id=9792,StackCount=1,Rarity=2,MinLevel=20,SellPrice=823,Texture=132539,Link="|cff1eff00|Hitem:9792::::::::40:::::::|h[Ivycloth Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Tablet of Restoration II"]={SubType="Book",Level=8,id=1038,StackCount=1,Rarity=1,MinLevel=8,SellPrice=87,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:1038::::::::40:::::::|h[Tablet of Restoration II]|h|r",Type="Recipe"},["Jaina's Autograph"]={SubType="Quest",Level=0,id=18642,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134329,Type="Quest",Link="|cffffffff|Hitem:18642::::::::40:::::::|h[Jaina's Autograph]|h|r",EquipLoc=""},["Battle Harness"]={SubType="Leather",Level=37,id=6526,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2497,Texture=132719,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:6526::::::::40:::::::|h[Battle Harness]|h|r"},["Fine Longsword"]={SubType="One-Handed Swords",Level=52,id=13816,StackCount=1,Rarity=0,MinLevel=47,SellPrice=10561,Texture=135328,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:13816::::::::40:::::::|h[Fine Longsword]|h|r"},["Chromatic Gauntlets"]={SubType="Mail",Level=70,id=19157,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31943,Texture=132956,Link="|cffa335ee|Hitem:19157::::::::40:::::::|h[Chromatic Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Scorpid Scale"]={SubType="Junk",Level=45,id=8154,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=134304,Link="|cffffffff|Hitem:8154::::::::40:::::::|h[Scorpid Scale]|h|r",EquipLoc="",Type="Miscellaneous"},["Bronze Tube"]={SubType="Parts",Level=21,id=4371,StackCount=10,Rarity=1,MinLevel=0,SellPrice=200,Texture=133024,EquipLoc="",Link="|cffffffff|Hitem:4371::::::::40:::::::|h[Bronze Tube]|h|r",Type="Trade Goods"},["Rageclaw Cloak"]={SubType="Cloth",Level=45,id=15382,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5043,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15382::::::::40:::::::|h[Rageclaw Cloak]|h|r",Type="Armor"},["Gnomish Harm Prevention Belt"]={SubType="Leather",Level=43,id=10721,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3317,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10721::::::::40:::::::|h[Gnomish Harm Prevention Belt]|h|r",Type="Armor"},["Arachnidian Legguards"]={SubType="Cloth",Level=55,id=14295,StackCount=1,Rarity=2,MinLevel=50,SellPrice=13236,Texture=134594,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14295::::::::40:::::::|h[Arachnidian Legguards]|h|r"},["Prowler Teeth"]={SubType="Junk",Level=1,id=777,StackCount=10,Rarity=0,MinLevel=0,SellPrice=21,Texture=134298,Link="|cff9d9d9d|Hitem:777::::::::40:::::::|h[Prowler Teeth]|h|r",EquipLoc="",Type="Miscellaneous"},["Tombstone Breastplate"]={SubType="Leather",Level=62,id=13944,StackCount=1,Rarity=3,MinLevel=57,SellPrice=26808,Texture=132639,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:13944::::::::40:::::::|h[Tombstone Breastplate]|h|r"},["Belgrom's Hammer"]={SubType="One-Handed Maces",Level=55,id=11120,StackCount=1,Rarity=2,MinLevel=0,SellPrice=30144,Texture=133047,Type="Weapon",Link="|cff1eff00|Hitem:11120::::::::40:::::::|h[Belgrom's Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Goblin Bomb Dispenser"]={SubType="Devices",Level=46,id=10587,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=133000,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:10587::::::::40:::::::|h[Goblin Bomb Dispenser]|h|r",Type="Trade Goods"},["Libram: Holy Light VI"]={SubType="Book",Level=38,id=4165,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133740,Type="Recipe",Link="|cffffffff|Hitem:4165::::::::40:::::::|h[Libram: Holy Light VI]|h|r",EquipLoc=""},["Plans: Dawn's Edge"]={SubType="Blacksmithing",Level=55,id=12821,StackCount=1,Rarity=3,MinLevel=0,SellPrice=4000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12821::::::::40:::::::|h[Plans: Dawn's Edge]|h|r"},["Teronis' Journal"]={SubType="Quest",Level=1,id=5505,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,Link="|cffffffff|Hitem:5505::::::::40:::::::|h[Teronis' Journal]|h|r",EquipLoc="",Type="Quest"},["Boar Intestines"]={SubType="Trade Goods",Level=10,id=3172,StackCount=10,Rarity=1,MinLevel=0,SellPrice=18,Texture=134342,Link="|cffffffff|Hitem:3172::::::::40:::::::|h[Boar Intestines]|h|r",EquipLoc="",Type="Trade Goods"},["8% Test Speed Boots"]={SubType="Miscellaneous",Level=1,id=18162,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132538,Type="Armor",Link="|cffffffff|Hitem:18162::::::::40:::::::|h[8% Test Speed Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Pillager's Pauldrons"]={SubType="Mail",Level=36,id=15562,StackCount=1,Rarity=2,MinLevel=31,SellPrice=3558,Texture=135046,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15562::::::::40:::::::|h[Pillager's Pauldrons]|h|r",Type="Armor"},["Trickster's Handwraps"]={SubType="Leather",Level=38,id=15365,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2415,Texture=132949,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15365::::::::40:::::::|h[Trickster's Handwraps]|h|r",Type="Armor"},["Warlord's Satin Cowl"]={SubType="Cloth",Level=74,id=17623,StackCount=1,Rarity=4,MinLevel=60,SellPrice=20510,Texture=133076,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:17623::::::::40:::::::|h[Warlord's Satin Cowl]|h|r",Type="Armor"},["Rabine's Letter"]={SubType="Quest",Level=1,id=17355,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,EquipLoc="",Link="|cffffffff|Hitem:17355::::::::40:::::::|h[Rabine's Letter]|h|r",Type="Quest"},["Hunter's Boomstick"]={SubType="Guns",Level=14,id=2511,StackCount=1,Rarity=1,MinLevel=9,SellPrice=264,Texture=135613,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:2511::::::::40:::::::|h[Hunter's Boomstick]|h|r"},["Dran's Ripple Delivery"]={SubType="Quest",Level=1,id=8685,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132622,Link="|cffffffff|Hitem:8685::::::::40:::::::|h[Dran's Ripple Delivery]|h|r",EquipLoc="",Type="Quest"},["Expert Goldminer's Helmet"]={SubType="Leather",Level=38,id=9375,StackCount=1,Rarity=3,MinLevel=33,SellPrice=4220,Texture=133120,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:9375::::::::40:::::::|h[Expert Goldminer's Helmet]|h|r"},["5% Test Speed Boots"]={SubType="Miscellaneous",Level=1,id=18161,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132538,Type="Armor",Link="|cffffffff|Hitem:18161::::::::40:::::::|h[5% Test Speed Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Grimoire of Suffering (Rank 3)"]={SubType="Book",Level=48,id=16365,StackCount=1,Rarity=1,MinLevel=48,SellPrice=3500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16365::::::::40:::::::|h[Grimoire of Suffering (Rank 3)]|h|r",Type="Recipe"},["Supreme Shoulders"]={SubType="Leather",Level=63,id=15441,StackCount=1,Rarity=2,MinLevel=58,SellPrice=18595,Texture=135052,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15441::::::::40:::::::|h[Supreme Shoulders]|h|r",Type="Armor"},["Greater Scarab Coffer Key"]={SubType="Key",Level=1,id=21762,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134242,Link="|cffffffff|Hitem:21762::::::::40:::::::|h[Greater Scarab Coffer Key]|h|r",EquipLoc="",Type="Key"},["Ornate Mithril Gloves"]={SubType="Plate",Level=44,id=7927,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2987,Texture=132965,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7927::::::::40:::::::|h[Ornate Mithril Gloves]|h|r",Type="Armor"},["AHNQIRAJ TEST ITEM C MAIL SHOULDERS"]={SubType="Miscellaneous",Level=1,id=21447,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21447::::::::40:::::::|h[AHNQIRAJ TEST ITEM C MAIL SHOULDERS]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Sapphiron's Scale Boots"]={SubType="Plate",Level=58,id=13070,StackCount=1,Rarity=3,MinLevel=53,SellPrice=14087,Texture=132586,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13070::::::::40:::::::|h[Sapphiron's Scale Boots]|h|r"},["Gypsy Bands"]={SubType="Leather",Level=12,id=9752,StackCount=1,Rarity=1,MinLevel=7,SellPrice=57,Texture=132611,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:9752::::::::40:::::::|h[Gypsy Bands]|h|r"},["Discarded Knife"]={SubType="Quest",Level=0,id=11462,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135660,Type="Quest",Link="|cffffffff|Hitem:11462::::::::40:::::::|h[Discarded Knife]|h|r",EquipLoc=""},["Razor Gauntlets"]={SubType="Plate",Level=59,id=18326,StackCount=1,Rarity=3,MinLevel=54,SellPrice=9036,Texture=132965,Type="Armor",Link="|cff0070dd|Hitem:18326::::::::40:::::::|h[Razor Gauntlets]|h|r",EquipLoc="INVTYPE_HAND"},["Hydralick Armor"]={SubType="Plate",Level=54,id=13067,StackCount=1,Rarity=3,MinLevel=49,SellPrice=14341,Texture=132741,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:13067::::::::40:::::::|h[Hydralick Armor]|h|r"},["Krastinov's Bag of Horrors UNUSED"]={SubType="Quest",Level=1,id=13543,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133652,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13543::::::::40:::::::|h[Krastinov's Bag of Horrors UNUSED]|h|r"},["White Wedding Dress"]={SubType="Cloth",Level=35,id=10040,StackCount=1,Rarity=1,MinLevel=30,SellPrice=1767,Texture=132645,EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:10040::::::::40:::::::|h[White Wedding Dress]|h|r",Type="Armor"},["Stonesplinter Mace"]={SubType="One-Handed Maces",Level=15,id=2267,StackCount=1,Rarity=2,MinLevel=10,SellPrice=711,Texture=133487,Type="Weapon",Link="|cff1eff00|Hitem:2267::::::::40:::::::|h[Stonesplinter Mace]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Screecher Belt"]={SubType="Leather",Level=27,id=16987,StackCount=1,Rarity=2,MinLevel=0,SellPrice=884,Texture=132494,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16987::::::::40:::::::|h[Screecher Belt]|h|r",Type="Armor"},["Elunarian Cuffs"]={SubType="Cloth",Level=58,id=14457,StackCount=1,Rarity=2,MinLevel=53,SellPrice=7575,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14457::::::::40:::::::|h[Elunarian Cuffs]|h|r"},["Grimoire of Seduction"]={SubType="Book",Level=26,id=16379,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16379::::::::40:::::::|h[Grimoire of Seduction]|h|r",Type="Recipe"},["Deprecated Dwarven Novice's Robe"]={SubType="Cloth",Level=1,id=97,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=132662,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff9d9d9d|Hitem:97::::::::40:::::::|h[Deprecated Dwarven Novice's Robe]|h|r"},["Scorpashi Skullcap"]={SubType="Leather",Level=49,id=14658,StackCount=1,Rarity=2,MinLevel=44,SellPrice=7884,Texture=133118,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14658::::::::40:::::::|h[Scorpashi Skullcap]|h|r"},["Warstrike Cape"]={SubType="Cloth",Level=57,id=14813,StackCount=1,Rarity=2,MinLevel=52,SellPrice=10601,Texture=133753,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14813::::::::40:::::::|h[Warstrike Cape]|h|r"},["Ring of the Shadow"]={SubType="Miscellaneous",Level=25,id=1462,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1306,Texture=133357,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:1462::::::::40:::::::|h[Ring of the Shadow]|h|r",Type="Armor"},["Scythe of the Unseen Path"]={SubType="One-Handed Axes",Level=70,id=21401,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132406,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:21401::::::::40:::::::|h[Scythe of the Unseen Path]|h|r"},["[PH] Mail Chestguard of the Rising Dawn"]={SubType="Mail",Level=100,id=13770,StackCount=1,Rarity=1,MinLevel=100,SellPrice=110097,Texture=132628,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13770::::::::40:::::::|h[[PH] Mail Chestguard of the Rising Dawn]|h|r"},["Zorbin's Water Resistant Hat"]={SubType="Leather",Level=48,id=19039,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7403,Texture=133153,Link="|cff1eff00|Hitem:19039::::::::40:::::::|h[Zorbin's Water Resistant Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Senior Designer's Pantaloons"]={SubType="Cloth",Level=55,id=11841,StackCount=1,Rarity=3,MinLevel=50,SellPrice=15032,Texture=134589,Type="Armor",Link="|cff0070dd|Hitem:11841::::::::40:::::::|h[Senior Designer's Pantaloons]|h|r",EquipLoc="INVTYPE_LEGS"},["Pattern: Mooncloth Vest"]={SubType="Tailoring",Level=60,id=14501,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:14501::::::::40:::::::|h[Pattern: Mooncloth Vest]|h|r"},["Recipe: Elixir of Detect Lesser Invisibility"]={SubType="Alchemy",Level=39,id=3832,StackCount=1,Rarity=2,MinLevel=0,SellPrice=550,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:3832::::::::40:::::::|h[Recipe: Elixir of Detect Lesser Invisibility]|h|r",EquipLoc=""},["Plans: Mithril Scale Shoulders"]={SubType="Blacksmithing",Level=47,id=7991,StackCount=1,Rarity=3,MinLevel=0,SellPrice=2500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:7991::::::::40:::::::|h[Plans: Mithril Scale Shoulders]|h|r"},["Flame of the Undercity"]={SubType="Quest",Level=1,id=23181,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135819,Link="|cffffffff|Hitem:23181::::::::40:::::::|h[Flame of the Undercity]|h|r",EquipLoc="",Type="Quest"},["Libram: Holy Strike V"]={SubType="Book",Level=32,id=8919,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=133740,Link="|cffffffff|Hitem:8919::::::::40:::::::|h[Libram: Holy Strike V]|h|r",EquipLoc="",Type="Recipe"},["Solomon's Plea to Darkshire"]={SubType="Quest",Level=1,id=1409,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133460,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1409::::::::40:::::::|h[Solomon's Plea to Darkshire]|h|r"},["Sagebrush Spaulders"]={SubType="Mail",Level=47,id=17769,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8673,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:17769::::::::40:::::::|h[Sagebrush Spaulders]|h|r",Type="Armor"},["Animist's Boots"]={SubType="Leather",Level=71,id=19892,StackCount=1,Rarity=3,MinLevel=60,SellPrice=31925,Texture=132556,Link="|cff0070dd|Hitem:19892::::::::40:::::::|h[Animist's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Tempestria's Frozen Necklace"]={SubType="Miscellaneous",Level=61,id=18678,StackCount=1,Rarity=3,MinLevel=56,SellPrice=26635,Texture=133290,Type="Armor",Link="|cff0070dd|Hitem:18678::::::::40:::::::|h[Tempestria's Frozen Necklace]|h|r",EquipLoc="INVTYPE_NECK"},["Plans: Helm of the Great Chief"]={SubType="Blacksmithing",Level=61,id=12716,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12716::::::::40:::::::|h[Plans: Helm of the Great Chief]|h|r"},["Reins of the Spotted Nightsaber"]={SubType="Junk",Level=40,id=8628,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132225,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:8628::::::::40:::::::|h[Reins of the Spotted Nightsaber]|h|r"},["Champion's Satin Cowl"]={SubType="Cloth",Level=63,id=17610,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8352,Texture=133119,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:17610::::::::40:::::::|h[Champion's Satin Cowl]|h|r",Type="Armor"},["Battered Leather Pants"]={SubType="Leather",Level=10,id=2372,StackCount=1,Rarity=1,MinLevel=5,SellPrice=68,Texture=134706,Link="|cffffffff|Hitem:2372::::::::40:::::::|h[Battered Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Important Blackrock Documents"]={SubType="Quest",Level=1,id=12562,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12562::::::::40:::::::|h[Important Blackrock Documents]|h|r"},["90 Green Warrior Waistband"]={SubType="Plate",Level=90,id=20252,StackCount=1,Rarity=2,MinLevel=60,SellPrice=36933,Texture=132498,Link="|cff1eff00|Hitem:20252::::::::40:::::::|h[90 Green Warrior Waistband]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Recruit's Shirt"]={SubType="Miscellaneous",Level=1,id=6120,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135009,Link="|cffffffff|Hitem:6120::::::::40:::::::|h[Recruit's Shirt]|h|r",EquipLoc="INVTYPE_BODY",Type="Armor"},["Bloodletter Scalpel"]={SubType="One-Handed Swords",Level=46,id=9511,StackCount=1,Rarity=3,MinLevel=41,SellPrice=21060,Texture=135350,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9511::::::::40:::::::|h[Bloodletter Scalpel]|h|r"},["Avenger's Crown"]={SubType="Plate",Level=81,id=21387,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58153,Texture=133174,Link="|cffa335ee|Hitem:21387::::::::40:::::::|h[Avenger's Crown]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Silksand Circlet"]={SubType="Cloth",Level=42,id=14421,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3945,Texture=132500,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14421::::::::40:::::::|h[Silksand Circlet]|h|r"},["Empty Festive Mug"]={SubType="Junk",Level=1,id=21173,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132791,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21173::::::::40:::::::|h[Empty Festive Mug]|h|r"},["Ruined Wolf Pelt"]={SubType="Junk",Level=1,id=2887,StackCount=5,Rarity=1,MinLevel=0,SellPrice=5,Texture=134369,Link="|cffffffff|Hitem:2887::::::::40:::::::|h[Ruined Wolf Pelt]|h|r",EquipLoc="",Type="Miscellaneous"},["Blunt Claymore"]={SubType="Two-Handed Swords",Level=17,id=1811,StackCount=1,Rarity=0,MinLevel=12,SellPrice=451,Texture=135276,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1811::::::::40:::::::|h[Blunt Claymore]|h|r",Type="Weapon"},["Ravenwood Bow"]={SubType="Bows",Level=32,id=4474,StackCount=1,Rarity=2,MinLevel=27,SellPrice=4207,Texture=135498,Type="Weapon",Link="|cff1eff00|Hitem:4474::::::::40:::::::|h[Ravenwood Bow]|h|r",EquipLoc="INVTYPE_RANGED"},["Dawnbringer Shoulders"]={SubType="Plate",Level=58,id=12625,StackCount=1,Rarity=3,MinLevel=53,SellPrice=13080,Texture=135051,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:12625::::::::40:::::::|h[Dawnbringer Shoulders]|h|r"},["Cutthroat's Hat"]={SubType="Leather",Level=37,id=15134,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3295,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15134::::::::40:::::::|h[Cutthroat's Hat]|h|r",Type="Armor"},["Schematic: Discombobulator Ray"]={SubType="Engineering",Level=32,id=4413,StackCount=1,Rarity=2,MinLevel=0,SellPrice=450,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:4413::::::::40:::::::|h[Schematic: Discombobulator Ray]|h|r",EquipLoc=""},["Level 65 Test Gear Leather - Rogue"]={SubType="Junk",Level=1,id=13679,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13679::::::::40:::::::|h[Level 65 Test Gear Leather - Rogue]|h|r"},["Bound Harness"]={SubType="Leather",Level=11,id=4968,StackCount=1,Rarity=1,MinLevel=0,SellPrice=90,Texture=132719,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:4968::::::::40:::::::|h[Bound Harness]|h|r"},["Riverpaw Leather Vest"]={SubType="Leather",Level=13,id=821,StackCount=1,Rarity=2,MinLevel=8,SellPrice=249,Texture=135011,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:821::::::::40:::::::|h[Riverpaw Leather Vest]|h|r"},["Untapped Dowsing Widget"]={SubType="Quest",Level=1,id=8584,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134867,Link="|cffffffff|Hitem:8584::::::::40:::::::|h[Untapped Dowsing Widget]|h|r",EquipLoc="",Type="Quest"},["DEBUG Samophlange Manual Cover"]={SubType="Quest",Level=1,id=11613,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133735,Type="Quest",Link="|cffffffff|Hitem:11613::::::::40:::::::|h[DEBUG Samophlange Manual Cover]|h|r",EquipLoc=""},["[PH] Leather Bracers of the Shining Dawn"]={SubType="Leather",Level=100,id=13748,StackCount=1,Rarity=1,MinLevel=100,SellPrice=45558,Texture=132603,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:13748::::::::40:::::::|h[[PH] Leather Bracers of the Shining Dawn]|h|r"},["Soul Ashes of the Banished"]={SubType="Quest",Level=1,id=22229,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133850,Link="|cffffffff|Hitem:22229::::::::40:::::::|h[Soul Ashes of the Banished]|h|r",EquipLoc="",Type="Quest"},["Sacred Candle"]={SubType="Reagent",Level=60,id=17029,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=133751,EquipLoc="",Link="|cffffffff|Hitem:17029::::::::40:::::::|h[Sacred Candle]|h|r",Type="Reagent"},["Sparkleshell Shoulder Pads"]={SubType="Mail",Level=41,id=15583,StackCount=1,Rarity=2,MinLevel=36,SellPrice=5344,Texture=135041,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15583::::::::40:::::::|h[Sparkleshell Shoulder Pads]|h|r",Type="Armor"},["Thunderhorn Cleansing Totem"]={SubType="Quest",Level=1,id=5415,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135139,Link="|cffffffff|Hitem:5415::::::::40:::::::|h[Thunderhorn Cleansing Totem]|h|r",EquipLoc="",Type="Quest"},["Daggerspine Scale"]={SubType="Quest",Level=1,id=3509,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134303,EquipLoc="",Link="|cffffffff|Hitem:3509::::::::40:::::::|h[Daggerspine Scale]|h|r",Type="Quest"},["Antiquated Cloak"]={SubType="Cloth",Level=23,id=4799,StackCount=1,Rarity=2,MinLevel=18,SellPrice=608,Texture=133754,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:4799::::::::40:::::::|h[Antiquated Cloak]|h|r"},["Tome of Conjure Water III"]={SubType="Book",Level=20,id=5650,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:5650::::::::40:::::::|h[Tome of Conjure Water III]|h|r",Type="Recipe"},["J'eevee's Jar"]={SubType="Quest",Level=1,id=18663,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134514,Type="Quest",Link="|cffffffff|Hitem:18663::::::::40:::::::|h[J'eevee's Jar]|h|r",EquipLoc=""},["Dark Parchment"]={SubType="Quest",Level=1,id=6490,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:6490::::::::40:::::::|h[Dark Parchment]|h|r",EquipLoc="",Type="Quest"},["Tome of Mana Shield"]={SubType="Book",Level=20,id=8808,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133739,Link="|cffffffff|Hitem:8808::::::::40:::::::|h[Tome of Mana Shield]|h|r",EquipLoc="",Type="Recipe"},["Azuredeep Shards"]={SubType="Junk",Level=36,id=1706,StackCount=10,Rarity=0,MinLevel=0,SellPrice=86,Texture=134133,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:1706::::::::40:::::::|h[Azuredeep Shards]|h|r"},["Warmonger's Gauntlets"]={SubType="Mail",Level=47,id=9960,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5623,Texture=132960,Link="|cff1eff00|Hitem:9960::::::::40:::::::|h[Warmonger's Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Mallet of Zul'Farrak"]={SubType="Quest",Level=1,id=9240,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133056,Link="|cff1eff00|Hitem:9240::::::::40:::::::|h[Mallet of Zul'Farrak]|h|r",EquipLoc="",Type="Quest"},["Bolt of Woolen Cloth"]={SubType="Trade Goods",Level=25,id=2997,StackCount=10,Rarity=1,MinLevel=0,SellPrice=100,Texture=132913,Link="|cffffffff|Hitem:2997::::::::40:::::::|h[Bolt of Woolen Cloth]|h|r",EquipLoc="",Type="Trade Goods"},["Unused Tabard of Chow"]={SubType="Miscellaneous",Level=1,id=3557,StackCount=1,Rarity=1,MinLevel=1,SellPrice=18,Texture=132483,EquipLoc="INVTYPE_TABARD",Link="|cffffffff|Hitem:3557::::::::40:::::::|h[Unused Tabard of Chow]|h|r",Type="Armor"},["Brocade Shoulderpads"]={SubType="Cloth",Level=22,id=1777,StackCount=1,Rarity=0,MinLevel=17,SellPrice=222,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:1777::::::::40:::::::|h[Brocade Shoulderpads]|h|r",Type="Armor"},["Huntsman's Harpoon"]={SubType="Polearms",Level=61,id=22314,StackCount=1,Rarity=3,MinLevel=56,SellPrice=64398,Texture=135129,Link="|cff0070dd|Hitem:22314::::::::40:::::::|h[Huntsman's Harpoon]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Tanglewood Staff"]={SubType="Staves",Level=46,id=1720,StackCount=1,Rarity=3,MinLevel=41,SellPrice=26209,Texture=135162,Link="|cff0070dd|Hitem:1720::::::::40:::::::|h[Tanglewood Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Polar Gloves"]={SubType="Leather",Level=80,id=22662,StackCount=1,Rarity=4,MinLevel=60,SellPrice=44851,Texture=132940,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:22662::::::::40:::::::|h[Polar Gloves]|h|r"},["Gryshka's Letter"]={SubType="Quest",Level=1,id=16307,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134329,EquipLoc="",Link="|cffffffff|Hitem:16307::::::::40:::::::|h[Gryshka's Letter]|h|r",Type="Quest"},["Plans: Jade Serpentblade"]={SubType="Blacksmithing",Level=35,id=3866,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:3866::::::::40:::::::|h[Plans: Jade Serpentblade]|h|r"},["Venoxis's Venom Sac"]={SubType="Quest",Level=1,id=22216,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134341,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:22216::::::::40:::::::|h[Venoxis's Venom Sac]|h|r"},["Galen's Journal"]={SubType="Quest",Level=1,id=6262,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6262::::::::40:::::::|h[Galen's Journal]|h|r"},["Verdant Sigil"]={SubType="Quest",Level=1,id=9580,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134415,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9580::::::::40:::::::|h[Verdant Sigil]|h|r"},["Shadowhide Battle Axe"]={SubType="Two-Handed Axes",Level=23,id=2175,StackCount=1,Rarity=2,MinLevel=18,SellPrice=2683,Texture=135424,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:2175::::::::40:::::::|h[Shadowhide Battle Axe]|h|r"},["QAEnchant 2H Weapon +25 Agility"]={SubType="Consumable",Level=1,id=18599,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5500,Texture=133434,Type="Consumable",Link="|cffffffff|Hitem:18599::::::::40:::::::|h[QAEnchant 2H Weapon +25 Agility]|h|r",EquipLoc=""},["Turtle Scale"]={SubType="Trade Goods",Level=35,id=8167,StackCount=20,Rarity=1,MinLevel=0,SellPrice=100,Texture=134313,Link="|cffffffff|Hitem:8167::::::::40:::::::|h[Turtle Scale]|h|r",EquipLoc="",Type="Trade Goods"},["Antenna of Invigoration"]={SubType="Wands",Level=68,id=21801,StackCount=1,Rarity=3,MinLevel=60,SellPrice=52726,Texture=135466,Link="|cff0070dd|Hitem:21801::::::::40:::::::|h[Antenna of Invigoration]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Swift Brown Ram"]={SubType="Junk",Level=60,id=18786,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132248,Type="Miscellaneous",Link="|cffa335ee|Hitem:18786::::::::40:::::::|h[Swift Brown Ram]|h|r",EquipLoc=""},["Deadwalker Mantle"]={SubType="Cloth",Level=62,id=14538,StackCount=1,Rarity=3,MinLevel=57,SellPrice=17062,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:14538::::::::40:::::::|h[Deadwalker Mantle]|h|r"},["Charged Gear"]={SubType="Miscellaneous",Level=37,id=9461,StackCount=1,Rarity=3,MinLevel=32,SellPrice=4586,Texture=134063,Link="|cff0070dd|Hitem:9461::::::::40:::::::|h[Charged Gear]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Grimoire of Tainted Blood (Rank 2)"]={SubType="Book",Level=40,id=16385,StackCount=1,Rarity=1,MinLevel=40,SellPrice=2750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16385::::::::40:::::::|h[Grimoire of Tainted Blood (Rank 2)]|h|r",Type="Recipe"},["Marshal's Chain Grips"]={SubType="Mail",Level=71,id=16463,StackCount=1,Rarity=4,MinLevel=60,SellPrice=16644,Texture=132944,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16463::::::::40:::::::|h[Marshal's Chain Grips]|h|r",Type="Armor"},["Ghostshard Talisman"]={SubType="Miscellaneous",Level=35,id=7731,StackCount=1,Rarity=3,MinLevel=30,SellPrice=3482,Texture=133293,EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:7731::::::::40:::::::|h[Ghostshard Talisman]|h|r",Type="Armor"},["Ripped Prospector Belt"]={SubType="Leather",Level=38,id=4982,StackCount=1,Rarity=0,MinLevel=0,SellPrice=961,Texture=132495,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:4982::::::::40:::::::|h[Ripped Prospector Belt]|h|r"},["Amulet of Shadow Shielding"]={SubType="Miscellaneous",Level=77,id=21529,StackCount=1,Rarity=4,MinLevel=60,SellPrice=90788,Texture=133304,Link="|cffa335ee|Hitem:21529::::::::40:::::::|h[Amulet of Shadow Shielding]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["[PH] Object of Affection"]={SubType="Consumable",Level=1,id=21811,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132595,Link="|cffffffff|Hitem:21811::::::::40:::::::|h[[PH] Object of Affection]|h|r",EquipLoc="",Type="Consumable"},["Dusty Mail Boots"]={SubType="Mail",Level=41,id=19509,StackCount=1,Rarity=2,MinLevel=36,SellPrice=2583,Texture=132545,Link="|cff1eff00|Hitem:19509::::::::40:::::::|h[Dusty Mail Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Durability Shield"]={SubType="Shields",Level=1,id=14393,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:14393::::::::40:::::::|h[Durability Shield]|h|r"},["Plans: Ebon Hand"]={SubType="Blacksmithing",Level=70,id=19210,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30000,Texture=134939,Link="|cffffffff|Hitem:19210::::::::40:::::::|h[Plans: Ebon Hand]|h|r",EquipLoc="",Type="Recipe"},["Amulet of Spirits"]={SubType="Quest",Level=1,id=17757,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133277,EquipLoc="",Link="|cffffffff|Hitem:17757::::::::40:::::::|h[Amulet of Spirits]|h|r",Type="Quest"},["Necropile Mantle"]={SubType="Cloth",Level=61,id=14633,StackCount=1,Rarity=3,MinLevel=56,SellPrice=16367,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:14633::::::::40:::::::|h[Necropile Mantle]|h|r"},["Sutarn's Ring"]={SubType="Cloth",Level=37,id=13105,StackCount=1,Rarity=3,MinLevel=32,SellPrice=2147,Texture=132500,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13105::::::::40:::::::|h[Sutarn's Ring]|h|r"},["Cracked Shortbow"]={SubType="Bows",Level=8,id=2773,StackCount=1,Rarity=0,MinLevel=3,SellPrice=39,Texture=135493,EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:2773::::::::40:::::::|h[Cracked Shortbow]|h|r",Type="Weapon"},["Southshore Stout"]={SubType="Consumable",Level=1,id=3703,StackCount=10,Rarity=1,MinLevel=0,SellPrice=36,Texture=132795,EquipLoc="",Link="|cffffffff|Hitem:3703::::::::40:::::::|h[Southshore Stout]|h|r",Type="Consumable"},["Rune of Metamorphosis"]={SubType="Miscellaneous",Level=76,id=19340,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72039,Texture=134419,Link="|cffa335ee|Hitem:19340::::::::40:::::::|h[Rune of Metamorphosis]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Essence of Eranikus"]={SubType="Quest",Level=48,id=10454,StackCount=1,Rarity=2,MinLevel=48,SellPrice=0,Texture=135229,EquipLoc="",Link="|cff1eff00|Hitem:10454::::::::40:::::::|h[Essence of Eranikus]|h|r",Type="Quest"},["Fardel's Head"]={SubType="Quest",Level=1,id=5831,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Link="|cffffffff|Hitem:5831::::::::40:::::::|h[Fardel's Head]|h|r",EquipLoc="",Type="Quest"},["Batwing Mantle"]={SubType="Cloth",Level=32,id=6697,StackCount=1,Rarity=3,MinLevel=27,SellPrice=2041,Texture=135036,Type="Armor",Link="|cff0070dd|Hitem:6697::::::::40:::::::|h[Batwing Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Level 60 Test Gear Plate - Paladin/Warrior 2"]={SubType="Junk",Level=1,id=17836,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17836::::::::40:::::::|h[Level 60 Test Gear Plate - Paladin/Warrior 2]|h|r",Type="Miscellaneous"},["Warlord Goretooth's Command"]={SubType="Quest",Level=1,id=12563,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133473,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12563::::::::40:::::::|h[Warlord Goretooth's Command]|h|r"},["Simple Memorandum"]={SubType="Quest",Level=1,id=9544,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134332,Link="|cffffffff|Hitem:9544::::::::40:::::::|h[Simple Memorandum]|h|r",EquipLoc="",Type="Quest"},["Advisor's Ring"]={SubType="Miscellaneous",Level=63,id=19518,StackCount=1,Rarity=3,MinLevel=58,SellPrice=18750,Texture=133362,Link="|cff0070dd|Hitem:19518::::::::40:::::::|h[Advisor's Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Monster - Item, Bag - White Offhand"]={SubType="Miscellaneous",Level=1,id=12859,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133639,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12859::::::::40:::::::|h[Monster - Item, Bag - White Offhand]|h|r"},["Ryedol's Lucky Pick"]={SubType="Miscellaneous",Level=1,id=4616,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3,Texture=134709,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:4616::::::::40:::::::|h[Ryedol's Lucky Pick]|h|r",Type="Weapon"},["Amber Idol"]={SubType="Quest",Level=61,id=20869,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134897,Link="|cff0070dd|Hitem:20869::::::::40:::::::|h[Amber Idol]|h|r",EquipLoc="",Type="Quest"},["Horn of the Black War Wolf"]={SubType="Junk",Level=40,id=18245,StackCount=1,Rarity=4,MinLevel=40,SellPrice=0,Texture=132224,Type="Miscellaneous",Link="|cffa335ee|Hitem:18245::::::::40:::::::|h[Horn of the Black War Wolf]|h|r",EquipLoc=""},["Rock Mace"]={SubType="One-Handed Maces",Level=5,id=1382,StackCount=1,Rarity=1,MinLevel=0,SellPrice=24,Texture=133482,Type="Weapon",Link="|cffffffff|Hitem:1382::::::::40:::::::|h[Rock Mace]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Cache of Zanzil's Altered Mixture"]={SubType="Quest",Level=1,id=8073,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134846,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:8073::::::::40:::::::|h[Cache of Zanzil's Altered Mixture]|h|r"},["Vorrel's Wedding Ring"]={SubType="Quest",Level=1,id=5538,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133345,EquipLoc="",Link="|cffffffff|Hitem:5538::::::::40:::::::|h[Vorrel's Wedding Ring]|h|r",Type="Quest"},["Cryptstalker Legguards"]={SubType="Mail",Level=88,id=22437,StackCount=1,Rarity=4,MinLevel=60,SellPrice=159599,Texture=134667,Link="|cffa335ee|Hitem:22437::::::::40:::::::|h[Cryptstalker Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Magister's Bindings"]={SubType="Cloth",Level=57,id=16683,StackCount=1,Rarity=3,MinLevel=52,SellPrice=8765,Texture=133365,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16683::::::::40:::::::|h[Magister's Bindings]|h|r",Type="Armor"},["Dervish Spaulders"]={SubType="Leather",Level=29,id=7415,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1484,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7415::::::::40:::::::|h[Dervish Spaulders]|h|r",Type="Armor"},["Monster - Staff, 3 Piece Taped Staff"]={SubType="Staves",Level=1,id=5276,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7,Texture=135146,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5276::::::::40:::::::|h[Monster - Staff, 3 Piece Taped Staff]|h|r"},["Monster - Sword, Golden Long"]={SubType="One-Handed Swords",Level=1,id=12944,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135277,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12944::::::::40:::::::|h[Monster - Sword, Golden Long]|h|r"},["Spellforce Rod"]={SubType="Staves",Level=41,id=1664,StackCount=1,Rarity=2,MinLevel=36,SellPrice=14695,Texture=135165,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1664::::::::40:::::::|h[Spellforce Rod]|h|r"},["Laminated Scale Armor"]={SubType="Mail",Level=54,id=3999,StackCount=1,Rarity=0,MinLevel=49,SellPrice=7109,Texture=132627,Type="Armor",Link="|cff9d9d9d|Hitem:3999::::::::40:::::::|h[Laminated Scale Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Wicked Chain Shield"]={SubType="Shields",Level=34,id=15543,StackCount=1,Rarity=2,MinLevel=29,SellPrice=4179,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15543::::::::40:::::::|h[Wicked Chain Shield]|h|r",Type="Armor"},["Odo's Ley Staff"]={SubType="Staves",Level=26,id=6318,StackCount=1,Rarity=3,MinLevel=21,SellPrice=4802,Texture=135164,Type="Weapon",Link="|cff0070dd|Hitem:6318::::::::40:::::::|h[Odo's Ley Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Filled Vial Labeled #2"]={SubType="Quest",Level=1,id=10692,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134822,EquipLoc="",Link="|cffffffff|Hitem:10692::::::::40:::::::|h[Filled Vial Labeled #2]|h|r",Type="Quest"},["Pattern: Tough Scorpid Shoulders"]={SubType="Leatherworking",Level=48,id=8400,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,Link="|cff1eff00|Hitem:8400::::::::40:::::::|h[Pattern: Tough Scorpid Shoulders]|h|r",EquipLoc="",Type="Recipe"},["Moist Towelette"]={SubType="Consumable",Level=30,id=5951,StackCount=10,Rarity=1,MinLevel=0,SellPrice=41,Texture=133677,EquipLoc="",Link="|cffffffff|Hitem:5951::::::::40:::::::|h[Moist Towelette]|h|r",Type="Consumable"},["Outrunner's Chestguard"]={SubType="Mail",Level=24,id=15500,StackCount=1,Rarity=2,MinLevel=19,SellPrice=1377,Texture=132626,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15500::::::::40:::::::|h[Outrunner's Chestguard]|h|r",Type="Armor"},["Clarice's Pendant"]={SubType="Quest",Level=1,id=6145,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133288,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6145::::::::40:::::::|h[Clarice's Pendant]|h|r"},["Swashbuckler's Belt"]={SubType="Leather",Level=52,id=10190,StackCount=1,Rarity=2,MinLevel=47,SellPrice=6669,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10190::::::::40:::::::|h[Swashbuckler's Belt]|h|r",Type="Armor"},["Fast Test 1H Mace"]={SubType="One-Handed Maces",Level=60,id=5553,StackCount=1,Rarity=0,MinLevel=1,SellPrice=16006,Texture=133478,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:5553::::::::40:::::::|h[Fast Test 1H Mace]|h|r"},["Tyrant's Shield"]={SubType="Shields",Level=48,id=14842,StackCount=1,Rarity=2,MinLevel=43,SellPrice=12483,Texture=134963,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14842::::::::40:::::::|h[Tyrant's Shield]|h|r"},["Merciless Legguards"]={SubType="Mail",Level=56,id=15655,StackCount=1,Rarity=2,MinLevel=51,SellPrice=19862,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15655::::::::40:::::::|h[Merciless Legguards]|h|r",Type="Armor"},["Roon's Kodo Horn"]={SubType="Quest",Level=1,id=14546,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133721,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14546::::::::40:::::::|h[Roon's Kodo Horn]|h|r"},["Recipe: Strider Stew"]={SubType="Cooking",Level=15,id=5486,StackCount=1,Rarity=1,MinLevel=0,SellPrice=110,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:5486::::::::40:::::::|h[Recipe: Strider Stew]|h|r",Type="Recipe"},["Ring of Fury"]={SubType="Miscellaneous",Level=74,id=21477,StackCount=1,Rarity=3,MinLevel=60,SellPrice=88503,Texture=133426,Link="|cff0070dd|Hitem:21477::::::::40:::::::|h[Ring of Fury]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Deprecated Brown Wayfarer's Knapsack"]={SubType="Bag",Level=55,id=4501,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=133633,Link="|cffffffff|Hitem:4501::::::::40:::::::|h[Deprecated Brown Wayfarer's Knapsack]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Arachnidian Cape"]={SubType="Cloth",Level=49,id=14292,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6795,Texture=132656,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14292::::::::40:::::::|h[Arachnidian Cape]|h|r"},["Edged Bastard Sword"]={SubType="Two-Handed Swords",Level=18,id=3196,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1377,Texture=135324,Type="Weapon",Link="|cff1eff00|Hitem:3196::::::::40:::::::|h[Edged Bastard Sword]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Crown of the Ogre King"]={SubType="Cloth",Level=63,id=18526,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17924,Texture=132767,Type="Armor",Link="|cff0070dd|Hitem:18526::::::::40:::::::|h[Crown of the Ogre King]|h|r",EquipLoc="INVTYPE_HEAD"},["Juju Escape"]={SubType="Quest",Level=60,id=12459,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1500,Texture=134319,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12459::::::::40:::::::|h[Juju Escape]|h|r"},["Sentinel Basic Care Package"]={SubType="Consumable",Level=1,id=19150,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134144,Link="|cffffffff|Hitem:19150::::::::40:::::::|h[Sentinel Basic Care Package]|h|r",EquipLoc="",Type="Consumable"},["Bloodwoven Pants"]={SubType="Cloth",Level=48,id=14264,StackCount=1,Rarity=2,MinLevel=43,SellPrice=8013,Texture=134592,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14264::::::::40:::::::|h[Bloodwoven Pants]|h|r"},["Crown of the Penitent"]={SubType="Cloth",Level=61,id=13216,StackCount=1,Rarity=2,MinLevel=0,SellPrice=13250,Texture=133074,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:13216::::::::40:::::::|h[Crown of the Penitent]|h|r"},["Acceptable Scorpid Sample"]={SubType="Quest",Level=0,id=9438,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136128,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9438::::::::40:::::::|h[Acceptable Scorpid Sample]|h|r"},["Deadwood Headdress Feather DEPRECATED"]={SubType="Quest",Level=1,id=20739,StackCount=20,Rarity=1,MinLevel=0,SellPrice=200,Texture=132926,Link="|cffffffff|Hitem:20739::::::::40:::::::|h[Deadwood Headdress Feather DEPRECATED]|h|r",EquipLoc="",Type="Quest"},["Triumphant Sabatons"]={SubType="Mail",Level=63,id=15678,StackCount=1,Rarity=2,MinLevel=58,SellPrice=21693,Texture=132584,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15678::::::::40:::::::|h[Triumphant Sabatons]|h|r",Type="Armor"},["Darkshire Mail Leggings"]={SubType="Mail",Level=26,id=2906,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1810,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:2906::::::::40:::::::|h[Darkshire Mail Leggings]|h|r",Type="Armor"},["Ring of Critical Testing 3"]={SubType="Miscellaneous",Level=60,id=18971,StackCount=1,Rarity=4,MinLevel=0,SellPrice=56012,Texture=133347,Type="Armor",Link="|cffa335ee|Hitem:18971::::::::40:::::::|h[Ring of Critical Testing 3]|h|r",EquipLoc="INVTYPE_FINGER"},["Earthclasp Barrier"]={SubType="Shields",Level=43,id=9661,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9051,Texture=134959,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9661::::::::40:::::::|h[Earthclasp Barrier]|h|r"},["Frostwolf Muzzle"]={SubType="Quest",Level=1,id=17626,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133565,EquipLoc="",Link="|cffffffff|Hitem:17626::::::::40:::::::|h[Frostwolf Muzzle]|h|r",Type="Quest"},["Graccu's Mince Meat Fruitcake"]={SubType="Consumable",Level=65,id=21215,StackCount=20,Rarity=1,MinLevel=40,SellPrice=0,Texture=132934,Link="|cffffffff|Hitem:21215::::::::40:::::::|h[Graccu's Mince Meat Fruitcake]|h|r",EquipLoc="",Type="Consumable"},["Giant Crocolisk Skin"]={SubType="Quest",Level=1,id=3348,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134305,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3348::::::::40:::::::|h[Giant Crocolisk Skin]|h|r"},["Cleaver"]={SubType="One-Handed Axes",Level=20,id=2029,StackCount=1,Rarity=1,MinLevel=15,SellPrice=883,Texture=132417,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:2029::::::::40:::::::|h[Cleaver]|h|r",Type="Weapon"},["Sacred Mallet"]={SubType="Quest",Level=1,id=9241,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133056,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9241::::::::40:::::::|h[Sacred Mallet]|h|r"},["Monster - Throwing Knife"]={SubType="Thrown",Level=1,id=6886,StackCount=1,Rarity=0,MinLevel=1,SellPrice=18,Texture=135641,Type="Weapon",Link="|cff9d9d9d|Hitem:6886::::::::40:::::::|h[Monster - Throwing Knife]|h|r",EquipLoc="INVTYPE_THROWN"},["Long Battle Bow"]={SubType="Bows",Level=29,id=15284,StackCount=1,Rarity=2,MinLevel=24,SellPrice=3039,Texture=135489,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:15284::::::::40:::::::|h[Long Battle Bow]|h|r",Type="Weapon"},["Patched Leather Gloves"]={SubType="Leather",Level=17,id=1791,StackCount=1,Rarity=0,MinLevel=12,SellPrice=90,Texture=132939,Type="Armor",Link="|cff9d9d9d|Hitem:1791::::::::40:::::::|h[Patched Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Monster - Staff, Ornate Jeweled Staff - Red Low Red Flame"]={SubType="Staves",Level=1,id=18644,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",Link="|cff9d9d9d|Hitem:18644::::::::40:::::::|h[Monster - Staff, Ornate Jeweled Staff - Red Low Red Flame]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Deprecated Grizzled Bearskin Pouch"]={SubType="Bag",Level=15,id=3298,StackCount=1,Rarity=1,MinLevel=0,SellPrice=75,Texture=133622,Link="|cffffffff|Hitem:3298::::::::40:::::::|h[Deprecated Grizzled Bearskin Pouch]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Lesser Magic Essence"]={SubType="Trade Goods",Level=10,id=10938,StackCount=10,Rarity=2,MinLevel=0,SellPrice=0,Texture=132867,EquipLoc="",Link="|cff1eff00|Hitem:10938::::::::40:::::::|h[Lesser Magic Essence]|h|r",Type="Trade Goods"},["Guardian Blade"]={SubType="Two-Handed Swords",Level=26,id=13041,StackCount=1,Rarity=3,MinLevel=21,SellPrice=4516,Texture=135326,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13041::::::::40:::::::|h[Guardian Blade]|h|r"},["Deprecated Tauren Apprentice Belt"]={SubType="Miscellaneous",Level=1,id=149,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132493,Type="Armor",Link="|cffffffff|Hitem:149::::::::40:::::::|h[Deprecated Tauren Apprentice Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Magical Ledger"]={SubType="Quest",Level=1,id=20949,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133472,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:20949::::::::40:::::::|h[Magical Ledger]|h|r"},["Pattern: Gloves of Spell Mastery"]={SubType="Tailoring",Level=62,id=14511,StackCount=1,Rarity=4,MinLevel=0,SellPrice=15000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffa335ee|Hitem:14511::::::::40:::::::|h[Pattern: Gloves of Spell Mastery]|h|r"},["Thistlefur Bands"]={SubType="Cloth",Level=30,id=14197,StackCount=1,Rarity=2,MinLevel=25,SellPrice=925,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14197::::::::40:::::::|h[Thistlefur Bands]|h|r"},["Clamshell Bracers"]={SubType="Mail",Level=14,id=15400,StackCount=1,Rarity=1,MinLevel=0,SellPrice=109,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:15400::::::::40:::::::|h[Clamshell Bracers]|h|r",Type="Armor"},["Ez-Thro Dynamite II"]={SubType="Explosives",Level=40,id=18588,StackCount=20,Rarity=1,MinLevel=30,SellPrice=200,Texture=133711,Type="Trade Goods",Link="|cffffffff|Hitem:18588::::::::40:::::::|h[Ez-Thro Dynamite II]|h|r",EquipLoc=""},["Chieftain's Belt"]={SubType="Leather",Level=48,id=9947,StackCount=1,Rarity=2,MinLevel=43,SellPrice=5193,Texture=132501,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9947::::::::40:::::::|h[Chieftain's Belt]|h|r"},["Legionnaire's Chain Bracers"]={SubType="Mail",Level=60,id=16517,StackCount=1,Rarity=3,MinLevel=55,SellPrice=7131,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16517::::::::40:::::::|h[Legionnaire's Chain Bracers]|h|r",Type="Armor"},["90 Green Warrior Gauntlets"]={SubType="Plate",Level=90,id=20242,StackCount=1,Rarity=2,MinLevel=60,SellPrice=34665,Texture=132944,Link="|cff1eff00|Hitem:20242::::::::40:::::::|h[90 Green Warrior Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Formula: Enchant Weapon - Strength"]={SubType="Enchanting",Level=58,id=19444,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7500,Texture=134327,Link="|cffffffff|Hitem:19444::::::::40:::::::|h[Formula: Enchant Weapon - Strength]|h|r",EquipLoc="",Type="Recipe"},["TEST GUN Raid"]={SubType="Guns",Level=52,id=18764,StackCount=1,Rarity=2,MinLevel=47,SellPrice=20039,Texture=135616,Type="Weapon",Link="|cff1eff00|Hitem:18764::::::::40:::::::|h[TEST GUN Raid]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["OLDDwarven Initiate's Pants"]={SubType="Cloth",Level=1,id=91,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Link="|cff9d9d9d|Hitem:91::::::::40:::::::|h[OLDDwarven Initiate's Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Phalanx Shield"]={SubType="Shields",Level=34,id=7331,StackCount=1,Rarity=2,MinLevel=29,SellPrice=4330,Texture=134953,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:7331::::::::40:::::::|h[Phalanx Shield]|h|r",Type="Armor"},["Plans: Thorium Bracers"]={SubType="Blacksmithing",Level=51,id=12684,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12684::::::::40:::::::|h[Plans: Thorium Bracers]|h|r"},["Robust Girdle"]={SubType="Leather",Level=26,id=15120,StackCount=1,Rarity=2,MinLevel=21,SellPrice=786,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15120::::::::40:::::::|h[Robust Girdle]|h|r",Type="Armor"},["Anvilmar Musket"]={SubType="Guns",Level=5,id=12446,StackCount=1,Rarity=1,MinLevel=0,SellPrice=19,Texture=135616,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:12446::::::::40:::::::|h[Anvilmar Musket]|h|r"},["Monster - Shield, Horde A01 Red"]={SubType="Shields",Level=1,id=13318,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:13318::::::::40:::::::|h[Monster - Shield, Horde A01 Red]|h|r"},["Stormpike Battle Plans"]={SubType="Quest",Level=1,id=17823,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:17823::::::::40:::::::|h[Stormpike Battle Plans]|h|r",Type="Quest"},["Battle Tabard of the Defilers"]={SubType="Miscellaneous",Level=20,id=20131,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=135026,Link="|cffffffff|Hitem:20131::::::::40:::::::|h[Battle Tabard of the Defilers]|h|r",EquipLoc="INVTYPE_TABARD",Type="Armor"},["Deprecated Lashtail Hide"]={SubType="Trade Goods",Level=38,id=1694,StackCount=5,Rarity=1,MinLevel=0,SellPrice=70,Texture=134367,Type="Trade Goods",Link="|cffffffff|Hitem:1694::::::::40:::::::|h[Deprecated Lashtail Hide]|h|r",EquipLoc=""},["Atal'ai Boots"]={SubType="Mail",Level=52,id=10786,StackCount=1,Rarity=2,MinLevel=47,SellPrice=11977,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10786::::::::40:::::::|h[Atal'ai Boots]|h|r",Type="Armor"},["Deprecated Nightmare Summoning (Mount)"]={SubType="Junk",Level=1,id=900,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134937,Type="Miscellaneous",Link="|cffffffff|Hitem:900::::::::40:::::::|h[Deprecated Nightmare Summoning (Mount)]|h|r",EquipLoc=""},["OLDWildmane Cleansing Totem"]={SubType="Miscellaneous",Level=1,id=4762,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135140,Link="|cffffffff|Hitem:4762::::::::40:::::::|h[OLDWildmane Cleansing Totem]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Armor"},["General's Dragonhide Boots"]={SubType="Leather",Level=71,id=16554,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22217,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16554::::::::40:::::::|h[General's Dragonhide Boots]|h|r",Type="Armor"},["Lord Grayson's Satchel"]={SubType="Quest",Level=1,id=18804,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133633,Type="Quest",Link="|cffffffff|Hitem:18804::::::::40:::::::|h[Lord Grayson's Satchel]|h|r",EquipLoc=""},["Spirit Relic"]={SubType="Miscellaneous",Level=20,id=2922,StackCount=1,Rarity=1,MinLevel=15,SellPrice=250,Texture=134333,Type="Armor",Link="|cffffffff|Hitem:2922::::::::40:::::::|h[Spirit Relic]|h|r",EquipLoc="INVTYPE_TRINKET"},["Stone Hammer"]={SubType="Two-Handed Maces",Level=38,id=15260,StackCount=1,Rarity=2,MinLevel=33,SellPrice=11556,Texture=133054,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15260::::::::40:::::::|h[Stone Hammer]|h|r",Type="Weapon"},["Icy Blue Mechanostrider Mod A"]={SubType="Junk",Level=60,id=13327,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132247,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:13327::::::::40:::::::|h[Icy Blue Mechanostrider Mod A]|h|r"},["Theramore Guard Medallion UNUSED"]={SubType="Quest",Level=1,id=5896,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133439,EquipLoc="",Link="|cffffffff|Hitem:5896::::::::40:::::::|h[Theramore Guard Medallion UNUSED]|h|r",Type="Quest"},["Battleboar Flank"]={SubType="Quest",Level=1,id=4849,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133970,Type="Quest",Link="|cffffffff|Hitem:4849::::::::40:::::::|h[Battleboar Flank]|h|r",EquipLoc=""},["Duskbat Drape"]={SubType="Cloth",Level=52,id=19982,StackCount=1,Rarity=3,MinLevel=0,SellPrice=9444,Texture=133772,Link="|cff0070dd|Hitem:19982::::::::40:::::::|h[Duskbat Drape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Light Crossbow"]={SubType="Crossbows",Level=8,id=15807,StackCount=1,Rarity=1,MinLevel=3,SellPrice=58,Texture=135531,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:15807::::::::40:::::::|h[Light Crossbow]|h|r",Type="Weapon"},["Drape of Vaulted Secrets"]={SubType="Cloth",Level=67,id=21415,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133771,Link="|cffa335ee|Hitem:21415::::::::40:::::::|h[Drape of Vaulted Secrets]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Codex of Renew X"]={SubType="Book",Level=60,id=21285,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133741,Link="|cff0070dd|Hitem:21285::::::::40:::::::|h[Codex of Renew X]|h|r",EquipLoc="",Type="Recipe"},["Greater Eternal Essence"]={SubType="Trade Goods",Level=55,id=16203,StackCount=10,Rarity=2,MinLevel=0,SellPrice=0,Texture=132864,EquipLoc="",Link="|cff1eff00|Hitem:16203::::::::40:::::::|h[Greater Eternal Essence]|h|r",Type="Trade Goods"},["Minor Mana Potion"]={SubType="Consumable",Level=15,id=2455,StackCount=5,Rarity=1,MinLevel=5,SellPrice=10,Texture=134850,Type="Consumable",Link="|cffffffff|Hitem:2455::::::::40:::::::|h[Minor Mana Potion]|h|r",EquipLoc=""},["Tablet of Healing Wave IV"]={SubType="Book",Level=18,id=9056,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9056::::::::40:::::::|h[Tablet of Healing Wave IV]|h|r"},["Rugged Boots"]={SubType="Leather",Level=15,id=5968,StackCount=1,Rarity=2,MinLevel=10,SellPrice=259,Texture=132537,Link="|cff1eff00|Hitem:5968::::::::40:::::::|h[Rugged Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Journeyman's Robe"]={SubType="Cloth",Level=11,id=6511,StackCount=1,Rarity=2,MinLevel=6,SellPrice=121,Texture=135012,Type="Armor",Link="|cff1eff00|Hitem:6511::::::::40:::::::|h[Journeyman's Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Deprecated Lightforge Staff"]={SubType="Staves",Level=29,id=2811,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2989,Texture=135138,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:2811::::::::40:::::::|h[Deprecated Lightforge Staff]|h|r"},["Plans: Imperial Plate Belt"]={SubType="Blacksmithing",Level=53,id=12688,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12688::::::::40:::::::|h[Plans: Imperial Plate Belt]|h|r"},["Craftsman's Writ - Radiant Circlet"]={SubType="Junk",Level=60,id=22604,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22604::::::::40:::::::|h[Craftsman's Writ - Radiant Circlet]|h|r",EquipLoc="",Type="Miscellaneous"},["Soft-shelled Clam"]={SubType="Key",Level=1,id=15874,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134433,EquipLoc="",Link="|cffffffff|Hitem:15874::::::::40:::::::|h[Soft-shelled Clam]|h|r",Type="Key"},["Shadoweave Shoulders"]={SubType="Cloth",Level=47,id=10028,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5938,Texture=135056,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10028::::::::40:::::::|h[Shadoweave Shoulders]|h|r",Type="Armor"},["Yellow Sack of Gems"]={SubType="Junk",Level=1,id=17965,StackCount=1,Rarity=2,MinLevel=0,SellPrice=213,Texture=133639,EquipLoc="",Link="|cff1eff00|Hitem:17965::::::::40:::::::|h[Yellow Sack of Gems]|h|r",Type="Miscellaneous"},["Monster - Staff, Holy Staff Archbishop Benedictus"]={SubType="Staves",Level=1,id=14092,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14092::::::::40:::::::|h[Monster - Staff, Holy Staff Archbishop Benedictus]|h|r"},["Lofty Belt"]={SubType="Plate",Level=52,id=14927,StackCount=1,Rarity=2,MinLevel=47,SellPrice=5301,Texture=132521,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14927::::::::40:::::::|h[Lofty Belt]|h|r"},["Schematic: Goblin Jumper Cables XL"]={SubType="Engineering",Level=53,id=18653,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:18653::::::::40:::::::|h[Schematic: Goblin Jumper Cables XL]|h|r",EquipLoc=""},["Overdue Package"]={SubType="Quest",Level=1,id=11724,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132766,Type="Quest",Link="|cffffffff|Hitem:11724::::::::40:::::::|h[Overdue Package]|h|r",EquipLoc=""},["Plans: Green Iron Gauntlets"]={SubType="Blacksmithing",Level=30,id=3612,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:3612::::::::40:::::::|h[Plans: Green Iron Gauntlets]|h|r",Type="Recipe"},["Greater Magic Wand"]={SubType="Wands",Level=23,id=11288,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1535,Texture=135144,Type="Weapon",Link="|cff1eff00|Hitem:11288::::::::40:::::::|h[Greater Magic Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Deprecated Patched Leather Shoulderpads"]={SubType="Leather",Level=15,id=1508,StackCount=1,Rarity=0,MinLevel=10,SellPrice=111,Texture=135039,Link="|cff9d9d9d|Hitem:1508::::::::40:::::::|h[Deprecated Patched Leather Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Grunt Vest"]={SubType="Cloth",Level=22,id=3752,StackCount=1,Rarity=2,MinLevel=0,SellPrice=745,Texture=135011,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:3752::::::::40:::::::|h[Grunt Vest]|h|r"},["Studies in Spirit Speaking"]={SubType="Quest",Level=1,id=15790,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133737,EquipLoc="",Link="|cffffffff|Hitem:15790::::::::40:::::::|h[Studies in Spirit Speaking]|h|r",Type="Quest"},["Schematic: Blue Rocket Cluster"]={SubType="Engineering",Level=45,id=21730,StackCount=1,Rarity=2,MinLevel=0,SellPrice=875,Texture=134942,Link="|cff1eff00|Hitem:21730::::::::40:::::::|h[Schematic: Blue Rocket Cluster]|h|r",EquipLoc="",Type="Recipe"},["Monster - Gun"]={SubType="Guns",Level=1,id=2552,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135612,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:2552::::::::40:::::::|h[Monster - Gun]|h|r",Type="Weapon"},["Ranger Wristguards"]={SubType="Leather",Level=41,id=7484,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3062,Texture=132608,Link="|cff1eff00|Hitem:7484::::::::40:::::::|h[Ranger Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Pendant of Myzrael"]={SubType="Miscellaneous",Level=35,id=4614,StackCount=1,Rarity=2,MinLevel=30,SellPrice=0,Texture=133294,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:4614::::::::40:::::::|h[Pendant of Myzrael]|h|r"},["Arcane Mantle of the Dawn"]={SubType="Quest",Level=60,id=18171,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25000,Texture=135987,Type="Quest",Link="|cff1eff00|Hitem:18171::::::::40:::::::|h[Arcane Mantle of the Dawn]|h|r",EquipLoc=""},["Monolithic Bow"]={SubType="Bows",Level=41,id=9426,StackCount=1,Rarity=3,MinLevel=36,SellPrice=10275,Texture=135489,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff0070dd|Hitem:9426::::::::40:::::::|h[Monolithic Bow]|h|r"},["Omarion's Handbook"]={SubType="Junk",Level=60,id=22719,StackCount=1,Rarity=1,MinLevel=60,SellPrice=0,Texture=133741,Link="|cffffffff|Hitem:22719::::::::40:::::::|h[Omarion's Handbook]|h|r",EquipLoc="",Type="Miscellaneous"},["Embossed Plate Pauldrons"]={SubType="Plate",Level=43,id=9971,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3995,Texture=135054,Link="|cff1eff00|Hitem:9971::::::::40:::::::|h[Embossed Plate Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Monster - Shield, Kite Metal Gold"]={SubType="Shields",Level=1,id=11041,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Type="Armor",Link="|cff9d9d9d|Hitem:11041::::::::40:::::::|h[Monster - Shield, Kite Metal Gold]|h|r",EquipLoc="INVTYPE_SHIELD"},["Jaina's Signet Ring"]={SubType="Miscellaneous",Level=38,id=6757,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4630,Texture=133347,Type="Armor",Link="|cff1eff00|Hitem:6757::::::::40:::::::|h[Jaina's Signet Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Gordok Inner Door Key"]={SubType="Key",Level=1,id=18268,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134238,Type="Key",Link="|cffffffff|Hitem:18268::::::::40:::::::|h[Gordok Inner Door Key]|h|r",EquipLoc=""},["Cadet's Bow"]={SubType="Bows",Level=6,id=8179,StackCount=1,Rarity=1,MinLevel=1,SellPrice=28,Texture=135493,Link="|cffffffff|Hitem:8179::::::::40:::::::|h[Cadet's Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Defiler's Advanced Care Package"]={SubType="Consumable",Level=1,id=20228,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134143,Link="|cffffffff|Hitem:20228::::::::40:::::::|h[Defiler's Advanced Care Package]|h|r",EquipLoc="",Type="Consumable"},["Minor Recombobulator"]={SubType="Devices",Level=28,id=4381,StackCount=1,Rarity=2,MinLevel=0,SellPrice=600,Texture=133001,Link="|cff1eff00|Hitem:4381::::::::40:::::::|h[Minor Recombobulator]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Trade Goods"},["Wrappered Gift"]={SubType="Junk",Level=1,id=21831,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134144,Link="|cffffffff|Hitem:21831::::::::40:::::::|h[Wrappered Gift]|h|r",EquipLoc="",Type="Miscellaneous"},["Grimoire of Soul Funnel III"]={SubType="Book",Level=28,id=4204,StackCount=1,Rarity=1,MinLevel=28,SellPrice=1750,Texture=133738,Link="|cffffffff|Hitem:4204::::::::40:::::::|h[Grimoire of Soul Funnel III]|h|r",EquipLoc="",Type="Recipe"},["Razorlash Root"]={SubType="Consumable",Level=50,id=17747,StackCount=5,Rarity=1,MinLevel=40,SellPrice=500,Texture=134187,EquipLoc="",Link="|cffffffff|Hitem:17747::::::::40:::::::|h[Razorlash Root]|h|r",Type="Consumable"},["Highlander's Mail Pauldrons"]={SubType="Mail",Level=65,id=20056,StackCount=1,Rarity=4,MinLevel=60,SellPrice=37009,Texture=135050,Link="|cffa335ee|Hitem:20056::::::::40:::::::|h[Highlander's Mail Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Abyssal Plate Greaves"]={SubType="Plate",Level=60,id=20662,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12400,Texture=132586,Link="|cff1eff00|Hitem:20662::::::::40:::::::|h[Abyssal Plate Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Heavy Mithril Breastplate"]={SubType="Plate",Level=46,id=7930,StackCount=1,Rarity=2,MinLevel=41,SellPrice=7045,Texture=132745,Link="|cff1eff00|Hitem:7930::::::::40:::::::|h[Heavy Mithril Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Grimoire of Hellfire"]={SubType="Book",Level=30,id=9219,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133738,Link="|cffffffff|Hitem:9219::::::::40:::::::|h[Grimoire of Hellfire]|h|r",EquipLoc="",Type="Recipe"},["Pink Murloc Egg"]={SubType="Junk",Level=20,id=22114,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132834,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22114::::::::40:::::::|h[Pink Murloc Egg]|h|r"},["Frostmaul E'ko"]={SubType="Quest",Level=1,id=12436,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135227,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12436::::::::40:::::::|h[Frostmaul E'ko]|h|r"},["Legionnaire's Plate Cinch"]={SubType="Plate",Level=60,id=16511,StackCount=1,Rarity=3,MinLevel=55,SellPrice=5142,Texture=132498,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16511::::::::40:::::::|h[Legionnaire's Plate Cinch]|h|r",Type="Armor"},["Recipe: Transmute Arcanite"]={SubType="Alchemy",Level=55,id=12958,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12958::::::::40:::::::|h[Recipe: Transmute Arcanite]|h|r"},["Tuxedo Shirt"]={SubType="Miscellaneous",Level=1,id=10034,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2000,Texture=135012,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:10034::::::::40:::::::|h[Tuxedo Shirt]|h|r",Type="Armor"},["Monster - Item, Bag - Black"]={SubType="Miscellaneous",Level=1,id=12850,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133639,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12850::::::::40:::::::|h[Monster - Item, Bag - Black]|h|r"},["Rock Golem Bulwark"]={SubType="Shields",Level=58,id=11785,StackCount=1,Rarity=3,MinLevel=53,SellPrice=29083,Texture=134952,Type="Armor",Link="|cff0070dd|Hitem:11785::::::::40:::::::|h[Rock Golem Bulwark]|h|r",EquipLoc="INVTYPE_SHIELD"},["Monster - Sword, Militia Long Sword"]={SubType="One-Handed Swords",Level=1,id=12890,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12890::::::::40:::::::|h[Monster - Sword, Militia Long Sword]|h|r"},["Veteran Armor"]={SubType="Mail",Level=16,id=2977,StackCount=1,Rarity=2,MinLevel=11,SellPrice=476,Texture=132631,Link="|cff1eff00|Hitem:2977::::::::40:::::::|h[Veteran Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Venomtail Antidote"]={SubType="Quest",Level=1,id=4904,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134743,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4904::::::::40:::::::|h[Venomtail Antidote]|h|r"},["Librarian's Satchel"]={SubType="Bag",Level=35,id=3762,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=133628,Type="Container",Link="|cffffffff|Hitem:3762::::::::40:::::::|h[Librarian's Satchel]|h|r",EquipLoc="INVTYPE_BAG"},["Bear Flank"]={SubType="Junk",Level=1,id=11409,StackCount=10,Rarity=0,MinLevel=0,SellPrice=503,Texture=133969,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11409::::::::40:::::::|h[Bear Flank]|h|r",EquipLoc=""},["Truesilver Ore"]={SubType="Trade Goods",Level=40,id=7911,StackCount=10,Rarity=2,MinLevel=0,SellPrice=500,Texture=134580,Link="|cff1eff00|Hitem:7911::::::::40:::::::|h[Truesilver Ore]|h|r",EquipLoc="",Type="Trade Goods"},["Deprecated Red Linen Shirt"]={SubType="Miscellaneous",Level=8,id=964,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=135029,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:964::::::::40:::::::|h[Deprecated Red Linen Shirt]|h|r"},["Recipe: Transmute Elemental Fire"]={SubType="Alchemy",Level=60,id=20761,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30000,Texture=134939,Link="|cffffffff|Hitem:20761::::::::40:::::::|h[Recipe: Transmute Elemental Fire]|h|r",EquipLoc="",Type="Recipe"},["Deprecated Tauren Apprentice Shirt"]={SubType="Miscellaneous",Level=1,id=151,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,Type="Armor",Link="|cffffffff|Hitem:151::::::::40:::::::|h[Deprecated Tauren Apprentice Shirt]|h|r",EquipLoc="INVTYPE_BODY"},["Good Luck Half-Charm"]={SubType="Quest",Level=1,id=12721,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133442,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12721::::::::40:::::::|h[Good Luck Half-Charm]|h|r"},["Mesh Cloak"]={SubType="Cloth",Level=62,id=3955,StackCount=1,Rarity=0,MinLevel=57,SellPrice=5375,Texture=133759,Link="|cff9d9d9d|Hitem:3955::::::::40:::::::|h[Mesh Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Zukk'ash Carapace"]={SubType="Quest",Level=1,id=18961,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134967,Type="Quest",Link="|cffffffff|Hitem:18961::::::::40:::::::|h[Zukk'ash Carapace]|h|r",EquipLoc=""},["45 Pound Redgill"]={SubType="Junk",Level=45,id=13883,StackCount=1,Rarity=1,MinLevel=0,SellPrice=60,Texture=133892,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13883::::::::40:::::::|h[45 Pound Redgill]|h|r"},["Hibernal Sphere"]={SubType="Miscellaneous",Level=51,id=15937,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7922,Texture=134333,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15937::::::::40:::::::|h[Hibernal Sphere]|h|r",Type="Armor"},["Recipe: Transmute Mithril to Truesilver"]={SubType="Alchemy",Level=45,id=9305,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9305::::::::40:::::::|h[Recipe: Transmute Mithril to Truesilver]|h|r"},["Deprecated Elwynn Trout"]={SubType="Consumable",Level=10,id=761,StackCount=10,Rarity=1,MinLevel=1,SellPrice=15,Texture=133888,Link="|cffffffff|Hitem:761::::::::40:::::::|h[Deprecated Elwynn Trout]|h|r",EquipLoc="",Type="Consumable"},["Chromite Chestplate"]={SubType="Plate",Level=47,id=8138,StackCount=1,Rarity=2,MinLevel=42,SellPrice=7666,Texture=132749,Link="|cff1eff00|Hitem:8138::::::::40:::::::|h[Chromite Chestplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Prismscale Hauberk"]={SubType="Mail",Level=57,id=11194,StackCount=1,Rarity=2,MinLevel=0,SellPrice=20404,Texture=132629,Type="Armor",Link="|cff1eff00|Hitem:11194::::::::40:::::::|h[Prismscale Hauberk]|h|r",EquipLoc="INVTYPE_CHEST"},["Glutton's Cleaver"]={SubType="One-Handed Axes",Level=41,id=10772,StackCount=1,Rarity=2,MinLevel=36,SellPrice=12170,Texture=132417,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:10772::::::::40:::::::|h[Glutton's Cleaver]|h|r",Type="Weapon"},["Incantations from the Nether"]={SubType="Quest",Level=1,id=14396,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133738,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14396::::::::40:::::::|h[Incantations from the Nether]|h|r"},["Darkmist Armor"]={SubType="Cloth",Level=46,id=14237,StackCount=1,Rarity=2,MinLevel=41,SellPrice=7206,Texture=135020,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14237::::::::40:::::::|h[Darkmist Armor]|h|r"},["Robust Shoulders"]={SubType="Leather",Level=30,id=15127,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1647,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15127::::::::40:::::::|h[Robust Shoulders]|h|r",Type="Armor"},["Monster - Sword, Short Rusty"]={SubType="One-Handed Swords",Level=1,id=1895,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135274,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:1895::::::::40:::::::|h[Monster - Sword, Short Rusty]|h|r",Type="Weapon"},["Legplates of Vigilance"]={SubType="Plate",Level=63,id=22328,StackCount=1,Rarity=3,MinLevel=58,SellPrice=22208,Texture=134584,Link="|cff0070dd|Hitem:22328::::::::40:::::::|h[Legplates of Vigilance]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Gnarled Short Staff"]={SubType="Staves",Level=8,id=1010,StackCount=1,Rarity=1,MinLevel=0,SellPrice=99,Texture=135154,Type="Weapon",Link="|cffffffff|Hitem:1010::::::::40:::::::|h[Gnarled Short Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Splintered Log"]={SubType="Quest",Level=1,id=9590,StackCount=2,Rarity=1,MinLevel=0,SellPrice=0,Texture=135437,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9590::::::::40:::::::|h[Splintered Log]|h|r"},["Test Frost Res Waist Cloth"]={SubType="Cloth",Level=35,id=16136,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1479,Texture=133693,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16136::::::::40:::::::|h[Test Frost Res Waist Cloth]|h|r",Type="Armor"},["Faustin's Truth Serum"]={SubType="Quest",Level=1,id=6086,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134717,Link="|cffffffff|Hitem:6086::::::::40:::::::|h[Faustin's Truth Serum]|h|r",EquipLoc="",Type="Quest"},["Battleworn Cape"]={SubType="Cloth",Level=5,id=4920,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=133763,Link="|cffffffff|Hitem:4920::::::::40:::::::|h[Battleworn Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Darkmantle Cap"]={SubType="Leather",Level=60,id=22005,StackCount=1,Rarity=4,MinLevel=0,SellPrice=26102,Texture=133143,Link="|cffa335ee|Hitem:22005::::::::40:::::::|h[Darkmantle Cap]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Darksoul Shoulders"]={SubType="Plate",Level=65,id=19695,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18285,Texture=135032,Link="|cff0070dd|Hitem:19695::::::::40:::::::|h[Darksoul Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["White Spider Meat"]={SubType="Trade Goods",Level=40,id=12205,StackCount=10,Rarity=1,MinLevel=0,SellPrice=112,Texture=134007,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12205::::::::40:::::::|h[White Spider Meat]|h|r"},["Harpy Hide Quiver"]={SubType="Quiver",Level=60,id=19319,StackCount=1,Rarity=3,MinLevel=55,SellPrice=87500,Texture=134406,Link="|cff0070dd|Hitem:19319::::::::40:::::::|h[Harpy Hide Quiver]|h|r",EquipLoc="INVTYPE_BAG",Type="Quiver"},["Enduring Breeches"]={SubType="Mail",Level=37,id=14766,StackCount=1,Rarity=2,MinLevel=32,SellPrice=5486,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14766::::::::40:::::::|h[Enduring Breeches]|h|r"},["Heart Ring"]={SubType="Miscellaneous",Level=27,id=5001,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1038,Texture=133346,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:5001::::::::40:::::::|h[Heart Ring]|h|r",Type="Armor"},["Monster - Bow, C01/B02 White"]={SubType="Bows",Level=1,id=14105,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135493,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:14105::::::::40:::::::|h[Monster - Bow, C01/B02 White]|h|r"},["Ranger Bow"]={SubType="Bows",Level=25,id=3021,StackCount=1,Rarity=3,MinLevel=20,SellPrice=2421,Texture=135499,Link="|cff0070dd|Hitem:3021::::::::40:::::::|h[Ranger Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Panda Collar"]={SubType="Junk",Level=20,id=13583,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132494,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13583::::::::40:::::::|h[Panda Collar]|h|r"},["Kodo Liver"]={SubType="Quest",Level=1,id=4896,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134341,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4896::::::::40:::::::|h[Kodo Liver]|h|r"},["Deprecated War Harness"]={SubType="Miscellaneous",Level=1,id=138,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132719,Type="Armor",Link="|cffffffff|Hitem:138::::::::40:::::::|h[Deprecated War Harness]|h|r",EquipLoc="INVTYPE_BODY"},["Oglethorpe's Signed Pledge"]={SubType="Quest",Level=1,id=11282,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,Type="Quest",Link="|cffffffff|Hitem:11282::::::::40:::::::|h[Oglethorpe's Signed Pledge]|h|r",EquipLoc=""},["Gem of the First Khan"]={SubType="Quest",Level=1,id=17761,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134129,EquipLoc="",Link="|cffffffff|Hitem:17761::::::::40:::::::|h[Gem of the First Khan]|h|r",Type="Quest"},["Monster - Item, Book - B01 Black Glowing Offhand"]={SubType="Miscellaneous",Level=1,id=12865,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12865::::::::40:::::::|h[Monster - Item, Book - B01 Black Glowing Offhand]|h|r"},["Grand Marshal's Claymore"]={SubType="Two-Handed Swords",Level=78,id=18876,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60118,Texture=135349,Type="Weapon",Link="|cffa335ee|Hitem:18876::::::::40:::::::|h[Grand Marshal's Claymore]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Hillman's Shoulders"]={SubType="Leather",Level=26,id=4251,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1199,Texture=135039,Link="|cff1eff00|Hitem:4251::::::::40:::::::|h[Hillman's Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["40 Pound Grouper"]={SubType="Junk",Level=45,id=13876,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=133892,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13876::::::::40:::::::|h[40 Pound Grouper]|h|r"},["Frostwolf Battle Standard"]={SubType="Consumable",Level=0,id=19046,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=132485,Link="|cff0070dd|Hitem:19046::::::::40:::::::|h[Frostwolf Battle Standard]|h|r",EquipLoc="",Type="Consumable"},["Lahassa Essence"]={SubType="Quest",Level=1,id=9255,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134076,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9255::::::::40:::::::|h[Lahassa Essence]|h|r"},["Plans: Fiery Chain Girdle"]={SubType="Blacksmithing",Level=59,id=17049,StackCount=1,Rarity=3,MinLevel=0,SellPrice=22500,Texture=134941,EquipLoc="",Link="|cff0070dd|Hitem:17049::::::::40:::::::|h[Plans: Fiery Chain Girdle]|h|r",Type="Recipe"},["Khan's Gloves"]={SubType="Mail",Level=45,id=14782,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5004,Texture=132953,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14782::::::::40:::::::|h[Khan's Gloves]|h|r"},["Pikeman Shield"]={SubType="Shields",Level=5,id=6078,StackCount=1,Rarity=1,MinLevel=0,SellPrice=15,Texture=134949,Type="Armor",Link="|cffffffff|Hitem:6078::::::::40:::::::|h[Pikeman Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Beaststalker's Pants"]={SubType="Mail",Level=61,id=16678,StackCount=1,Rarity=3,MinLevel=56,SellPrice=31694,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16678::::::::40:::::::|h[Beaststalker's Pants]|h|r",Type="Armor"},["Level 50 Test Gear Leather - Rogue"]={SubType="Junk",Level=1,id=13676,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13676::::::::40:::::::|h[Level 50 Test Gear Leather - Rogue]|h|r"},["Warrior's Bracers"]={SubType="Mail",Level=9,id=3214,StackCount=1,Rarity=1,MinLevel=4,SellPrice=33,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3214::::::::40:::::::|h[Warrior's Bracers]|h|r",Type="Armor"},["Reins of the Leopard"]={SubType="Junk",Level=40,id=8633,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132242,Link="|cffffffff|Hitem:8633::::::::40:::::::|h[Reins of the Leopard]|h|r",EquipLoc="",Type="Miscellaneous"},["Soft-shelled Clam Meat"]={SubType="Quest",Level=1,id=15924,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134007,EquipLoc="",Link="|cffffffff|Hitem:15924::::::::40:::::::|h[Soft-shelled Clam Meat]|h|r",Type="Quest"},["53 Pound Grouper"]={SubType="Junk",Level=45,id=13878,StackCount=1,Rarity=1,MinLevel=0,SellPrice=32,Texture=133892,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13878::::::::40:::::::|h[53 Pound Grouper]|h|r"},["Laminated Scale Shoulderpads"]={SubType="Mail",Level=55,id=3998,StackCount=1,Rarity=0,MinLevel=50,SellPrice=5656,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3998::::::::40:::::::|h[Laminated Scale Shoulderpads]|h|r",Type="Armor"},["Test Fire Res Feet Leather"]={SubType="Leather",Level=35,id=16065,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2593,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:16065::::::::40:::::::|h[Test Fire Res Feet Leather]|h|r",Type="Armor"},["TEST SWORD 2"]={SubType="One-Handed Swords",Level=60,id=5954,StackCount=1,Rarity=1,MinLevel=0,SellPrice=24843,Texture=132312,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:5954::::::::40:::::::|h[TEST SWORD 2]|h|r"},["Plans: Inlaid Thorium Hammer"]={SubType="Blacksmithing",Level=54,id=12818,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12818::::::::40:::::::|h[Plans: Inlaid Thorium Hammer]|h|r"},["Bricksteel Gauntlets"]={SubType="Mail",Level=55,id=15823,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9191,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15823::::::::40:::::::|h[Bricksteel Gauntlets]|h|r",Type="Armor"},["Knight-Captain's Dreadweave Belt"]={SubType="Cloth",Level=60,id=17565,StackCount=1,Rarity=3,MinLevel=55,SellPrice=4744,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:17565::::::::40:::::::|h[Knight-Captain's Dreadweave Belt]|h|r",Type="Armor"},["Champion's Silk Cowl"]={SubType="Cloth",Level=71,id=23263,StackCount=1,Rarity=3,MinLevel=60,SellPrice=13156,Texture=133074,Link="|cff0070dd|Hitem:23263::::::::40:::::::|h[Champion's Silk Cowl]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Greater Mystic Wand"]={SubType="Wands",Level=35,id=11290,StackCount=1,Rarity=2,MinLevel=30,SellPrice=5263,Texture=135469,Type="Weapon",Link="|cff1eff00|Hitem:11290::::::::40:::::::|h[Greater Mystic Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Miner's Hat of the Deep"]={SubType="Cloth",Level=44,id=9429,StackCount=1,Rarity=3,MinLevel=39,SellPrice=5236,Texture=133117,Link="|cff0070dd|Hitem:9429::::::::40:::::::|h[Miner's Hat of the Deep]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Husk Fragment"]={SubType="Junk",Level=1,id=6300,StackCount=10,Rarity=0,MinLevel=0,SellPrice=443,Texture=134304,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:6300::::::::40:::::::|h[Husk Fragment]|h|r"},["Warbringer's Shield"]={SubType="Shields",Level=46,id=14947,StackCount=1,Rarity=2,MinLevel=41,SellPrice=11198,Texture=134965,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14947::::::::40:::::::|h[Warbringer's Shield]|h|r"},["Rocket Car Parts"]={SubType="Quest",Level=1,id=5798,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132997,EquipLoc="",Link="|cffffffff|Hitem:5798::::::::40:::::::|h[Rocket Car Parts]|h|r",Type="Quest"},["Palomino Bridle"]={SubType="Junk",Level=60,id=12354,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132261,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:12354::::::::40:::::::|h[Palomino Bridle]|h|r"},["Frostmaw's Mane"]={SubType="Quest",Level=1,id=5811,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134356,Link="|cffffffff|Hitem:5811::::::::40:::::::|h[Frostmaw's Mane]|h|r",EquipLoc="",Type="Quest"},["Sanguine Armor"]={SubType="Cloth",Level=28,id=14372,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1430,Texture=135013,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14372::::::::40:::::::|h[Sanguine Armor]|h|r"},["Savannah Lion Tusk"]={SubType="Quest",Level=1,id=4893,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133722,Link="|cffffffff|Hitem:4893::::::::40:::::::|h[Savannah Lion Tusk]|h|r",EquipLoc="",Type="Quest"},["Thorium Armor"]={SubType="Plate",Level=50,id=12405,StackCount=1,Rarity=2,MinLevel=45,SellPrice=9239,Texture=132743,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:12405::::::::40:::::::|h[Thorium Armor]|h|r"},["Gray Leather D02 Boots"]={SubType="Leather",Level=1,id=3542,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132542,Type="Armor",Link="|cffffffff|Hitem:3542::::::::40:::::::|h[Gray Leather D02 Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Feral Bracers"]={SubType="Leather",Level=7,id=5419,StackCount=1,Rarity=1,MinLevel=0,SellPrice=13,Texture=132601,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:5419::::::::40:::::::|h[Feral Bracers]|h|r",Type="Armor"},["Monster - Claw - Bear"]={SubType="Fist Weapons",Level=1,id=5600,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134294,Link="|cff9d9d9d|Hitem:5600::::::::40:::::::|h[Monster - Claw - Bear]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Blinding Powder"]={SubType="Reagent",Level=34,id=5530,StackCount=20,Rarity=1,MinLevel=0,SellPrice=125,Texture=133587,Link="|cffffffff|Hitem:5530::::::::40:::::::|h[Blinding Powder]|h|r",EquipLoc="",Type="Reagent"},["Raw Spinefin Halibut"]={SubType="Consumable",Level=55,id=8959,StackCount=20,Rarity=1,MinLevel=45,SellPrice=160,Texture=133908,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8959::::::::40:::::::|h[Raw Spinefin Halibut]|h|r"},["Ancestral Cloak"]={SubType="Cloth",Level=9,id=4671,StackCount=1,Rarity=1,MinLevel=4,SellPrice=32,Texture=133762,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:4671::::::::40:::::::|h[Ancestral Cloak]|h|r"},["Imbued Plate Helmet"]={SubType="Plate",Level=59,id=10372,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11750,Texture=133074,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10372::::::::40:::::::|h[Imbued Plate Helmet]|h|r",Type="Armor"},["Chest of Spoils"]={SubType="Junk",Level=1,id=20602,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=132597,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:20602::::::::40:::::::|h[Chest of Spoils]|h|r"},["Belt of the Stars"]={SubType="Mail",Level=33,id=7107,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1858,Texture=132495,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:7107::::::::40:::::::|h[Belt of the Stars]|h|r"},["Andron's Note"]={SubType="Quest",Level=0,id=10679,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133464,EquipLoc="",Link="|cffffffff|Hitem:10679::::::::40:::::::|h[Andron's Note]|h|r",Type="Quest"},["Steadfast Cloak"]={SubType="Cloth",Level=37,id=15594,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2520,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15594::::::::40:::::::|h[Steadfast Cloak]|h|r",Type="Armor"},["Tyranis' Pendant"]={SubType="Quest",Level=1,id=6767,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133290,Type="Quest",Link="|cffffffff|Hitem:6767::::::::40:::::::|h[Tyranis' Pendant]|h|r",EquipLoc=""},["Gryphon Mail Breastplate"]={SubType="Mail",Level=51,id=15622,StackCount=1,Rarity=2,MinLevel=46,SellPrice=14834,Texture=132741,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15622::::::::40:::::::|h[Gryphon Mail Breastplate]|h|r",Type="Armor"},["Duracin Bracers"]={SubType="Mail",Level=36,id=10358,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2421,Texture=132603,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10358::::::::40:::::::|h[Duracin Bracers]|h|r",Type="Armor"},["Talon of Vultros"]={SubType="Daggers",Level=26,id=4454,StackCount=1,Rarity=3,MinLevel=21,SellPrice=3800,Texture=135652,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:4454::::::::40:::::::|h[Talon of Vultros]|h|r",Type="Weapon"},["Heavy Bronze Lockbox"]={SubType="Junk",Level=25,id=4633,StackCount=1,Rarity=2,MinLevel=0,SellPrice=70,Texture=134344,Link="|cff1eff00|Hitem:4633::::::::40:::::::|h[Heavy Bronze Lockbox]|h|r",EquipLoc="",Type="Miscellaneous"},["Lorekeeper's Staff"]={SubType="Staves",Level=63,id=19570,StackCount=1,Rarity=3,MinLevel=58,SellPrice=71229,Texture=135165,Link="|cff0070dd|Hitem:19570::::::::40:::::::|h[Lorekeeper's Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Vanguard Vambraces"]={SubType="Plate",Level=52,id=14861,StackCount=1,Rarity=2,MinLevel=47,SellPrice=5045,Texture=132615,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14861::::::::40:::::::|h[Vanguard Vambraces]|h|r"},["Overlord's Greaves"]={SubType="Plate",Level=48,id=10201,StackCount=1,Rarity=2,MinLevel=43,SellPrice=5960,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10201::::::::40:::::::|h[Overlord's Greaves]|h|r",Type="Armor"},["Lagrave's Seal"]={SubType="Miscellaneous",Level=54,id=12038,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9092,Texture=133345,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12038::::::::40:::::::|h[Lagrave's Seal]|h|r"},["Robust Gloves"]={SubType="Leather",Level=29,id=15125,StackCount=1,Rarity=2,MinLevel=24,SellPrice=990,Texture=132958,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15125::::::::40:::::::|h[Robust Gloves]|h|r",Type="Armor"},["Sandfury Coin"]={SubType="Quest",Level=1,id=19704,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=133798,Link="|cff1eff00|Hitem:19704::::::::40:::::::|h[Sandfury Coin]|h|r",EquipLoc="",Type="Quest"},["Strangely Glyphed Legplates"]={SubType="Plate",Level=72,id=20639,StackCount=1,Rarity=4,MinLevel=60,SellPrice=46989,Texture=134681,Link="|cffa335ee|Hitem:20639::::::::40:::::::|h[Strangely Glyphed Legplates]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Codex of Resurrection IV"]={SubType="Book",Level=58,id=9026,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9026::::::::40:::::::|h[Codex of Resurrection IV]|h|r"},["Murphstar"]={SubType="One-Handed Maces",Level=39,id=1207,StackCount=1,Rarity=2,MinLevel=34,SellPrice=9892,Texture=133490,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:1207::::::::40:::::::|h[Murphstar]|h|r"},["Gaily Wrapped Present"]={SubType="Junk",Level=1,id=21310,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133202,Link="|cffffffff|Hitem:21310::::::::40:::::::|h[Gaily Wrapped Present]|h|r",EquipLoc="",Type="Miscellaneous"},["Plans: Enchanted Thorium Leggings"]={SubType="Blacksmithing",Level=63,id=12726,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134941,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12726::::::::40:::::::|h[Plans: Enchanted Thorium Leggings]|h|r"},["Emblazoned Belt"]={SubType="Leather",Level=29,id=6398,StackCount=1,Rarity=2,MinLevel=24,SellPrice=989,Texture=132500,Link="|cff1eff00|Hitem:6398::::::::40:::::::|h[Emblazoned Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Greater Magic Essence"]={SubType="Trade Goods",Level=15,id=10939,StackCount=10,Rarity=2,MinLevel=0,SellPrice=0,Texture=132866,EquipLoc="",Link="|cff1eff00|Hitem:10939::::::::40:::::::|h[Greater Magic Essence]|h|r",Type="Trade Goods"},["Defiler's Cloth Girdle"]={SubType="Cloth",Level=63,id=20163,StackCount=1,Rarity=3,MinLevel=58,SellPrice=12038,Texture=132506,Link="|cff0070dd|Hitem:20163::::::::40:::::::|h[Defiler's Cloth Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Field Marshal's Dragonhide Helmet"]={SubType="Leather",Level=74,id=16451,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24811,Texture=133143,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16451::::::::40:::::::|h[Field Marshal's Dragonhide Helmet]|h|r",Type="Armor"},["Jade"]={SubType="Trade Goods",Level=35,id=1529,StackCount=20,Rarity=2,MinLevel=0,SellPrice=700,Texture=134134,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:1529::::::::40:::::::|h[Jade]|h|r"},["Bloodmail Boots"]={SubType="Mail",Level=61,id=14616,StackCount=1,Rarity=3,MinLevel=56,SellPrice=22559,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:14616::::::::40:::::::|h[Bloodmail Boots]|h|r"},["Sida's Bag"]={SubType="Quest",Level=1,id=3349,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133624,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3349::::::::40:::::::|h[Sida's Bag]|h|r"},["Monster - Mace2H, Basic Stone Hammer"]={SubType="Two-Handed Maces",Level=1,id=3326,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133041,Link="|cff9d9d9d|Hitem:3326::::::::40:::::::|h[Monster - Mace2H, Basic Stone Hammer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Clam Meat"]={SubType="Trade Goods",Level=14,id=5503,StackCount=10,Rarity=1,MinLevel=0,SellPrice=16,Texture=134007,Link="|cffffffff|Hitem:5503::::::::40:::::::|h[Clam Meat]|h|r",EquipLoc="",Type="Trade Goods"},["Gallant's Wristguards"]={SubType="Plate",Level=60,id=18459,StackCount=1,Rarity=2,MinLevel=55,SellPrice=7907,Texture=132618,Type="Armor",Link="|cff1eff00|Hitem:18459::::::::40:::::::|h[Gallant's Wristguards]|h|r",EquipLoc="INVTYPE_WRIST"},["Dancing Sliver"]={SubType="Staves",Level=60,id=15854,StackCount=1,Rarity=3,MinLevel=0,SellPrice=64502,Texture=135144,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:15854::::::::40:::::::|h[Dancing Sliver]|h|r",Type="Weapon"},["Libram: Seal of Wrath IV"]={SubType="Book",Level=60,id=5670,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:5670::::::::40:::::::|h[Libram: Seal of Wrath IV]|h|r",Type="Recipe"},["Jade Gauntlets"]={SubType="Plate",Level=48,id=14917,StackCount=1,Rarity=2,MinLevel=43,SellPrice=3931,Texture=132964,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14917::::::::40:::::::|h[Jade Gauntlets]|h|r"},["Crochet Cloak"]={SubType="Cloth",Level=47,id=3939,StackCount=1,Rarity=0,MinLevel=42,SellPrice=2256,Texture=133762,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:3939::::::::40:::::::|h[Crochet Cloak]|h|r"},["Bloodfeather Belt"]={SubType="Quest",Level=1,id=5204,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132496,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5204::::::::40:::::::|h[Bloodfeather Belt]|h|r"},["Bottled Spirits"]={SubType="Consumable",Level=25,id=1119,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=132793,EquipLoc="",Link="|cffffffff|Hitem:1119::::::::40:::::::|h[Bottled Spirits]|h|r",Type="Consumable"},["Brigade Cloak"]={SubType="Cloth",Level=41,id=9929,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3662,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9929::::::::40:::::::|h[Brigade Cloak]|h|r"},["Formula: Enchant Gloves - Riding Skill"]={SubType="Enchanting",Level=50,id=11226,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1550,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11226::::::::40:::::::|h[Formula: Enchant Gloves - Riding Skill]|h|r",EquipLoc=""},["Master Sergeant's Insignia"]={SubType="Miscellaneous",Level=35,id=18442,StackCount=1,Rarity=3,MinLevel=30,SellPrice=5000,Texture=134311,Type="Armor",Link="|cff0070dd|Hitem:18442::::::::40:::::::|h[Master Sergeant's Insignia]|h|r",EquipLoc="INVTYPE_NECK"},["Blackened Defias Boots"]={SubType="Leather",Level=18,id=10402,StackCount=1,Rarity=2,MinLevel=13,SellPrice=385,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10402::::::::40:::::::|h[Blackened Defias Boots]|h|r",Type="Armor"},["Monster - Sword2H, Katana B01 Red"]={SubType="Two-Handed Swords",Level=1,id=14878,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135280,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14878::::::::40:::::::|h[Monster - Sword2H, Katana B01 Red]|h|r"},["Severed Bat Claw"]={SubType="Junk",Level=1,id=11392,StackCount=5,Rarity=0,MinLevel=0,SellPrice=403,Texture=134294,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11392::::::::40:::::::|h[Severed Bat Claw]|h|r",EquipLoc=""},["Silver Ore"]={SubType="Trade Goods",Level=10,id=2775,StackCount=10,Rarity=2,MinLevel=0,SellPrice=75,Texture=135242,Link="|cff1eff00|Hitem:2775::::::::40:::::::|h[Silver Ore]|h|r",EquipLoc="",Type="Trade Goods"},["Monster - Staff, Jeweled Red Staff"]={SubType="Staves",Level=1,id=11343,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",Link="|cff9d9d9d|Hitem:11343::::::::40:::::::|h[Monster - Staff, Jeweled Red Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Test Wand JChow"]={SubType="Wands",Level=25,id=4912,StackCount=100,Rarity=0,MinLevel=20,SellPrice=777,Texture=135464,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:4912::::::::40:::::::|h[Test Wand JChow]|h|r"},["Spiked Chain Wristbands"]={SubType="Mail",Level=25,id=15517,StackCount=1,Rarity=2,MinLevel=20,SellPrice=850,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15517::::::::40:::::::|h[Spiked Chain Wristbands]|h|r",Type="Armor"},["Grizzly Pants"]={SubType="Leather",Level=14,id=15303,StackCount=1,Rarity=2,MinLevel=9,SellPrice=299,Texture=134589,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15303::::::::40:::::::|h[Grizzly Pants]|h|r",Type="Armor"},["Zandalar Demoniac's Wraps"]={SubType="Cloth",Level=61,id=19848,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132606,Link="|cffa335ee|Hitem:19848::::::::40:::::::|h[Zandalar Demoniac's Wraps]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Monster - Staff, Ahn'Qiraj"]={SubType="Staves",Level=1,id=21795,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:21795::::::::40:::::::|h[Monster - Staff, Ahn'Qiraj]|h|r"},["Ranger Cord"]={SubType="Leather",Level=41,id=7485,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3073,Texture=132506,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:7485::::::::40:::::::|h[Ranger Cord]|h|r",Type="Armor"},["37 Pound Redgill"]={SubType="Junk",Level=45,id=13886,StackCount=1,Rarity=1,MinLevel=0,SellPrice=50,Texture=133892,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13886::::::::40:::::::|h[37 Pound Redgill]|h|r"},["Bracers of Hope"]={SubType="Cloth",Level=60,id=22667,StackCount=1,Rarity=4,MinLevel=0,SellPrice=12789,Texture=132611,Link="|cffa335ee|Hitem:22667::::::::40:::::::|h[Bracers of Hope]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Draconic for Dummies"]={SubType="Junk",Level=1,id=21103,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134457,Link="|cffffffff|Hitem:21103::::::::40:::::::|h[Draconic for Dummies]|h|r",EquipLoc="",Type="Miscellaneous"},["Troll Protector"]={SubType="Shields",Level=48,id=2040,StackCount=1,Rarity=3,MinLevel=43,SellPrice=15296,Texture=134962,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:2040::::::::40:::::::|h[Troll Protector]|h|r"},["Deprecated Orc Acolyte's Pants"]={SubType="Cloth",Level=1,id=1397,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134581,Link="|cff9d9d9d|Hitem:1397::::::::40:::::::|h[Deprecated Orc Acolyte's Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Quel'Thalas Registry"]={SubType="Quest",Level=1,id=15847,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:15847::::::::40:::::::|h[Quel'Thalas Registry]|h|r",Type="Quest"},["Feral Shoulder Pads"]={SubType="Leather",Level=24,id=15313,StackCount=1,Rarity=1,MinLevel=19,SellPrice=514,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:15313::::::::40:::::::|h[Feral Shoulder Pads]|h|r",Type="Armor"},["Curled Map Parchment"]={SubType="Quest",Level=1,id=11105,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134269,Type="Quest",Link="|cffffffff|Hitem:11105::::::::40:::::::|h[Curled Map Parchment]|h|r",EquipLoc=""},["Deprecated Nightmare Bridle"]={SubType="Junk",Level=40,id=2412,StackCount=1,Rarity=1,MinLevel=40,SellPrice=187500,Texture=134325,EquipLoc="",Link="|cffffffff|Hitem:2412::::::::40:::::::|h[Deprecated Nightmare Bridle]|h|r",Type="Miscellaneous"},["Imperial Red Sash"]={SubType="Cloth",Level=51,id=8253,StackCount=1,Rarity=2,MinLevel=46,SellPrice=5107,Texture=132518,Link="|cff1eff00|Hitem:8253::::::::40:::::::|h[Imperial Red Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Symbolic Belt"]={SubType="Plate",Level=41,id=14827,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2320,Texture=132520,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14827::::::::40:::::::|h[Symbolic Belt]|h|r"},["Lesser Wizard's Robe"]={SubType="Cloth",Level=27,id=5766,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1338,Texture=132658,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:5766::::::::40:::::::|h[Lesser Wizard's Robe]|h|r"},["Prairie Dog Whistle"]={SubType="Junk",Level=30,id=10394,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=132161,EquipLoc="",Link="|cffffffff|Hitem:10394::::::::40:::::::|h[Prairie Dog Whistle]|h|r",Type="Miscellaneous"},["Shimmering Robe"]={SubType="Cloth",Level=25,id=6569,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1044,Texture=132683,Link="|cff1eff00|Hitem:6569::::::::40:::::::|h[Shimmering Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Pattern: Brightcloth Cloak"]={SubType="Tailoring",Level=55,id=14484,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14484::::::::40:::::::|h[Pattern: Brightcloth Cloak]|h|r"},["Woodpaw Battle Plans"]={SubType="Quest",Level=0,id=9266,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9266::::::::40:::::::|h[Woodpaw Battle Plans]|h|r"},["Coated Cerulean Vial"]={SubType="Quest",Level=1,id=17693,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134865,EquipLoc="",Link="|cffffffff|Hitem:17693::::::::40:::::::|h[Coated Cerulean Vial]|h|r",Type="Quest"},["AHNQIRAJ TEST ITEM B LEATHER SHOULDER"]={SubType="Miscellaneous",Level=1,id=21424,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21424::::::::40:::::::|h[AHNQIRAJ TEST ITEM B LEATHER SHOULDER]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Blood Guard's Silk Footwraps"]={SubType="Cloth",Level=63,id=16485,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8511,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16485::::::::40:::::::|h[Blood Guard's Silk Footwraps]|h|r",Type="Armor"},["Big Bear Steak"]={SubType="Consumable",Level=25,id=3726,StackCount=20,Rarity=1,MinLevel=15,SellPrice=125,Texture=134003,EquipLoc="",Link="|cffffffff|Hitem:3726::::::::40:::::::|h[Big Bear Steak]|h|r",Type="Consumable"},["Ilkrud Magthrull's Tome"]={SubType="Quest",Level=1,id=5533,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133733,Link="|cffffffff|Hitem:5533::::::::40:::::::|h[Ilkrud Magthrull's Tome]|h|r",EquipLoc="",Type="Quest"},["Tablet of Lightning Bolt V"]={SubType="Book",Level=34,id=4178,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=134459,Type="Recipe",Link="|cffffffff|Hitem:4178::::::::40:::::::|h[Tablet of Lightning Bolt V]|h|r",EquipLoc=""},["Gnoll Skin Bandolier"]={SubType="Ammo Pouch",Level=60,id=19320,StackCount=1,Rarity=3,MinLevel=55,SellPrice=87500,Texture=133581,Link="|cff0070dd|Hitem:19320::::::::40:::::::|h[Gnoll Skin Bandolier]|h|r",EquipLoc="INVTYPE_BAG",Type="Quiver"},["Deprecated Pat's Test Strongbox"]={SubType="Junk",Level=35,id=4573,StackCount=1,Rarity=1,MinLevel=25,SellPrice=5000,Texture=133628,Type="Miscellaneous",Link="|cffffffff|Hitem:4573::::::::40:::::::|h[Deprecated Pat's Test Strongbox]|h|r",EquipLoc=""},["Deprecated Fistful of Hay"]={SubType="Quest",Level=1,id=1527,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134185,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1527::::::::40:::::::|h[Deprecated Fistful of Hay]|h|r"},["Rat Stompers"]={SubType="Cloth",Level=23,id=6478,StackCount=1,Rarity=2,MinLevel=0,SellPrice=634,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:6478::::::::40:::::::|h[Rat Stompers]|h|r"},["Elune Stone"]={SubType="Consumable",Level=1,id=21536,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134123,Link="|cffffffff|Hitem:21536::::::::40:::::::|h[Elune Stone]|h|r",EquipLoc="",Type="Consumable"},["63 Green Warrior Gauntlets"]={SubType="Plate",Level=63,id=20284,StackCount=1,Rarity=2,MinLevel=58,SellPrice=9607,Texture=132944,Link="|cff1eff00|Hitem:20284::::::::40:::::::|h[63 Green Warrior Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Legionnaire's Dreadweave Robe"]={SubType="Cloth",Level=63,id=17572,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11223,Texture=132716,EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:17572::::::::40:::::::|h[Legionnaire's Dreadweave Robe]|h|r",Type="Armor"},["Grom's Tribute"]={SubType="Quest",Level=1,id=19851,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133646,Link="|cffffffff|Hitem:19851::::::::40:::::::|h[Grom's Tribute]|h|r",EquipLoc="",Type="Quest"},["49 Pound Redgill"]={SubType="Junk",Level=45,id=13884,StackCount=1,Rarity=1,MinLevel=0,SellPrice=75,Texture=133892,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13884::::::::40:::::::|h[49 Pound Redgill]|h|r"},["Flax Boots"]={SubType="Cloth",Level=5,id=3274,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=132538,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:3274::::::::40:::::::|h[Flax Boots]|h|r",Type="Armor"},["Mind Carver"]={SubType="One-Handed Swords",Level=62,id=18396,StackCount=1,Rarity=3,MinLevel=57,SellPrice=57516,Texture=135658,Type="Weapon",Link="|cff0070dd|Hitem:18396::::::::40:::::::|h[Mind Carver]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Hippogryph Muisek"]={SubType="Quest",Level=1,id=9595,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135865,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9595::::::::40:::::::|h[Hippogryph Muisek]|h|r"},["Peon Sword"]={SubType="One-Handed Swords",Level=4,id=2481,StackCount=1,Rarity=1,MinLevel=1,SellPrice=17,Texture=135274,Link="|cffffffff|Hitem:2481::::::::40:::::::|h[Peon Sword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Gray Ram"]={SubType="Junk",Level=40,id=5864,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132248,EquipLoc="",Link="|cff0070dd|Hitem:5864::::::::40:::::::|h[Gray Ram]|h|r",Type="Miscellaneous"},["Thick Murloc Armor"]={SubType="Leather",Level=34,id=5782,StackCount=1,Rarity=2,MinLevel=29,SellPrice=3211,Texture=132634,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:5782::::::::40:::::::|h[Thick Murloc Armor]|h|r"},["Monster - Axe, 2H War - Red"]={SubType="Two-Handed Axes",Level=1,id=12951,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12951::::::::40:::::::|h[Monster - Axe, 2H War - Red]|h|r"},["Buccaneer's Orb"]={SubType="Miscellaneous",Level=23,id=15912,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1148,Texture=135467,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15912::::::::40:::::::|h[Buccaneer's Orb]|h|r",Type="Armor"},["Shadow Silk"]={SubType="Trade Goods",Level=40,id=10285,StackCount=10,Rarity=1,MinLevel=0,SellPrice=1000,Texture=136113,EquipLoc="",Link="|cffffffff|Hitem:10285::::::::40:::::::|h[Shadow Silk]|h|r",Type="Trade Goods"},["Spellbinder Belt"]={SubType="Cloth",Level=13,id=4684,StackCount=1,Rarity=1,MinLevel=8,SellPrice=61,Texture=132493,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:4684::::::::40:::::::|h[Spellbinder Belt]|h|r"},["Horn Ring"]={SubType="Miscellaneous",Level=23,id=17692,StackCount=1,Rarity=2,MinLevel=0,SellPrice=881,Texture=133344,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:17692::::::::40:::::::|h[Horn Ring]|h|r",Type="Armor"},["Robe of Power"]={SubType="Cloth",Level=38,id=7054,StackCount=1,Rarity=3,MinLevel=33,SellPrice=4700,Texture=132643,EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:7054::::::::40:::::::|h[Robe of Power]|h|r",Type="Armor"},["Pattern: Felcloth Shoulders"]={SubType="Tailoring",Level=62,id=14508,StackCount=1,Rarity=2,MinLevel=0,SellPrice=15000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14508::::::::40:::::::|h[Pattern: Felcloth Shoulders]|h|r"},["Libram: Exorcism V"]={SubType="Book",Level=52,id=8939,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=133740,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8939::::::::40:::::::|h[Libram: Exorcism V]|h|r"},["Senggin Root"]={SubType="Consumable",Level=15,id=3448,StackCount=20,Rarity=1,MinLevel=0,SellPrice=6,Texture=134187,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:3448::::::::40:::::::|h[Senggin Root]|h|r"},["Secure Crate"]={SubType="Quest",Level=1,id=6462,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Link="|cffffffff|Hitem:6462::::::::40:::::::|h[Secure Crate]|h|r",EquipLoc="",Type="Quest"},["Large Basilisk Tail"]={SubType="Junk",Level=1,id=4093,StackCount=5,Rarity=0,MinLevel=0,SellPrice=713,Texture=134413,Link="|cff9d9d9d|Hitem:4093::::::::40:::::::|h[Large Basilisk Tail]|h|r",EquipLoc="",Type="Miscellaneous"},["Cubic Zirconia Ring"]={SubType="Miscellaneous",Level=20,id=7341,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=133347,EquipLoc="INVTYPE_FINGER",Link="|cffffffff|Hitem:7341::::::::40:::::::|h[Cubic Zirconia Ring]|h|r",Type="Armor"},["Gray Sack of Gems"]={SubType="Junk",Level=1,id=17964,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5512,Texture=133640,EquipLoc="",Link="|cff1eff00|Hitem:17964::::::::40:::::::|h[Gray Sack of Gems]|h|r",Type="Miscellaneous"},["Attuned Dampener"]={SubType="Consumable",Level=1,id=12650,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134961,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12650::::::::40:::::::|h[Attuned Dampener]|h|r"},["Rough Copper Bomb"]={SubType="Explosives",Level=14,id=4360,StackCount=10,Rarity=1,MinLevel=0,SellPrice=60,Texture=133717,Type="Trade Goods",Link="|cffffffff|Hitem:4360::::::::40:::::::|h[Rough Copper Bomb]|h|r",EquipLoc=""},["White Tuxedo Shirt"]={SubType="Miscellaneous",Level=25,id=6833,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=135012,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:6833::::::::40:::::::|h[White Tuxedo Shirt]|h|r"},["Recipe: Tender Wolf Steak"]={SubType="Cooking",Level=45,id=18046,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:18046::::::::40:::::::|h[Recipe: Tender Wolf Steak]|h|r",EquipLoc=""},["Swashbuckler's Shoulderpads"]={SubType="Leather",Level=55,id=10189,StackCount=1,Rarity=2,MinLevel=50,SellPrice=11872,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10189::::::::40:::::::|h[Swashbuckler's Shoulderpads]|h|r",Type="Armor"},["Kris of Orgrimmar"]={SubType="Daggers",Level=18,id=15443,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1119,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15443::::::::40:::::::|h[Kris of Orgrimmar]|h|r",Type="Weapon"},["Knight-Captain's Silk Sash"]={SubType="Cloth",Level=60,id=16367,StackCount=1,Rarity=3,MinLevel=55,SellPrice=4810,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16367::::::::40:::::::|h[Knight-Captain's Silk Sash]|h|r",Type="Armor"},["Libram: Exorcism VI"]={SubType="Book",Level=60,id=8947,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133740,Link="|cffffffff|Hitem:8947::::::::40:::::::|h[Libram: Exorcism VI]|h|r",EquipLoc="",Type="Recipe"},["Monster - Tool, Wrench Small"]={SubType="One-Handed Maces",Level=1,id=1911,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=134520,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:1911::::::::40:::::::|h[Monster - Tool, Wrench Small]|h|r",Type="Weapon"},["Pattern: Bramblewood Boots"]={SubType="Leatherworking",Level=70,id=22770,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:22770::::::::40:::::::|h[Pattern: Bramblewood Boots]|h|r",EquipLoc="",Type="Recipe"},["Tablet of Frost Resistance Totem II"]={SubType="Book",Level=38,id=9185,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=134459,Link="|cffffffff|Hitem:9185::::::::40:::::::|h[Tablet of Frost Resistance Totem II]|h|r",EquipLoc="",Type="Recipe"},["Filled Etched Phial"]={SubType="Quest",Level=1,id=5868,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134754,EquipLoc="",Link="|cffffffff|Hitem:5868::::::::40:::::::|h[Filled Etched Phial]|h|r",Type="Quest"},["Ripped Wing Webbing"]={SubType="Junk",Level=1,id=4460,StackCount=10,Rarity=0,MinLevel=0,SellPrice=175,Texture=134305,Link="|cff9d9d9d|Hitem:4460::::::::40:::::::|h[Ripped Wing Webbing]|h|r",EquipLoc="",Type="Miscellaneous"},["Defias Shipping Schedule"]={SubType="Quest",Level=1,id=7675,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134328,EquipLoc="",Link="|cffffffff|Hitem:7675::::::::40:::::::|h[Defias Shipping Schedule]|h|r",Type="Quest"},["Volcanic Breastplate"]={SubType="Leather",Level=57,id=15053,StackCount=1,Rarity=2,MinLevel=52,SellPrice=17275,Texture=132722,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15053::::::::40:::::::|h[Volcanic Breastplate]|h|r",Type="Armor"},["Pattern: Pilferer's Gloves"]={SubType="Leatherworking",Level=28,id=7363,StackCount=1,Rarity=2,MinLevel=0,SellPrice=525,Texture=134939,Link="|cff1eff00|Hitem:7363::::::::40:::::::|h[Pattern: Pilferer's Gloves]|h|r",EquipLoc="",Type="Recipe"},["Glyphed Bracers"]={SubType="Leather",Level=37,id=4059,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2233,Texture=132608,Type="Armor",Link="|cff1eff00|Hitem:4059::::::::40:::::::|h[Glyphed Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Monster - Axe, Horde B03 Copper"]={SubType="One-Handed Axes",Level=1,id=13625,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13625::::::::40:::::::|h[Monster - Axe, Horde B03 Copper]|h|r"},["Emerald Helm"]={SubType="Plate",Level=58,id=10279,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11188,Texture=133078,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10279::::::::40:::::::|h[Emerald Helm]|h|r",Type="Armor"},["Skeleton Key"]={SubType="Key",Level=1,id=13704,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134245,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:13704::::::::40:::::::|h[Skeleton Key]|h|r"},["Curved Yellow Bill"]={SubType="Junk",Level=1,id=4590,StackCount=5,Rarity=0,MinLevel=0,SellPrice=655,Texture=133708,Link="|cff9d9d9d|Hitem:4590::::::::40:::::::|h[Curved Yellow Bill]|h|r",EquipLoc="",Type="Miscellaneous"},["Deprecated Tauren Recruit's Shirt"]={SubType="Miscellaneous",Level=1,id=157,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,Type="Armor",Link="|cffffffff|Hitem:157::::::::40:::::::|h[Deprecated Tauren Recruit's Shirt]|h|r",EquipLoc="INVTYPE_BODY"},["Large Yellow Rocket"]={SubType="Consumable",Level=1,id=21595,StackCount=20,Rarity=1,MinLevel=0,SellPrice=12,Texture=134275,Link="|cffffffff|Hitem:21595::::::::40:::::::|h[Large Yellow Rocket]|h|r",EquipLoc="",Type="Consumable"},["Trophy Raptor Skull"]={SubType="Junk",Level=1,id=20016,StackCount=1,Rarity=0,MinLevel=0,SellPrice=3635,Texture=133732,Link="|cff9d9d9d|Hitem:20016::::::::40:::::::|h[Trophy Raptor Skull]|h|r",EquipLoc="",Type="Miscellaneous"},["Gri'lek's Blood"]={SubType="Quest",Level=1,id=19939,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134806,Link="|cff1eff00|Hitem:19939::::::::40:::::::|h[Gri'lek's Blood]|h|r",EquipLoc="",Type="Quest"},["Dwarven Hand Cannon"]={SubType="Guns",Level=58,id=2099,StackCount=1,Rarity=4,MinLevel=53,SellPrice=45040,Texture=135618,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffa335ee|Hitem:2099::::::::40:::::::|h[Dwarven Hand Cannon]|h|r",Type="Weapon"},["Rattlecage Buckler"]={SubType="Shields",Level=62,id=14528,StackCount=1,Rarity=3,MinLevel=57,SellPrice=34181,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:14528::::::::40:::::::|h[Rattlecage Buckler]|h|r"},["Tablet of Frost Shock"]={SubType="Book",Level=20,id=9058,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9058::::::::40:::::::|h[Tablet of Frost Shock]|h|r"},["Patchwork Gloves"]={SubType="Cloth",Level=7,id=1430,StackCount=1,Rarity=0,MinLevel=2,SellPrice=7,Texture=132952,EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:1430::::::::40:::::::|h[Patchwork Gloves]|h|r",Type="Armor"},["Toxic Revenger"]={SubType="Daggers",Level=32,id=9453,StackCount=1,Rarity=3,MinLevel=27,SellPrice=6592,Texture=135638,Link="|cff0070dd|Hitem:9453::::::::40:::::::|h[Toxic Revenger]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Bandit Cinch"]={SubType="Leather",Level=19,id=9775,StackCount=1,Rarity=2,MinLevel=14,SellPrice=315,Texture=132492,Link="|cff1eff00|Hitem:9775::::::::40:::::::|h[Bandit Cinch]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Elder Crocolisk Skin"]={SubType="Quest",Level=1,id=4105,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134303,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4105::::::::40:::::::|h[Elder Crocolisk Skin]|h|r"},["CHU's QUEST ITEM"]={SubType="Quest",Level=1,id=4559,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134095,Link="|cffffffff|Hitem:4559::::::::40:::::::|h[CHU's QUEST ITEM]|h|r",EquipLoc="",Type="Quest"},["Bronze Shortsword"]={SubType="One-Handed Swords",Level=24,id=2850,StackCount=1,Rarity=1,MinLevel=19,SellPrice=1439,Texture=135274,Link="|cffffffff|Hitem:2850::::::::40:::::::|h[Bronze Shortsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Elixir of Greater Agility"]={SubType="Consumable",Level=48,id=9187,StackCount=5,Rarity=1,MinLevel=38,SellPrice=600,Texture=134874,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9187::::::::40:::::::|h[Elixir of Greater Agility]|h|r"},["Undamaged Hippogryph Feather"]={SubType="Quest",Level=0,id=10450,StackCount=20,Rarity=1,MinLevel=1,SellPrice=396,Texture=132921,EquipLoc="",Link="|cffffffff|Hitem:10450::::::::40:::::::|h[Undamaged Hippogryph Feather]|h|r",Type="Quest"},["Codex of Holy Smite III"]={SubType="Book",Level=14,id=1100,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:1100::::::::40:::::::|h[Codex of Holy Smite III]|h|r",Type="Recipe"},["Bard's Belt"]={SubType="Leather",Level=15,id=6558,StackCount=1,Rarity=2,MinLevel=10,SellPrice=180,Texture=132492,Link="|cff1eff00|Hitem:6558::::::::40:::::::|h[Bard's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Ring of Blackrock"]={SubType="Miscellaneous",Level=75,id=19397,StackCount=1,Rarity=4,MinLevel=60,SellPrice=107438,Texture=133385,Link="|cffa335ee|Hitem:19397::::::::40:::::::|h[Ring of Blackrock]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Zinfizzlex's Portable Shredder Unit"]={SubType="Quest",Level=1,id=17384,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133002,EquipLoc="",Link="|cff0070dd|Hitem:17384::::::::40:::::::|h[Zinfizzlex's Portable Shredder Unit]|h|r",Type="Quest"},["Rat Catcher's Flute"]={SubType="Quest",Level=1,id=17117,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133942,EquipLoc="",Link="|cffffffff|Hitem:17117::::::::40:::::::|h[Rat Catcher's Flute]|h|r",Type="Quest"},["First Relic Fragment"]={SubType="Quest",Level=1,id=12896,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135152,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12896::::::::40:::::::|h[First Relic Fragment]|h|r"},["Wasphide Gauntlets"]={SubType="Leather",Level=78,id=21617,StackCount=1,Rarity=4,MinLevel=60,SellPrice=38454,Texture=132951,Link="|cffa335ee|Hitem:21617::::::::40:::::::|h[Wasphide Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Merciless Gauntlets"]={SubType="Mail",Level=53,id=15653,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8053,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15653::::::::40:::::::|h[Merciless Gauntlets]|h|r",Type="Armor"},["Test Fire Res Waist Mail"]={SubType="Mail",Level=35,id=16064,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2066,Texture=133693,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16064::::::::40:::::::|h[Test Fire Res Waist Mail]|h|r",Type="Armor"},["Wartorn Plate Scrap"]={SubType="Junk",Level=60,id=22375,StackCount=200,Rarity=3,MinLevel=0,SellPrice=0,Texture=134518,Link="|cff0070dd|Hitem:22375::::::::40:::::::|h[Wartorn Plate Scrap]|h|r",EquipLoc="",Type="Miscellaneous"},["Orcish War Chain"]={SubType="Mail",Level=23,id=3733,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1269,Texture=132624,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:3733::::::::40:::::::|h[Orcish War Chain]|h|r"},["Filled Cursed Ooze Jar"]={SubType="Quest",Level=1,id=11947,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134815,Type="Quest",Link="|cffffffff|Hitem:11947::::::::40:::::::|h[Filled Cursed Ooze Jar]|h|r",EquipLoc=""},["Sandstalker Bracers"]={SubType="Mail",Level=62,id=20476,StackCount=1,Rarity=3,MinLevel=57,SellPrice=16401,Texture=132611,Link="|cff0070dd|Hitem:20476::::::::40:::::::|h[Sandstalker Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Fire Opal Necklace"]={SubType="Miscellaneous",Level=52,id=11946,StackCount=1,Rarity=2,MinLevel=47,SellPrice=7912,Texture=133289,Type="Armor",Link="|cff1eff00|Hitem:11946::::::::40:::::::|h[Fire Opal Necklace]|h|r",EquipLoc="INVTYPE_NECK"},["Libram of Resilience"]={SubType="Book",Level=50,id=11736,StackCount=1,Rarity=2,MinLevel=50,SellPrice=0,Texture=133737,Type="Recipe",Link="|cff1eff00|Hitem:11736::::::::40:::::::|h[Libram of Resilience]|h|r",EquipLoc=""},["Pure Elementium Band"]={SubType="Miscellaneous",Level=83,id=19382,StackCount=1,Rarity=4,MinLevel=60,SellPrice=128280,Texture=133384,Link="|cffa335ee|Hitem:19382::::::::40:::::::|h[Pure Elementium Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Blood Guard's Dreadweave Boots"]={SubType="Cloth",Level=63,id=17576,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8544,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:17576::::::::40:::::::|h[Blood Guard's Dreadweave Boots]|h|r",Type="Armor"},["Ardent Custodian"]={SubType="One-Handed Maces",Level=43,id=868,StackCount=1,Rarity=4,MinLevel=38,SellPrice=21532,Texture=133488,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffa335ee|Hitem:868::::::::40:::::::|h[Ardent Custodian]|h|r"},["Redemption Boots"]={SubType="Plate",Level=86,id=22430,StackCount=1,Rarity=4,MinLevel=60,SellPrice=70562,Texture=132548,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:22430::::::::40:::::::|h[Redemption Boots]|h|r"},["Pattern: Timbermaw Brawlers"]={SubType="Leatherworking",Level=64,id=19327,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134939,Link="|cffffffff|Hitem:19327::::::::40:::::::|h[Pattern: Timbermaw Brawlers]|h|r",EquipLoc="",Type="Recipe"},["Monster - Item, Flower - White"]={SubType="Miscellaneous",Level=1,id=21123,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133939,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:21123::::::::40:::::::|h[Monster - Item, Flower - White]|h|r"},["Deprecated Rusted Lock"]={SubType="Junk",Level=1,id=3501,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134064,EquipLoc="",Link="|cffffffff|Hitem:3501::::::::40:::::::|h[Deprecated Rusted Lock]|h|r",Type="Miscellaneous"},["Hardened Tortoise Shell"]={SubType="Quest",Level=1,id=5795,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134305,Link="|cffffffff|Hitem:5795::::::::40:::::::|h[Hardened Tortoise Shell]|h|r",EquipLoc="",Type="Quest"},["Mirefin Head"]={SubType="Quest",Level=1,id=5847,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134302,Link="|cffffffff|Hitem:5847::::::::40:::::::|h[Mirefin Head]|h|r",EquipLoc="",Type="Quest"},["(OLD)Wicked Throwing Dagger"]={SubType="Thrown",Level=26,id=3109,StackCount=200,Rarity=1,MinLevel=21,SellPrice=0,Texture=135641,Type="Weapon",Link="|cffffffff|Hitem:3109::::::::40:::::::|h[(OLD)Wicked Throwing Dagger]|h|r",EquipLoc="INVTYPE_THROWN"},["Flimsy Male Undead Mask"]={SubType="Miscellaneous",Level=1,id=20573,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134179,Link="|cffffffff|Hitem:20573::::::::40:::::::|h[Flimsy Male Undead Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Chainmail Gloves"]={SubType="Mail",Level=17,id=850,StackCount=1,Rarity=1,MinLevel=12,SellPrice=176,Texture=132938,Type="Armor",Link="|cffffffff|Hitem:850::::::::40:::::::|h[Chainmail Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Deepmoss Egg"]={SubType="Quest",Level=1,id=5570,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132834,Link="|cffffffff|Hitem:5570::::::::40:::::::|h[Deepmoss Egg]|h|r",EquipLoc="",Type="Quest"},["Riding Turtle"]={SubType="Junk",Level=20,id=23720,StackCount=1,Rarity=1,MinLevel=20,SellPrice=0,Texture=132199,Link="|cffffffff|Hitem:23720::::::::40:::::::|h[Riding Turtle]|h|r",EquipLoc="",Type="Miscellaneous"},["Evergreen Herb Casing"]={SubType="Quest",Level=1,id=11024,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134001,Type="Quest",Link="|cffffffff|Hitem:11024::::::::40:::::::|h[Evergreen Herb Casing]|h|r",EquipLoc=""},["Tome of Knowledge"]={SubType="Miscellaneous",Level=61,id=13385,StackCount=1,Rarity=3,MinLevel=56,SellPrice=13237,Texture=133737,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:13385::::::::40:::::::|h[Tome of Knowledge]|h|r"},["Steel Breastplate"]={SubType="Mail",Level=40,id=7963,StackCount=1,Rarity=2,MinLevel=35,SellPrice=6488,Texture=132740,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7963::::::::40:::::::|h[Steel Breastplate]|h|r",Type="Armor"},["Burnt Leather Belt"]={SubType="Leather",Level=9,id=4666,StackCount=1,Rarity=1,MinLevel=4,SellPrice=26,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:4666::::::::40:::::::|h[Burnt Leather Belt]|h|r",Type="Armor"},["Ironhide Helmet"]={SubType="Mail",Level=55,id=15645,StackCount=1,Rarity=2,MinLevel=50,SellPrice=14577,Texture=133076,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15645::::::::40:::::::|h[Ironhide Helmet]|h|r",Type="Armor"},["Nature's Embrace"]={SubType="Cloth",Level=51,id=17741,StackCount=1,Rarity=3,MinLevel=46,SellPrice=11447,Texture=132656,EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:17741::::::::40:::::::|h[Nature's Embrace]|h|r",Type="Armor"},["Deprecated Bloodscalp Idol"]={SubType="Consumable",Level=37,id=1533,StackCount=1,Rarity=1,MinLevel=27,SellPrice=62,Texture=134231,Type="Consumable",Link="|cffffffff|Hitem:1533::::::::40:::::::|h[Deprecated Bloodscalp Idol]|h|r",EquipLoc=""},["Defender Bracers"]={SubType="Mail",Level=22,id=6574,StackCount=1,Rarity=2,MinLevel=17,SellPrice=568,Texture=132613,Type="Armor",Link="|cff1eff00|Hitem:6574::::::::40:::::::|h[Defender Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Tome of Frost Ward IV"]={SubType="Book",Level=52,id=8875,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=133739,Link="|cffffffff|Hitem:8875::::::::40:::::::|h[Tome of Frost Ward IV]|h|r",EquipLoc="",Type="Recipe"},["Schematic: Major Recombobulator"]={SubType="Engineering",Level=55,id=18655,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:18655::::::::40:::::::|h[Schematic: Major Recombobulator]|h|r",EquipLoc=""},["Geologist's Transcription Kit"]={SubType="Quest",Level=1,id=20453,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133000,Link="|cffffffff|Hitem:20453::::::::40:::::::|h[Geologist's Transcription Kit]|h|r",EquipLoc="",Type="Quest"},["Bloodmage Mantle"]={SubType="Cloth",Level=35,id=7684,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2184,Texture=135036,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7684::::::::40:::::::|h[Bloodmage Mantle]|h|r",Type="Armor"},["Skeleton Key Mold"]={SubType="Quest",Level=1,id=14644,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134457,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14644::::::::40:::::::|h[Skeleton Key Mold]|h|r"},["Bloodforged Gauntlets"]={SubType="Plate",Level=47,id=14949,StackCount=1,Rarity=2,MinLevel=42,SellPrice=3907,Texture=132953,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14949::::::::40:::::::|h[Bloodforged Gauntlets]|h|r"},["Steadfast Bracelets"]={SubType="Mail",Level=37,id=15590,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2674,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15590::::::::40:::::::|h[Steadfast Bracelets]|h|r",Type="Armor"},["Simple Scroll"]={SubType="Consumable",Level=1,id=9546,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9546::::::::40:::::::|h[Simple Scroll]|h|r"},["Crystalized Honey"]={SubType="Junk",Level=0,id=19960,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134136,Link="|cffffffff|Hitem:19960::::::::40:::::::|h[Crystalized Honey]|h|r",EquipLoc="",Type="Miscellaneous"},["Test Arcane Res Shoulders Plate"]={SubType="Plate",Level=40,id=16160,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3155,Texture=135059,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16160::::::::40:::::::|h[Test Arcane Res Shoulders Plate]|h|r",Type="Armor"},["Backwood Helm"]={SubType="Mail",Level=63,id=18421,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25741,Texture=133121,Type="Armor",Link="|cff0070dd|Hitem:18421::::::::40:::::::|h[Backwood Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Onyx Embedded Leggings"]={SubType="Mail",Level=77,id=21530,StackCount=1,Rarity=4,MinLevel=60,SellPrice=92311,Texture=134656,Link="|cffa335ee|Hitem:21530::::::::40:::::::|h[Onyx Embedded Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Mercurial Bracers"]={SubType="Mail",Level=60,id=10156,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12794,Texture=132617,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10156::::::::40:::::::|h[Mercurial Bracers]|h|r",Type="Armor"},["Gem of the Third Khan"]={SubType="Quest",Level=1,id=17763,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134135,EquipLoc="",Link="|cffffffff|Hitem:17763::::::::40:::::::|h[Gem of the Third Khan]|h|r",Type="Quest"},["Spells of Shadow"]={SubType="Quest",Level=1,id=14395,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133733,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14395::::::::40:::::::|h[Spells of Shadow]|h|r"},["Ritualistic Legguards"]={SubType="Cloth",Level=68,id=19899,StackCount=1,Rarity=3,MinLevel=60,SellPrice=28009,Texture=134608,Link="|cff0070dd|Hitem:19899::::::::40:::::::|h[Ritualistic Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["42 Pound Redgill"]={SubType="Junk",Level=45,id=13882,StackCount=1,Rarity=1,MinLevel=0,SellPrice=60,Texture=133892,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13882::::::::40:::::::|h[42 Pound Redgill]|h|r"},["52 Pound Redgill"]={SubType="Junk",Level=45,id=13887,StackCount=1,Rarity=1,MinLevel=0,SellPrice=75,Texture=133892,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13887::::::::40:::::::|h[52 Pound Redgill]|h|r"},["Rotting Flesh"]={SubType="Quest",Level=1,id=20026,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=133970,Link="|cffffffff|Hitem:20026::::::::40:::::::|h[Rotting Flesh]|h|r",EquipLoc="",Type="Quest"},["Wrapping Paper (PT)"]={SubType="Consumable",Level=0,id=5014,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132907,Link="|cffffffff|Hitem:5014::::::::40:::::::|h[Wrapping Paper (PT)]|h|r",EquipLoc="",Type="Consumable"},["Sulfuron Ingot"]={SubType="Trade Goods",Level=60,id=17203,StackCount=20,Rarity=4,MinLevel=0,SellPrice=100000,Texture=135824,EquipLoc="",Link="|cffa335ee|Hitem:17203::::::::40:::::::|h[Sulfuron Ingot]|h|r",Type="Trade Goods"},["Thin Cloth Belt"]={SubType="Cloth",Level=5,id=3599,StackCount=1,Rarity=1,MinLevel=1,SellPrice=4,Texture=132495,Link="|cffffffff|Hitem:3599::::::::40:::::::|h[Thin Cloth Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Astral Guard"]={SubType="Shields",Level=56,id=13254,StackCount=1,Rarity=3,MinLevel=51,SellPrice=25883,Texture=134958,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:13254::::::::40:::::::|h[Astral Guard]|h|r"},["Libram: Seal of Might II"]={SubType="Book",Level=20,id=1149,StackCount=1,Rarity=1,MinLevel=20,SellPrice=750,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:1149::::::::40:::::::|h[Libram: Seal of Might II]|h|r",Type="Recipe"},["Thoughtblighter"]={SubType="Wands",Level=68,id=19967,StackCount=1,Rarity=3,MinLevel=60,SellPrice=55576,Texture=135467,Link="|cff0070dd|Hitem:19967::::::::40:::::::|h[Thoughtblighter]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Doomwarder Blood"]={SubType="Quest",Level=1,id=6252,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134743,Type="Quest",Link="|cffffffff|Hitem:6252::::::::40:::::::|h[Doomwarder Blood]|h|r",EquipLoc=""},["Ghost Hair Comb"]={SubType="Quest",Level=1,id=1518,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133800,Link="|cffffffff|Hitem:1518::::::::40:::::::|h[Ghost Hair Comb]|h|r",EquipLoc="",Type="Quest"},["Severed Pincer"]={SubType="Junk",Level=1,id=7099,StackCount=5,Rarity=0,MinLevel=0,SellPrice=6,Texture=133708,EquipLoc="",Link="|cff9d9d9d|Hitem:7099::::::::40:::::::|h[Severed Pincer]|h|r",Type="Miscellaneous"},["Chromatic Carapace"]={SubType="Junk",Level=1,id=12871,StackCount=1,Rarity=4,MinLevel=0,SellPrice=8048,Texture=134967,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:12871::::::::40:::::::|h[Chromatic Carapace]|h|r"},["M73 Frag Grenade"]={SubType="Consumable",Level=53,id=10830,StackCount=10,Rarity=1,MinLevel=0,SellPrice=750,Texture=133716,EquipLoc="",Link="|cffffffff|Hitem:10830::::::::40:::::::|h[M73 Frag Grenade]|h|r",Type="Consumable"},["Angelista's Touch"]={SubType="Miscellaneous",Level=75,id=21695,StackCount=1,Rarity=4,MinLevel=60,SellPrice=90277,Texture=133426,Link="|cffa335ee|Hitem:21695::::::::40:::::::|h[Angelista's Touch]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Archaedic Stone"]={SubType="Miscellaneous",Level=47,id=11118,StackCount=1,Rarity=3,MinLevel=42,SellPrice=10795,Texture=135241,Type="Armor",Link="|cff0070dd|Hitem:11118::::::::40:::::::|h[Archaedic Stone]|h|r",EquipLoc="INVTYPE_FINGER"},["Plans: Storm Gauntlets"]={SubType="Blacksmithing",Level=59,id=12703,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12703::::::::40:::::::|h[Plans: Storm Gauntlets]|h|r"},["Argent Avenger"]={SubType="One-Handed Swords",Level=62,id=13246,StackCount=1,Rarity=3,MinLevel=0,SellPrice=53622,Texture=135275,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13246::::::::40:::::::|h[Argent Avenger]|h|r"},["Bottle of Disease"]={SubType="Quest",Level=1,id=5440,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134799,EquipLoc="",Link="|cffffffff|Hitem:5440::::::::40:::::::|h[Bottle of Disease]|h|r",Type="Quest"},["Wild Ricecake"]={SubType="Consumable",Level=35,id=16169,StackCount=20,Rarity=1,MinLevel=25,SellPrice=62,Texture=133991,EquipLoc="",Link="|cffffffff|Hitem:16169::::::::40:::::::|h[Wild Ricecake]|h|r",Type="Consumable"},["Enigma Leggings"]={SubType="Cloth",Level=81,id=21346,StackCount=1,Rarity=4,MinLevel=60,SellPrice=77286,Texture=134602,Link="|cffa335ee|Hitem:21346::::::::40:::::::|h[Enigma Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Silvermoon Leggings"]={SubType="Mail",Level=62,id=18378,StackCount=1,Rarity=3,MinLevel=57,SellPrice=31384,Texture=134583,Type="Armor",Link="|cff0070dd|Hitem:18378::::::::40:::::::|h[Silvermoon Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Blasted Boar Lung"]={SubType="Quest",Level=1,id=8392,StackCount=20,Rarity=1,MinLevel=1,SellPrice=0,Texture=134343,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:8392::::::::40:::::::|h[Blasted Boar Lung]|h|r"},["Blessed Qiraji War Axe"]={SubType="One-Handed Axes",Level=79,id=21242,StackCount=1,Rarity=4,MinLevel=60,SellPrice=164024,Texture=132420,Link="|cffa335ee|Hitem:21242::::::::40:::::::|h[Blessed Qiraji War Axe]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Filled Felstone Field Bottle"]={SubType="Quest",Level=1,id=13190,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134802,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13190::::::::40:::::::|h[Filled Felstone Field Bottle]|h|r"},["Searingscale Leggings"]={SubType="Mail",Level=53,id=11749,StackCount=1,Rarity=3,MinLevel=48,SellPrice=20141,Texture=134583,Type="Armor",Link="|cff0070dd|Hitem:11749::::::::40:::::::|h[Searingscale Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Lionheart Helm"]={SubType="Plate",Level=61,id=12640,StackCount=1,Rarity=4,MinLevel=56,SellPrice=21894,Texture=133138,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:12640::::::::40:::::::|h[Lionheart Helm]|h|r"},["Glimmering Mail Greaves"]={SubType="Mail",Level=31,id=4073,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2230,Texture=132584,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:4073::::::::40:::::::|h[Glimmering Mail Greaves]|h|r",Type="Armor"},["Cross-stitched Vest"]={SubType="Cloth",Level=29,id=1786,StackCount=1,Rarity=0,MinLevel=24,SellPrice=683,Texture=135031,Link="|cff9d9d9d|Hitem:1786::::::::40:::::::|h[Cross-stitched Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Stormshroud Shoulders"]={SubType="Leather",Level=59,id=15058,StackCount=1,Rarity=3,MinLevel=54,SellPrice=17631,Texture=135036,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:15058::::::::40:::::::|h[Stormshroud Shoulders]|h|r",Type="Armor"},["Deprecated Book of Battle Roar II"]={SubType="Book",Level=40,id=5162,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:5162::::::::40:::::::|h[Deprecated Book of Battle Roar II]|h|r",Type="Recipe"},["Duskwoven Branch"]={SubType="Miscellaneous",Level=55,id=15936,StackCount=1,Rarity=2,MinLevel=50,SellPrice=8950,Texture=133749,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15936::::::::40:::::::|h[Duskwoven Branch]|h|r",Type="Armor"},["Sticky Spider Webbing"]={SubType="Junk",Level=1,id=5602,StackCount=10,Rarity=0,MinLevel=0,SellPrice=63,Texture=136113,EquipLoc="",Link="|cff9d9d9d|Hitem:5602::::::::40:::::::|h[Sticky Spider Webbing]|h|r",Type="Miscellaneous"},["Formula: Powerful Smelling Salts "]={SubType="First Aid",Level=50,id=8547,StackCount=1,Rarity=2,MinLevel=0,SellPrice=200000,Texture=134941,Link="|cff1eff00|Hitem:8547::::::::40:::::::|h[Formula: Powerful Smelling Salts ]|h|r",EquipLoc="",Type="Recipe"},["Monster - Item, Book - Brown Offhand"]={SubType="Miscellaneous",Level=1,id=12743,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12743::::::::40:::::::|h[Monster - Item, Book - Brown Offhand]|h|r"},["Pristine Yeti Horn"]={SubType="Quest",Level=1,id=12367,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135657,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12367::::::::40:::::::|h[Pristine Yeti Horn]|h|r"},["Grimoire of Eye of Kilrogg"]={SubType="Book",Level=28,id=4201,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:4201::::::::40:::::::|h[Grimoire of Eye of Kilrogg]|h|r",Type="Recipe"},["Rugged Mail Gloves"]={SubType="Mail",Level=18,id=3458,StackCount=1,Rarity=2,MinLevel=0,SellPrice=334,Texture=132938,Link="|cff1eff00|Hitem:3458::::::::40:::::::|h[Rugged Mail Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Satyr Blood"]={SubType="Quest",Level=1,id=18603,StackCount=15,Rarity=1,MinLevel=0,SellPrice=0,Texture=134718,Type="Quest",Link="|cffffffff|Hitem:18603::::::::40:::::::|h[Satyr Blood]|h|r",EquipLoc=""},["Torch of Flame"]={SubType="Miscellaneous",Level=29,id=2808,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2364,Texture=135142,Link="|cffffffff|Hitem:2808::::::::40:::::::|h[Torch of Flame]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Test Glaive A"]={SubType="One-Handed Swords",Level=5,id=14883,StackCount=1,Rarity=1,MinLevel=1,SellPrice=24,Texture=135643,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:14883::::::::40:::::::|h[Test Glaive A]|h|r"},["Deprecated Dwarven Novice's Belt"]={SubType="Miscellaneous",Level=1,id=94,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132494,Type="Armor",Link="|cffffffff|Hitem:94::::::::40:::::::|h[Deprecated Dwarven Novice's Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Celestial Pauldrons"]={SubType="Cloth",Level=59,id=14316,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11271,Texture=135056,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14316::::::::40:::::::|h[Celestial Pauldrons]|h|r"},["Elegant Writing Tool"]={SubType="Junk",Level=1,id=11420,StackCount=10,Rarity=0,MinLevel=0,SellPrice=1712,Texture=132920,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11420::::::::40:::::::|h[Elegant Writing Tool]|h|r",EquipLoc=""},["Marshal's Silk Sash"]={SubType="Cloth",Level=65,id=16439,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8779,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16439::::::::40:::::::|h[Marshal's Silk Sash]|h|r",Type="Armor"},["Lawbringer Bracers"]={SubType="Plate",Level=66,id=16857,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17054,Texture=132617,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16857::::::::40:::::::|h[Lawbringer Bracers]|h|r",Type="Armor"},["Gyromatic Micro-Adjustor"]={SubType="Parts",Level=35,id=10498,StackCount=1,Rarity=1,MinLevel=1,SellPrice=16,Texture=134429,EquipLoc="",Link="|cffffffff|Hitem:10498::::::::40:::::::|h[Gyromatic Micro-Adjustor]|h|r",Type="Trade Goods"},["Regal Mantle"]={SubType="Cloth",Level=42,id=7473,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3710,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7473::::::::40:::::::|h[Regal Mantle]|h|r"},["Black War Steed Bridle"]={SubType="Junk",Level=40,id=18241,StackCount=1,Rarity=4,MinLevel=40,SellPrice=0,Texture=132251,Type="Miscellaneous",Link="|cffa335ee|Hitem:18241::::::::40:::::::|h[Black War Steed Bridle]|h|r",EquipLoc=""},["Emissary Cuffs"]={SubType="Leather",Level=33,id=9455,StackCount=1,Rarity=3,MinLevel=28,SellPrice=1825,Texture=132608,Link="|cff0070dd|Hitem:9455::::::::40:::::::|h[Emissary Cuffs]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Roasted Quail"]={SubType="Consumable",Level=55,id=8952,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=133971,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8952::::::::40:::::::|h[Roasted Quail]|h|r"},["Infantry Shield"]={SubType="Shields",Level=11,id=7108,StackCount=1,Rarity=2,MinLevel=6,SellPrice=209,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:7108::::::::40:::::::|h[Infantry Shield]|h|r",Type="Armor"},["Arcane Sash"]={SubType="Cloth",Level=56,id=8291,StackCount=1,Rarity=2,MinLevel=51,SellPrice=6784,Texture=132493,Link="|cff1eff00|Hitem:8291::::::::40:::::::|h[Arcane Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Dark Advisor's Pendant"]={SubType="Miscellaneous",Level=61,id=18691,StackCount=1,Rarity=3,MinLevel=56,SellPrice=31400,Texture=133293,Type="Armor",Link="|cff0070dd|Hitem:18691::::::::40:::::::|h[Dark Advisor's Pendant]|h|r",EquipLoc="INVTYPE_NECK"},["Mystic's Shoulder Pads"]={SubType="Cloth",Level=22,id=14368,StackCount=1,Rarity=1,MinLevel=17,SellPrice=346,Texture=135040,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:14368::::::::40:::::::|h[Mystic's Shoulder Pads]|h|r"},["Beetle Clasps"]={SubType="Mail",Level=27,id=7003,StackCount=1,Rarity=2,MinLevel=0,SellPrice=981,Texture=132605,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:7003::::::::40:::::::|h[Beetle Clasps]|h|r",Type="Armor"},["Shadewood Cloak"]={SubType="Cloth",Level=59,id=18328,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14116,Texture=133769,Type="Armor",Link="|cff0070dd|Hitem:18328::::::::40:::::::|h[Shadewood Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Tribal Warrior's Shield"]={SubType="Shields",Level=11,id=4967,StackCount=1,Rarity=1,MinLevel=0,SellPrice=116,Texture=134957,Link="|cffffffff|Hitem:4967::::::::40:::::::|h[Tribal Warrior's Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Pattern: Girdle of Insight"]={SubType="Leatherworking",Level=62,id=18514,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18514::::::::40:::::::|h[Pattern: Girdle of Insight]|h|r",EquipLoc=""},["Tome of Fire Ward II"]={SubType="Book",Level=30,id=8820,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8820::::::::40:::::::|h[Tome of Fire Ward II]|h|r"},["Seraph's Strike"]={SubType="Two-Handed Swords",Level=31,id=5614,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6147,Texture=135328,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:5614::::::::40:::::::|h[Seraph's Strike]|h|r",Type="Weapon"},["Native Robe"]={SubType="Cloth",Level=16,id=14109,StackCount=1,Rarity=2,MinLevel=11,SellPrice=341,Texture=132662,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14109::::::::40:::::::|h[Native Robe]|h|r"},["Felhide Cap"]={SubType="Leather",Level=58,id=18325,StackCount=1,Rarity=3,MinLevel=53,SellPrice=16137,Texture=133133,Type="Armor",Link="|cff0070dd|Hitem:18325::::::::40:::::::|h[Felhide Cap]|h|r",EquipLoc="INVTYPE_HEAD"},["Darkrune Breastplate"]={SubType="Plate",Level=63,id=20550,StackCount=1,Rarity=3,MinLevel=58,SellPrice=23051,Texture=132741,Link="|cff0070dd|Hitem:20550::::::::40:::::::|h[Darkrune Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Monster - Item, Gizmo"]={SubType="Miscellaneous",Level=1,id=4994,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134070,Link="|cff9d9d9d|Hitem:4994::::::::40:::::::|h[Monster - Item, Gizmo]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Cabalist Chestpiece"]={SubType="Leather",Level=50,id=7527,StackCount=1,Rarity=2,MinLevel=45,SellPrice=11284,Texture=132720,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7527::::::::40:::::::|h[Cabalist Chestpiece]|h|r",Type="Armor"},["Consecrated Letter"]={SubType="Quest",Level=1,id=9570,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9570::::::::40:::::::|h[Consecrated Letter]|h|r"},["Schematic: Force Reactive Disk"]={SubType="Engineering",Level=65,id=18291,StackCount=1,Rarity=3,MinLevel=0,SellPrice=30000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18291::::::::40:::::::|h[Schematic: Force Reactive Disk]|h|r",EquipLoc=""},["Razzeric's Customized Seatbelt"]={SubType="Cloth",Level=41,id=6726,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2388,Texture=132504,Type="Armor",Link="|cff1eff00|Hitem:6726::::::::40:::::::|h[Razzeric's Customized Seatbelt]|h|r",EquipLoc="INVTYPE_WAIST"},["Plans: Dark Iron Pulverizer"]={SubType="Blacksmithing",Level=53,id=11610,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",Link="|cff0070dd|Hitem:11610::::::::40:::::::|h[Plans: Dark Iron Pulverizer]|h|r",EquipLoc=""},["Reins of the Tawny Sabercat"]={SubType="Junk",Level=40,id=12326,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132242,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:12326::::::::40:::::::|h[Reins of the Tawny Sabercat]|h|r"},["Blackskull Shield"]={SubType="Shields",Level=46,id=1169,StackCount=1,Rarity=4,MinLevel=41,SellPrice=18815,Texture=136162,Type="Armor",Link="|cffa335ee|Hitem:1169::::::::40:::::::|h[Blackskull Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Colossal Bag of Loot"]={SubType="Junk",Level=60,id=21528,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133650,Link="|cff1eff00|Hitem:21528::::::::40:::::::|h[Colossal Bag of Loot]|h|r",EquipLoc="",Type="Miscellaneous"},["Ring of Fortitude"]={SubType="Miscellaneous",Level=53,id=10739,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5292,Texture=133353,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:10739::::::::40:::::::|h[Ring of Fortitude]|h|r",Type="Armor"},["Letter from the Front"]={SubType="Junk",Level=1,id=13362,StackCount=20,Rarity=0,MinLevel=0,SellPrice=2000,Texture=133464,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:13362::::::::40:::::::|h[Letter from the Front]|h|r"},["Warglaive of Azzinoth (Right)"]={SubType="One-Handed Swords",Level=100,id=18583,StackCount=1,Rarity=6,MinLevel=70,SellPrice=1111948,Texture=135277,Type="Weapon",Link="|cffe6cc80|Hitem:18583::::::::40:::::::|h[Warglaive of Azzinoth (Right)]|h|r",EquipLoc="INVTYPE_WEAPON"},["Clutch of Andros"]={SubType="Cloth",Level=61,id=13956,StackCount=1,Rarity=3,MinLevel=56,SellPrice=10950,Texture=132501,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13956::::::::40:::::::|h[Clutch of Andros]|h|r"},["Fairywing Mantle"]={SubType="Cloth",Level=30,id=9536,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1411,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9536::::::::40:::::::|h[Fairywing Mantle]|h|r",Type="Armor"},["Dig Rat Stew"]={SubType="Consumable",Level=20,id=5478,StackCount=20,Rarity=1,MinLevel=10,SellPrice=70,Texture=133748,Link="|cffffffff|Hitem:5478::::::::40:::::::|h[Dig Rat Stew]|h|r",EquipLoc="",Type="Consumable"},["Breastplate of the Chromatic Flight"]={SubType="Plate",Level=62,id=12895,StackCount=1,Rarity=4,MinLevel=0,SellPrice=29461,Texture=132744,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:12895::::::::40:::::::|h[Breastplate of the Chromatic Flight]|h|r"},["Living Shoulders"]={SubType="Leather",Level=54,id=15061,StackCount=1,Rarity=3,MinLevel=49,SellPrice=13803,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:15061::::::::40:::::::|h[Living Shoulders]|h|r",Type="Armor"},["Tundra Necklace"]={SubType="Miscellaneous",Level=33,id=12039,StackCount=1,Rarity=2,MinLevel=28,SellPrice=4224,Texture=133298,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12039::::::::40:::::::|h[Tundra Necklace]|h|r"},["Vessel of Dragon's Blood"]={SubType="Quest",Level=1,id=7867,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134832,Link="|cffffffff|Hitem:7867::::::::40:::::::|h[Vessel of Dragon's Blood]|h|r",EquipLoc="",Type="Quest"},["Blemished Wooden Staff"]={SubType="Staves",Level=11,id=4938,StackCount=1,Rarity=1,MinLevel=0,SellPrice=236,Texture=135158,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:4938::::::::40:::::::|h[Blemished Wooden Staff]|h|r",Type="Weapon"},["Ornate Cloak"]={SubType="Cloth",Level=53,id=10120,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8797,Texture=133758,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10120::::::::40:::::::|h[Ornate Cloak]|h|r",Type="Armor"},["Grimoire of Doom"]={SubType="Book",Level=60,id=4213,StackCount=1,Rarity=2,MinLevel=60,SellPrice=2500,Texture=133738,EquipLoc="",Link="|cff1eff00|Hitem:4213::::::::40:::::::|h[Grimoire of Doom]|h|r",Type="Recipe"},["Hive Wall Sample"]={SubType="Quest",Level=1,id=11131,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134822,Type="Quest",Link="|cffffffff|Hitem:11131::::::::40:::::::|h[Hive Wall Sample]|h|r",EquipLoc=""},["Quintis' Research Gloves"]={SubType="Cloth",Level=50,id=11888,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4879,Texture=132959,Type="Armor",Link="|cff1eff00|Hitem:11888::::::::40:::::::|h[Quintis' Research Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Earthfury Bracers"]={SubType="Mail",Level=66,id=16840,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25879,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16840::::::::40:::::::|h[Earthfury Bracers]|h|r",Type="Armor"},["Monster - Bow, Kaldorei"]={SubType="Bows",Level=1,id=21550,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135493,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:21550::::::::40:::::::|h[Monster - Bow, Kaldorei]|h|r"},["Cloudrunner Girdle"]={SubType="Leather",Level=60,id=13252,StackCount=1,Rarity=3,MinLevel=55,SellPrice=12434,Texture=132499,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13252::::::::40:::::::|h[Cloudrunner Girdle]|h|r"},["Pattern: Azure Silk Cloak"]={SubType="Tailoring",Level=35,id=7089,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:7089::::::::40:::::::|h[Pattern: Azure Silk Cloak]|h|r",Type="Recipe"},["Buzz Saw"]={SubType="One-Handed Swords",Level=21,id=1937,StackCount=1,Rarity=2,MinLevel=16,SellPrice=1700,Texture=135325,Type="Weapon",Link="|cff1eff00|Hitem:1937::::::::40:::::::|h[Buzz Saw]|h|r",EquipLoc="INVTYPE_WEAPON"},["Glacial Spike"]={SubType="Daggers",Level=52,id=20035,StackCount=1,Rarity=3,MinLevel=0,SellPrice=30651,Texture=135642,Link="|cff0070dd|Hitem:20035::::::::40:::::::|h[Glacial Spike]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Divine Warblade"]={SubType="Two-Handed Swords",Level=65,id=15258,StackCount=1,Rarity=2,MinLevel=60,SellPrice=64185,Texture=135327,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15258::::::::40:::::::|h[Divine Warblade]|h|r",Type="Weapon"},["An Exotic Cookbook"]={SubType="Junk",Level=1,id=5428,StackCount=5,Rarity=0,MinLevel=0,SellPrice=322,Texture=133735,Link="|cff9d9d9d|Hitem:5428::::::::40:::::::|h[An Exotic Cookbook]|h|r",EquipLoc="",Type="Miscellaneous"},["Band of the Penitent"]={SubType="Miscellaneous",Level=61,id=13217,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8814,Texture=133372,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:13217::::::::40:::::::|h[Band of the Penitent]|h|r"},["A Careworn Note"]={SubType="Quest",Level=1,id=22945,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133457,Link="|cffffffff|Hitem:22945::::::::40:::::::|h[A Careworn Note]|h|r",EquipLoc="",Type="Quest"},["Recipe: Spiced Chili Crab"]={SubType="Cooking",Level=45,id=16111,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:16111::::::::40:::::::|h[Recipe: Spiced Chili Crab]|h|r",Type="Recipe"},["Amalgam's Band"]={SubType="Miscellaneous",Level=63,id=22326,StackCount=1,Rarity=3,MinLevel=58,SellPrice=15282,Texture=133361,Link="|cff0070dd|Hitem:22326::::::::40:::::::|h[Amalgam's Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Deprecated Mottled Boar Steaks"]={SubType="Quest",Level=1,id=4889,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133970,Link="|cffffffff|Hitem:4889::::::::40:::::::|h[Deprecated Mottled Boar Steaks]|h|r",EquipLoc="",Type="Quest"},["Impenetrable Helmet"]={SubType="Mail",Level=60,id=15664,StackCount=1,Rarity=2,MinLevel=55,SellPrice=19071,Texture=133111,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15664::::::::40:::::::|h[Impenetrable Helmet]|h|r",Type="Armor"},["Chainmail Boots"]={SubType="Mail",Level=17,id=849,StackCount=1,Rarity=1,MinLevel=12,SellPrice=265,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:849::::::::40:::::::|h[Chainmail Boots]|h|r",Type="Armor"},["Tabard of the Scarlet Crusade DEPRECATED"]={SubType="Miscellaneous",Level=1,id=7725,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7143,Texture=133770,EquipLoc="INVTYPE_TABARD",Link="|cffffffff|Hitem:7725::::::::40:::::::|h[Tabard of the Scarlet Crusade DEPRECATED]|h|r",Type="Armor"},["Tactical Task Briefing X"]={SubType="Quest",Level=60,id=20943,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:20943::::::::40:::::::|h[Tactical Task Briefing X]|h|r",EquipLoc="",Type="Quest"},["Codex of Mind Blast IX"]={SubType="Book",Level=58,id=9027,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9027::::::::40:::::::|h[Codex of Mind Blast IX]|h|r"},["Monster - Item, Harpoon"]={SubType="Miscellaneous",Level=1,id=3368,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135129,Link="|cff9d9d9d|Hitem:3368::::::::40:::::::|h[Monster - Item, Harpoon]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Brigandine Helm"]={SubType="Mail",Level=50,id=3894,StackCount=1,Rarity=1,MinLevel=45,SellPrice=5997,Texture=133071,Type="Armor",Link="|cffffffff|Hitem:3894::::::::40:::::::|h[Brigandine Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Skull of Korrak"]={SubType="Quest",Level=60,id=18148,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133731,Type="Quest",Link="|cffffffff|Hitem:18148::::::::40:::::::|h[Skull of Korrak]|h|r",EquipLoc=""},["Juju Ember"]={SubType="Quest",Level=60,id=12455,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1500,Texture=134317,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12455::::::::40:::::::|h[Juju Ember]|h|r"},["Bulky Bludgeon"]={SubType="One-Handed Maces",Level=28,id=1825,StackCount=1,Rarity=0,MinLevel=23,SellPrice=1548,Texture=133046,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:1825::::::::40:::::::|h[Bulky Bludgeon]|h|r",Type="Weapon"},["Monster - Mace, Frying Pan w/ Eggs"]={SubType="One-Handed Maces",Level=1,id=17041,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133476,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:17041::::::::40:::::::|h[Monster - Mace, Frying Pan w/ Eggs]|h|r",Type="Weapon"},["Ring of Defense"]={SubType="Miscellaneous",Level=22,id=12985,StackCount=1,Rarity=3,MinLevel=17,SellPrice=1153,Texture=133370,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:12985::::::::40:::::::|h[Ring of Defense]|h|r"},["Monster - Mace, Thrall's Hammer"]={SubType="One-Handed Maces",Level=1,id=12183,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133476,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12183::::::::40:::::::|h[Monster - Mace, Thrall's Hammer]|h|r"},["Blackwood Fruit Sample"]={SubType="Quest",Level=1,id=12341,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134013,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12341::::::::40:::::::|h[Blackwood Fruit Sample]|h|r"},["Plans: Edge of Winter"]={SubType="Blacksmithing",Level=38,id=17706,StackCount=1,Rarity=2,MinLevel=0,SellPrice=950,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:17706::::::::40:::::::|h[Plans: Edge of Winter]|h|r",Type="Recipe"},["Warped Blade"]={SubType="One-Handed Swords",Level=24,id=1821,StackCount=1,Rarity=0,MinLevel=19,SellPrice=988,Texture=135274,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:1821::::::::40:::::::|h[Warped Blade]|h|r",Type="Weapon"},["Deprecated Brakgul Deathbringer's Head"]={SubType="Quest",Level=1,id=5531,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5531::::::::40:::::::|h[Deprecated Brakgul Deathbringer's Head]|h|r"},["Unstable Trigger"]={SubType="Parts",Level=40,id=10560,StackCount=10,Rarity=1,MinLevel=0,SellPrice=1000,Texture=132488,EquipLoc="",Link="|cffffffff|Hitem:10560::::::::40:::::::|h[Unstable Trigger]|h|r",Type="Trade Goods"},["Red Mageweave Shoulders"]={SubType="Cloth",Level=47,id=10029,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5391,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10029::::::::40:::::::|h[Red Mageweave Shoulders]|h|r",Type="Armor"},["Death's Sting"]={SubType="Daggers",Level=84,id=21126,StackCount=1,Rarity=4,MinLevel=60,SellPrice=206967,Texture=135669,Link="|cffa335ee|Hitem:21126::::::::40:::::::|h[Death's Sting]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Festival Firecracker"]={SubType="Consumable",Level=1,id=21747,StackCount=20,Rarity=1,MinLevel=0,SellPrice=75,Texture=133713,Link="|cffffffff|Hitem:21747::::::::40:::::::|h[Festival Firecracker]|h|r",EquipLoc="",Type="Consumable"},["Nightslayer Cover"]={SubType="Leather",Level=66,id=16821,StackCount=1,Rarity=4,MinLevel=60,SellPrice=32476,Texture=133143,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16821::::::::40:::::::|h[Nightslayer Cover]|h|r",Type="Armor"},["Shroud of Arcane Mastery"]={SubType="Cloth",Level=61,id=22330,StackCount=1,Rarity=3,MinLevel=56,SellPrice=15223,Texture=133768,Link="|cff0070dd|Hitem:22330::::::::40:::::::|h[Shroud of Arcane Mastery]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Master Cannoneer Boots"]={SubType="Plate",Level=61,id=13381,StackCount=1,Rarity=3,MinLevel=56,SellPrice=15433,Texture=132590,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13381::::::::40:::::::|h[Master Cannoneer Boots]|h|r"},["Frostwolf Commander's Medal"]={SubType="Quest",Level=1,id=17504,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=133445,EquipLoc="",Link="|cffffffff|Hitem:17504::::::::40:::::::|h[Frostwolf Commander's Medal]|h|r",Type="Quest"},["Eater of the Dead"]={SubType="One-Handed Axes",Level=54,id=10805,StackCount=1,Rarity=2,MinLevel=49,SellPrice=29661,Texture=132403,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:10805::::::::40:::::::|h[Eater of the Dead]|h|r",Type="Weapon"},["Tome of Fire Ward III"]={SubType="Book",Level=40,id=8843,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133739,Link="|cffffffff|Hitem:8843::::::::40:::::::|h[Tome of Fire Ward III]|h|r",EquipLoc="",Type="Recipe"},["[PH] Greater Arcane Amalgamation (AGI/FR)"]={SubType="Quest",Level=50,id=11671,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=134094,Type="Quest",Link="|cff0070dd|Hitem:11671::::::::40:::::::|h[[PH] Greater Arcane Amalgamation (AGI/FR)]|h|r",EquipLoc=""},["Flare Gun"]={SubType="Quest",Level=1,id=8051,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134536,Link="|cffffffff|Hitem:8051::::::::40:::::::|h[Flare Gun]|h|r",EquipLoc="",Type="Quest"},["Leather Chef's Belt"]={SubType="Leather",Level=44,id=9682,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3831,Texture=132494,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9682::::::::40:::::::|h[Leather Chef's Belt]|h|r"},["Silver Dress Robes"]={SubType="Cloth",Level=50,id=2618,StackCount=1,Rarity=1,MinLevel=45,SellPrice=5327,Texture=132673,EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:2618::::::::40:::::::|h[Silver Dress Robes]|h|r",Type="Armor"},["Shrunken Head"]={SubType="Quest",Level=1,id=1532,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,Type="Quest",Link="|cffffffff|Hitem:1532::::::::40:::::::|h[Shrunken Head]|h|r",EquipLoc=""},["Sparkleshell Belt"]={SubType="Mail",Level=36,id=15575,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2300,Texture=132516,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15575::::::::40:::::::|h[Sparkleshell Belt]|h|r",Type="Armor"},["Heroic Armor"]={SubType="Plate",Level=62,id=14931,StackCount=1,Rarity=2,MinLevel=57,SellPrice=18548,Texture=132632,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14931::::::::40:::::::|h[Heroic Armor]|h|r"},["Runn Tum Tuber Surprise"]={SubType="Consumable",Level=55,id=18254,StackCount=20,Rarity=1,MinLevel=45,SellPrice=18,Texture=134019,Type="Consumable",Link="|cffffffff|Hitem:18254::::::::40:::::::|h[Runn Tum Tuber Surprise]|h|r",EquipLoc=""},["Assault Band"]={SubType="Miscellaneous",Level=44,id=13095,StackCount=1,Rarity=3,MinLevel=39,SellPrice=6646,Texture=133346,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:13095::::::::40:::::::|h[Assault Band]|h|r"},["Arcanum of Focus"]={SubType="Quest",Level=50,id=18330,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134072,Type="Quest",Link="|cff1eff00|Hitem:18330::::::::40:::::::|h[Arcanum of Focus]|h|r",EquipLoc=""},["Ritual Shroud"]={SubType="Cloth",Level=24,id=14127,StackCount=1,Rarity=2,MinLevel=19,SellPrice=999,Texture=132659,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14127::::::::40:::::::|h[Ritual Shroud]|h|r"},["Cooked Crab Claw"]={SubType="Consumable",Level=15,id=2682,StackCount=20,Rarity=1,MinLevel=5,SellPrice=25,Texture=133708,EquipLoc="",Link="|cffffffff|Hitem:2682::::::::40:::::::|h[Cooked Crab Claw]|h|r",Type="Consumable"},["Black Lodestone"]={SubType="Quest",Level=1,id=18629,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134120,Type="Quest",Link="|cffffffff|Hitem:18629::::::::40:::::::|h[Black Lodestone]|h|r",EquipLoc=""},["Inlaid Mithril Cylinder"]={SubType="Reagent",Level=42,id=9060,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134535,Link="|cffffffff|Hitem:9060::::::::40:::::::|h[Inlaid Mithril Cylinder]|h|r",EquipLoc="",Type="Reagent"},["Pattern: Blood Tiger Breastplate"]={SubType="Leatherworking",Level=65,id=19772,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19772::::::::40:::::::|h[Pattern: Blood Tiger Breastplate]|h|r",EquipLoc="",Type="Recipe"},["Gem of Anacondra"]={SubType="Quest",Level=1,id=9739,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134134,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9739::::::::40:::::::|h[Gem of Anacondra]|h|r"},["Tome of Arcane Intellect V"]={SubType="Book",Level=56,id=8883,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=133739,Link="|cffffffff|Hitem:8883::::::::40:::::::|h[Tome of Arcane Intellect V]|h|r",EquipLoc="",Type="Recipe"},["Imbued Plate Girdle"]={SubType="Plate",Level=57,id=10370,StackCount=1,Rarity=2,MinLevel=52,SellPrice=6985,Texture=132501,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10370::::::::40:::::::|h[Imbued Plate Girdle]|h|r",Type="Armor"},["Green Leather Armor"]={SubType="Leather",Level=31,id=4255,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2366,Texture=132723,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:4255::::::::40:::::::|h[Green Leather Armor]|h|r",Type="Armor"},["Golden Flame"]={SubType="Quest",Level=1,id=11179,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134961,Type="Quest",Link="|cffffffff|Hitem:11179::::::::40:::::::|h[Golden Flame]|h|r",EquipLoc=""},["Revenant Leggings"]={SubType="Plate",Level=52,id=10133,StackCount=1,Rarity=2,MinLevel=47,SellPrice=10792,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10133::::::::40:::::::|h[Revenant Leggings]|h|r",Type="Armor"},["Solid Stone"]={SubType="Trade Goods",Level=35,id=7912,StackCount=20,Rarity=1,MinLevel=0,SellPrice=100,Texture=135236,Link="|cffffffff|Hitem:7912::::::::40:::::::|h[Solid Stone]|h|r",EquipLoc="",Type="Trade Goods"},["Ravager's Armor"]={SubType="Mail",Level=44,id=14768,StackCount=1,Rarity=2,MinLevel=39,SellPrice=8566,Texture=132629,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14768::::::::40:::::::|h[Ravager's Armor]|h|r"},["Impenetrable Breastplate"]={SubType="Mail",Level=61,id=15660,StackCount=1,Rarity=2,MinLevel=56,SellPrice=26315,Texture=132736,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15660::::::::40:::::::|h[Impenetrable Breastplate]|h|r",Type="Armor"},["Emberplate Armguards"]={SubType="Plate",Level=57,id=11767,StackCount=1,Rarity=3,MinLevel=52,SellPrice=8637,Texture=132617,Type="Armor",Link="|cff0070dd|Hitem:11767::::::::40:::::::|h[Emberplate Armguards]|h|r",EquipLoc="INVTYPE_WRIST"},["Deathbone Gauntlets"]={SubType="Plate",Level=61,id=14622,StackCount=1,Rarity=3,MinLevel=56,SellPrice=10212,Texture=132962,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:14622::::::::40:::::::|h[Deathbone Gauntlets]|h|r"},["Bloodstone Oval"]={SubType="Quest",Level=1,id=3688,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134086,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3688::::::::40:::::::|h[Bloodstone Oval]|h|r"},["90 Epic Frost Neck"]={SubType="Miscellaneous",Level=90,id=20332,StackCount=1,Rarity=4,MinLevel=60,SellPrice=12157,Texture=133441,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:20332::::::::40:::::::|h[90 Epic Frost Neck]|h|r"},["Grizzled Bear Heart"]={SubType="Quest",Level=1,id=3253,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3253::::::::40:::::::|h[Grizzled Bear Heart]|h|r"},["Elegant Scepter"]={SubType="Miscellaneous",Level=62,id=15940,StackCount=1,Rarity=2,MinLevel=57,SellPrice=10957,Texture=135473,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15940::::::::40:::::::|h[Elegant Scepter]|h|r",Type="Armor"},["Ace of Warlords"]={SubType="Junk",Level=1,id=19258,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134497,Link="|cff0070dd|Hitem:19258::::::::40:::::::|h[Ace of Warlords]|h|r",EquipLoc="",Type="Miscellaneous"},["Mistscape Sash"]={SubType="Cloth",Level=42,id=4736,StackCount=1,Rarity=2,MinLevel=37,SellPrice=2616,Texture=132493,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4736::::::::40:::::::|h[Mistscape Sash]|h|r"},["Bright Mantle"]={SubType="Cloth",Level=26,id=4661,StackCount=1,Rarity=2,MinLevel=21,SellPrice=929,Texture=135040,Link="|cff1eff00|Hitem:4661::::::::40:::::::|h[Bright Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Alabaster Plate Pauldrons"]={SubType="Plate",Level=55,id=8319,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9181,Texture=135060,Link="|cff1eff00|Hitem:8319::::::::40:::::::|h[Alabaster Plate Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Scaled Leather Belt"]={SubType="Leather",Level=30,id=9827,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1114,Texture=132498,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9827::::::::40:::::::|h[Scaled Leather Belt]|h|r"},["Plans: Darksoul Shoulders"]={SubType="Blacksmithing",Level=65,id=19781,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19781::::::::40:::::::|h[Plans: Darksoul Shoulders]|h|r",EquipLoc="",Type="Recipe"},["Mystery Meat"]={SubType="Trade Goods",Level=30,id=12037,StackCount=10,Rarity=1,MinLevel=0,SellPrice=87,Texture=134023,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12037::::::::40:::::::|h[Mystery Meat]|h|r"},["Neophyte's Pants"]={SubType="Cloth",Level=1,id=52,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:52::::::::40:::::::|h[Neophyte's Pants]|h|r",Type="Armor"},["White Wolf Gloves"]={SubType="Leather",Level=10,id=1965,StackCount=1,Rarity=1,MinLevel=5,SellPrice=36,Texture=132939,Type="Armor",Link="|cffffffff|Hitem:1965::::::::40:::::::|h[White Wolf Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Blastershot Launcher"]={SubType="Guns",Level=70,id=17072,StackCount=1,Rarity=4,MinLevel=60,SellPrice=82572,Texture=135618,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffa335ee|Hitem:17072::::::::40:::::::|h[Blastershot Launcher]|h|r",Type="Weapon"},["Sickle of Unyielding Strength"]={SubType="One-Handed Axes",Level=70,id=21392,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132406,Link="|cffa335ee|Hitem:21392::::::::40:::::::|h[Sickle of Unyielding Strength]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Leggings of Immersion"]={SubType="Leather",Level=73,id=21698,StackCount=1,Rarity=4,MinLevel=60,SellPrice=62117,Texture=134636,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:21698::::::::40:::::::|h[Leggings of Immersion]|h|r"},["Plains Ring"]={SubType="Miscellaneous",Level=29,id=2039,StackCount=1,Rarity=3,MinLevel=24,SellPrice=750,Texture=133344,EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:2039::::::::40:::::::|h[Plains Ring]|h|r",Type="Armor"},["Mudsnout Blossoms"]={SubType="Quest",Level=1,id=3502,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134531,EquipLoc="",Link="|cffffffff|Hitem:3502::::::::40:::::::|h[Mudsnout Blossoms]|h|r",Type="Quest"},["Essence of Agony"]={SubType="Trade Goods",Level=50,id=8923,StackCount=20,Rarity=1,MinLevel=0,SellPrice=50,Texture=134799,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:8923::::::::40:::::::|h[Essence of Agony]|h|r"},["Stonevault Shiv"]={SubType="Daggers",Level=36,id=9384,StackCount=1,Rarity=3,MinLevel=31,SellPrice=9789,Texture=135654,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9384::::::::40:::::::|h[Stonevault Shiv]|h|r"},["Test Enchantments LockBox (Enchanting Items)"]={SubType="Junk",Level=1,id=16109,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16109::::::::40:::::::|h[Test Enchantments LockBox (Enchanting Items)]|h|r",Type="Miscellaneous"},["Studded Blackjack"]={SubType="One-Handed Maces",Level=10,id=1913,StackCount=1,Rarity=1,MinLevel=5,SellPrice=148,Texture=133476,Type="Weapon",Link="|cffffffff|Hitem:1913::::::::40:::::::|h[Studded Blackjack]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Glimmering Mithril Insignia"]={SubType="Quest",Level=50,id=10418,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16464,Texture=133435,EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:10418::::::::40:::::::|h[Glimmering Mithril Insignia]|h|r",Type="Quest"},["Shay's Bell"]={SubType="Quest",Level=1,id=9189,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133706,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9189::::::::40:::::::|h[Shay's Bell]|h|r"},["Trelane's Ember Agate"]={SubType="Quest",Level=1,id=4532,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134129,Type="Quest",Link="|cffffffff|Hitem:4532::::::::40:::::::|h[Trelane's Ember Agate]|h|r",EquipLoc=""},["Earthshatter Headpiece"]={SubType="Mail",Level=88,id=22466,StackCount=1,Rarity=4,MinLevel=60,SellPrice=114949,Texture=133117,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:22466::::::::40:::::::|h[Earthshatter Headpiece]|h|r"},["Formula: Enchant Shield - Lesser Protection"]={SubType="Enchanting",Level=22,id=11081,StackCount=1,Rarity=2,MinLevel=0,SellPrice=200,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11081::::::::40:::::::|h[Formula: Enchant Shield - Lesser Protection]|h|r",EquipLoc=""},["Leggings of the Festering Swarm"]={SubType="Cloth",Level=76,id=21676,StackCount=1,Rarity=4,MinLevel=60,SellPrice=57104,Texture=134596,Link="|cffa335ee|Hitem:21676::::::::40:::::::|h[Leggings of the Festering Swarm]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Pants of Prophecy"]={SubType="Cloth",Level=66,id=16814,StackCount=1,Rarity=4,MinLevel=60,SellPrice=37286,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16814::::::::40:::::::|h[Pants of Prophecy]|h|r",Type="Armor"},["Bandit Gloves"]={SubType="Leather",Level=20,id=9780,StackCount=1,Rarity=2,MinLevel=15,SellPrice=369,Texture=132949,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9780::::::::40:::::::|h[Bandit Gloves]|h|r"},["Harvest Boar"]={SubType="Consumable",Level=55,id=19995,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134016,Link="|cffffffff|Hitem:19995::::::::40:::::::|h[Harvest Boar]|h|r",EquipLoc="",Type="Consumable"},["Harvest Nectar"]={SubType="Consumable",Level=55,id=19997,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132791,Link="|cffffffff|Hitem:19997::::::::40:::::::|h[Harvest Nectar]|h|r",EquipLoc="",Type="Consumable"},["Enchanted Battlehammer"]={SubType="Two-Handed Maces",Level=56,id=12776,StackCount=1,Rarity=3,MinLevel=51,SellPrice=48124,Texture=133042,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12776::::::::40:::::::|h[Enchanted Battlehammer]|h|r"},["Hurley's Tankard"]={SubType="One-Handed Maces",Level=57,id=18044,StackCount=1,Rarity=3,MinLevel=52,SellPrice=41478,Texture=132791,Type="Weapon",Link="|cff0070dd|Hitem:18044::::::::40:::::::|h[Hurley's Tankard]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Heart of Agamaggan"]={SubType="Shields",Level=36,id=6694,StackCount=1,Rarity=3,MinLevel=31,SellPrice=6309,Texture=134948,Type="Armor",Link="|cff0070dd|Hitem:6694::::::::40:::::::|h[Heart of Agamaggan]|h|r",EquipLoc="INVTYPE_SHIELD"},["Flarecore Robe"]={SubType="Cloth",Level=66,id=19156,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34911,Texture=132659,Link="|cffa335ee|Hitem:19156::::::::40:::::::|h[Flarecore Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Scroll of Protection II"]={SubType="Consumable",Level=25,id=1478,StackCount=5,Rarity=1,MinLevel=15,SellPrice=62,Texture=134943,Type="Consumable",Link="|cffffffff|Hitem:1478::::::::40:::::::|h[Scroll of Protection II]|h|r",EquipLoc=""},["Bristlebark Belt"]={SubType="Leather",Level=23,id=14567,StackCount=1,Rarity=2,MinLevel=18,SellPrice=529,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14567::::::::40:::::::|h[Bristlebark Belt]|h|r"},["Laminated Scale Gloves"]={SubType="Mail",Level=59,id=3996,StackCount=1,Rarity=0,MinLevel=54,SellPrice=4659,Texture=132938,Type="Armor",Link="|cff9d9d9d|Hitem:3996::::::::40:::::::|h[Laminated Scale Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Monster - Sword, Machete C01"]={SubType="One-Handed Swords",Level=1,id=18167,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135316,Type="Weapon",Link="|cff9d9d9d|Hitem:18167::::::::40:::::::|h[Monster - Sword, Machete C01]|h|r",EquipLoc="INVTYPE_WEAPON"},["Band of Resolution"]={SubType="Miscellaneous",Level=66,id=22680,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10709,Texture=133343,Link="|cff0070dd|Hitem:22680::::::::40:::::::|h[Band of Resolution]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Signet of the Unseen Path"]={SubType="Miscellaneous",Level=65,id=21402,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133425,Link="|cffa335ee|Hitem:21402::::::::40:::::::|h[Signet of the Unseen Path]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Intricately Runed Shield"]={SubType="Shields",Level=62,id=18696,StackCount=1,Rarity=3,MinLevel=57,SellPrice=33476,Texture=134948,Type="Armor",Link="|cff0070dd|Hitem:18696::::::::40:::::::|h[Intricately Runed Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Acolyte's Robe"]={SubType="Cloth",Level=1,id=6129,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=132657,Link="|cff9d9d9d|Hitem:6129::::::::40:::::::|h[Acolyte's Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Damp Diary Page (Day 87)"]={SubType="Junk",Level=1,id=6305,StackCount=1,Rarity=0,MinLevel=0,SellPrice=25,Texture=134332,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:6305::::::::40:::::::|h[Damp Diary Page (Day 87)]|h|r",EquipLoc=""},["Hero's Bracers"]={SubType="Mail",Level=58,id=8302,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11060,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:8302::::::::40:::::::|h[Hero's Bracers]|h|r"},["Zandalar Signet of Might"]={SubType="Quest",Level=60,id=20077,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133603,Link="|cff0070dd|Hitem:20077::::::::40:::::::|h[Zandalar Signet of Might]|h|r",EquipLoc="",Type="Quest"},["Bleak Howler Armguards"]={SubType="Leather",Level=61,id=13208,StackCount=1,Rarity=3,MinLevel=56,SellPrice=12520,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13208::::::::40:::::::|h[Bleak Howler Armguards]|h|r"},["Shimmering Sash"]={SubType="Cloth",Level=22,id=6570,StackCount=1,Rarity=2,MinLevel=17,SellPrice=363,Texture=132514,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:6570::::::::40:::::::|h[Shimmering Sash]|h|r"},["Hurd Smasher"]={SubType="Fist Weapons",Level=60,id=13198,StackCount=1,Rarity=3,MinLevel=55,SellPrice=50851,Texture=132945,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13198::::::::40:::::::|h[Hurd Smasher]|h|r"},["Brigade Bracers"]={SubType="Mail",Level=42,id=9927,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3927,Texture=132612,Link="|cff1eff00|Hitem:9927::::::::40:::::::|h[Brigade Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Arcanum of Protection"]={SubType="Quest",Level=50,id=18331,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134072,Type="Quest",Link="|cff1eff00|Hitem:18331::::::::40:::::::|h[Arcanum of Protection]|h|r",EquipLoc=""},["Sealed Craftsman's Writ"]={SubType="Junk",Level=1,id=22568,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134940,Link="|cffffffff|Hitem:22568::::::::40:::::::|h[Sealed Craftsman's Writ]|h|r",EquipLoc="",Type="Miscellaneous"},["Formula: Enchant Weapon - Unholy"]={SubType="Enchanting",Level=59,id=16248,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16248::::::::40:::::::|h[Formula: Enchant Weapon - Unholy]|h|r",Type="Recipe"},["Gold Lion Shield"]={SubType="Shields",Level=34,id=2916,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4405,Texture=134948,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:2916::::::::40:::::::|h[Gold Lion Shield]|h|r",Type="Armor"},["Elder's Mantle"]={SubType="Cloth",Level=33,id=7367,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1818,Texture=135057,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7367::::::::40:::::::|h[Elder's Mantle]|h|r",Type="Armor"},["Boreal Mantle"]={SubType="Cloth",Level=57,id=11782,StackCount=1,Rarity=3,MinLevel=52,SellPrice=12720,Texture=135033,Type="Armor",Link="|cff0070dd|Hitem:11782::::::::40:::::::|h[Boreal Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Glyphed Oaken Branch"]={SubType="Quest",Level=1,id=12663,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135645,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12663::::::::40:::::::|h[Glyphed Oaken Branch]|h|r"},["Umbral Wand"]={SubType="Wands",Level=45,id=5216,StackCount=1,Rarity=2,MinLevel=40,SellPrice=11821,Texture=135468,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5216::::::::40:::::::|h[Umbral Wand]|h|r",Type="Weapon"},["Prairie Wolf Heart"]={SubType="Quest",Level=1,id=4804,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Type="Quest",Link="|cffffffff|Hitem:4804::::::::40:::::::|h[Prairie Wolf Heart]|h|r",EquipLoc=""},["Small Sack of Coins"]={SubType="Junk",Level=1,id=11966,StackCount=1,Rarity=1,MinLevel=0,SellPrice=164,Texture=133639,Type="Miscellaneous",Link="|cffffffff|Hitem:11966::::::::40:::::::|h[Small Sack of Coins]|h|r",EquipLoc=""},["Mindsurge Robe"]={SubType="Cloth",Level=62,id=18532,StackCount=1,Rarity=3,MinLevel=57,SellPrice=21629,Texture=132670,Type="Armor",Link="|cff0070dd|Hitem:18532::::::::40:::::::|h[Mindsurge Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Primal Bat Leather"]={SubType="Trade Goods",Level=60,id=19767,StackCount=20,Rarity=1,MinLevel=0,SellPrice=2000,Texture=134345,Link="|cffffffff|Hitem:19767::::::::40:::::::|h[Primal Bat Leather]|h|r",EquipLoc="",Type="Trade Goods"},["Camouflaged Tunic"]={SubType="Leather",Level=22,id=3585,StackCount=1,Rarity=2,MinLevel=0,SellPrice=953,Texture=132723,Type="Armor",Link="|cff1eff00|Hitem:3585::::::::40:::::::|h[Camouflaged Tunic]|h|r",EquipLoc="INVTYPE_CHEST"},["Heavy Cord Bracers"]={SubType="Cloth",Level=10,id=6062,StackCount=1,Rarity=1,MinLevel=0,SellPrice=28,Texture=132606,Type="Armor",Link="|cffffffff|Hitem:6062::::::::40:::::::|h[Heavy Cord Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Old Moneybag"]={SubType="Bag",Level=5,id=4957,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=133639,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:4957::::::::40:::::::|h[Old Moneybag]|h|r"},["Dark Iron Shoulders"]={SubType="Plate",Level=58,id=11605,StackCount=1,Rarity=2,MinLevel=53,SellPrice=10776,Texture=135040,Type="Armor",Link="|cff1eff00|Hitem:11605::::::::40:::::::|h[Dark Iron Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Warden's Cloak"]={SubType="Cloth",Level=39,id=14602,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2995,Texture=133774,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14602::::::::40:::::::|h[Warden's Cloak]|h|r"},["Test Potion LockBox (Shaman)"]={SubType="Junk",Level=1,id=16079,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16079::::::::40:::::::|h[Test Potion LockBox (Shaman)]|h|r",Type="Miscellaneous"},["Horn of Arra'chea"]={SubType="Quest",Level=1,id=4841,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133722,Link="|cffffffff|Hitem:4841::::::::40:::::::|h[Horn of Arra'chea]|h|r",EquipLoc="",Type="Quest"},["Thin Kodo Leather"]={SubType="Trade Goods",Level=10,id=5082,StackCount=10,Rarity=1,MinLevel=0,SellPrice=25,Texture=134255,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:5082::::::::40:::::::|h[Thin Kodo Leather]|h|r"},["Hive Defiler Wristguards"]={SubType="Plate",Level=78,id=21618,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31727,Texture=132601,Link="|cffa335ee|Hitem:21618::::::::40:::::::|h[Hive Defiler Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Thick Cloak"]={SubType="Cloth",Level=46,id=3964,StackCount=1,Rarity=0,MinLevel=41,SellPrice=2127,Texture=133762,Type="Armor",Link="|cff9d9d9d|Hitem:3964::::::::40:::::::|h[Thick Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Plucked Feather"]={SubType="Junk",Level=1,id=7096,StackCount=5,Rarity=0,MinLevel=0,SellPrice=5,Texture=132929,EquipLoc="",Link="|cff9d9d9d|Hitem:7096::::::::40:::::::|h[Plucked Feather]|h|r",Type="Miscellaneous"},["Cracked Leather Vest"]={SubType="Leather",Level=5,id=2127,StackCount=1,Rarity=1,MinLevel=1,SellPrice=12,Texture=135010,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:2127::::::::40:::::::|h[Cracked Leather Vest]|h|r"},["Mythology of the Titans"]={SubType="Quest",Level=1,id=5536,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133742,EquipLoc="",Link="|cffffffff|Hitem:5536::::::::40:::::::|h[Mythology of the Titans]|h|r",Type="Quest"},["Default Stationery"]={SubType="Consumable",Level=0,id=9311,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9311::::::::40:::::::|h[Default Stationery]|h|r"},["Pathfinder Bracers"]={SubType="Leather",Level=26,id=15348,StackCount=1,Rarity=2,MinLevel=21,SellPrice=792,Texture=132611,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15348::::::::40:::::::|h[Pathfinder Bracers]|h|r",Type="Armor"},["Large Fang"]={SubType="Trade Goods",Level=30,id=5637,StackCount=5,Rarity=1,MinLevel=0,SellPrice=75,Texture=133725,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:5637::::::::40:::::::|h[Large Fang]|h|r"},["Friendship Bread"]={SubType="Consumable",Level=55,id=23160,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=133991,Link="|cffffffff|Hitem:23160::::::::40:::::::|h[Friendship Bread]|h|r",EquipLoc="",Type="Consumable"},["Field Marshal's Plate Helm"]={SubType="Plate",Level=74,id=16478,StackCount=1,Rarity=4,MinLevel=60,SellPrice=18903,Texture=133073,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16478::::::::40:::::::|h[Field Marshal's Plate Helm]|h|r",Type="Armor"},["Panther Cage Key"]={SubType="Quest",Level=1,id=12942,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134241,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12942::::::::40:::::::|h[Panther Cage Key]|h|r"},["Test Proc Wand"]={SubType="Wands",Level=25,id=4985,StackCount=100,Rarity=0,MinLevel=20,SellPrice=777,Texture=135464,Link="|cff9d9d9d|Hitem:4985::::::::40:::::::|h[Test Proc Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Discolored Healing Potion"]={SubType="Consumable",Level=15,id=4596,StackCount=5,Rarity=1,MinLevel=5,SellPrice=25,Texture=134815,Type="Consumable",Link="|cffffffff|Hitem:4596::::::::40:::::::|h[Discolored Healing Potion]|h|r",EquipLoc=""},["Knight's Colors"]={SubType="Miscellaneous",Level=40,id=15198,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134474,EquipLoc="INVTYPE_TABARD",Link="|cffffffff|Hitem:15198::::::::40:::::::|h[Knight's Colors]|h|r",Type="Armor"},["Disciple's Vest"]={SubType="Cloth",Level=13,id=6266,StackCount=1,Rarity=2,MinLevel=8,SellPrice=205,Texture=135009,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:6266::::::::40:::::::|h[Disciple's Vest]|h|r"},["Ruined Jumper Cables"]={SubType="Devices",Level=33,id=6715,StackCount=1,Rarity=1,MinLevel=0,SellPrice=21,Texture=134070,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:6715::::::::40:::::::|h[Ruined Jumper Cables]|h|r"},["Deprecated Thick Leather Gloves"]={SubType="Leather",Level=10,id=2255,StackCount=1,Rarity=0,MinLevel=5,SellPrice=24,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:2255::::::::40:::::::|h[Deprecated Thick Leather Gloves]|h|r",Type="Armor"},["Flameseer Mantle"]={SubType="Cloth",Level=47,id=11310,StackCount=1,Rarity=3,MinLevel=42,SellPrice=6598,Texture=135036,Type="Armor",Link="|cff0070dd|Hitem:11310::::::::40:::::::|h[Flameseer Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Barrier Shield"]={SubType="Shields",Level=62,id=18499,StackCount=1,Rarity=3,MinLevel=57,SellPrice=34589,Texture=134956,Type="Armor",Link="|cff0070dd|Hitem:18499::::::::40:::::::|h[Barrier Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Pridelord Gloves"]={SubType="Leather",Level=56,id=14675,StackCount=1,Rarity=2,MinLevel=51,SellPrice=8182,Texture=132949,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14675::::::::40:::::::|h[Pridelord Gloves]|h|r"},["Princess Theradras' Scepter"]={SubType="Two-Handed Maces",Level=54,id=17766,StackCount=1,Rarity=3,MinLevel=49,SellPrice=44863,Texture=133047,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:17766::::::::40:::::::|h[Princess Theradras' Scepter]|h|r",Type="Weapon"},["Lovely Purple Dress"]={SubType="Miscellaneous",Level=1,id=22280,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132658,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:22280::::::::40:::::::|h[Lovely Purple Dress]|h|r"},["Hand of Gehennas"]={SubType="Quest",Level=1,id=17331,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135817,EquipLoc="",Link="|cffffffff|Hitem:17331::::::::40:::::::|h[Hand of Gehennas]|h|r",Type="Quest"},["Deliah's Ring"]={SubType="Quest",Level=1,id=3234,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133345,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3234::::::::40:::::::|h[Deliah's Ring]|h|r"},["Sharpened Letter Opener"]={SubType="Daggers",Level=7,id=2138,StackCount=1,Rarity=0,MinLevel=2,SellPrice=38,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2138::::::::40:::::::|h[Sharpened Letter Opener]|h|r",Type="Weapon"},["Unprepared Sawtooth Flank"]={SubType="Quest",Level=1,id=6169,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133970,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6169::::::::40:::::::|h[Unprepared Sawtooth Flank]|h|r"},["Beasthunter Dagger"]={SubType="Daggers",Level=60,id=15783,StackCount=1,Rarity=2,MinLevel=0,SellPrice=43292,Texture=135650,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15783::::::::40:::::::|h[Beasthunter Dagger]|h|r",Type="Weapon"},["Used Monster Sample"]={SubType="Junk",Level=0,id=9443,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1,Texture=134437,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:9443::::::::40:::::::|h[Used Monster Sample]|h|r"},["Red Woolen Bag"]={SubType="Bag",Level=15,id=5763,StackCount=1,Rarity=1,MinLevel=0,SellPrice=700,Texture=133643,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:5763::::::::40:::::::|h[Red Woolen Bag]|h|r",Type="Container"},["Omokk's Girth Restrainer"]={SubType="Plate",Level=60,id=13959,StackCount=1,Rarity=3,MinLevel=0,SellPrice=9542,Texture=132502,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13959::::::::40:::::::|h[Omokk's Girth Restrainer]|h|r"},["Keeper's Cord"]={SubType="Leather",Level=49,id=14661,StackCount=1,Rarity=2,MinLevel=44,SellPrice=5461,Texture=132501,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14661::::::::40:::::::|h[Keeper's Cord]|h|r"},["Vendetta"]={SubType="Daggers",Level=31,id=776,StackCount=1,Rarity=3,MinLevel=26,SellPrice=5765,Texture=135638,Link="|cff0070dd|Hitem:776::::::::40:::::::|h[Vendetta]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Manual of Engineering Disciplines"]={SubType="Quest",Level=0,id=10789,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133742,EquipLoc="",Link="|cffffffff|Hitem:10789::::::::40:::::::|h[Manual of Engineering Disciplines]|h|r",Type="Quest"},["Rough Grinding Stone"]={SubType="Trade Goods",Level=10,id=3470,StackCount=20,Rarity=1,MinLevel=0,SellPrice=5,Texture=135243,Link="|cffffffff|Hitem:3470::::::::40:::::::|h[Rough Grinding Stone]|h|r",EquipLoc="",Type="Trade Goods"},["Defiler's Cloth Boots"]={SubType="Cloth",Level=63,id=20159,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17803,Texture=132564,Link="|cff0070dd|Hitem:20159::::::::40:::::::|h[Defiler's Cloth Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Comfortable Leather Hat"]={SubType="Leather",Level=40,id=8174,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4131,Texture=133117,Link="|cff1eff00|Hitem:8174::::::::40:::::::|h[Comfortable Leather Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Ring of the Cryptstalker"]={SubType="Miscellaneous",Level=92,id=23067,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133393,Link="|cffa335ee|Hitem:23067::::::::40:::::::|h[Ring of the Cryptstalker]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Testament of Hope"]={SubType="Miscellaneous",Level=61,id=13315,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11396,Texture=133738,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:13315::::::::40:::::::|h[Testament of Hope]|h|r"},["Stone Circle"]={SubType="Quest",Level=1,id=10556,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134430,EquipLoc="",Link="|cffffffff|Hitem:10556::::::::40:::::::|h[Stone Circle]|h|r",Type="Quest"},["The Deed to Southshore"]={SubType="Quest",Level=1,id=13450,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134332,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13450::::::::40:::::::|h[The Deed to Southshore]|h|r"},["Twill Bracers"]={SubType="Cloth",Level=54,id=3946,StackCount=1,Rarity=0,MinLevel=49,SellPrice=2431,Texture=132609,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:3946::::::::40:::::::|h[Twill Bracers]|h|r"},["Totem of Life"]={SubType="Totems",Level=78,id=22396,StackCount=1,Rarity=4,MinLevel=60,SellPrice=48827,Texture=134918,Link="|cffa335ee|Hitem:22396::::::::40:::::::|h[Totem of Life]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Fire Totem"]={SubType="Reagent",Level=10,id=5176,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136232,EquipLoc="",Link="|cffffffff|Hitem:5176::::::::40:::::::|h[Fire Totem]|h|r",Type="Reagent"},["Cat Carrier (Black Tabby)"]={SubType="Junk",Level=20,id=8491,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=132599,Link="|cffffffff|Hitem:8491::::::::40:::::::|h[Cat Carrier (Black Tabby)]|h|r",EquipLoc="",Type="Miscellaneous"},["Thick Obsidian Breastplate"]={SubType="Plate",Level=72,id=22196,StackCount=1,Rarity=4,MinLevel=60,SellPrice=49624,Texture=132639,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:22196::::::::40:::::::|h[Thick Obsidian Breastplate]|h|r"},["Tome of Arcane Missiles III"]={SubType="Book",Level=24,id=4153,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133739,Link="|cffffffff|Hitem:4153::::::::40:::::::|h[Tome of Arcane Missiles III]|h|r",EquipLoc="",Type="Recipe"},["Book of Rejuvenation"]={SubType="Book",Level=4,id=5730,StackCount=1,Rarity=1,MinLevel=4,SellPrice=10,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:5730::::::::40:::::::|h[Book of Rejuvenation]|h|r",Type="Recipe"},["Anastari Heirloom"]={SubType="Miscellaneous",Level=60,id=18728,StackCount=1,Rarity=3,MinLevel=55,SellPrice=32466,Texture=133298,Type="Armor",Link="|cff0070dd|Hitem:18728::::::::40:::::::|h[Anastari Heirloom]|h|r",EquipLoc="INVTYPE_NECK"},["Skeletal Longsword"]={SubType="One-Handed Swords",Level=27,id=2018,StackCount=1,Rarity=2,MinLevel=22,SellPrice=3269,Texture=135317,Link="|cff1eff00|Hitem:2018::::::::40:::::::|h[Skeletal Longsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Bottled Winterspring Water"]={SubType="Consumable",Level=45,id=19300,StackCount=20,Rarity=1,MinLevel=35,SellPrice=100,Texture=132805,Link="|cffffffff|Hitem:19300::::::::40:::::::|h[Bottled Winterspring Water]|h|r",EquipLoc="",Type="Consumable"},["Thunder Lizard Horn"]={SubType="Quest",Level=1,id=4895,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,Link="|cffffffff|Hitem:4895::::::::40:::::::|h[Thunder Lizard Horn]|h|r",EquipLoc="",Type="Quest"},["Craftsman's Writ - Huge Thorium Battleaxe"]={SubType="Junk",Level=60,id=22603,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22603::::::::40:::::::|h[Craftsman's Writ - Huge Thorium Battleaxe]|h|r",EquipLoc="",Type="Miscellaneous"},["Level 15 Test Gear Leather - Hunter/Rogue"]={SubType="Junk",Level=1,id=13644,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13644::::::::40:::::::|h[Level 15 Test Gear Leather - Hunter/Rogue]|h|r"},["Magister's Crown"]={SubType="Cloth",Level=62,id=16686,StackCount=1,Rarity=3,MinLevel=57,SellPrice=15912,Texture=132768,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16686::::::::40:::::::|h[Magister's Crown]|h|r",Type="Armor"},["Bloodsoaked Greaves"]={SubType="Plate",Level=68,id=19913,StackCount=1,Rarity=3,MinLevel=60,SellPrice=22142,Texture=132587,Link="|cff0070dd|Hitem:19913::::::::40:::::::|h[Bloodsoaked Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Frostfire Ring"]={SubType="Miscellaneous",Level=92,id=23062,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133393,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:23062::::::::40:::::::|h[Frostfire Ring]|h|r"},["QAEnchant Chest +4 Stats"]={SubType="Consumable",Level=1,id=22028,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22028::::::::40:::::::|h[QAEnchant Chest +4 Stats]|h|r",EquipLoc="",Type="Consumable"},["Craftsman's Writ - Thorium Tube"]={SubType="Junk",Level=60,id=22616,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22616::::::::40:::::::|h[Craftsman's Writ - Thorium Tube]|h|r",EquipLoc="",Type="Miscellaneous"},["Large Red Sack"]={SubType="Bag",Level=25,id=857,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133643,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:857::::::::40:::::::|h[Large Red Sack]|h|r",Type="Container"},["Mysterious Unhatched Egg"]={SubType="Junk",Level=1,id=11419,StackCount=10,Rarity=0,MinLevel=0,SellPrice=1900,Texture=132833,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11419::::::::40:::::::|h[Mysterious Unhatched Egg]|h|r",EquipLoc=""},["Scratching Stick"]={SubType="Junk",Level=1,id=5375,StackCount=5,Rarity=0,MinLevel=0,SellPrice=95,Texture=133749,EquipLoc="",Link="|cff9d9d9d|Hitem:5375::::::::40:::::::|h[Scratching Stick]|h|r",Type="Miscellaneous"},["Deprecated Feathered Helm"]={SubType="Leather",Level=27,id=4193,StackCount=1,Rarity=1,MinLevel=22,SellPrice=777,Texture=133072,Type="Armor",Link="|cffffffff|Hitem:4193::::::::40:::::::|h[Deprecated Feathered Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Savage Gladiator Grips"]={SubType="Mail",Level=57,id=11730,StackCount=1,Rarity=3,MinLevel=52,SellPrice=12762,Texture=132938,Type="Armor",Link="|cff0070dd|Hitem:11730::::::::40:::::::|h[Savage Gladiator Grips]|h|r",EquipLoc="INVTYPE_HAND"},["Hammer of the Grand Crusader"]={SubType="Two-Handed Maces",Level=63,id=18717,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68818,Texture=133043,Type="Weapon",Link="|cff0070dd|Hitem:18717::::::::40:::::::|h[Hammer of the Grand Crusader]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Jin'do's Bag of Whammies"]={SubType="Miscellaneous",Level=66,id=19891,StackCount=1,Rarity=4,MinLevel=60,SellPrice=63628,Texture=133640,Link="|cffa335ee|Hitem:19891::::::::40:::::::|h[Jin'do's Bag of Whammies]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Tablet of Lightning Shield III"]={SubType="Book",Level=24,id=1591,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=134459,Type="Recipe",Link="|cffffffff|Hitem:1591::::::::40:::::::|h[Tablet of Lightning Shield III]|h|r",EquipLoc=""},["Mystical Gloves"]={SubType="Cloth",Level=54,id=10176,StackCount=1,Rarity=2,MinLevel=49,SellPrice=5689,Texture=132957,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10176::::::::40:::::::|h[Mystical Gloves]|h|r",Type="Armor"},["Craftsman's Writ - Dense Weightstone"]={SubType="Junk",Level=60,id=22600,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22600::::::::40:::::::|h[Craftsman's Writ - Dense Weightstone]|h|r",EquipLoc="",Type="Miscellaneous"},["Pyric Caduceus"]={SubType="Wands",Level=53,id=11748,StackCount=1,Rarity=3,MinLevel=48,SellPrice=25083,Texture=135150,Type="Weapon",Link="|cff0070dd|Hitem:11748::::::::40:::::::|h[Pyric Caduceus]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Bonecaster's Bindings"]={SubType="Cloth",Level=53,id=14301,StackCount=1,Rarity=2,MinLevel=48,SellPrice=5451,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14301::::::::40:::::::|h[Bonecaster's Bindings]|h|r"},["Highlander's Plate Greaves"]={SubType="Plate",Level=63,id=20048,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17931,Texture=132585,Link="|cff0070dd|Hitem:20048::::::::40:::::::|h[Highlander's Plate Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Cursed Felblade"]={SubType="One-Handed Swords",Level=18,id=14145,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1032,Texture=135648,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:14145::::::::40:::::::|h[Cursed Felblade]|h|r"},["Deprecated Burnt Leather Shoulderpads"]={SubType="Leather",Level=11,id=4664,StackCount=1,Rarity=1,MinLevel=6,SellPrice=73,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:4664::::::::40:::::::|h[Deprecated Burnt Leather Shoulderpads]|h|r",Type="Armor"},["Whitemane's Chapeau"]={SubType="Cloth",Level=44,id=7720,StackCount=1,Rarity=3,MinLevel=39,SellPrice=5356,Texture=133101,Link="|cff0070dd|Hitem:7720::::::::40:::::::|h[Whitemane's Chapeau]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Sawbones Shirt"]={SubType="Miscellaneous",Level=1,id=14617,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6250,Texture=135029,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:14617::::::::40:::::::|h[Sawbones Shirt]|h|r"},["Codex of Mind Vision"]={SubType="Book",Level=22,id=1085,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133741,Link="|cffffffff|Hitem:1085::::::::40:::::::|h[Codex of Mind Vision]|h|r",EquipLoc="",Type="Recipe"},["Thuzadin Mantle"]={SubType="Cloth",Level=63,id=22412,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16476,Texture=135033,Link="|cff0070dd|Hitem:22412::::::::40:::::::|h[Thuzadin Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Plagueheart Leggings"]={SubType="Cloth",Level=88,id=22505,StackCount=1,Rarity=4,MinLevel=60,SellPrice=104517,Texture=134599,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:22505::::::::40:::::::|h[Plagueheart Leggings]|h|r"},["Robes of Antiquity"]={SubType="Cloth",Level=25,id=5812,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1129,Texture=132679,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:5812::::::::40:::::::|h[Robes of Antiquity]|h|r"},["Tablet of Chain Lightning IV"]={SubType="Book",Level=56,id=9167,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9167::::::::40:::::::|h[Tablet of Chain Lightning IV]|h|r"},["Tablet of Water Breathing"]={SubType="Book",Level=20,id=5704,StackCount=1,Rarity=1,MinLevel=20,SellPrice=750,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:5704::::::::40:::::::|h[Tablet of Water Breathing]|h|r",Type="Recipe"},["Tough Leather Gloves"]={SubType="Leather",Level=29,id=1807,StackCount=1,Rarity=0,MinLevel=24,SellPrice=387,Texture=132952,Type="Armor",Link="|cff9d9d9d|Hitem:1807::::::::40:::::::|h[Tough Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Rough Leather Gloves"]={SubType="Leather",Level=10,id=797,StackCount=1,Rarity=1,MinLevel=5,SellPrice=35,Texture=132952,Type="Armor",Link="|cffffffff|Hitem:797::::::::40:::::::|h[Rough Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Robe of the Moccasin"]={SubType="Cloth",Level=22,id=6465,StackCount=1,Rarity=2,MinLevel=17,SellPrice=768,Texture=132677,Type="Armor",Link="|cff1eff00|Hitem:6465::::::::40:::::::|h[Robe of the Moccasin]|h|r",EquipLoc="INVTYPE_ROBE"},["Ectoplasmic Resonator"]={SubType="Quest",Level=1,id=13354,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136152,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13354::::::::40:::::::|h[Ectoplasmic Resonator]|h|r"},["Hero's Boots"]={SubType="Mail",Level=60,id=8307,StackCount=1,Rarity=2,MinLevel=55,SellPrice=18717,Texture=132589,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:8307::::::::40:::::::|h[Hero's Boots]|h|r"},["Harpy Skinner"]={SubType="Daggers",Level=20,id=5279,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1436,Texture=135650,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:5279::::::::40:::::::|h[Harpy Skinner]|h|r",Type="Weapon"},["Forest Leather Belt"]={SubType="Leather",Level=23,id=6382,StackCount=1,Rarity=2,MinLevel=18,SellPrice=523,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:6382::::::::40:::::::|h[Forest Leather Belt]|h|r"},["Tome of Frost Shield"]={SubType="Book",Level=8,id=966,StackCount=1,Rarity=1,MinLevel=8,SellPrice=87,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:966::::::::40:::::::|h[Tome of Frost Shield]|h|r",Type="Recipe"},["Tunnel Rat Ear"]={SubType="Quest",Level=1,id=3110,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133854,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3110::::::::40:::::::|h[Tunnel Rat Ear]|h|r"},["Blue Mechanostrider"]={SubType="Junk",Level=40,id=8595,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132247,Link="|cff0070dd|Hitem:8595::::::::40:::::::|h[Blue Mechanostrider]|h|r",EquipLoc="",Type="Miscellaneous"},["Lumberjack Axe"]={SubType="One-Handed Axes",Level=9,id=768,StackCount=1,Rarity=1,MinLevel=4,SellPrice=113,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:768::::::::40:::::::|h[Lumberjack Axe]|h|r"},["Heavy Dark Iron Ring"]={SubType="Miscellaneous",Level=66,id=18879,StackCount=1,Rarity=4,MinLevel=60,SellPrice=53364,Texture=133356,Type="Armor",Link="|cffa335ee|Hitem:18879::::::::40:::::::|h[Heavy Dark Iron Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Deprecated Cask of Merlot"]={SubType="Consumable",Level=1,id=1267,StackCount=10,Rarity=1,MinLevel=1,SellPrice=0,Texture=134514,Type="Consumable",Link="|cffffffff|Hitem:1267::::::::40:::::::|h[Deprecated Cask of Merlot]|h|r",EquipLoc=""},["Lead Band"]={SubType="Miscellaneous",Level=20,id=11981,StackCount=1,Rarity=2,MinLevel=15,SellPrice=496,Texture=133343,Type="Armor",Link="|cff1eff00|Hitem:11981::::::::40:::::::|h[Lead Band]|h|r",EquipLoc="INVTYPE_FINGER"},["Veteran Leggings"]={SubType="Mail",Level=15,id=2978,StackCount=1,Rarity=2,MinLevel=10,SellPrice=415,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:2978::::::::40:::::::|h[Veteran Leggings]|h|r"},["Artorius's Head"]={SubType="Quest",Level=1,id=18955,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136221,Type="Quest",Link="|cffffffff|Hitem:18955::::::::40:::::::|h[Artorius's Head]|h|r",EquipLoc=""},["Brigandine Gloves"]={SubType="Mail",Level=50,id=2428,StackCount=1,Rarity=1,MinLevel=45,SellPrice=4044,Texture=132938,Type="Armor",Link="|cffffffff|Hitem:2428::::::::40:::::::|h[Brigandine Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Rattlecage Skull"]={SubType="Quest",Level=1,id=6281,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,Type="Quest",Link="|cffffffff|Hitem:6281::::::::40:::::::|h[Rattlecage Skull]|h|r",EquipLoc=""},["Deprecated Summon Redwolf (Mount)"]={SubType="Junk",Level=1,id=1043,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134938,Type="Miscellaneous",Link="|cffffffff|Hitem:1043::::::::40:::::::|h[Deprecated Summon Redwolf (Mount)]|h|r",EquipLoc=""},["QAEnchant Cloak +3 Agility"]={SubType="Consumable",Level=1,id=22584,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22584::::::::40:::::::|h[QAEnchant Cloak +3 Agility]|h|r",EquipLoc="",Type="Consumable"},["Trophy Swoop Quill"]={SubType="Quest",Level=1,id=4769,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135992,Type="Quest",Link="|cffffffff|Hitem:4769::::::::40:::::::|h[Trophy Swoop Quill]|h|r",EquipLoc=""},["War Hammer"]={SubType="Two-Handed Maces",Level=35,id=2525,StackCount=1,Rarity=1,MinLevel=30,SellPrice=5297,Texture=133040,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:2525::::::::40:::::::|h[War Hammer]|h|r"},["Glowing Gem"]={SubType="Quest",Level=1,id=5463,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134132,EquipLoc="",Link="|cffffffff|Hitem:5463::::::::40:::::::|h[Glowing Gem]|h|r",Type="Quest"},["Swift Brown Steed"]={SubType="Junk",Level=60,id=18777,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132261,Type="Miscellaneous",Link="|cffa335ee|Hitem:18777::::::::40:::::::|h[Swift Brown Steed]|h|r",EquipLoc=""},["Fall/Winter Afternoon"]={SubType="Junk",Level=25,id=13843,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13843::::::::40:::::::|h[Fall/Winter Afternoon]|h|r"},["Runecloth Gloves"]={SubType="Cloth",Level=55,id=13863,StackCount=1,Rarity=2,MinLevel=50,SellPrice=6617,Texture=132959,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:13863::::::::40:::::::|h[Runecloth Gloves]|h|r"},["Raincaller Cloak"]={SubType="Cloth",Level=27,id=14188,StackCount=1,Rarity=2,MinLevel=22,SellPrice=982,Texture=133768,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14188::::::::40:::::::|h[Raincaller Cloak]|h|r"},["Monster - Axe, Insano"]={SubType="One-Handed Axes",Level=1,id=21465,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Link="|cff9d9d9d|Hitem:21465::::::::40:::::::|h[Monster - Axe, Insano]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["General's Chain Legguards"]={SubType="Mail",Level=71,id=16567,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34666,Texture=134668,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16567::::::::40:::::::|h[General's Chain Legguards]|h|r",Type="Armor"},["Monster - Polearm, Blademaster"]={SubType="Polearms",Level=1,id=14879,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135321,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14879::::::::40:::::::|h[Monster - Polearm, Blademaster]|h|r"},["Vital Bracelets"]={SubType="Cloth",Level=32,id=14206,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1046,Texture=132605,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14206::::::::40:::::::|h[Vital Bracelets]|h|r"},["Giantstalker's Breastplate"]={SubType="Mail",Level=66,id=16845,StackCount=1,Rarity=4,MinLevel=60,SellPrice=54148,Texture=132625,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16845::::::::40:::::::|h[Giantstalker's Breastplate]|h|r",Type="Armor"},["Enduring Shield"]={SubType="Shields",Level=39,id=15990,StackCount=1,Rarity=2,MinLevel=34,SellPrice=6850,Texture=134951,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15990::::::::40:::::::|h[Enduring Shield]|h|r",Type="Armor"},["Knowledge: Defias Disguise"]={SubType="Book",Level=13,id=5126,StackCount=1,Rarity=1,MinLevel=13,SellPrice=162,Texture=134941,Link="|cffffffff|Hitem:5126::::::::40:::::::|h[Knowledge: Defias Disguise]|h|r",EquipLoc="",Type="Recipe"},["Mirror Lake Water Sample"]={SubType="Quest",Level=1,id=7206,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132788,EquipLoc="",Link="|cffffffff|Hitem:7206::::::::40:::::::|h[Mirror Lake Water Sample]|h|r",Type="Quest"},["Cat Carrier (Silver Tabby)"]={SubType="Junk",Level=20,id=8488,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=132599,Link="|cffffffff|Hitem:8488::::::::40:::::::|h[Cat Carrier (Silver Tabby)]|h|r",EquipLoc="",Type="Miscellaneous"},["Deed to Thandol Span"]={SubType="Junk",Level=1,id=11943,StackCount=1,Rarity=0,MinLevel=0,SellPrice=21485,Texture=134328,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11943::::::::40:::::::|h[Deed to Thandol Span]|h|r",EquipLoc=""},["Monster - Mace, Spiked Heavy"]={SubType="One-Handed Maces",Level=1,id=3361,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133490,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:3361::::::::40:::::::|h[Monster - Mace, Spiked Heavy]|h|r"},["Dark Storm Gauntlets"]={SubType="Cloth",Level=88,id=21585,StackCount=1,Rarity=4,MinLevel=60,SellPrice=51655,Texture=132951,Link="|cffa335ee|Hitem:21585::::::::40:::::::|h[Dark Storm Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Test Item 1"]={SubType="One-Handed Maces",Level=10,id=4996,StackCount=1,Rarity=0,MinLevel=5,SellPrice=96,Texture=133039,Type="Weapon",Link="|cff9d9d9d|Hitem:4996::::::::40:::::::|h[Test Item 1]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Fordring's Seal"]={SubType="Miscellaneous",Level=63,id=16058,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10156,Texture=133361,EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:16058::::::::40:::::::|h[Fordring's Seal]|h|r",Type="Armor"},["Gaea's Belt"]={SubType="Cloth",Level=47,id=14276,StackCount=1,Rarity=2,MinLevel=42,SellPrice=3598,Texture=132499,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14276::::::::40:::::::|h[Gaea's Belt]|h|r"},["Holiday Spirits"]={SubType="Consumable",Level=5,id=17196,StackCount=20,Rarity=1,MinLevel=1,SellPrice=12,Texture=132797,EquipLoc="",Link="|cffffffff|Hitem:17196::::::::40:::::::|h[Holiday Spirits]|h|r",Type="Consumable"},["Mirah's Song"]={SubType="One-Handed Swords",Level=61,id=15806,StackCount=1,Rarity=3,MinLevel=0,SellPrice=51273,Texture=135344,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:15806::::::::40:::::::|h[Mirah's Song]|h|r",Type="Weapon"},["Legionnaire's Dragonhide Armguards"]={SubType="Leather",Level=60,id=16493,StackCount=1,Rarity=3,MinLevel=55,SellPrice=6474,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16493::::::::40:::::::|h[Legionnaire's Dragonhide Armguards]|h|r",Type="Armor"},["Jes'rimon's Note"]={SubType="Quest",Level=0,id=10680,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133464,EquipLoc="",Link="|cffffffff|Hitem:10680::::::::40:::::::|h[Jes'rimon's Note]|h|r",Type="Quest"},["Carpenter's Mallet"]={SubType="One-Handed Maces",Level=9,id=1415,StackCount=1,Rarity=0,MinLevel=4,SellPrice=72,Texture=133052,Link="|cff9d9d9d|Hitem:1415::::::::40:::::::|h[Carpenter's Mallet]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Poniard"]={SubType="Daggers",Level=19,id=2208,StackCount=1,Rarity=1,MinLevel=14,SellPrice=730,Texture=135302,Link="|cffffffff|Hitem:2208::::::::40:::::::|h[Poniard]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Grimoire of Blood Pact (Rank 3)"]={SubType="Book",Level=26,id=16323,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16323::::::::40:::::::|h[Grimoire of Blood Pact (Rank 3)]|h|r",Type="Recipe"},["Frostwolf Insignia Rank 4"]={SubType="Miscellaneous",Level=60,id=17907,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133285,EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:17907::::::::40:::::::|h[Frostwolf Insignia Rank 4]|h|r",Type="Armor"},["Ice Cold Milk"]={SubType="Consumable",Level=15,id=1179,StackCount=20,Rarity=1,MinLevel=5,SellPrice=6,Texture=132815,EquipLoc="",Link="|cffffffff|Hitem:1179::::::::40:::::::|h[Ice Cold Milk]|h|r",Type="Consumable"},["Horn of the Gray Wolf"]={SubType="Junk",Level=40,id=1134,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132266,Type="Miscellaneous",Link="|cffffffff|Hitem:1134::::::::40:::::::|h[Horn of the Gray Wolf]|h|r",EquipLoc=""},["Tome of Cone of Cold II"]={SubType="Book",Level=34,id=8829,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8829::::::::40:::::::|h[Tome of Cone of Cold II]|h|r"},["Preserved Pheromone Mixture"]={SubType="Quest",Level=1,id=11570,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134743,Type="Quest",Link="|cffffffff|Hitem:11570::::::::40:::::::|h[Preserved Pheromone Mixture]|h|r",EquipLoc=""},["Nemesis Leggings"]={SubType="Cloth",Level=76,id=16930,StackCount=1,Rarity=4,MinLevel=60,SellPrice=55575,Texture=134587,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16930::::::::40:::::::|h[Nemesis Leggings]|h|r",Type="Armor"},["Red Mageweave Bag"]={SubType="Bag",Level=35,id=10051,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133643,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:10051::::::::40:::::::|h[Red Mageweave Bag]|h|r",Type="Container"},["[PH] Mail Leggings of the Shining Dawn"]={SubType="Mail",Level=100,id=13782,StackCount=1,Rarity=1,MinLevel=100,SellPrice=106998,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:13782::::::::40:::::::|h[[PH] Mail Leggings of the Shining Dawn]|h|r"},["Etched Phial"]={SubType="Quest",Level=1,id=5867,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134776,EquipLoc="",Link="|cffffffff|Hitem:5867::::::::40:::::::|h[Etched Phial]|h|r",Type="Quest"},["Goretusk Liver Pie"]={SubType="Consumable",Level=15,id=724,StackCount=20,Rarity=1,MinLevel=5,SellPrice=25,Texture=133952,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:724::::::::40:::::::|h[Goretusk Liver Pie]|h|r"},["Dark Iron Baby Booties"]={SubType="Junk",Level=1,id=11944,StackCount=1,Rarity=0,MinLevel=0,SellPrice=8821,Texture=132540,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11944::::::::40:::::::|h[Dark Iron Baby Booties]|h|r",EquipLoc=""},["Hillsbrad Human Skull"]={SubType="Quest",Level=1,id=3692,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3692::::::::40:::::::|h[Hillsbrad Human Skull]|h|r"},["Brann Bronzebeard's Lost Letter"]={SubType="Junk",Level=60,id=20461,StackCount=1,Rarity=1,MinLevel=58,SellPrice=0,Texture=133463,Link="|cffffffff|Hitem:20461::::::::40:::::::|h[Brann Bronzebeard's Lost Letter]|h|r",EquipLoc="",Type="Miscellaneous"},["Mountain Lion Blood"]={SubType="Quest",Level=1,id=3496,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136168,EquipLoc="",Link="|cffffffff|Hitem:3496::::::::40:::::::|h[Mountain Lion Blood]|h|r",Type="Quest"},["Guiding Stave of Wisdom"]={SubType="Staves",Level=59,id=11932,StackCount=1,Rarity=3,MinLevel=54,SellPrice=58322,Texture=135167,Type="Weapon",Link="|cff0070dd|Hitem:11932::::::::40:::::::|h[Guiding Stave of Wisdom]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Barovian Family Sword"]={SubType="Two-Handed Swords",Level=61,id=14541,StackCount=1,Rarity=3,MinLevel=56,SellPrice=68426,Texture=135273,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:14541::::::::40:::::::|h[Barovian Family Sword]|h|r"},["Monster - Item, Sparkler Red"]={SubType="Miscellaneous",Level=1,id=9701,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133942,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:9701::::::::40:::::::|h[Monster - Item, Sparkler Red]|h|r"},["Doomshot"]={SubType="Arrow",Level=59,id=12654,StackCount=200,Rarity=3,MinLevel=54,SellPrice=62,Texture=132169,Type="Projectile",EquipLoc="INVTYPE_AMMO",Link="|cff0070dd|Hitem:12654::::::::40:::::::|h[Doomshot]|h|r"},["Frostfire Leggings"]={SubType="Cloth",Level=88,id=22497,StackCount=1,Rarity=4,MinLevel=60,SellPrice=109114,Texture=134599,Link="|cffa335ee|Hitem:22497::::::::40:::::::|h[Frostfire Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Blackrock Gauntlets"]={SubType="Mail",Level=20,id=1448,StackCount=1,Rarity=2,MinLevel=15,SellPrice=405,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:1448::::::::40:::::::|h[Blackrock Gauntlets]|h|r",Type="Armor"},["Pioneer Tunic"]={SubType="Leather",Level=13,id=6268,StackCount=1,Rarity=2,MinLevel=8,SellPrice=234,Texture=135010,Link="|cff1eff00|Hitem:6268::::::::40:::::::|h[Pioneer Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Wide Metal Girdle"]={SubType="Mail",Level=8,id=4935,StackCount=1,Rarity=1,MinLevel=0,SellPrice=23,Texture=132492,Type="Armor",Link="|cffffffff|Hitem:4935::::::::40:::::::|h[Wide Metal Girdle]|h|r",EquipLoc="INVTYPE_WAIST"},["Glyphed Mitts"]={SubType="Leather",Level=38,id=6419,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2299,Texture=132948,Type="Armor",Link="|cff1eff00|Hitem:6419::::::::40:::::::|h[Glyphed Mitts]|h|r",EquipLoc="INVTYPE_HAND"},["Notched Shortsword"]={SubType="One-Handed Swords",Level=10,id=727,StackCount=1,Rarity=2,MinLevel=5,SellPrice=244,Texture=135274,Type="Weapon",Link="|cff1eff00|Hitem:727::::::::40:::::::|h[Notched Shortsword]|h|r",EquipLoc="INVTYPE_WEAPON"},["Misty Reed Mahi Mahi"]={SubType="Quest",Level=1,id=16970,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133907,EquipLoc="",Link="|cffffffff|Hitem:16970::::::::40:::::::|h[Misty Reed Mahi Mahi]|h|r",Type="Quest"},["Arathor Basic Care Package"]={SubType="Consumable",Level=1,id=20233,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134144,Link="|cffffffff|Hitem:20233::::::::40:::::::|h[Arathor Basic Care Package]|h|r",EquipLoc="",Type="Consumable"},["Shadowy Mail Greaves"]={SubType="Mail",Level=62,id=18694,StackCount=1,Rarity=3,MinLevel=57,SellPrice=25910,Texture=132535,Type="Armor",Link="|cff0070dd|Hitem:18694::::::::40:::::::|h[Shadowy Mail Greaves]|h|r",EquipLoc="INVTYPE_FEET"},["Garrett Family Crest"]={SubType="Shields",Level=62,id=13083,StackCount=1,Rarity=3,MinLevel=57,SellPrice=34694,Texture=134951,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:13083::::::::40:::::::|h[Garrett Family Crest]|h|r"},["Ring of Critical Testing"]={SubType="Miscellaneous",Level=60,id=18968,StackCount=1,Rarity=4,MinLevel=0,SellPrice=56012,Texture=133356,Type="Armor",Link="|cffa335ee|Hitem:18968::::::::40:::::::|h[Ring of Critical Testing]|h|r",EquipLoc="INVTYPE_FINGER"},["Glimmering Mail Coif"]={SubType="Mail",Level=31,id=6389,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2245,Texture=133141,Link="|cff1eff00|Hitem:6389::::::::40:::::::|h[Glimmering Mail Coif]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Black Diamond"]={SubType="Junk",Level=0,id=11754,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=134071,Type="Miscellaneous",Link="|cff1eff00|Hitem:11754::::::::40:::::::|h[Black Diamond]|h|r",EquipLoc=""},["Crocolisk Tear"]={SubType="Quest",Level=1,id=2939,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133884,Type="Quest",Link="|cffffffff|Hitem:2939::::::::40:::::::|h[Crocolisk Tear]|h|r",EquipLoc=""},["Green Rocket Cluster"]={SubType="Consumable",Level=1,id=21574,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=134289,Link="|cffffffff|Hitem:21574::::::::40:::::::|h[Green Rocket Cluster]|h|r",EquipLoc="",Type="Consumable"},["Zandalar Madcap's Tunic"]={SubType="Leather",Level=65,id=19834,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132725,Link="|cffa335ee|Hitem:19834::::::::40:::::::|h[Zandalar Madcap's Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Fast Test Staff"]={SubType="Staves",Level=45,id=5558,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7970,Texture=135145,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5558::::::::40:::::::|h[Fast Test Staff]|h|r",Type="Weapon"},["Book of Rejuvenation II"]={SubType="Book",Level=10,id=1334,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:1334::::::::40:::::::|h[Book of Rejuvenation II]|h|r",Type="Recipe"},["Sun-beaten Cloak"]={SubType="Cloth",Level=8,id=4958,StackCount=1,Rarity=1,MinLevel=0,SellPrice=36,Texture=133762,Type="Armor",Link="|cffffffff|Hitem:4958::::::::40:::::::|h[Sun-beaten Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Gold Hakkari Bijou"]={SubType="Quest",Level=61,id=19715,StackCount=250,Rarity=3,MinLevel=58,SellPrice=0,Texture=132528,Link="|cff0070dd|Hitem:19715::::::::40:::::::|h[Gold Hakkari Bijou]|h|r",EquipLoc="",Type="Quest"},["Battle Chain Boots"]={SubType="Mail",Level=12,id=3279,StackCount=1,Rarity=1,MinLevel=7,SellPrice=105,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:3279::::::::40:::::::|h[Battle Chain Boots]|h|r"},["Sodium Nitrate"]={SubType="Quest",Level=1,id=5019,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133587,Link="|cffffffff|Hitem:5019::::::::40:::::::|h[Sodium Nitrate]|h|r",EquipLoc="",Type="Quest"},["Monster - Shield, Wall Metal Red"]={SubType="Shields",Level=1,id=12995,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:12995::::::::40:::::::|h[Monster - Shield, Wall Metal Red]|h|r"},["Deprecated Lurker Leg"]={SubType="Junk",Level=1,id=1016,StackCount=10,Rarity=1,MinLevel=0,SellPrice=51,Texture=134321,Link="|cffffffff|Hitem:1016::::::::40:::::::|h[Deprecated Lurker Leg]|h|r",EquipLoc="",Type="Miscellaneous"},["Masterwork Pauldrons"]={SubType="Mail",Level=63,id=10274,StackCount=1,Rarity=2,MinLevel=58,SellPrice=21118,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10274::::::::40:::::::|h[Masterwork Pauldrons]|h|r",Type="Armor"},["Medallion of Grand Marshal Morris"]={SubType="Miscellaneous",Level=57,id=13091,StackCount=1,Rarity=3,MinLevel=52,SellPrice=10637,Texture=133441,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:13091::::::::40:::::::|h[Medallion of Grand Marshal Morris]|h|r"},["Indurium Ore"]={SubType="Trade Goods",Level=1,id=5833,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134575,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:5833::::::::40:::::::|h[Indurium Ore]|h|r"},["Thistlewood Axe"]={SubType="Two-Handed Axes",Level=5,id=1386,StackCount=1,Rarity=1,MinLevel=0,SellPrice=32,Texture=132392,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:1386::::::::40:::::::|h[Thistlewood Axe]|h|r",Type="Weapon"},["Padded Belt"]={SubType="Cloth",Level=27,id=3591,StackCount=1,Rarity=1,MinLevel=22,SellPrice=419,Texture=132495,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:3591::::::::40:::::::|h[Padded Belt]|h|r"},["Earthshatter Handguards"]={SubType="Mail",Level=88,id=22469,StackCount=1,Rarity=4,MinLevel=60,SellPrice=77491,Texture=132959,Link="|cffa335ee|Hitem:22469::::::::40:::::::|h[Earthshatter Handguards]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Hawkeye's Buckler"]={SubType="Shields",Level=37,id=14607,StackCount=1,Rarity=2,MinLevel=32,SellPrice=5581,Texture=134956,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14607::::::::40:::::::|h[Hawkeye's Buckler]|h|r"},["Brackwater Leggings"]={SubType="Mail",Level=16,id=3305,StackCount=1,Rarity=2,MinLevel=11,SellPrice=492,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:3305::::::::40:::::::|h[Brackwater Leggings]|h|r",Type="Armor"},["Manual: Path of the Berserker"]={SubType="Book",Level=30,id=6897,StackCount=1,Rarity=1,MinLevel=30,SellPrice=0,Texture=133734,Type="Recipe",Link="|cffffffff|Hitem:6897::::::::40:::::::|h[Manual: Path of the Berserker]|h|r",EquipLoc=""},["Acolyte's Shirt"]={SubType="Miscellaneous",Level=1,id=6097,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,Type="Armor",Link="|cffffffff|Hitem:6097::::::::40:::::::|h[Acolyte's Shirt]|h|r",EquipLoc="INVTYPE_BODY"},["Level 50 Test Gear Mail - Hunter"]={SubType="Junk",Level=1,id=13688,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13688::::::::40:::::::|h[Level 50 Test Gear Mail - Hunter]|h|r"},["Flame Walkers"]={SubType="Mail",Level=62,id=18047,StackCount=1,Rarity=3,MinLevel=57,SellPrice=24428,Texture=132536,Type="Armor",Link="|cff0070dd|Hitem:18047::::::::40:::::::|h[Flame Walkers]|h|r",EquipLoc="INVTYPE_FEET"},["Empty Minor Bloodstone"]={SubType="Consumable",Level=1,id=5406,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135230,EquipLoc="",Link="|cffffffff|Hitem:5406::::::::40:::::::|h[Empty Minor Bloodstone]|h|r",Type="Consumable"},["Whistle of the Turquoise Raptor"]={SubType="Junk",Level=40,id=8591,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132253,Link="|cff0070dd|Hitem:8591::::::::40:::::::|h[Whistle of the Turquoise Raptor]|h|r",EquipLoc="",Type="Miscellaneous"},["Chieftain's Headdress"]={SubType="Leather",Level=50,id=9953,StackCount=1,Rarity=2,MinLevel=45,SellPrice=8467,Texture=133126,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9953::::::::40:::::::|h[Chieftain's Headdress]|h|r"},["Jeklik's Crusher"]={SubType="Two-Handed Maces",Level=65,id=19918,StackCount=1,Rarity=4,MinLevel=60,SellPrice=111003,Texture=133494,Link="|cffa335ee|Hitem:19918::::::::40:::::::|h[Jeklik's Crusher]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Blackveil Cape"]={SubType="Cloth",Level=53,id=11626,StackCount=1,Rarity=3,MinLevel=48,SellPrice=9698,Texture=133770,Type="Armor",Link="|cff0070dd|Hitem:11626::::::::40:::::::|h[Blackveil Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Wingcrest Gloves"]={SubType="Cloth",Level=50,id=9665,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4826,Texture=132952,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9665::::::::40:::::::|h[Wingcrest Gloves]|h|r"},["Blue Overalls"]={SubType="Cloth",Level=20,id=6263,StackCount=1,Rarity=2,MinLevel=15,SellPrice=589,Texture=135017,Type="Armor",Link="|cff1eff00|Hitem:6263::::::::40:::::::|h[Blue Overalls]|h|r",EquipLoc="INVTYPE_ROBE"},["Ancient Moonstone Seal"]={SubType="Quest",Level=1,id=5338,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134457,Link="|cffffffff|Hitem:5338::::::::40:::::::|h[Ancient Moonstone Seal]|h|r",EquipLoc="",Type="Quest"},["Sethir's Journal"]={SubType="Quest",Level=1,id=7737,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:7737::::::::40:::::::|h[Sethir's Journal]|h|r",Type="Quest"},["Ring of Entropy"]={SubType="Miscellaneous",Level=66,id=18543,StackCount=1,Rarity=4,MinLevel=60,SellPrice=63728,Texture=133362,Type="Armor",Link="|cffa335ee|Hitem:18543::::::::40:::::::|h[Ring of Entropy]|h|r",EquipLoc="INVTYPE_FINGER"},["Heavy Grinding Stone"]={SubType="Trade Goods",Level=25,id=3486,StackCount=20,Rarity=1,MinLevel=0,SellPrice=100,Texture=135245,Link="|cffffffff|Hitem:3486::::::::40:::::::|h[Heavy Grinding Stone]|h|r",EquipLoc="",Type="Trade Goods"},["Rusted Chain Boots"]={SubType="Mail",Level=5,id=2389,StackCount=1,Rarity=1,MinLevel=1,SellPrice=11,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:2389::::::::40:::::::|h[Rusted Chain Boots]|h|r",Type="Armor"},["Nightwalker Armor"]={SubType="Cloth",Level=30,id=2234,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1806,Texture=135020,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:2234::::::::40:::::::|h[Nightwalker Armor]|h|r",Type="Armor"},["Venom Fern Extract"]={SubType="Quest",Level=1,id=2634,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134184,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2634::::::::40:::::::|h[Venom Fern Extract]|h|r"},["White Leather Jerkin"]={SubType="Leather",Level=13,id=2311,StackCount=1,Rarity=1,MinLevel=8,SellPrice=150,Texture=132760,Type="Armor",Link="|cffffffff|Hitem:2311::::::::40:::::::|h[White Leather Jerkin]|h|r",EquipLoc="INVTYPE_CHEST"},["Heavy Weave Shoes"]={SubType="Cloth",Level=17,id=840,StackCount=1,Rarity=1,MinLevel=12,SellPrice=170,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:840::::::::40:::::::|h[Heavy Weave Shoes]|h|r",Type="Armor"},["Deprecated Foreman's Whip"]={SubType="Miscellaneous",Level=42,id=1622,StackCount=1,Rarity=1,MinLevel=37,SellPrice=570,Texture=134412,Link="|cffffffff|Hitem:1622::::::::40:::::::|h[Deprecated Foreman's Whip]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Blessed Qiraji Acolyte Staff"]={SubType="Staves",Level=79,id=21273,StackCount=1,Rarity=4,MinLevel=60,SellPrice=219003,Texture=135157,Link="|cffa335ee|Hitem:21273::::::::40:::::::|h[Blessed Qiraji Acolyte Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Libram: Turn Undead II"]={SubType="Book",Level=38,id=5682,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133740,Link="|cffffffff|Hitem:5682::::::::40:::::::|h[Libram: Turn Undead II]|h|r",EquipLoc="",Type="Recipe"},["Studded Pants"]={SubType="Leather",Level=37,id=2465,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2495,Texture=134586,Link="|cffffffff|Hitem:2465::::::::40:::::::|h[Studded Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Dark Iron Mail"]={SubType="Mail",Level=56,id=11606,StackCount=1,Rarity=2,MinLevel=51,SellPrice=19255,Texture=132638,Type="Armor",Link="|cff1eff00|Hitem:11606::::::::40:::::::|h[Dark Iron Mail]|h|r",EquipLoc="INVTYPE_CHEST"},["Arena Vambraces"]={SubType="Plate",Level=50,id=18712,StackCount=1,Rarity=3,MinLevel=45,SellPrice=5821,Texture=132618,Type="Armor",Link="|cff0070dd|Hitem:18712::::::::40:::::::|h[Arena Vambraces]|h|r",EquipLoc="INVTYPE_WRIST"},["Deathstalker Shortsword"]={SubType="One-Handed Swords",Level=11,id=3455,StackCount=1,Rarity=1,MinLevel=0,SellPrice=188,Texture=135313,Link="|cffffffff|Hitem:3455::::::::40:::::::|h[Deathstalker Shortsword]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Rough Bronze Cuirass"]={SubType="Mail",Level=23,id=2866,StackCount=1,Rarity=1,MinLevel=18,SellPrice=752,Texture=132630,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:2866::::::::40:::::::|h[Rough Bronze Cuirass]|h|r"},["Sar'theris Striker"]={SubType="Quest",Level=1,id=16968,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133918,EquipLoc="",Link="|cffffffff|Hitem:16968::::::::40:::::::|h[Sar'theris Striker]|h|r",Type="Quest"},["Sturdy Lunchbox"]={SubType="Bag",Level=35,id=1652,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=132594,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:1652::::::::40:::::::|h[Sturdy Lunchbox]|h|r"},["Burnt Leather Vest"]={SubType="Leather",Level=11,id=2961,StackCount=1,Rarity=2,MinLevel=6,SellPrice=155,Texture=135013,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:2961::::::::40:::::::|h[Burnt Leather Vest]|h|r",Type="Armor"},["Patched Leather Belt"]={SubType="Leather",Level=18,id=1787,StackCount=1,Rarity=0,MinLevel=13,SellPrice=102,Texture=132512,Link="|cff9d9d9d|Hitem:1787::::::::40:::::::|h[Patched Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Monster - Staff, Basic Red"]={SubType="Staves",Level=1,id=12937,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12937::::::::40:::::::|h[Monster - Staff, Basic Red]|h|r"},["Monster - Item, Fish - Purple"]={SubType="Miscellaneous",Level=1,id=6229,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133888,Type="Weapon",Link="|cff9d9d9d|Hitem:6229::::::::40:::::::|h[Monster - Item, Fish - Purple]|h|r",EquipLoc="INVTYPE_WEAPON"},["Miniscule Diamond Ring"]={SubType="Miscellaneous",Level=40,id=7339,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62500,Texture=133349,EquipLoc="INVTYPE_FINGER",Link="|cffffffff|Hitem:7339::::::::40:::::::|h[Miniscule Diamond Ring]|h|r",Type="Armor"},["Shard of the Fallen Star"]={SubType="Miscellaneous",Level=75,id=21891,StackCount=1,Rarity=4,MinLevel=60,SellPrice=99378,Texture=133573,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:21891::::::::40:::::::|h[Shard of the Fallen Star]|h|r"},["Kim'Jael's Stuffed Chicken"]={SubType="Quest",Level=1,id=10722,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135996,EquipLoc="",Link="|cffffffff|Hitem:10722::::::::40:::::::|h[Kim'Jael's Stuffed Chicken]|h|r",Type="Quest"},["Shucking Gloves"]={SubType="Leather",Level=17,id=15405,StackCount=1,Rarity=2,MinLevel=0,SellPrice=245,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15405::::::::40:::::::|h[Shucking Gloves]|h|r",Type="Armor"},["Smoldering Boots"]={SubType="Cloth",Level=23,id=3076,StackCount=1,Rarity=2,MinLevel=18,SellPrice=636,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:3076::::::::40:::::::|h[Smoldering Boots]|h|r"},["Wyrmhide Spaulders"]={SubType="Leather",Level=58,id=12082,StackCount=1,Rarity=2,MinLevel=0,SellPrice=13726,Texture=135047,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:12082::::::::40:::::::|h[Wyrmhide Spaulders]|h|r"},["Plans: Ornate Mithril Breastplate"]={SubType="Blacksmithing",Level=48,id=7986,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2500,Texture=134942,Link="|cff1eff00|Hitem:7986::::::::40:::::::|h[Plans: Ornate Mithril Breastplate]|h|r",EquipLoc="",Type="Recipe"},["Conjured test Item"]={SubType="Junk",Level=1,id=3249,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133215,EquipLoc="",Link="|cffffffff|Hitem:3249::::::::40:::::::|h[Conjured test Item]|h|r",Type="Miscellaneous"},["Ultrasafe Transporter: Gadgetzan"]={SubType="Miscellaneous",Level=52,id=18986,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=133870,Type="Armor",Link="|cff1eff00|Hitem:18986::::::::40:::::::|h[Ultrasafe Transporter: Gadgetzan]|h|r",EquipLoc="INVTYPE_TRINKET"},["Besseleth's Fang"]={SubType="Quest",Level=1,id=16192,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,EquipLoc="",Link="|cffffffff|Hitem:16192::::::::40:::::::|h[Besseleth's Fang]|h|r",Type="Quest"},["Ancestral Tunic"]={SubType="Cloth",Level=13,id=3292,StackCount=1,Rarity=2,MinLevel=8,SellPrice=203,Texture=135011,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:3292::::::::40:::::::|h[Ancestral Tunic]|h|r"},["Monster - Staff, 3 Piece Taped Staff Green"]={SubType="Staves",Level=1,id=12328,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135146,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12328::::::::40:::::::|h[Monster - Staff, 3 Piece Taped Staff Green]|h|r"},["Blood Guard's Plate Gloves"]={SubType="Plate",Level=63,id=16510,StackCount=1,Rarity=3,MinLevel=58,SellPrice=5931,Texture=132960,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16510::::::::40:::::::|h[Blood Guard's Plate Gloves]|h|r",Type="Armor"},["Spotted Yellowtail"]={SubType="Consumable",Level=45,id=6887,StackCount=20,Rarity=1,MinLevel=35,SellPrice=5,Texture=133887,Type="Consumable",Link="|cffffffff|Hitem:6887::::::::40:::::::|h[Spotted Yellowtail]|h|r",EquipLoc=""},["Schematic: Mithril Mechanical Dragonling"]={SubType="Engineering",Level=50,id=10609,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10609::::::::40:::::::|h[Schematic: Mithril Mechanical Dragonling]|h|r",Type="Recipe"},["Solid Blunderbuss"]={SubType="Guns",Level=3,id=2510,StackCount=1,Rarity=1,MinLevel=1,SellPrice=8,Texture=135616,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:2510::::::::40:::::::|h[Solid Blunderbuss]|h|r"},["Tome of Scorch III"]={SubType="Book",Level=34,id=8830,StackCount=1,Rarity=1,MinLevel=34,SellPrice=2750,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8830::::::::40:::::::|h[Tome of Scorch III]|h|r"},["Meteor Shard"]={SubType="Daggers",Level=29,id=6220,StackCount=1,Rarity=3,MinLevel=24,SellPrice=4893,Texture=135661,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:6220::::::::40:::::::|h[Meteor Shard]|h|r"},["Fire Hardened Coif"]={SubType="Mail",Level=31,id=6971,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2221,Texture=133141,Link="|cff1eff00|Hitem:6971::::::::40:::::::|h[Fire Hardened Coif]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Recipe: Major Mana Potion"]={SubType="Alchemy",Level=59,id=13501,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13501::::::::40:::::::|h[Recipe: Major Mana Potion]|h|r"},["Simple Cape"]={SubType="Cloth",Level=11,id=9745,StackCount=1,Rarity=1,MinLevel=6,SellPrice=54,Texture=133774,Link="|cffffffff|Hitem:9745::::::::40:::::::|h[Simple Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Peeling the Onion"]={SubType="Junk",Level=1,id=19483,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133739,Link="|cffffffff|Hitem:19483::::::::40:::::::|h[Peeling the Onion]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Throwing Axe"]={SubType="Thrown",Level=1,id=5856,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=132392,Link="|cff9d9d9d|Hitem:5856::::::::40:::::::|h[Monster - Throwing Axe]|h|r",EquipLoc="INVTYPE_THROWN",Type="Weapon"},["Perenolde Tiara"]={SubType="Quest",Level=1,id=3684,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132767,Type="Quest",Link="|cffffffff|Hitem:3684::::::::40:::::::|h[Perenolde Tiara]|h|r",EquipLoc=""},["Eternal Wraps"]={SubType="Cloth",Level=65,id=14336,StackCount=1,Rarity=2,MinLevel=60,SellPrice=20137,Texture=132670,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14336::::::::40:::::::|h[Eternal Wraps]|h|r"},["Deprecated Outfitter Cloth Armor"]={SubType="Cloth",Level=4,id=77,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=135006,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:77::::::::40:::::::|h[Deprecated Outfitter Cloth Armor]|h|r"},["Alaric's Head"]={SubType="Quest",Level=1,id=3316,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134173,Type="Quest",Link="|cffffffff|Hitem:3316::::::::40:::::::|h[Alaric's Head]|h|r",EquipLoc=""},["Witch's Finger"]={SubType="Miscellaneous",Level=30,id=16887,StackCount=1,Rarity=3,MinLevel=0,SellPrice=1988,Texture=135474,EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:16887::::::::40:::::::|h[Witch's Finger]|h|r",Type="Armor"},["Warstrike Helmet"]={SubType="Mail",Level=63,id=14814,StackCount=1,Rarity=2,MinLevel=58,SellPrice=21593,Texture=133078,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14814::::::::40:::::::|h[Warstrike Helmet]|h|r"},["Seaspray Bracers"]={SubType="Mail",Level=59,id=15796,StackCount=1,Rarity=2,MinLevel=0,SellPrice=12063,Texture=132616,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15796::::::::40:::::::|h[Seaspray Bracers]|h|r",Type="Armor"},["Stalking Pants"]={SubType="Leather",Level=26,id=4831,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1571,Texture=134590,Type="Armor",Link="|cff1eff00|Hitem:4831::::::::40:::::::|h[Stalking Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Studded Belt"]={SubType="Leather",Level=37,id=2464,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1374,Texture=132492,Link="|cffffffff|Hitem:2464::::::::40:::::::|h[Studded Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Silver Bar"]={SubType="Trade Goods",Level=10,id=2842,StackCount=20,Rarity=2,MinLevel=0,SellPrice=100,Texture=133215,Link="|cff1eff00|Hitem:2842::::::::40:::::::|h[Silver Bar]|h|r",EquipLoc="",Type="Trade Goods"},["Monster - Mace, Good Wooden Hammer"]={SubType="One-Handed Maces",Level=1,id=2558,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133041,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2558::::::::40:::::::|h[Monster - Mace, Good Wooden Hammer]|h|r"},["Dreadnaught Pauldrons"]={SubType="Plate",Level=86,id=22419,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72911,Texture=135060,Link="|cffa335ee|Hitem:22419::::::::40:::::::|h[Dreadnaught Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Mystical Robe"]={SubType="Cloth",Level=58,id=10178,StackCount=1,Rarity=2,MinLevel=53,SellPrice=14475,Texture=132658,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:10178::::::::40:::::::|h[Mystical Robe]|h|r",Type="Armor"},["Winter Veil Cookie UNUSED"]={SubType="Consumable",Level=55,id=21238,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134018,Link="|cffffffff|Hitem:21238::::::::40:::::::|h[Winter Veil Cookie UNUSED]|h|r",EquipLoc="",Type="Consumable"},["Monster - Item, Holy Symbol"]={SubType="One-Handed Maces",Level=1,id=13220,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133964,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13220::::::::40:::::::|h[Monster - Item, Holy Symbol]|h|r"},["Rambling Boots"]={SubType="Leather",Level=18,id=11853,StackCount=1,Rarity=2,MinLevel=0,SellPrice=388,Texture=132537,Type="Armor",Link="|cff1eff00|Hitem:11853::::::::40:::::::|h[Rambling Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Bloodfang Belt"]={SubType="Leather",Level=76,id=16910,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34738,Texture=132512,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16910::::::::40:::::::|h[Bloodfang Belt]|h|r",Type="Armor"},["Recipe: Hot Smoked Bass"]={SubType="Cooking",Level=48,id=13943,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13943::::::::40:::::::|h[Recipe: Hot Smoked Bass]|h|r"},["Battleforge Shoulderguards"]={SubType="Mail",Level=28,id=6597,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1707,Texture=135038,Link="|cff1eff00|Hitem:6597::::::::40:::::::|h[Battleforge Shoulderguards]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Hunting Belt"]={SubType="Leather",Level=13,id=4690,StackCount=1,Rarity=1,MinLevel=8,SellPrice=71,Texture=132510,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:4690::::::::40:::::::|h[Hunting Belt]|h|r"},["Purple Mechanostrider"]={SubType="Junk",Level=40,id=13323,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132247,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:13323::::::::40:::::::|h[Purple Mechanostrider]|h|r"},["D'Sak's Sack"]={SubType="Soul Bag",Level=62,id=21193,StackCount=1,Rarity=3,MinLevel=0,SellPrice=40000,Texture=133646,Link="|cff0070dd|Hitem:21193::::::::40:::::::|h[D'Sak's Sack]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Two-handed Sword"]={SubType="Two-Handed Swords",Level=7,id=2489,StackCount=1,Rarity=1,MinLevel=2,SellPrice=68,Texture=135312,Link="|cffffffff|Hitem:2489::::::::40:::::::|h[Two-handed Sword]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Entwined Opaline Talisman"]={SubType="Miscellaneous",Level=47,id=7551,StackCount=1,Rarity=2,MinLevel=42,SellPrice=7145,Texture=133294,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:7551::::::::40:::::::|h[Entwined Opaline Talisman]|h|r"},["Jagged Bone Fist"]={SubType="Fist Weapons",Level=60,id=18462,StackCount=1,Rarity=2,MinLevel=55,SellPrice=41319,Texture=132947,Type="Weapon",Link="|cff1eff00|Hitem:18462::::::::40:::::::|h[Jagged Bone Fist]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Unsophisticated Hand Cannon"]={SubType="Guns",Level=60,id=18460,StackCount=1,Rarity=2,MinLevel=55,SellPrice=30762,Texture=135616,Type="Weapon",Link="|cff1eff00|Hitem:18460::::::::40:::::::|h[Unsophisticated Hand Cannon]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Grimoire of Torment (Rank 6)"]={SubType="Book",Level=60,id=16350,StackCount=1,Rarity=1,MinLevel=60,SellPrice=6500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16350::::::::40:::::::|h[Grimoire of Torment (Rank 6)]|h|r",Type="Recipe"},["Cracked Leather Belt"]={SubType="Leather",Level=5,id=2122,StackCount=1,Rarity=1,MinLevel=1,SellPrice=6,Texture=132515,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:2122::::::::40:::::::|h[Cracked Leather Belt]|h|r"},["Pridelord Armor"]={SubType="Leather",Level=59,id=14670,StackCount=1,Rarity=2,MinLevel=54,SellPrice=20396,Texture=132717,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14670::::::::40:::::::|h[Pridelord Armor]|h|r"},["High Councillor's Cloak"]={SubType="Cloth",Level=59,id=10138,StackCount=1,Rarity=2,MinLevel=54,SellPrice=12274,Texture=133768,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10138::::::::40:::::::|h[High Councillor's Cloak]|h|r",Type="Armor"},["Cloak of the Faith"]={SubType="Cloth",Level=30,id=2902,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1305,Texture=133758,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:2902::::::::40:::::::|h[Cloak of the Faith]|h|r",Type="Armor"},["Compendium of the Fallen"]={SubType="Quest",Level=1,id=5535,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133737,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5535::::::::40:::::::|h[Compendium of the Fallen]|h|r"},["Internal Warrior Equipment Kit L30"]={SubType="Junk",Level=1,id=9532,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:9532::::::::40:::::::|h[Internal Warrior Equipment Kit L30]|h|r"},["Conjured Bread"]={SubType="Consumable",Level=15,id=1113,StackCount=20,Rarity=1,MinLevel=5,SellPrice=0,Texture=133951,Link="|cffffffff|Hitem:1113::::::::40:::::::|h[Conjured Bread]|h|r",EquipLoc="",Type="Consumable"},["Abyssal Mail Handguards"]={SubType="Mail",Level=60,id=20659,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12263,Texture=132966,Link="|cff1eff00|Hitem:20659::::::::40:::::::|h[Abyssal Mail Handguards]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Torn Scroll Fragment"]={SubType="Quest",Level=1,id=4518,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4518::::::::40:::::::|h[Torn Scroll Fragment]|h|r"},["Codex of Holy Word: Fortitude II"]={SubType="Book",Level=12,id=1112,StackCount=1,Rarity=1,MinLevel=12,SellPrice=150,Texture=133741,Link="|cffffffff|Hitem:1112::::::::40:::::::|h[Codex of Holy Word: Fortitude II]|h|r",EquipLoc="",Type="Recipe"},["Unforged Seal of Ascension"]={SubType="Quest",Level=1,id=12323,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133276,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12323::::::::40:::::::|h[Unforged Seal of Ascension]|h|r"},["Crystal Yield"]={SubType="Quest",Level=55,id=11565,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134074,Type="Quest",Link="|cffffffff|Hitem:11565::::::::40:::::::|h[Crystal Yield]|h|r",EquipLoc=""},["Gloves of the Fang"]={SubType="Leather",Level=19,id=10413,StackCount=1,Rarity=2,MinLevel=14,SellPrice=307,Texture=132952,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10413::::::::40:::::::|h[Gloves of the Fang]|h|r",Type="Armor"},["Pattern: Frostsaber Gloves"]={SubType="Leatherworking",Level=59,id=15761,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6250,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15761::::::::40:::::::|h[Pattern: Frostsaber Gloves]|h|r",Type="Recipe"},["Consecrated Sharpening Stone"]={SubType="Trade Goods",Level=55,id=23122,StackCount=20,Rarity=2,MinLevel=50,SellPrice=40,Texture=135249,Link="|cff1eff00|Hitem:23122::::::::40:::::::|h[Consecrated Sharpening Stone]|h|r",EquipLoc="",Type="Trade Goods"},["Sigil of the Hammer"]={SubType="Quest",Level=1,id=4648,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134416,Link="|cffffffff|Hitem:4648::::::::40:::::::|h[Sigil of the Hammer]|h|r",EquipLoc="",Type="Quest"},["Bolt of Linen Cloth"]={SubType="Trade Goods",Level=10,id=2996,StackCount=10,Rarity=1,MinLevel=0,SellPrice=40,Texture=132890,Link="|cffffffff|Hitem:2996::::::::40:::::::|h[Bolt of Linen Cloth]|h|r",EquipLoc="",Type="Trade Goods"},["Felcloth Robe"]={SubType="Cloth",Level=61,id=14106,StackCount=1,Rarity=2,MinLevel=56,SellPrice=18053,Texture=132650,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14106::::::::40:::::::|h[Felcloth Robe]|h|r"},["Pearl-encrusted Spear"]={SubType="Polearms",Level=21,id=1406,StackCount=1,Rarity=2,MinLevel=20,SellPrice=2079,Texture=135129,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1406::::::::40:::::::|h[Pearl-encrusted Spear]|h|r",Type="Weapon"},["Crescent Edge"]={SubType="One-Handed Axes",Level=48,id=15235,StackCount=1,Rarity=2,MinLevel=43,SellPrice=21090,Texture=132407,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15235::::::::40:::::::|h[Crescent Edge]|h|r",Type="Weapon"},["Bolt of Mageweave"]={SubType="Trade Goods",Level=45,id=4339,StackCount=10,Rarity=1,MinLevel=0,SellPrice=1250,Texture=132894,Link="|cffffffff|Hitem:4339::::::::40:::::::|h[Bolt of Mageweave]|h|r",EquipLoc="",Type="Trade Goods"},["Blood of the Black Dragon Champion"]={SubType="Quest",Level=1,id=16663,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134807,EquipLoc="",Link="|cffffffff|Hitem:16663::::::::40:::::::|h[Blood of the Black Dragon Champion]|h|r",Type="Quest"},["Zulian Headdress"]={SubType="Cloth",Level=68,id=22720,StackCount=1,Rarity=3,MinLevel=60,SellPrice=22889,Texture=133163,Link="|cff0070dd|Hitem:22720::::::::40:::::::|h[Zulian Headdress]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Belt of Corruption"]={SubType="Leather",Level=44,id=4131,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3815,Texture=132506,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4131::::::::40:::::::|h[Belt of Corruption]|h|r"},["Lasher Root"]={SubType="Junk",Level=1,id=18224,StackCount=40,Rarity=0,MinLevel=0,SellPrice=1728,Texture=134412,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18224::::::::40:::::::|h[Lasher Root]|h|r",EquipLoc=""},["Hyperion Girdle"]={SubType="Plate",Level=61,id=10387,StackCount=1,Rarity=2,MinLevel=56,SellPrice=8475,Texture=132517,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10387::::::::40:::::::|h[Hyperion Girdle]|h|r",Type="Armor"},["Ossirian's Binding"]={SubType="Mail",Level=72,id=21463,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34313,Texture=132507,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:21463::::::::40:::::::|h[Ossirian's Binding]|h|r"},["Hammer of the Gathering Storm"]={SubType="One-Handed Maces",Level=70,id=21398,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133474,Link="|cffa335ee|Hitem:21398::::::::40:::::::|h[Hammer of the Gathering Storm]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Gleaming Throwing Axe"]={SubType="Thrown",Level=40,id=15326,StackCount=200,Rarity=1,MinLevel=35,SellPrice=1,Texture=135424,EquipLoc="INVTYPE_THROWN",Link="|cffffffff|Hitem:15326::::::::40:::::::|h[Gleaming Throwing Axe]|h|r",Type="Weapon"},["Silithid Heart"]={SubType="Quest",Level=1,id=5855,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5855::::::::40:::::::|h[Silithid Heart]|h|r"},["Warpwood Binding"]={SubType="Mail",Level=61,id=18393,StackCount=1,Rarity=3,MinLevel=56,SellPrice=14944,Texture=132523,Type="Armor",Link="|cff0070dd|Hitem:18393::::::::40:::::::|h[Warpwood Binding]|h|r",EquipLoc="INVTYPE_WAIST"},["Hero's Belt"]={SubType="Mail",Level=59,id=8306,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11787,Texture=132519,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:8306::::::::40:::::::|h[Hero's Belt]|h|r"},["Consecrated Rune"]={SubType="Quest",Level=1,id=9563,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134419,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9563::::::::40:::::::|h[Consecrated Rune]|h|r"},["Band of Vigor"]={SubType="Miscellaneous",Level=58,id=18302,StackCount=1,Rarity=2,MinLevel=53,SellPrice=7530,Texture=133362,Type="Armor",Link="|cff1eff00|Hitem:18302::::::::40:::::::|h[Band of Vigor]|h|r",EquipLoc="INVTYPE_FINGER"},["Tyrant's Belt"]={SubType="Plate",Level=43,id=14838,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2892,Texture=132513,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14838::::::::40:::::::|h[Tyrant's Belt]|h|r"},["Tablet of Far Sight"]={SubType="Book",Level=26,id=5707,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:5707::::::::40:::::::|h[Tablet of Far Sight]|h|r",Type="Recipe"},["Ragged John's Neverending Cup"]={SubType="Miscellaneous",Level=60,id=15873,StackCount=1,Rarity=3,MinLevel=0,SellPrice=8144,Texture=132790,EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:15873::::::::40:::::::|h[Ragged John's Neverending Cup]|h|r",Type="Armor"},["Mail Helmet D (test)"]={SubType="Leather",Level=1,id=1022,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133071,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:1022::::::::40:::::::|h[Mail Helmet D (test)]|h|r"},["Schematic: EZ-Thro Dynamite"]={SubType="Engineering",Level=20,id=6716,StackCount=1,Rarity=2,MinLevel=0,SellPrice=200,Texture=134942,Link="|cff1eff00|Hitem:6716::::::::40:::::::|h[Schematic: EZ-Thro Dynamite]|h|r",EquipLoc="",Type="Recipe"},["Wooden Maul"]={SubType="Two-Handed Maces",Level=22,id=1820,StackCount=1,Rarity=0,MinLevel=17,SellPrice=963,Texture=133052,Link="|cff9d9d9d|Hitem:1820::::::::40:::::::|h[Wooden Maul]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Fen Keeper Robe"]={SubType="Cloth",Level=25,id=3558,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1044,Texture=132655,Link="|cff1eff00|Hitem:3558::::::::40:::::::|h[Fen Keeper Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Embrace of the Lycan"]={SubType="Leather",Level=50,id=9479,StackCount=1,Rarity=3,MinLevel=45,SellPrice=10858,Texture=132266,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:9479::::::::40:::::::|h[Embrace of the Lycan]|h|r"},["Tablet of Markri"]={SubType="Quest",Level=1,id=10540,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134455,EquipLoc="",Link="|cffffffff|Hitem:10540::::::::40:::::::|h[Tablet of Markri]|h|r",Type="Quest"},["Skullsplitter"]={SubType="Two-Handed Axes",Level=41,id=9521,StackCount=1,Rarity=2,MinLevel=0,SellPrice=14382,Texture=132397,Link="|cff1eff00|Hitem:9521::::::::40:::::::|h[Skullsplitter]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Tablet of Lightning Shield V"]={SubType="Book",Level=40,id=9100,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9100::::::::40:::::::|h[Tablet of Lightning Shield V]|h|r"},["Primitive Bow"]={SubType="Bows",Level=5,id=12449,StackCount=1,Rarity=1,MinLevel=0,SellPrice=19,Texture=135490,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cffffffff|Hitem:12449::::::::40:::::::|h[Primitive Bow]|h|r"},["Wildfire Cape"]={SubType="Cloth",Level=61,id=12905,StackCount=1,Rarity=3,MinLevel=56,SellPrice=16359,Texture=132657,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:12905::::::::40:::::::|h[Wildfire Cape]|h|r"},["Rotting Wood"]={SubType="Junk",Level=1,id=20613,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135437,Link="|cffffffff|Hitem:20613::::::::40:::::::|h[Rotting Wood]|h|r",EquipLoc="",Type="Miscellaneous"},["Khan's Belt"]={SubType="Mail",Level=46,id=14783,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5424,Texture=132500,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14783::::::::40:::::::|h[Khan's Belt]|h|r"},["Banded Helm"]={SubType="Mail",Level=32,id=10408,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2390,Texture=133138,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10408::::::::40:::::::|h[Banded Helm]|h|r",Type="Armor"},["Essential Artificial"]={SubType="Quest",Level=1,id=9278,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132995,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9278::::::::40:::::::|h[Essential Artificial]|h|r"},["Acidic Slime"]={SubType="Junk",Level=1,id=6456,StackCount=10,Rarity=0,MinLevel=0,SellPrice=3,Texture=134437,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:6456::::::::40:::::::|h[Acidic Slime]|h|r",EquipLoc=""},["Monster - Axe, Metal Basic"]={SubType="One-Handed Axes",Level=1,id=1905,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=132392,Type="Weapon",Link="|cff9d9d9d|Hitem:1905::::::::40:::::::|h[Monster - Axe, Metal Basic]|h|r",EquipLoc="INVTYPE_WEAPON"},["A Mangled Journal"]={SubType="Junk",Level=48,id=11116,StackCount=1,Rarity=2,MinLevel=48,SellPrice=0,Texture=133743,Type="Miscellaneous",Link="|cff1eff00|Hitem:11116::::::::40:::::::|h[A Mangled Journal]|h|r",EquipLoc=""},["Deprecated Cold Basilisk Eye"]={SubType="Consumable",Level=39,id=1704,StackCount=10,Rarity=1,MinLevel=29,SellPrice=142,Texture=133884,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:1704::::::::40:::::::|h[Deprecated Cold Basilisk Eye]|h|r"},["Tablet of Rebirth"]={SubType="Book",Level=12,id=9048,StackCount=1,Rarity=1,MinLevel=12,SellPrice=150,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9048::::::::40:::::::|h[Tablet of Rebirth]|h|r"},["Big Will's Ear"]={SubType="Consumable",Level=1,id=6927,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133854,Type="Consumable",Link="|cffffffff|Hitem:6927::::::::40:::::::|h[Big Will's Ear]|h|r",EquipLoc=""},["Durable Chain Shoulders"]={SubType="Mail",Level=24,id=6189,StackCount=1,Rarity=1,MinLevel=0,SellPrice=624,Texture=135036,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:6189::::::::40:::::::|h[Durable Chain Shoulders]|h|r"},["Vest of The Five Thunders"]={SubType="Mail",Level=60,id=22102,StackCount=1,Rarity=4,MinLevel=0,SellPrice=38368,Texture=132633,Link="|cffa335ee|Hitem:22102::::::::40:::::::|h[Vest of The Five Thunders]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Arcanite Bar"]={SubType="Trade Goods",Level=55,id=12360,StackCount=20,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134459,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:12360::::::::40:::::::|h[Arcanite Bar]|h|r"},["Battle Healer's Cloak"]={SubType="Cloth",Level=63,id=19526,StackCount=1,Rarity=3,MinLevel=58,SellPrice=18116,Texture=133770,Link="|cff0070dd|Hitem:19526::::::::40:::::::|h[Battle Healer's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Katoom's Best Lure"]={SubType="Quest",Level=1,id=19023,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134324,Link="|cffffffff|Hitem:19023::::::::40:::::::|h[Katoom's Best Lure]|h|r",EquipLoc="",Type="Quest"},["Heavy Mithril Axe"]={SubType="One-Handed Axes",Level=42,id=7941,StackCount=1,Rarity=2,MinLevel=37,SellPrice=12520,Texture=132405,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:7941::::::::40:::::::|h[Heavy Mithril Axe]|h|r"},["Nagaz Parchment"]={SubType="Quest",Level=1,id=3707,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:3707::::::::40:::::::|h[Nagaz Parchment]|h|r",EquipLoc="",Type="Quest"},["Strapped Cloak"]={SubType="Cloth",Level=62,id=3980,StackCount=1,Rarity=0,MinLevel=57,SellPrice=6844,Texture=133759,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:3980::::::::40:::::::|h[Strapped Cloak]|h|r"},["Pattern: Green Silk Pack"]={SubType="Tailoring",Level=35,id=5774,StackCount=1,Rarity=2,MinLevel=0,SellPrice=275,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:5774::::::::40:::::::|h[Pattern: Green Silk Pack]|h|r"},["Sayge's Fortune #14"]={SubType="Junk",Level=1,id=19249,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19249::::::::40:::::::|h[Sayge's Fortune #14]|h|r",EquipLoc="",Type="Miscellaneous"},["Jeklik's Opaline Talisman"]={SubType="Miscellaneous",Level=68,id=19923,StackCount=1,Rarity=3,MinLevel=60,SellPrice=44030,Texture=133290,Link="|cff0070dd|Hitem:19923::::::::40:::::::|h[Jeklik's Opaline Talisman]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Templar Gauntlets"]={SubType="Plate",Level=55,id=10165,StackCount=1,Rarity=2,MinLevel=50,SellPrice=6240,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10165::::::::40:::::::|h[Templar Gauntlets]|h|r",Type="Armor"},["Large Slimy Bone"]={SubType="Junk",Level=1,id=3670,StackCount=5,Rarity=0,MinLevel=0,SellPrice=70,Texture=133718,EquipLoc="",Link="|cff9d9d9d|Hitem:3670::::::::40:::::::|h[Large Slimy Bone]|h|r",Type="Miscellaneous"},["TEST QUEST HELM"]={SubType="Leather",Level=5,id=4853,StackCount=1,Rarity=1,MinLevel=5,SellPrice=9,Texture=132381,EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:4853::::::::40:::::::|h[TEST QUEST HELM]|h|r",Type="Armor"},["Filled Soul Gem"]={SubType="Quest",Level=1,id=3913,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134335,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3913::::::::40:::::::|h[Filled Soul Gem]|h|r"},["Commander's Pauldrons"]={SubType="Plate",Level=61,id=10383,StackCount=1,Rarity=2,MinLevel=56,SellPrice=12521,Texture=135032,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10383::::::::40:::::::|h[Commander's Pauldrons]|h|r",Type="Armor"},["Test - Magic Stone Helmet"]={SubType="Cloth",Level=30,id=7299,StackCount=1,Rarity=0,MinLevel=25,SellPrice=516,Texture=133116,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:7299::::::::40:::::::|h[Test - Magic Stone Helmet]|h|r"},["Apprentice Sash"]={SubType="Cloth",Level=12,id=3442,StackCount=1,Rarity=1,MinLevel=0,SellPrice=44,Texture=133693,Link="|cffffffff|Hitem:3442::::::::40:::::::|h[Apprentice Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Archer's Trousers"]={SubType="Leather",Level=37,id=9862,StackCount=1,Rarity=2,MinLevel=32,SellPrice=4260,Texture=134587,Link="|cff1eff00|Hitem:9862::::::::40:::::::|h[Archer's Trousers]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Grimoire of Torment (Rank 2)"]={SubType="Book",Level=20,id=16346,StackCount=1,Rarity=1,MinLevel=20,SellPrice=500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16346::::::::40:::::::|h[Grimoire of Torment (Rank 2)]|h|r",Type="Recipe"},["Test Fire Res Ring"]={SubType="Miscellaneous",Level=61,id=16067,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133343,EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:16067::::::::40:::::::|h[Test Fire Res Ring]|h|r",Type="Armor"},["Beads of Ogre Mojo"]={SubType="Miscellaneous",Level=63,id=22149,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10283,Texture=133280,Link="|cff0070dd|Hitem:22149::::::::40:::::::|h[Beads of Ogre Mojo]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Witchfury"]={SubType="Two-Handed Swords",Level=44,id=13051,StackCount=1,Rarity=3,MinLevel=39,SellPrice=22911,Texture=135345,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13051::::::::40:::::::|h[Witchfury]|h|r"},["Magistrate's Cuffs"]={SubType="Leather",Level=59,id=18726,StackCount=1,Rarity=3,MinLevel=54,SellPrice=11296,Texture=132610,Type="Armor",Link="|cff0070dd|Hitem:18726::::::::40:::::::|h[Magistrate's Cuffs]|h|r",EquipLoc="INVTYPE_WRIST"},["Box of Woodcrafts"]={SubType="Consumable",Level=1,id=22291,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Link="|cffffffff|Hitem:22291::::::::40:::::::|h[Box of Woodcrafts]|h|r",EquipLoc="",Type="Consumable"},["Linked Chain Belt"]={SubType="Mail",Level=25,id=1746,StackCount=1,Rarity=0,MinLevel=20,SellPrice=332,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:1746::::::::40:::::::|h[Linked Chain Belt]|h|r",Type="Armor"},["Lydon's Toxin"]={SubType="Quest",Level=1,id=5588,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134721,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5588::::::::40:::::::|h[Lydon's Toxin]|h|r"},["Crispy Lizard Tail"]={SubType="Consumable",Level=22,id=5479,StackCount=20,Rarity=1,MinLevel=12,SellPrice=125,Texture=133973,Link="|cffffffff|Hitem:5479::::::::40:::::::|h[Crispy Lizard Tail]|h|r",EquipLoc="",Type="Consumable"},["Book of Mark of the Wild III"]={SubType="Book",Level=20,id=5163,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:5163::::::::40:::::::|h[Book of Mark of the Wild III]|h|r",Type="Recipe"},["90 Epic Frost Leggings"]={SubType="Cloth",Level=90,id=20329,StackCount=1,Rarity=4,MinLevel=60,SellPrice=116858,Texture=134586,Link="|cffa335ee|Hitem:20329::::::::40:::::::|h[90 Epic Frost Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Book of Faerie Fire II"]={SubType="Book",Level=30,id=8764,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133743,Link="|cffffffff|Hitem:8764::::::::40:::::::|h[Book of Faerie Fire II]|h|r",EquipLoc="",Type="Recipe"},["Unused White Leather D03 Gloves"]={SubType="Leather",Level=1,id=3549,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:3549::::::::40:::::::|h[Unused White Leather D03 Gloves]|h|r"},["Greenweave Sandals"]={SubType="Cloth",Level=23,id=9767,StackCount=1,Rarity=2,MinLevel=18,SellPrice=616,Texture=132537,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9767::::::::40:::::::|h[Greenweave Sandals]|h|r"},["Crystal of Zin-Malor"]={SubType="Quest",Level=1,id=13347,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134334,Type="Quest",EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:13347::::::::40:::::::|h[Crystal of Zin-Malor]|h|r"},["Arcanist Robes"]={SubType="Cloth",Level=66,id=16798,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34253,Texture=132644,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:16798::::::::40:::::::|h[Arcanist Robes]|h|r",Type="Armor"},["Legionnaire's Satin Tunic"]={SubType="Cloth",Level=68,id=22885,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14821,Texture=132716,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:22885::::::::40:::::::|h[Legionnaire's Satin Tunic]|h|r"},["Arcanite Buoy"]={SubType="Quest",Level=1,id=21136,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133001,Link="|cffffffff|Hitem:21136::::::::40:::::::|h[Arcanite Buoy]|h|r",EquipLoc="",Type="Quest"},["Blooddrenched Footpads"]={SubType="Leather",Level=68,id=19906,StackCount=1,Rarity=3,MinLevel=60,SellPrice=26969,Texture=132547,Link="|cff0070dd|Hitem:19906::::::::40:::::::|h[Blooddrenched Footpads]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Sergeant Major's Dragonhide Armsplints"]={SubType="Leather",Level=63,id=18454,StackCount=1,Rarity=3,MinLevel=58,SellPrice=6963,Texture=132602,Type="Armor",Link="|cff0070dd|Hitem:18454::::::::40:::::::|h[Sergeant Major's Dragonhide Armsplints]|h|r",EquipLoc="INVTYPE_WRIST"},["Harvest Bread"]={SubType="Consumable",Level=55,id=19696,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133989,Link="|cffffffff|Hitem:19696::::::::40:::::::|h[Harvest Bread]|h|r",EquipLoc="",Type="Consumable"},["Silvered Bronze Leggings"]={SubType="Mail",Level=31,id=10423,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2842,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10423::::::::40:::::::|h[Silvered Bronze Leggings]|h|r",Type="Armor"},["Tablet of Lightning Bolt VIII"]={SubType="Book",Level=58,id=9169,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=134459,Link="|cffffffff|Hitem:9169::::::::40:::::::|h[Tablet of Lightning Bolt VIII]|h|r",EquipLoc="",Type="Recipe"},["Green Woolen Bag"]={SubType="Bag",Level=15,id=4241,StackCount=1,Rarity=1,MinLevel=0,SellPrice=450,Texture=133642,Link="|cffffffff|Hitem:4241::::::::40:::::::|h[Green Woolen Bag]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Formula: Imbue Chest - Spirit"]={SubType="Enchanting",Level=14,id=6343,StackCount=1,Rarity=2,MinLevel=0,SellPrice=87,Texture=134327,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:6343::::::::40:::::::|h[Formula: Imbue Chest - Spirit]|h|r"},["Robes of Servitude"]={SubType="Cloth",Level=52,id=20530,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12735,Texture=132651,Link="|cff0070dd|Hitem:20530::::::::40:::::::|h[Robes of Servitude]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Belt of Never-ending Agony"]={SubType="Leather",Level=88,id=21586,StackCount=1,Rarity=4,MinLevel=60,SellPrice=66525,Texture=132515,Link="|cffa335ee|Hitem:21586::::::::40:::::::|h[Belt of Never-ending Agony]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Earthen Silk Belt"]={SubType="Cloth",Level=39,id=7061,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2017,Texture=132513,Link="|cff1eff00|Hitem:7061::::::::40:::::::|h[Earthen Silk Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Thunderhorn Cloak"]={SubType="Cloth",Level=8,id=4963,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30,Texture=133755,Link="|cffffffff|Hitem:4963::::::::40:::::::|h[Thunderhorn Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Lunar Festival Invitation DEBUG"]={SubType="Consumable",Level=55,id=21739,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134941,Link="|cffffffff|Hitem:21739::::::::40:::::::|h[Lunar Festival Invitation DEBUG]|h|r",EquipLoc="",Type="Consumable"},["Emblazoned Buckler"]={SubType="Shields",Level=30,id=4064,StackCount=1,Rarity=2,MinLevel=25,SellPrice=2987,Texture=134955,Type="Armor",Link="|cff1eff00|Hitem:4064::::::::40:::::::|h[Emblazoned Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Marshal's Chain Bracers"]={SubType="Mail",Level=65,id=16461,StackCount=1,Rarity=4,MinLevel=60,SellPrice=12326,Texture=132616,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16461::::::::40:::::::|h[Marshal's Chain Bracers]|h|r",Type="Armor"},["Kris"]={SubType="Daggers",Level=24,id=2209,StackCount=1,Rarity=1,MinLevel=19,SellPrice=1423,Texture=135342,Type="Weapon",Link="|cffffffff|Hitem:2209::::::::40:::::::|h[Kris]|h|r",EquipLoc="INVTYPE_WEAPON"},["Codex of Nullify Disease II"]={SubType="Book",Level=32,id=4287,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2500,Texture=133741,Link="|cffffffff|Hitem:4287::::::::40:::::::|h[Codex of Nullify Disease II]|h|r",EquipLoc="",Type="Recipe"},["Champion's Satin Shoulderpads"]={SubType="Cloth",Level=63,id=17613,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8447,Texture=135032,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:17613::::::::40:::::::|h[Champion's Satin Shoulderpads]|h|r",Type="Armor"},["Recipe: Runn Tum Tuber Surprise"]={SubType="Cooking",Level=55,id=18267,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134939,Type="Recipe",Link="|cff1eff00|Hitem:18267::::::::40:::::::|h[Recipe: Runn Tum Tuber Surprise]|h|r",EquipLoc=""},["Tablet of Stoneskin Totem III"]={SubType="Book",Level=24,id=9068,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9068::::::::40:::::::|h[Tablet of Stoneskin Totem III]|h|r"},["Sayge's Fortune #28"]={SubType="Junk",Level=1,id=19453,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19453::::::::40:::::::|h[Sayge's Fortune #28]|h|r",EquipLoc="",Type="Miscellaneous"},["Medallion of the Dawn"]={SubType="Miscellaneous",Level=60,id=22659,StackCount=1,Rarity=4,MinLevel=0,SellPrice=33625,Texture=133279,Link="|cffa335ee|Hitem:22659::::::::40:::::::|h[Medallion of the Dawn]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Monster - Item, Potion Red Offhand"]={SubType="Miscellaneous",Level=1,id=12870,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134718,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12870::::::::40:::::::|h[Monster - Item, Potion Red Offhand]|h|r"},["Shadow Hood"]={SubType="Cloth",Level=34,id=4323,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1999,Texture=133129,Link="|cff1eff00|Hitem:4323::::::::40:::::::|h[Shadow Hood]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Monster - Dagger, Fang Hook Curve Dark"]={SubType="Daggers",Level=1,id=19924,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134298,Link="|cff9d9d9d|Hitem:19924::::::::40:::::::|h[Monster - Dagger, Fang Hook Curve Dark]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Tunnel Pick"]={SubType="Two-Handed Axes",Level=29,id=756,StackCount=1,Rarity=2,MinLevel=24,SellPrice=4963,Texture=134708,Link="|cff1eff00|Hitem:756::::::::40:::::::|h[Tunnel Pick]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Mage-tastic Gizmonitor"]={SubType="Quest",Level=1,id=7226,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132995,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7226::::::::40:::::::|h[Mage-tastic Gizmonitor]|h|r"},["Light Hammer"]={SubType="One-Handed Maces",Level=7,id=2500,StackCount=1,Rarity=1,MinLevel=2,SellPrice=58,Texture=133057,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2500::::::::40:::::::|h[Light Hammer]|h|r"},["Imposing Shoulders"]={SubType="Leather",Level=44,id=15169,StackCount=1,Rarity=2,MinLevel=39,SellPrice=5542,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15169::::::::40:::::::|h[Imposing Shoulders]|h|r",Type="Armor"},["Menethil Statuette"]={SubType="Quest",Level=1,id=2625,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135896,EquipLoc="",Link="|cffffffff|Hitem:2625::::::::40:::::::|h[Menethil Statuette]|h|r",Type="Quest"},["Monster - Staff, Wooden Handle Rounded Head"]={SubType="Staves",Level=1,id=5303,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=135138,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5303::::::::40:::::::|h[Monster - Staff, Wooden Handle Rounded Head]|h|r",Type="Weapon"},["Canopy Leggings"]={SubType="Leather",Level=5,id=5398,StackCount=1,Rarity=1,MinLevel=0,SellPrice=13,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:5398::::::::40:::::::|h[Canopy Leggings]|h|r",Type="Armor"},["Deathcharger's Reins"]={SubType="Junk",Level=60,id=13335,StackCount=1,Rarity=3,MinLevel=60,SellPrice=250000,Texture=132264,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:13335::::::::40:::::::|h[Deathcharger's Reins]|h|r"},["Grand Marshal's Right Hand Blade"]={SubType="Fist Weapons",Level=78,id=18843,StackCount=1,Rarity=4,MinLevel=60,SellPrice=49339,Texture=135643,Type="Weapon",Link="|cffa335ee|Hitem:18843::::::::40:::::::|h[Grand Marshal's Right Hand Blade]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Deprecated Pickpocket Water 31-40"]={SubType="Junk",Level=1,id=5434,StackCount=5,Rarity=1,MinLevel=0,SellPrice=182,Texture=133854,EquipLoc="",Link="|cffffffff|Hitem:5434::::::::40:::::::|h[Deprecated Pickpocket Water 31-40]|h|r",Type="Miscellaneous"},["Black Brood Pauldrons"]={SubType="Mail",Level=75,id=19373,StackCount=1,Rarity=4,MinLevel=60,SellPrice=65375,Texture=135045,Link="|cffa335ee|Hitem:19373::::::::40:::::::|h[Black Brood Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Primal Hakkari Shawl"]={SubType="Quest",Level=1,id=19721,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=135050,Link="|cffa335ee|Hitem:19721::::::::40:::::::|h[Primal Hakkari Shawl]|h|r",EquipLoc="",Type="Quest"},["Monster - Mace2H, Large Metal (1H, Special)"]={SubType="One-Handed Maces",Level=1,id=5495,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7,Texture=133038,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:5495::::::::40:::::::|h[Monster - Mace2H, Large Metal (1H, Special)]|h|r"},["[PH] Rising Dawn Fists"]={SubType="Mail",Level=1,id=13733,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132944,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:13733::::::::40:::::::|h[[PH] Rising Dawn Fists]|h|r"},["Tiny Silver Key"]={SubType="Reagent",Level=54,id=8148,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134248,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:8148::::::::40:::::::|h[Tiny Silver Key]|h|r"},["Libram: Holy Light V"]={SubType="Book",Level=30,id=4164,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:4164::::::::40:::::::|h[Libram: Holy Light V]|h|r",Type="Recipe"},["Masterwork Cape"]={SubType="Cloth",Level=61,id=10267,StackCount=1,Rarity=2,MinLevel=56,SellPrice=13337,Texture=133766,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10267::::::::40:::::::|h[Masterwork Cape]|h|r",Type="Armor"},["High Bergg Helm"]={SubType="Mail",Level=47,id=13128,StackCount=1,Rarity=3,MinLevel=42,SellPrice=10543,Texture=133120,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:13128::::::::40:::::::|h[High Bergg Helm]|h|r"},["Foreboding Plans"]={SubType="Quest",Level=1,id=3718,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:3718::::::::40:::::::|h[Foreboding Plans]|h|r",EquipLoc="",Type="Quest"},["Alterac Heavy Runecloth Bandage"]={SubType="Consumable",Level=58,id=19307,StackCount=100,Rarity=1,MinLevel=0,SellPrice=100,Texture=133682,Link="|cffffffff|Hitem:19307::::::::40:::::::|h[Alterac Heavy Runecloth Bandage]|h|r",EquipLoc="",Type="Consumable"},["Chromatic Mantle of the Dawn"]={SubType="Quest",Level=60,id=18182,StackCount=1,Rarity=2,MinLevel=0,SellPrice=100000,Texture=134139,Type="Quest",Link="|cff1eff00|Hitem:18182::::::::40:::::::|h[Chromatic Mantle of the Dawn]|h|r",EquipLoc=""},["Tearfall Bracers"]={SubType="Cloth",Level=57,id=13409,StackCount=1,Rarity=3,MinLevel=52,SellPrice=8119,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13409::::::::40:::::::|h[Tearfall Bracers]|h|r"},["Watertight Trunk"]={SubType="Junk",Level=25,id=21113,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2,Texture=132594,Link="|cffffffff|Hitem:21113::::::::40:::::::|h[Watertight Trunk]|h|r",EquipLoc="",Type="Miscellaneous"},["Exquisite Flamberge"]={SubType="Two-Handed Swords",Level=41,id=1625,StackCount=1,Rarity=2,MinLevel=36,SellPrice=14754,Texture=135356,Link="|cff1eff00|Hitem:1625::::::::40:::::::|h[Exquisite Flamberge]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Bloated Redgill"]={SubType="Consumable",Level=45,id=13881,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=133892,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13881::::::::40:::::::|h[Bloated Redgill]|h|r"},["Corruptor's Scourgestone"]={SubType="Quest",Level=1,id=12843,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=133445,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:12843::::::::40:::::::|h[Corruptor's Scourgestone]|h|r"},["Feralas: A History"]={SubType="Quest",Level=1,id=9331,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133734,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9331::::::::40:::::::|h[Feralas: A History]|h|r"},["Adept's Gloves"]={SubType="Cloth",Level=15,id=4768,StackCount=1,Rarity=2,MinLevel=10,SellPrice=139,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:4768::::::::40:::::::|h[Adept's Gloves]|h|r"},["Skin of Dwarven Stout"]={SubType="Consumable",Level=15,id=2596,StackCount=20,Rarity=1,MinLevel=0,SellPrice=30,Texture=132816,EquipLoc="",Link="|cffffffff|Hitem:2596::::::::40:::::::|h[Skin of Dwarven Stout]|h|r",Type="Consumable"},["Tidecrest Blade"]={SubType="One-Handed Swords",Level=57,id=15705,StackCount=1,Rarity=2,MinLevel=0,SellPrice=33830,Texture=135349,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15705::::::::40:::::::|h[Tidecrest Blade]|h|r",Type="Weapon"},["Test Fire Res Feet Mail"]={SubType="Mail",Level=35,id=16066,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3137,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:16066::::::::40:::::::|h[Test Fire Res Feet Mail]|h|r",Type="Armor"},["Sealed Blood Container"]={SubType="Quest",Level=1,id=21985,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132595,Link="|cffffffff|Hitem:21985::::::::40:::::::|h[Sealed Blood Container]|h|r",EquipLoc="",Type="Quest"},["Book of the Dead"]={SubType="Miscellaneous",Level=63,id=13353,StackCount=1,Rarity=4,MinLevel=58,SellPrice=10452,Texture=133738,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffa335ee|Hitem:13353::::::::40:::::::|h[Book of the Dead]|h|r"},["Deprecated Band of the Order"]={SubType="Leather",Level=23,id=5625,StackCount=1,Rarity=0,MinLevel=0,SellPrice=330,Texture=133693,EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:5625::::::::40:::::::|h[Deprecated Band of the Order]|h|r",Type="Armor"},["TEST Legendary"]={SubType="One-Handed Axes",Level=30,id=3895,StackCount=1,Rarity=5,MinLevel=25,SellPrice=10287,Texture=132392,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffff8000|Hitem:3895::::::::40:::::::|h[TEST Legendary]|h|r",Type="Weapon"},["Lunar Raiment"]={SubType="Cloth",Level=47,id=14254,StackCount=1,Rarity=2,MinLevel=42,SellPrice=7698,Texture=132678,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14254::::::::40:::::::|h[Lunar Raiment]|h|r"},["Kodobone Necklace"]={SubType="Miscellaneous",Level=41,id=15690,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4912,Texture=133296,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:15690::::::::40:::::::|h[Kodobone Necklace]|h|r",Type="Armor"},["Devilsaur Gauntlets"]={SubType="Leather",Level=58,id=15063,StackCount=1,Rarity=3,MinLevel=53,SellPrice=11701,Texture=132960,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:15063::::::::40:::::::|h[Devilsaur Gauntlets]|h|r",Type="Armor"},["Veteran Shield"]={SubType="Shields",Level=15,id=3651,StackCount=1,Rarity=2,MinLevel=10,SellPrice=435,Texture=134955,Link="|cff1eff00|Hitem:3651::::::::40:::::::|h[Veteran Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Corsair's Overshirt"]={SubType="Cloth",Level=24,id=5202,StackCount=1,Rarity=3,MinLevel=19,SellPrice=1147,Texture=135012,Link="|cff0070dd|Hitem:5202::::::::40:::::::|h[Corsair's Overshirt]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Bloodhoof Hand Axe"]={SubType="One-Handed Axes",Level=10,id=4965,StackCount=1,Rarity=1,MinLevel=0,SellPrice=149,Texture=132402,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:4965::::::::40:::::::|h[Bloodhoof Hand Axe]|h|r"},["Captain Rackmore's Tiller"]={SubType="Wands",Level=36,id=16789,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5992,Texture=135145,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:16789::::::::40:::::::|h[Captain Rackmore's Tiller]|h|r",Type="Weapon"},["Marauder's Belt"]={SubType="Mail",Level=35,id=15571,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2218,Texture=132515,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15571::::::::40:::::::|h[Marauder's Belt]|h|r",Type="Armor"},["Hyperion Gauntlets"]={SubType="Plate",Level=62,id=10386,StackCount=1,Rarity=2,MinLevel=57,SellPrice=8865,Texture=132937,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10386::::::::40:::::::|h[Hyperion Gauntlets]|h|r",Type="Armor"},["Seared Mail Vest"]={SubType="Mail",Level=50,id=19128,StackCount=1,Rarity=2,MinLevel=0,SellPrice=13358,Texture=132635,Link="|cff1eff00|Hitem:19128::::::::40:::::::|h[Seared Mail Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Royal Amice"]={SubType="Cloth",Level=45,id=9912,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5037,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9912::::::::40:::::::|h[Royal Amice]|h|r"},["River Pride Choker"]={SubType="Miscellaneous",Level=33,id=13087,StackCount=1,Rarity=3,MinLevel=28,SellPrice=5896,Texture=133296,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:13087::::::::40:::::::|h[River Pride Choker]|h|r"},["Miner's Revenge"]={SubType="Two-Handed Axes",Level=20,id=1893,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1775,Texture=134709,Link="|cff1eff00|Hitem:1893::::::::40:::::::|h[Miner's Revenge]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Insignia of the Crusade"]={SubType="Junk",Level=1,id=22524,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=134503,Link="|cff1eff00|Hitem:22524::::::::40:::::::|h[Insignia of the Crusade]|h|r",EquipLoc="",Type="Miscellaneous"},["Tome of Blink II"]={SubType="Book",Level=38,id=4162,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4250,Texture=133739,Link="|cffffffff|Hitem:4162::::::::40:::::::|h[Tome of Blink II]|h|r",EquipLoc="",Type="Recipe"},["Crunchy Frog"]={SubType="Consumable",Level=45,id=19306,StackCount=20,Rarity=1,MinLevel=35,SellPrice=100,Texture=133919,Link="|cffffffff|Hitem:19306::::::::40:::::::|h[Crunchy Frog]|h|r",EquipLoc="",Type="Consumable"},["63 Green Warrior Bracelets"]={SubType="Plate",Level=63,id=20281,StackCount=1,Rarity=2,MinLevel=58,SellPrice=9247,Texture=132618,Link="|cff1eff00|Hitem:20281::::::::40:::::::|h[63 Green Warrior Bracelets]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Poisoned Spider Fang"]={SubType="Junk",Level=1,id=3931,StackCount=5,Rarity=0,MinLevel=0,SellPrice=185,Texture=134298,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:3931::::::::40:::::::|h[Poisoned Spider Fang]|h|r"},["Wanderer's Leggings"]={SubType="Leather",Level=58,id=10112,StackCount=1,Rarity=2,MinLevel=53,SellPrice=19071,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10112::::::::40:::::::|h[Wanderer's Leggings]|h|r",Type="Armor"},["Big-mouth Clam"]={SubType="Junk",Level=40,id=7973,StackCount=1,Rarity=1,MinLevel=0,SellPrice=46,Texture=134433,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:7973::::::::40:::::::|h[Big-mouth Clam]|h|r"},["Cantation of Manifestation"]={SubType="Quest",Level=1,id=7308,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Link="|cffffffff|Hitem:7308::::::::40:::::::|h[Cantation of Manifestation]|h|r",EquipLoc="",Type="Quest"},["Accurate Scope"]={SubType="Devices",Level=36,id=4407,StackCount=5,Rarity=1,MinLevel=20,SellPrice=1200,Texture=134441,EquipLoc="",Link="|cffffffff|Hitem:4407::::::::40:::::::|h[Accurate Scope]|h|r",Type="Trade Goods"},["Righteous Cloak"]={SubType="Cloth",Level=49,id=10071,StackCount=1,Rarity=2,MinLevel=44,SellPrice=8063,Texture=133758,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10071::::::::40:::::::|h[Righteous Cloak]|h|r",Type="Armor"},["Crag Buckler"]={SubType="Shields",Level=11,id=5593,StackCount=1,Rarity=1,MinLevel=0,SellPrice=116,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:5593::::::::40:::::::|h[Crag Buckler]|h|r",Type="Armor"},["Trousers of the Oracle"]={SubType="Cloth",Level=81,id=21352,StackCount=1,Rarity=4,MinLevel=60,SellPrice=71514,Texture=134601,Link="|cffa335ee|Hitem:21352::::::::40:::::::|h[Trousers of the Oracle]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["[UNUSED] Scourge Invasion Focus Object"]={SubType="Junk",Level=1,id=22485,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134421,Link="|cffffffff|Hitem:22485::::::::40:::::::|h[[UNUSED] Scourge Invasion Focus Object]|h|r",EquipLoc="",Type="Miscellaneous"},["Windchaser Wraps"]={SubType="Cloth",Level=49,id=14427,StackCount=1,Rarity=2,MinLevel=44,SellPrice=9124,Texture=135007,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14427::::::::40:::::::|h[Windchaser Wraps]|h|r"},["Shadow Goggles"]={SubType="Cloth",Level=24,id=4373,StackCount=1,Rarity=2,MinLevel=0,SellPrice=722,Texture=133149,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:4373::::::::40:::::::|h[Shadow Goggles]|h|r"},["Idol of Brutality"]={SubType="Idols",Level=65,id=23198,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18165,Texture=134912,Link="|cff0070dd|Hitem:23198::::::::40:::::::|h[Idol of Brutality]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Recipe: Elixir of Shadow Power"]={SubType="Alchemy",Level=50,id=9301,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2500,Texture=134942,Link="|cff1eff00|Hitem:9301::::::::40:::::::|h[Recipe: Elixir of Shadow Power]|h|r",EquipLoc="",Type="Recipe"},["Cryptstalker Headpiece"]={SubType="Mail",Level=88,id=22438,StackCount=1,Rarity=4,MinLevel=60,SellPrice=111521,Texture=133117,Link="|cffa335ee|Hitem:22438::::::::40:::::::|h[Cryptstalker Headpiece]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Deprecated Torn Shirt"]={SubType="Miscellaneous",Level=1,id=5090,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135016,Link="|cffffffff|Hitem:5090::::::::40:::::::|h[Deprecated Torn Shirt]|h|r",EquipLoc="INVTYPE_BODY",Type="Armor"},["Scale of Old Murk-Eye"]={SubType="Quest",Level=1,id=3636,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134303,Type="Quest",Link="|cffffffff|Hitem:3636::::::::40:::::::|h[Scale of Old Murk-Eye]|h|r",EquipLoc=""},["Corrupt Manifestation's Bracers"]={SubType="Quest",Level=1,id=7812,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132608,EquipLoc="",Link="|cffffffff|Hitem:7812::::::::40:::::::|h[Corrupt Manifestation's Bracers]|h|r",Type="Quest"},["Emberspark Pendant"]={SubType="Miscellaneous",Level=35,id=5005,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1840,Texture=133292,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:5005::::::::40:::::::|h[Emberspark Pendant]|h|r",Type="Armor"},["Seeping Gizzard"]={SubType="Junk",Level=1,id=5133,StackCount=5,Rarity=0,MinLevel=0,SellPrice=300,Texture=134343,Link="|cff9d9d9d|Hitem:5133::::::::40:::::::|h[Seeping Gizzard]|h|r",EquipLoc="",Type="Miscellaneous"},["Medal of Courage"]={SubType="Miscellaneous",Level=45,id=6723,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8155,Texture=133278,Link="|cff1eff00|Hitem:6723::::::::40:::::::|h[Medal of Courage]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Giantstalker's Gloves"]={SubType="Mail",Level=66,id=16852,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27762,Texture=132944,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16852::::::::40:::::::|h[Giantstalker's Gloves]|h|r",Type="Armor"},["Fras Siabi's Postbox Key"]={SubType="Key",Level=1,id=13307,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:13307::::::::40:::::::|h[Fras Siabi's Postbox Key]|h|r"},["Brainlash"]={SubType="Miscellaneous",Level=48,id=6440,StackCount=1,Rarity=3,MinLevel=43,SellPrice=15812,Texture=132519,Type="Armor",Link="|cff0070dd|Hitem:6440::::::::40:::::::|h[Brainlash]|h|r",EquipLoc="INVTYPE_FINGER"},["Mithril Scale Bracers"]={SubType="Mail",Level=43,id=7924,StackCount=1,Rarity=2,MinLevel=38,SellPrice=4103,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:7924::::::::40:::::::|h[Mithril Scale Bracers]|h|r",Type="Armor"},["Green Linen Shirt"]={SubType="Miscellaneous",Level=14,id=2579,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37,Texture=135024,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:2579::::::::40:::::::|h[Green Linen Shirt]|h|r"},["Splintered Tusk"]={SubType="Junk",Level=1,id=7098,StackCount=5,Rarity=0,MinLevel=0,SellPrice=6,Texture=133722,EquipLoc="",Link="|cff9d9d9d|Hitem:7098::::::::40:::::::|h[Splintered Tusk]|h|r",Type="Miscellaneous"},["Unused Black Leather D02 Pants"]={SubType="Leather",Level=1,id=3539,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134582,Link="|cffffffff|Hitem:3539::::::::40:::::::|h[Unused Black Leather D02 Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Worn Leather Boots"]={SubType="Leather",Level=8,id=1419,StackCount=1,Rarity=0,MinLevel=3,SellPrice=19,Texture=132540,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:1419::::::::40:::::::|h[Worn Leather Boots]|h|r"},["Guardian Stone"]={SubType="Trade Goods",Level=60,id=12809,StackCount=20,Rarity=2,MinLevel=0,SellPrice=10000,Texture=135228,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:12809::::::::40:::::::|h[Guardian Stone]|h|r"},["Codex of Sleep II"]={SubType="Book",Level=20,id=1676,StackCount=1,Rarity=1,MinLevel=20,SellPrice=750,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:1676::::::::40:::::::|h[Codex of Sleep II]|h|r",Type="Recipe"},["Monster - Glaive - 2 Blade Purple"]={SubType="One-Handed Axes",Level=1,id=17382,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:17382::::::::40:::::::|h[Monster - Glaive - 2 Blade Purple]|h|r",Type="Weapon"},["Syncretist's Sigil"]={SubType="Junk",Level=60,id=19783,StackCount=1,Rarity=3,MinLevel=60,SellPrice=0,Texture=135942,Link="|cff0070dd|Hitem:19783::::::::40:::::::|h[Syncretist's Sigil]|h|r",EquipLoc="",Type="Miscellaneous"},["Cracked Leather Boots"]={SubType="Leather",Level=5,id=2123,StackCount=1,Rarity=1,MinLevel=1,SellPrice=9,Texture=132540,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:2123::::::::40:::::::|h[Cracked Leather Boots]|h|r"},["Raw Longjaw Mud Snapper"]={SubType="Consumable",Level=15,id=6289,StackCount=20,Rarity=1,MinLevel=5,SellPrice=1,Texture=133918,Type="Consumable",Link="|cffffffff|Hitem:6289::::::::40:::::::|h[Raw Longjaw Mud Snapper]|h|r",EquipLoc=""},["Eye of Rend"]={SubType="Leather",Level=63,id=12587,StackCount=1,Rarity=3,MinLevel=58,SellPrice=21031,Texture=133148,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:12587::::::::40:::::::|h[Eye of Rend]|h|r"},["Rat Cloth Belt"]={SubType="Cloth",Level=15,id=2283,StackCount=1,Rarity=2,MinLevel=10,SellPrice=140,Texture=132494,Type="Armor",Link="|cff1eff00|Hitem:2283::::::::40:::::::|h[Rat Cloth Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Hunter's Muzzle Loader"]={SubType="Guns",Level=19,id=3040,StackCount=1,Rarity=2,MinLevel=14,SellPrice=940,Texture=135610,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:3040::::::::40:::::::|h[Hunter's Muzzle Loader]|h|r"},["Warstrike Legguards"]={SubType="Mail",Level=62,id=14816,StackCount=1,Rarity=2,MinLevel=57,SellPrice=27620,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14816::::::::40:::::::|h[Warstrike Legguards]|h|r"},["Glommus's Head"]={SubType="Quest",Level=1,id=3552,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Link="|cffffffff|Hitem:3552::::::::40:::::::|h[Glommus's Head]|h|r",EquipLoc="",Type="Quest"},["Sentinel's Silk Leggings"]={SubType="Cloth",Level=65,id=22752,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34149,Texture=134599,Link="|cffa335ee|Hitem:22752::::::::40:::::::|h[Sentinel's Silk Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Intricate Bauble"]={SubType="Junk",Level=1,id=5430,StackCount=5,Rarity=0,MinLevel=0,SellPrice=277,Texture=134335,EquipLoc="",Link="|cff9d9d9d|Hitem:5430::::::::40:::::::|h[Intricate Bauble]|h|r",Type="Miscellaneous"},["Khan Dez'hepah's Head"]={SubType="Quest",Level=1,id=6066,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134151,Type="Quest",Link="|cffffffff|Hitem:6066::::::::40:::::::|h[Khan Dez'hepah's Head]|h|r",EquipLoc=""},["Embersilk Cloak"]={SubType="Cloth",Level=36,id=14229,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2387,Texture=133760,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14229::::::::40:::::::|h[Embersilk Cloak]|h|r"},["Sarah's Guide"]={SubType="Staves",Level=61,id=17004,StackCount=1,Rarity=2,MinLevel=0,SellPrice=56429,Texture=135147,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:17004::::::::40:::::::|h[Sarah's Guide]|h|r",Type="Weapon"},["Lawbringer Helm"]={SubType="Plate",Level=66,id=16854,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27956,Texture=133073,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16854::::::::40:::::::|h[Lawbringer Helm]|h|r",Type="Armor"},["Pattern: Volcanic Breastplate"]={SubType="Leatherworking",Level=57,id=15749,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15749::::::::40:::::::|h[Pattern: Volcanic Breastplate]|h|r",Type="Recipe"},["Book: Gift of the Wild II"]={SubType="Book",Level=60,id=17683,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14750,Texture=133743,EquipLoc="",Link="|cff0070dd|Hitem:17683::::::::40:::::::|h[Book: Gift of the Wild II]|h|r",Type="Recipe"},["Lordrec Helmet"]={SubType="Leather",Level=53,id=10741,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10063,Texture=133090,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10741::::::::40:::::::|h[Lordrec Helmet]|h|r",Type="Armor"},["Vest of Elements"]={SubType="Mail",Level=63,id=16666,StackCount=1,Rarity=3,MinLevel=58,SellPrice=35962,Texture=132633,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16666::::::::40:::::::|h[Vest of Elements]|h|r",Type="Armor"},["Deadwood Headdress Feather"]={SubType="Quest",Level=1,id=21377,StackCount=250,Rarity=1,MinLevel=0,SellPrice=200,Texture=132926,Link="|cffffffff|Hitem:21377::::::::40:::::::|h[Deadwood Headdress Feather]|h|r",EquipLoc="",Type="Quest"},["Soft Patch of Fur"]={SubType="Junk",Level=1,id=3402,StackCount=5,Rarity=0,MinLevel=0,SellPrice=602,Texture=134360,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:3402::::::::40:::::::|h[Soft Patch of Fur]|h|r",EquipLoc=""},["Band of Flesh"]={SubType="Miscellaneous",Level=60,id=13373,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14846,Texture=133721,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:13373::::::::40:::::::|h[Band of Flesh]|h|r"},["Faded Shadowhide Pendant"]={SubType="Quest",Level=1,id=1956,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133437,Link="|cffffffff|Hitem:1956::::::::40:::::::|h[Faded Shadowhide Pendant]|h|r",EquipLoc="",Type="Quest"},["Fang of the Crystal Spider"]={SubType="Daggers",Level=61,id=13218,StackCount=1,Rarity=3,MinLevel=56,SellPrice=53388,Texture=135652,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13218::::::::40:::::::|h[Fang of the Crystal Spider]|h|r"},["Deprecated Travel-worn Boots"]={SubType="Miscellaneous",Level=1,id=2107,StackCount=1,Rarity=0,MinLevel=0,SellPrice=1,Texture=132543,EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:2107::::::::40:::::::|h[Deprecated Travel-worn Boots]|h|r",Type="Armor"},["The Black Book"]={SubType="Miscellaneous",Level=76,id=19337,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72039,Texture=133738,Link="|cffa335ee|Hitem:19337::::::::40:::::::|h[The Black Book]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Test Shadow Res Shoulders Cloth"]={SubType="Cloth",Level=35,id=16147,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2146,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16147::::::::40:::::::|h[Test Shadow Res Shoulders Cloth]|h|r",Type="Armor"},["Everglow Lantern"]={SubType="Miscellaneous",Level=25,id=5323,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1632,Texture=134249,Link="|cff1eff00|Hitem:5323::::::::40:::::::|h[Everglow Lantern]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Darrowspike"]={SubType="Daggers",Level=63,id=13984,StackCount=1,Rarity=3,MinLevel=0,SellPrice=57806,Texture=135657,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13984::::::::40:::::::|h[Darrowspike]|h|r"},["Flarecore Leggings"]={SubType="Cloth",Level=70,id=19165,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45006,Texture=134586,Link="|cffa335ee|Hitem:19165::::::::40:::::::|h[Flarecore Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Stonelash Scorpid Stinger"]={SubType="Quest",Level=0,id=20373,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136067,Link="|cffffffff|Hitem:20373::::::::40:::::::|h[Stonelash Scorpid Stinger]|h|r",EquipLoc="",Type="Quest"},["Bracers of Mending"]={SubType="Cloth",Level=62,id=23129,StackCount=1,Rarity=3,MinLevel=57,SellPrice=11269,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:23129::::::::40:::::::|h[Bracers of Mending]|h|r"},["Mithril Gyro-Shot"]={SubType="Bullet",Level=49,id=10513,StackCount=200,Rarity=2,MinLevel=44,SellPrice=5,Texture=132383,EquipLoc="INVTYPE_AMMO",Link="|cff1eff00|Hitem:10513::::::::40:::::::|h[Mithril Gyro-Shot]|h|r",Type="Projectile"},["Orcish Orphan Whistle"]={SubType="Junk",Level=10,id=18597,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132161,Type="Miscellaneous",Link="|cffffffff|Hitem:18597::::::::40:::::::|h[Orcish Orphan Whistle]|h|r",EquipLoc=""},["Sergeant Major's Plate Wristguards"]={SubType="Plate",Level=63,id=18445,StackCount=1,Rarity=3,MinLevel=58,SellPrice=5804,Texture=132617,Type="Armor",Link="|cff0070dd|Hitem:18445::::::::40:::::::|h[Sergeant Major's Plate Wristguards]|h|r",EquipLoc="INVTYPE_WRIST"},["Ring of the Devoured"]={SubType="Miscellaneous",Level=78,id=21681,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91369,Texture=133427,Link="|cffa335ee|Hitem:21681::::::::40:::::::|h[Ring of the Devoured]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Mastersmith's Hammer"]={SubType="One-Handed Maces",Level=60,id=18048,StackCount=1,Rarity=3,MinLevel=55,SellPrice=49204,Texture=133043,Type="Weapon",Link="|cff0070dd|Hitem:18048::::::::40:::::::|h[Mastersmith's Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Handguards of Transcendence"]={SubType="Cloth",Level=76,id=16920,StackCount=1,Rarity=4,MinLevel=60,SellPrice=28856,Texture=132948,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16920::::::::40:::::::|h[Handguards of Transcendence]|h|r",Type="Armor"},["Cliffspring River Sample"]={SubType="Quest",Level=1,id=12349,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134844,Link="|cffffffff|Hitem:12349::::::::40:::::::|h[Cliffspring River Sample]|h|r",EquipLoc="",Type="Quest"},["Battered Viking Shield"]={SubType="Shields",Level=40,id=9403,StackCount=1,Rarity=1,MinLevel=35,SellPrice=1331,Texture=134953,Link="|cffffffff|Hitem:9403::::::::40:::::::|h[Battered Viking Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Assassin's Blade"]={SubType="Daggers",Level=24,id=1935,StackCount=1,Rarity=3,MinLevel=19,SellPrice=2974,Texture=135660,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:1935::::::::40:::::::|h[Assassin's Blade]|h|r",Type="Weapon"},["Chambermaid Pillaclencher's Pillow"]={SubType="Quest",Level=1,id=18950,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133601,Type="Quest",Link="|cffffffff|Hitem:18950::::::::40:::::::|h[Chambermaid Pillaclencher's Pillow]|h|r",EquipLoc=""},["Formula: Enchant Bracer - Lesser Strength"]={SubType="Enchanting",Level=28,id=11101,StackCount=1,Rarity=2,MinLevel=0,SellPrice=625,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11101::::::::40:::::::|h[Formula: Enchant Bracer - Lesser Strength]|h|r",EquipLoc=""},["Redemption Handguards"]={SubType="Plate",Level=88,id=22426,StackCount=1,Rarity=4,MinLevel=60,SellPrice=51099,Texture=132959,Link="|cffa335ee|Hitem:22426::::::::40:::::::|h[Redemption Handguards]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Bruiseweed"]={SubType="Trade Goods",Level=20,id=2453,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=134181,Link="|cffffffff|Hitem:2453::::::::40:::::::|h[Bruiseweed]|h|r",EquipLoc="",Type="Trade Goods"},["Scrimshank's Surveying Gear"]={SubType="Quest",Level=1,id=8593,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132995,Link="|cffffffff|Hitem:8593::::::::40:::::::|h[Scrimshank's Surveying Gear]|h|r",EquipLoc="",Type="Quest"},["Spitfire Bracers"]={SubType="Mail",Level=62,id=20481,StackCount=1,Rarity=3,MinLevel=57,SellPrice=17139,Texture=132604,Link="|cff0070dd|Hitem:20481::::::::40:::::::|h[Spitfire Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Krom Stoutarm's Treasure"]={SubType="Quest",Level=1,id=8027,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132790,Link="|cffffffff|Hitem:8027::::::::40:::::::|h[Krom Stoutarm's Treasure]|h|r",EquipLoc="",Type="Quest"},["Monster - Bow, Dark Brown"]={SubType="Bows",Level=1,id=5262,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135493,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:5262::::::::40:::::::|h[Monster - Bow, Dark Brown]|h|r"},["Plans: Annihilator"]={SubType="Blacksmithing",Level=63,id=12835,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12835::::::::40:::::::|h[Plans: Annihilator]|h|r"},["Light Plate Bracers"]={SubType="Plate",Level=53,id=8083,StackCount=1,Rarity=0,MinLevel=48,SellPrice=2261,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:8083::::::::40:::::::|h[Light Plate Bracers]|h|r"},["Grimoire of Sense Demons"]={SubType="Book",Level=24,id=1224,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133738,Type="Recipe",Link="|cffffffff|Hitem:1224::::::::40:::::::|h[Grimoire of Sense Demons]|h|r",EquipLoc=""},["Stonescale Oil"]={SubType="Reagent",Level=50,id=13423,StackCount=20,Rarity=1,MinLevel=0,SellPrice=125,Texture=134848,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:13423::::::::40:::::::|h[Stonescale Oil]|h|r"},["Grizzly Buckler"]={SubType="Shields",Level=13,id=15298,StackCount=1,Rarity=2,MinLevel=8,SellPrice=305,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15298::::::::40:::::::|h[Grizzly Buckler]|h|r",Type="Armor"},["Turtle Egg (Albino)"]={SubType="Junk",Level=20,id=18963,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=132834,Type="Miscellaneous",Link="|cffffffff|Hitem:18963::::::::40:::::::|h[Turtle Egg (Albino)]|h|r",EquipLoc=""},["Graverot Cape"]={SubType="Cloth",Level=55,id=11677,StackCount=1,Rarity=3,MinLevel=50,SellPrice=11655,Texture=133771,Type="Armor",Link="|cff0070dd|Hitem:11677::::::::40:::::::|h[Graverot Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Book of Ferocious Bite V"]={SubType="Book",Level=60,id=24101,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133734,Link="|cff0070dd|Hitem:24101::::::::40:::::::|h[Book of Ferocious Bite V]|h|r",EquipLoc="",Type="Recipe"},["Zesty Clam Meat"]={SubType="Trade Goods",Level=45,id=7974,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=134007,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:7974::::::::40:::::::|h[Zesty Clam Meat]|h|r"},["Brigade Leggings"]={SubType="Mail",Level=45,id=9933,StackCount=1,Rarity=2,MinLevel=40,SellPrice=9394,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9933::::::::40:::::::|h[Brigade Leggings]|h|r"},["Hardened Leather Boots"]={SubType="Leather",Level=35,id=3801,StackCount=1,Rarity=0,MinLevel=30,SellPrice=1031,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:3801::::::::40:::::::|h[Hardened Leather Boots]|h|r"},["90 Green Frost Ring"]={SubType="Miscellaneous",Level=90,id=20346,StackCount=1,Rarity=2,MinLevel=60,SellPrice=15457,Texture=133358,Link="|cff1eff00|Hitem:20346::::::::40:::::::|h[90 Green Frost Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["The Judge's Gavel"]={SubType="Two-Handed Maces",Level=52,id=12528,StackCount=1,Rarity=3,MinLevel=47,SellPrice=37833,Texture=133044,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12528::::::::40:::::::|h[The Judge's Gavel]|h|r"},["The Twin Blades of Azzinoth"]={SubType="One-Handed Swords",Level=100,id=18582,StackCount=1,Rarity=6,MinLevel=70,SellPrice=1224473,Texture=135748,Type="Weapon",Link="|cffe6cc80|Hitem:18582::::::::40:::::::|h[The Twin Blades of Azzinoth]|h|r",EquipLoc="INVTYPE_WEAPON"},["Chieftain's Gloves"]={SubType="Leather",Level=49,id=9952,StackCount=1,Rarity=2,MinLevel=44,SellPrice=5255,Texture=132956,Link="|cff1eff00|Hitem:9952::::::::40:::::::|h[Chieftain's Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Bashguuder"]={SubType="One-Handed Maces",Level=60,id=13204,StackCount=1,Rarity=3,MinLevel=55,SellPrice=51945,Texture=133490,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13204::::::::40:::::::|h[Bashguuder]|h|r"},["Mandokir's Sting"]={SubType="Bows",Level=66,id=20038,StackCount=1,Rarity=4,MinLevel=60,SellPrice=64972,Texture=135461,Link="|cffa335ee|Hitem:20038::::::::40:::::::|h[Mandokir's Sting]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Threshadon Tooth"]={SubType="Quest",Level=1,id=2668,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133725,Link="|cffffffff|Hitem:2668::::::::40:::::::|h[Threshadon Tooth]|h|r",EquipLoc="",Type="Quest"},["Kravel's Crate"]={SubType="Consumable",Level=1,id=14542,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:14542::::::::40:::::::|h[Kravel's Crate]|h|r"},["Dreadblade"]={SubType="Daggers",Level=47,id=4088,StackCount=1,Rarity=2,MinLevel=42,SellPrice=18523,Texture=135351,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:4088::::::::40:::::::|h[Dreadblade]|h|r",Type="Weapon"},["Codex of Remove Curse II"]={SubType="Book",Level=38,id=4288,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4250,Texture=133741,Link="|cffffffff|Hitem:4288::::::::40:::::::|h[Codex of Remove Curse II]|h|r",EquipLoc="",Type="Recipe"},["Unnatural Leather Spaulders"]={SubType="Leather",Level=72,id=20633,StackCount=1,Rarity=4,MinLevel=60,SellPrice=46353,Texture=135060,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:20633::::::::40:::::::|h[Unnatural Leather Spaulders]|h|r"},["Orange Mageweave Shirt"]={SubType="Miscellaneous",Level=43,id=10056,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=135027,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:10056::::::::40:::::::|h[Orange Mageweave Shirt]|h|r",Type="Armor"},["Greater Stoneshield Potion"]={SubType="Consumable",Level=56,id=13455,StackCount=5,Rarity=1,MinLevel=46,SellPrice=750,Texture=134849,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13455::::::::40:::::::|h[Greater Stoneshield Potion]|h|r"},["Libram: Sense Undead"]={SubType="Book",Level=20,id=5676,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133740,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5676::::::::40:::::::|h[Libram: Sense Undead]|h|r"},["Bloodforged Shield"]={SubType="Shields",Level=51,id=14954,StackCount=1,Rarity=2,MinLevel=46,SellPrice=15234,Texture=134951,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14954::::::::40:::::::|h[Bloodforged Shield]|h|r"},["Monster - Sword2H, Horde Skull Blue Flame"]={SubType="Two-Handed Swords",Level=1,id=13623,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13623::::::::40:::::::|h[Monster - Sword2H, Horde Skull Blue Flame]|h|r"},["Formal White Shirt"]={SubType="Miscellaneous",Level=34,id=4334,StackCount=1,Rarity=1,MinLevel=0,SellPrice=550,Texture=135012,Type="Armor",Link="|cffffffff|Hitem:4334::::::::40:::::::|h[Formal White Shirt]|h|r",EquipLoc="INVTYPE_BODY"},["Deathmist Belt"]={SubType="Cloth",Level=65,id=22070,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12619,Texture=132501,Link="|cff0070dd|Hitem:22070::::::::40:::::::|h[Deathmist Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Smooth Leather Armor"]={SubType="Leather",Level=57,id=3976,StackCount=1,Rarity=0,MinLevel=52,SellPrice=6978,Texture=132724,Type="Armor",Link="|cff9d9d9d|Hitem:3976::::::::40:::::::|h[Smooth Leather Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Red Dragonscale Protector"]={SubType="Shields",Level=74,id=19348,StackCount=1,Rarity=4,MinLevel=60,SellPrice=84402,Texture=134966,Link="|cffa335ee|Hitem:19348::::::::40:::::::|h[Red Dragonscale Protector]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Slayer's Cuffs"]={SubType="Mail",Level=28,id=14750,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1068,Texture=132610,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14750::::::::40:::::::|h[Slayer's Cuffs]|h|r"},["Volcanic Shoulders"]={SubType="Leather",Level=61,id=15055,StackCount=1,Rarity=2,MinLevel=56,SellPrice=16019,Texture=135044,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15055::::::::40:::::::|h[Volcanic Shoulders]|h|r",Type="Armor"},["Silksand Cape"]={SubType="Cloth",Level=38,id=14420,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2889,Texture=133756,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14420::::::::40:::::::|h[Silksand Cape]|h|r"},["Monster - Mace2H, War Maul"]={SubType="Two-Handed Maces",Level=1,id=17942,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133477,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:17942::::::::40:::::::|h[Monster - Mace2H, War Maul]|h|r",Type="Weapon"},["Portals Deck"]={SubType="Junk",Level=1,id=19277,StackCount=1,Rarity=4,MinLevel=0,SellPrice=100000,Texture=134493,Link="|cffa335ee|Hitem:19277::::::::40:::::::|h[Portals Deck]|h|r",EquipLoc="",Type="Miscellaneous"},["Supreme Shoes"]={SubType="Leather",Level=63,id=15435,StackCount=1,Rarity=2,MinLevel=58,SellPrice=18199,Texture=132589,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15435::::::::40:::::::|h[Supreme Shoes]|h|r",Type="Armor"},["Armor Piercer"]={SubType="Polearms",Level=29,id=6679,StackCount=1,Rarity=2,MinLevel=24,SellPrice=4852,Texture=135128,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:6679::::::::40:::::::|h[Armor Piercer]|h|r"},["Sabatons of Might"]={SubType="Plate",Level=66,id=16862,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26778,Texture=132585,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16862::::::::40:::::::|h[Sabatons of Might]|h|r",Type="Armor"},["Monster - Glaive - 3 Blade"]={SubType="One-Handed Axes",Level=1,id=5598,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,Link="|cff9d9d9d|Hitem:5598::::::::40:::::::|h[Monster - Glaive - 3 Blade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Dragoneye Coif"]={SubType="Mail",Level=60,id=12953,StackCount=1,Rarity=3,MinLevel=55,SellPrice=22374,Texture=133141,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:12953::::::::40:::::::|h[Dragoneye Coif]|h|r"},["Banded Buckler"]={SubType="Shields",Level=17,id=1193,StackCount=1,Rarity=1,MinLevel=12,SellPrice=355,Texture=134949,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:1193::::::::40:::::::|h[Banded Buckler]|h|r"},["Crimson Silk Shoulders"]={SubType="Cloth",Level=38,id=7059,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2781,Texture=135054,Link="|cff1eff00|Hitem:7059::::::::40:::::::|h[Crimson Silk Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Wildkin Muisek"]={SubType="Quest",Level=1,id=9594,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135992,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9594::::::::40:::::::|h[Wildkin Muisek]|h|r"},["Formula: Minor Mana Oil"]={SubType="Enchanting",Level=30,id=20752,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=134327,Link="|cffffffff|Hitem:20752::::::::40:::::::|h[Formula: Minor Mana Oil]|h|r",EquipLoc="",Type="Recipe"},["Monster - Item, Book - Blue Offhand"]={SubType="Miscellaneous",Level=1,id=12860,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12860::::::::40:::::::|h[Monster - Item, Book - Blue Offhand]|h|r"},["Pattern: Heavy Scorpid Belt"]={SubType="Leatherworking",Level=56,id=15743,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134939,EquipLoc="",Link="|cff1eff00|Hitem:15743::::::::40:::::::|h[Pattern: Heavy Scorpid Belt]|h|r",Type="Recipe"},["Monster - Staff, Wooden Handle Spiral Head Dark"]={SubType="Staves",Level=1,id=19214,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135138,Link="|cff9d9d9d|Hitem:19214::::::::40:::::::|h[Monster - Staff, Wooden Handle Spiral Head Dark]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Elemental Fire"]={SubType="Reagent",Level=25,id=7068,StackCount=10,Rarity=1,MinLevel=0,SellPrice=400,Texture=135805,EquipLoc="",Link="|cffffffff|Hitem:7068::::::::40:::::::|h[Elemental Fire]|h|r",Type="Reagent"},["The Grand Crusader's Command"]={SubType="Quest",Level=1,id=13852,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13852::::::::40:::::::|h[The Grand Crusader's Command]|h|r"},["Juju Flurry"]={SubType="Quest",Level=60,id=12450,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1500,Texture=134319,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12450::::::::40:::::::|h[Juju Flurry]|h|r"},["Felcloth Shoulders"]={SubType="Cloth",Level=62,id=14112,StackCount=1,Rarity=2,MinLevel=57,SellPrice=13509,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14112::::::::40:::::::|h[Felcloth Shoulders]|h|r"},["High Chief's Crown"]={SubType="Plate",Level=55,id=14961,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9259,Texture=133125,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14961::::::::40:::::::|h[High Chief's Crown]|h|r"},["Brantwood Sash"]={SubType="Cloth",Level=58,id=15707,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7215,Texture=132497,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15707::::::::40:::::::|h[Brantwood Sash]|h|r",Type="Armor"},["Chivalrous Signet"]={SubType="Miscellaneous",Level=52,id=20505,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15457,Texture=133385,Link="|cff0070dd|Hitem:20505::::::::40:::::::|h[Chivalrous Signet]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Grape Manifest"]={SubType="Quest",Level=0,id=11125,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",Link="|cffffffff|Hitem:11125::::::::40:::::::|h[Grape Manifest]|h|r",EquipLoc=""},["Crest of Supremacy"]={SubType="Shields",Level=56,id=10835,StackCount=1,Rarity=3,MinLevel=51,SellPrice=24645,Texture=134950,EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:10835::::::::40:::::::|h[Crest of Supremacy]|h|r",Type="Armor"},["Dwarven Guard Cloak"]={SubType="Cloth",Level=31,id=4504,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2222,Texture=133757,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:4504::::::::40:::::::|h[Dwarven Guard Cloak]|h|r",Type="Armor"},["Filled Writhing Haunt Bottle"]={SubType="Quest",Level=1,id=13192,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134801,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13192::::::::40:::::::|h[Filled Writhing Haunt Bottle]|h|r"},["Buru's Skull Fragment"]={SubType="Shields",Level=68,id=21485,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60674,Texture=134968,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffa335ee|Hitem:21485::::::::40:::::::|h[Buru's Skull Fragment]|h|r"},["Royal Scepter"]={SubType="Miscellaneous",Level=48,id=9914,StackCount=1,Rarity=2,MinLevel=43,SellPrice=7557,Texture=133483,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:9914::::::::40:::::::|h[Royal Scepter]|h|r"},["Nogg's Gold Ring"]={SubType="Miscellaneous",Level=35,id=9588,StackCount=1,Rarity=3,MinLevel=0,SellPrice=6463,Texture=133345,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:9588::::::::40:::::::|h[Nogg's Gold Ring]|h|r"},["Bard's Tunic"]={SubType="Leather",Level=19,id=6552,StackCount=1,Rarity=2,MinLevel=14,SellPrice=601,Texture=135015,Type="Armor",Link="|cff1eff00|Hitem:6552::::::::40:::::::|h[Bard's Tunic]|h|r",EquipLoc="INVTYPE_CHEST"},["Jin'do's Evil Eye"]={SubType="Miscellaneous",Level=66,id=19885,StackCount=1,Rarity=4,MinLevel=60,SellPrice=44203,Texture=133387,Link="|cffa335ee|Hitem:19885::::::::40:::::::|h[Jin'do's Evil Eye]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Greenweave Vest"]={SubType="Cloth",Level=27,id=9774,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1374,Texture=132656,Link="|cff1eff00|Hitem:9774::::::::40:::::::|h[Greenweave Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Deadwood Sledge"]={SubType="One-Handed Maces",Level=37,id=13025,StackCount=1,Rarity=3,MinLevel=32,SellPrice=10464,Texture=133053,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:13025::::::::40:::::::|h[Deadwood Sledge]|h|r"},["Formula: Enchant Weapon - Crusader"]={SubType="Enchanting",Level=61,id=16252,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16252::::::::40:::::::|h[Formula: Enchant Weapon - Crusader]|h|r",Type="Recipe"},["Words of the High Chief"]={SubType="Quest",Level=1,id=13158,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133740,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13158::::::::40:::::::|h[Words of the High Chief]|h|r"},["Catseye Ultra Goggles"]={SubType="Cloth",Level=44,id=10501,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4398,Texture=133149,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10501::::::::40:::::::|h[Catseye Ultra Goggles]|h|r",Type="Armor"},["Molten Fists"]={SubType="Mail",Level=58,id=11814,StackCount=1,Rarity=3,MinLevel=53,SellPrice=13083,Texture=132938,Type="Armor",Link="|cff0070dd|Hitem:11814::::::::40:::::::|h[Molten Fists]|h|r",EquipLoc="INVTYPE_HAND"},["Silk Cloth"]={SubType="Trade Goods",Level=30,id=4306,StackCount=20,Rarity=1,MinLevel=0,SellPrice=150,Texture=132905,Type="Trade Goods",Link="|cffffffff|Hitem:4306::::::::40:::::::|h[Silk Cloth]|h|r",EquipLoc=""},["Worn Battleaxe"]={SubType="Two-Handed Axes",Level=2,id=12282,StackCount=1,Rarity=1,MinLevel=1,SellPrice=8,Texture=132400,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:12282::::::::40:::::::|h[Worn Battleaxe]|h|r"},["Stout War Staff"]={SubType="Staves",Level=51,id=13823,StackCount=1,Rarity=0,MinLevel=46,SellPrice=11924,Texture=135155,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13823::::::::40:::::::|h[Stout War Staff]|h|r"},["Bottomless Bag"]={SubType="Bag",Level=62,id=14156,StackCount=1,Rarity=3,MinLevel=0,SellPrice=40000,Texture=133646,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cff0070dd|Hitem:14156::::::::40:::::::|h[Bottomless Bag]|h|r"},["90 Epic Rogue Tunic"]={SubType="Leather",Level=90,id=20274,StackCount=1,Rarity=4,MinLevel=60,SellPrice=148767,Texture=132722,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:20274::::::::40:::::::|h[90 Epic Rogue Tunic]|h|r"},["Pattern: Frostsaber Boots"]={SubType="Leatherworking",Level=55,id=15740,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15740::::::::40:::::::|h[Pattern: Frostsaber Boots]|h|r",Type="Recipe"},["Warbringer's Legguards"]={SubType="Plate",Level=45,id=14945,StackCount=1,Rarity=2,MinLevel=40,SellPrice=6432,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14945::::::::40:::::::|h[Warbringer's Legguards]|h|r"},["Bloodwoven Bracers"]={SubType="Cloth",Level=44,id=14260,StackCount=1,Rarity=2,MinLevel=39,SellPrice=2900,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14260::::::::40:::::::|h[Bloodwoven Bracers]|h|r"},["Vibrant Plume"]={SubType="Junk",Level=1,id=5117,StackCount=10,Rarity=1,MinLevel=0,SellPrice=825,Texture=132925,EquipLoc="",Link="|cffffffff|Hitem:5117::::::::40:::::::|h[Vibrant Plume]|h|r",Type="Miscellaneous"},["Horn of the Swift Brown Wolf"]={SubType="Junk",Level=60,id=18796,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132224,Type="Miscellaneous",Link="|cffa335ee|Hitem:18796::::::::40:::::::|h[Horn of the Swift Brown Wolf]|h|r",EquipLoc=""},["Shaggy Leggings"]={SubType="Leather",Level=60,id=18477,StackCount=1,Rarity=2,MinLevel=55,SellPrice=19768,Texture=134594,Type="Armor",Link="|cff1eff00|Hitem:18477::::::::40:::::::|h[Shaggy Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Deprecated Mana Gem"]={SubType="Miscellaneous",Level=28,id=5222,StackCount=1,Rarity=1,MinLevel=23,SellPrice=0,Texture=134134,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:5222::::::::40:::::::|h[Deprecated Mana Gem]|h|r",Type="Armor"},["Rough Sharpening Stone"]={SubType="Trade Goods",Level=5,id=2862,StackCount=20,Rarity=1,MinLevel=1,SellPrice=3,Texture=135248,Type="Trade Goods",Link="|cffffffff|Hitem:2862::::::::40:::::::|h[Rough Sharpening Stone]|h|r",EquipLoc=""},["Heartseeker"]={SubType="Daggers",Level=63,id=12783,StackCount=1,Rarity=3,MinLevel=58,SellPrice=58215,Texture=135315,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:12783::::::::40:::::::|h[Heartseeker]|h|r"},["Compact Hammer"]={SubType="One-Handed Maces",Level=13,id=1009,StackCount=1,Rarity=2,MinLevel=0,SellPrice=490,Texture=133045,Link="|cff1eff00|Hitem:1009::::::::40:::::::|h[Compact Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Horde Gift Collection"]={SubType="Junk",Level=1,id=22263,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135449,Link="|cffffffff|Hitem:22263::::::::40:::::::|h[Horde Gift Collection]|h|r",EquipLoc="",Type="Miscellaneous"},["Stone War Axe"]={SubType="Two-Handed Axes",Level=27,id=1828,StackCount=1,Rarity=0,MinLevel=22,SellPrice=1609,Texture=132414,Type="Weapon",Link="|cff9d9d9d|Hitem:1828::::::::40:::::::|h[Stone War Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Rune of the Guard Captain"]={SubType="Miscellaneous",Level=51,id=19120,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16283,Texture=134420,Link="|cff1eff00|Hitem:19120::::::::40:::::::|h[Rune of the Guard Captain]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Willow Vest"]={SubType="Cloth",Level=19,id=6536,StackCount=1,Rarity=2,MinLevel=14,SellPrice=488,Texture=135024,Link="|cff1eff00|Hitem:6536::::::::40:::::::|h[Willow Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Pattern: Dusky Leather Leggings"]={SubType="Leatherworking",Level=33,id=7449,StackCount=1,Rarity=2,MinLevel=0,SellPrice=625,Texture=134942,Link="|cff1eff00|Hitem:7449::::::::40:::::::|h[Pattern: Dusky Leather Leggings]|h|r",EquipLoc="",Type="Recipe"},["Tattered Leather Hood"]={SubType="Leather",Level=56,id=18698,StackCount=1,Rarity=3,MinLevel=51,SellPrice=14454,Texture=133143,Type="Armor",Link="|cff0070dd|Hitem:18698::::::::40:::::::|h[Tattered Leather Hood]|h|r",EquipLoc="INVTYPE_HEAD"},["Test Arcane Res Waist Leather"]={SubType="Leather",Level=35,id=16155,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1725,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16155::::::::40:::::::|h[Test Arcane Res Waist Leather]|h|r",Type="Armor"},["Grimoire of Curse of Mannoroth II"]={SubType="Book",Level=20,id=5720,StackCount=1,Rarity=1,MinLevel=20,SellPrice=750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:5720::::::::40:::::::|h[Grimoire of Curse of Mannoroth II]|h|r",Type="Recipe"},["Crusader's Helm"]={SubType="Mail",Level=53,id=10198,StackCount=1,Rarity=2,MinLevel=48,SellPrice=12167,Texture=133127,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10198::::::::40:::::::|h[Crusader's Helm]|h|r",Type="Armor"},["Full Leaden Collection Phial"]={SubType="Quest",Level=1,id=9284,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132788,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9284::::::::40:::::::|h[Full Leaden Collection Phial]|h|r"},["Crusader Bow"]={SubType="Bows",Level=45,id=15287,StackCount=1,Rarity=2,MinLevel=40,SellPrice=12516,Texture=135490,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:15287::::::::40:::::::|h[Crusader Bow]|h|r",Type="Weapon"},["QAEnchant Boots +7 Agility"]={SubType="Consumable",Level=1,id=17894,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17894::::::::40:::::::|h[QAEnchant Boots +7 Agility]|h|r",Type="Consumable"},["Shimmering Cloak"]={SubType="Cloth",Level=21,id=6564,StackCount=1,Rarity=2,MinLevel=16,SellPrice=512,Texture=133767,Link="|cff1eff00|Hitem:6564::::::::40:::::::|h[Shimmering Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Slicer Blade"]={SubType="Daggers",Level=17,id=820,StackCount=1,Rarity=2,MinLevel=12,SellPrice=947,Texture=135637,Link="|cff1eff00|Hitem:820::::::::40:::::::|h[Slicer Blade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Crystal Unlocking Mechanism"]={SubType="Quest",Level=1,id=20465,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136098,Link="|cffffffff|Hitem:20465::::::::40:::::::|h[Crystal Unlocking Mechanism]|h|r",EquipLoc="",Type="Quest"},["Monster - Dagger, Bowie Knife"]={SubType="Daggers",Level=1,id=5278,StackCount=1,Rarity=0,MinLevel=1,SellPrice=6,Texture=135640,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:5278::::::::40:::::::|h[Monster - Dagger, Bowie Knife]|h|r",Type="Weapon"},["Reethe's Badge"]={SubType="Quest",Level=1,id=5950,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134951,EquipLoc="",Link="|cffffffff|Hitem:5950::::::::40:::::::|h[Reethe's Badge]|h|r",Type="Quest"},["Scroll of Agility III"]={SubType="Consumable",Level=50,id=4425,StackCount=5,Rarity=1,MinLevel=40,SellPrice=125,Texture=134938,Link="|cffffffff|Hitem:4425::::::::40:::::::|h[Scroll of Agility III]|h|r",EquipLoc="",Type="Consumable"},["Tauren Hoof"]={SubType="Quest",Level=60,id=18145,StackCount=100,Rarity=1,MinLevel=1,SellPrice=0,Texture=134060,Type="Quest",Link="|cffffffff|Hitem:18145::::::::40:::::::|h[Tauren Hoof]|h|r",EquipLoc=""},["Huge Ogre Sword"]={SubType="Two-Handed Swords",Level=29,id=913,StackCount=1,Rarity=2,MinLevel=24,SellPrice=5037,Texture=135311,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:913::::::::40:::::::|h[Huge Ogre Sword]|h|r",Type="Weapon"},["Libram: Fist of Justice III"]={SubType="Book",Level=40,id=8921,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133740,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8921::::::::40:::::::|h[Libram: Fist of Justice III]|h|r"},["Tome of Frost Nova II"]={SubType="Book",Level=26,id=1571,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:1571::::::::40:::::::|h[Tome of Frost Nova II]|h|r",EquipLoc=""},["Level 65 Test Gear Mail - Hunter 3"]={SubType="Junk",Level=1,id=17858,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17858::::::::40:::::::|h[Level 65 Test Gear Mail - Hunter 3]|h|r",Type="Miscellaneous"},["Ysida's Locket"]={SubType="Quest",Level=1,id=22139,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133308,Link="|cffffffff|Hitem:22139::::::::40:::::::|h[Ysida's Locket]|h|r",EquipLoc="",Type="Quest"},["Rat Cloth Cloak"]={SubType="Cloth",Level=15,id=2284,StackCount=1,Rarity=2,MinLevel=10,SellPrice=211,Texture=133762,Link="|cff1eff00|Hitem:2284::::::::40:::::::|h[Rat Cloth Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Letter to the City Architect"]={SubType="Quest",Level=1,id=2891,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,EquipLoc="",Link="|cffffffff|Hitem:2891::::::::40:::::::|h[Letter to the City Architect]|h|r",Type="Quest"},["Spire of Twilight"]={SubType="Staves",Level=83,id=22801,StackCount=1,Rarity=4,MinLevel=60,SellPrice=246440,Texture=135168,Link="|cffa335ee|Hitem:22801::::::::40:::::::|h[Spire of Twilight]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Monster - Item, Broom"]={SubType="Miscellaneous",Level=1,id=3362,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133942,Type="Weapon",Link="|cff9d9d9d|Hitem:3362::::::::40:::::::|h[Monster - Item, Broom]|h|r",EquipLoc="INVTYPE_WEAPON"},["Shadowy Potion"]={SubType="Quest",Level=1,id=18802,StackCount=5,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134807,Type="Quest",Link="|cffffffff|Hitem:18802::::::::40:::::::|h[Shadowy Potion]|h|r",EquipLoc=""},["Hameya's Cloak"]={SubType="Cloth",Level=60,id=15815,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11860,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15815::::::::40:::::::|h[Hameya's Cloak]|h|r",Type="Armor"},["Interlaced Gloves"]={SubType="Cloth",Level=33,id=3796,StackCount=1,Rarity=0,MinLevel=28,SellPrice=493,Texture=132957,Type="Armor",Link="|cff9d9d9d|Hitem:3796::::::::40:::::::|h[Interlaced Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Reiver Claws"]={SubType="Plate",Level=61,id=13162,StackCount=1,Rarity=3,MinLevel=56,SellPrice=10558,Texture=132963,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13162::::::::40:::::::|h[Reiver Claws]|h|r"},["Resplendent Orb"]={SubType="Miscellaneous",Level=63,id=15988,StackCount=1,Rarity=2,MinLevel=58,SellPrice=12471,Texture=134335,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15988::::::::40:::::::|h[Resplendent Orb]|h|r",Type="Armor"},["Hammer of the Northern Wind"]={SubType="One-Handed Maces",Level=54,id=810,StackCount=1,Rarity=4,MinLevel=49,SellPrice=45267,Texture=133048,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffa335ee|Hitem:810::::::::40:::::::|h[Hammer of the Northern Wind]|h|r"},["Reinforced Steel Lockbox"]={SubType="Junk",Level=45,id=4638,StackCount=1,Rarity=2,MinLevel=0,SellPrice=200,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cff1eff00|Hitem:4638::::::::40:::::::|h[Reinforced Steel Lockbox]|h|r"},["Trailblazer Boots"]={SubType="Leather",Level=30,id=10653,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1639,Texture=132537,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10653::::::::40:::::::|h[Trailblazer Boots]|h|r",Type="Armor"},["Mountain Giant Muisek Vessel"]={SubType="Quest",Level=1,id=9621,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133841,Link="|cffffffff|Hitem:9621::::::::40:::::::|h[Mountain Giant Muisek Vessel]|h|r",EquipLoc="",Type="Quest"},["Ring of Uber Resists (TEST)"]={SubType="Miscellaneous",Level=1,id=5828,StackCount=1,Rarity=6,MinLevel=1,SellPrice=837,Texture=133344,Link="|cffe6cc80|Hitem:5828::::::::40:::::::|h[Ring of Uber Resists (TEST)]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Plans: Titanic Leggings"]={SubType="Blacksmithing",Level=61,id=22388,StackCount=1,Rarity=4,MinLevel=0,SellPrice=15000,Texture=134941,Link="|cffa335ee|Hitem:22388::::::::40:::::::|h[Plans: Titanic Leggings]|h|r",EquipLoc="",Type="Recipe"},["Arena Wristguards"]={SubType="Cloth",Level=50,id=18709,StackCount=1,Rarity=3,MinLevel=45,SellPrice=5758,Texture=132609,Type="Armor",Link="|cff0070dd|Hitem:18709::::::::40:::::::|h[Arena Wristguards]|h|r",EquipLoc="INVTYPE_WRIST"},["Monster - Shield, Skullflame"]={SubType="Shields",Level=1,id=23356,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Link="|cff9d9d9d|Hitem:23356::::::::40:::::::|h[Monster - Shield, Skullflame]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Potent Bands"]={SubType="Leather",Level=47,id=15172,StackCount=1,Rarity=2,MinLevel=42,SellPrice=4706,Texture=132613,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15172::::::::40:::::::|h[Potent Bands]|h|r",Type="Armor"},["Overlinked Coif"]={SubType="Mail",Level=44,id=8751,StackCount=1,Rarity=0,MinLevel=39,SellPrice=2618,Texture=133141,Link="|cff9d9d9d|Hitem:8751::::::::40:::::::|h[Overlinked Coif]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Rot Blossom"]={SubType="Quest",Level=1,id=1598,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134187,Link="|cffffffff|Hitem:1598::::::::40:::::::|h[Rot Blossom]|h|r",EquipLoc="",Type="Quest"},["zzOLD - QAEnchant Weapon Winter's Might"]={SubType="Consumable",Level=1,id=17886,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17886::::::::40:::::::|h[zzOLD - QAEnchant Weapon Winter's Might]|h|r",Type="Consumable"},["Standard Claymore"]={SubType="Two-Handed Swords",Level=24,id=1818,StackCount=1,Rarity=0,MinLevel=19,SellPrice=1221,Texture=135276,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1818::::::::40:::::::|h[Standard Claymore]|h|r"},["Trickster's Vest"]={SubType="Leather",Level=41,id=15359,StackCount=1,Rarity=2,MinLevel=36,SellPrice=5955,Texture=132649,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15359::::::::40:::::::|h[Trickster's Vest]|h|r",Type="Armor"},["Monster - Axe, Horde C02 Black"]={SubType="One-Handed Axes",Level=1,id=14874,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14874::::::::40:::::::|h[Monster - Axe, Horde C02 Black]|h|r"},["Enduring Bracers"]={SubType="Mail",Level=34,id=14759,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2009,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14759::::::::40:::::::|h[Enduring Bracers]|h|r"},["Masterwork Bracers"]={SubType="Mail",Level=62,id=10265,StackCount=1,Rarity=2,MinLevel=57,SellPrice=13904,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10265::::::::40:::::::|h[Masterwork Bracers]|h|r",Type="Armor"},["Sayge's Fortune #21"]={SubType="Junk",Level=1,id=19254,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19254::::::::40:::::::|h[Sayge's Fortune #21]|h|r",EquipLoc="",Type="Miscellaneous"},["Smoky Iron Ingot"]={SubType="Quest",Level=1,id=7126,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134579,EquipLoc="",Link="|cffffffff|Hitem:7126::::::::40:::::::|h[Smoky Iron Ingot]|h|r",Type="Quest"},["Stringy Wolf Meat"]={SubType="Trade Goods",Level=5,id=2672,StackCount=10,Rarity=1,MinLevel=0,SellPrice=4,Texture=133970,Type="Trade Goods",Link="|cffffffff|Hitem:2672::::::::40:::::::|h[Stringy Wolf Meat]|h|r",EquipLoc=""},["Fiery Plate Gauntlets"]={SubType="Plate",Level=58,id=12631,StackCount=1,Rarity=3,MinLevel=53,SellPrice=8919,Texture=132937,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:12631::::::::40:::::::|h[Fiery Plate Gauntlets]|h|r"},["Wispy Cloak"]={SubType="Cloth",Level=6,id=3322,StackCount=1,Rarity=1,MinLevel=1,SellPrice=11,Texture=133763,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:3322::::::::40:::::::|h[Wispy Cloak]|h|r",Type="Armor"},["Thick Kodo Hair"]={SubType="Junk",Level=1,id=5122,StackCount=10,Rarity=0,MinLevel=0,SellPrice=287,Texture=132889,EquipLoc="",Link="|cff9d9d9d|Hitem:5122::::::::40:::::::|h[Thick Kodo Hair]|h|r",Type="Miscellaneous"},["Orgrimmar Pledge Collection"]={SubType="Consumable",Level=1,id=22294,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133461,Link="|cffffffff|Hitem:22294::::::::40:::::::|h[Orgrimmar Pledge Collection]|h|r",EquipLoc="",Type="Consumable"},["Vial of Phlogiston"]={SubType="Consumable",Level=1,id=6841,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134712,Link="|cffffffff|Hitem:6841::::::::40:::::::|h[Vial of Phlogiston]|h|r",EquipLoc="",Type="Consumable"},["Flawless Fel Essence (Azshara)"]={SubType="Quest",Level=1,id=18624,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135228,Type="Quest",Link="|cffffffff|Hitem:18624::::::::40:::::::|h[Flawless Fel Essence (Azshara)]|h|r",EquipLoc=""},["Blessed Claymore"]={SubType="Two-Handed Swords",Level=22,id=4817,StackCount=1,Rarity=2,MinLevel=17,SellPrice=2462,Texture=135311,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:4817::::::::40:::::::|h[Blessed Claymore]|h|r"},["Deprecated Wolf Summoning (Mount)"]={SubType="Junk",Level=1,id=842,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134938,Type="Miscellaneous",Link="|cffffffff|Hitem:842::::::::40:::::::|h[Deprecated Wolf Summoning (Mount)]|h|r",EquipLoc=""},["Pattern: Enchanted Runecloth Bag"]={SubType="Tailoring",Level=55,id=22308,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:22308::::::::40:::::::|h[Pattern: Enchanted Runecloth Bag]|h|r"},["Nightscape Tunic"]={SubType="Leather",Level=41,id=8175,StackCount=1,Rarity=2,MinLevel=36,SellPrice=5971,Texture=132718,Link="|cff1eff00|Hitem:8175::::::::40:::::::|h[Nightscape Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Stormrage Handguards"]={SubType="Leather",Level=76,id=16899,StackCount=1,Rarity=4,MinLevel=60,SellPrice=35940,Texture=132959,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16899::::::::40:::::::|h[Stormrage Handguards]|h|r",Type="Armor"},["Ternary Mantle"]={SubType="Cloth",Level=75,id=21694,StackCount=1,Rarity=4,MinLevel=60,SellPrice=40482,Texture=135036,Link="|cffa335ee|Hitem:21694::::::::40:::::::|h[Ternary Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Pattern: Mooncloth"]={SubType="Tailoring",Level=55,id=14526,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:14526::::::::40:::::::|h[Pattern: Mooncloth]|h|r"},["Shiny Dinglehopper"]={SubType="Junk",Level=1,id=5435,StackCount=5,Rarity=0,MinLevel=0,SellPrice=272,Texture=134436,EquipLoc="",Link="|cff9d9d9d|Hitem:5435::::::::40:::::::|h[Shiny Dinglehopper]|h|r",Type="Miscellaneous"},["Shadowhide Maul"]={SubType="Two-Handed Maces",Level=23,id=1458,StackCount=1,Rarity=2,MinLevel=18,SellPrice=2623,Texture=133053,Link="|cff1eff00|Hitem:1458::::::::40:::::::|h[Shadowhide Maul]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Sword of Hammerfall"]={SubType="One-Handed Swords",Level=41,id=4977,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11893,Texture=135350,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:4977::::::::40:::::::|h[Sword of Hammerfall]|h|r",Type="Weapon"},["Scalemail Gloves"]={SubType="Mail",Level=22,id=718,StackCount=1,Rarity=1,MinLevel=17,SellPrice=322,Texture=132938,Link="|cffffffff|Hitem:718::::::::40:::::::|h[Scalemail Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Tome of Conjure Mana Gem IV"]={SubType="Book",Level=58,id=8889,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=133739,Link="|cffffffff|Hitem:8889::::::::40:::::::|h[Tome of Conjure Mana Gem IV]|h|r",EquipLoc="",Type="Recipe"},["Portable Bronze Mortar"]={SubType="Devices",Level=33,id=4403,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2000,Texture=134535,EquipLoc="",Link="|cffffffff|Hitem:4403::::::::40:::::::|h[Portable Bronze Mortar]|h|r",Type="Trade Goods"},["Old Wagonwheel"]={SubType="Junk",Level=1,id=6455,StackCount=5,Rarity=0,MinLevel=0,SellPrice=4,Texture=134955,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:6455::::::::40:::::::|h[Old Wagonwheel]|h|r",EquipLoc=""},["Loose Chain Cloak"]={SubType="Cloth",Level=6,id=2644,StackCount=1,Rarity=0,MinLevel=1,SellPrice=11,Texture=133768,Link="|cff9d9d9d|Hitem:2644::::::::40:::::::|h[Loose Chain Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Monster - Axe, 2H War A03 White"]={SubType="Two-Handed Axes",Level=1,id=14475,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14475::::::::40:::::::|h[Monster - Axe, 2H War A03 White]|h|r"},["Spined Bat Wing"]={SubType="Junk",Level=1,id=11391,StackCount=10,Rarity=0,MinLevel=0,SellPrice=205,Texture=134257,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11391::::::::40:::::::|h[Spined Bat Wing]|h|r",EquipLoc=""},["Shadow Wing Focus Staff"]={SubType="Staves",Level=75,id=19355,StackCount=1,Rarity=4,MinLevel=60,SellPrice=164835,Texture=135150,Link="|cffa335ee|Hitem:19355::::::::40:::::::|h[Shadow Wing Focus Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Test Nature Res Waist Mail"]={SubType="Mail",Level=35,id=16131,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2070,Texture=133693,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16131::::::::40:::::::|h[Test Nature Res Waist Mail]|h|r",Type="Armor"},["Swampland Trousers"]={SubType="Cloth",Level=31,id=4505,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1974,Texture=134590,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:4505::::::::40:::::::|h[Swampland Trousers]|h|r",Type="Armor"},["Stolen Treats"]={SubType="Quest",Level=1,id=17662,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132763,EquipLoc="",Link="|cffffffff|Hitem:17662::::::::40:::::::|h[Stolen Treats]|h|r",Type="Quest"},["Band of Elven Grace"]={SubType="Miscellaneous",Level=28,id=6678,StackCount=1,Rarity=2,MinLevel=0,SellPrice=677,Texture=132521,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:6678::::::::40:::::::|h[Band of Elven Grace]|h|r"},["Cloudkeeper Legplates"]={SubType="Plate",Level=62,id=14554,StackCount=1,Rarity=4,MinLevel=57,SellPrice=29900,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:14554::::::::40:::::::|h[Cloudkeeper Legplates]|h|r"},["Wanderer's Bracers"]={SubType="Leather",Level=54,id=10107,StackCount=1,Rarity=2,MinLevel=49,SellPrice=7218,Texture=132604,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10107::::::::40:::::::|h[Wanderer's Bracers]|h|r",Type="Armor"},["Cross-stitched Belt"]={SubType="Cloth",Level=30,id=3380,StackCount=1,Rarity=0,MinLevel=25,SellPrice=365,Texture=132515,Type="Armor",Link="|cff9d9d9d|Hitem:3380::::::::40:::::::|h[Cross-stitched Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Fine Crab Chunks"]={SubType="Quest",Level=1,id=12237,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134007,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12237::::::::40:::::::|h[Fine Crab Chunks]|h|r"},["Bastard Sword"]={SubType="Two-Handed Swords",Level=4,id=1194,StackCount=1,Rarity=1,MinLevel=1,SellPrice=20,Texture=135276,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:1194::::::::40:::::::|h[Bastard Sword]|h|r",Type="Weapon"},["Hero's Brand"]={SubType="Miscellaneous",Level=65,id=19588,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=133313,Link="|cffa335ee|Hitem:19588::::::::40:::::::|h[Hero's Brand]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Mooncloth Circlet"]={SubType="Cloth",Level=62,id=14140,StackCount=1,Rarity=3,MinLevel=57,SellPrice=16693,Texture=133693,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:14140::::::::40:::::::|h[Mooncloth Circlet]|h|r"},["Judgement Sabatons"]={SubType="Plate",Level=76,id=16957,StackCount=1,Rarity=4,MinLevel=60,SellPrice=43944,Texture=132590,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16957::::::::40:::::::|h[Judgement Sabatons]|h|r",Type="Armor"},["Templar Bracers"]={SubType="Plate",Level=54,id=10171,StackCount=1,Rarity=2,MinLevel=49,SellPrice=6018,Texture=132613,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10171::::::::40:::::::|h[Templar Bracers]|h|r",Type="Armor"},["Primal Hakkari Aegis"]={SubType="Quest",Level=1,id=19724,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=132634,Link="|cffa335ee|Hitem:19724::::::::40:::::::|h[Primal Hakkari Aegis]|h|r",EquipLoc="",Type="Quest"},["Marshal's Dreadweave Boots"]={SubType="Cloth",Level=71,id=17583,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17270,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:17583::::::::40:::::::|h[Marshal's Dreadweave Boots]|h|r",Type="Armor"},["Kravel's Parts Order"]={SubType="Quest",Level=1,id=5799,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134329,EquipLoc="",Link="|cffffffff|Hitem:5799::::::::40:::::::|h[Kravel's Parts Order]|h|r",Type="Quest"},["Simple Shoes"]={SubType="Cloth",Level=12,id=9743,StackCount=1,Rarity=1,MinLevel=7,SellPrice=67,Texture=132543,Link="|cffffffff|Hitem:9743::::::::40:::::::|h[Simple Shoes]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Earth Totem"]={SubType="Reagent",Level=4,id=5175,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136232,Link="|cffffffff|Hitem:5175::::::::40:::::::|h[Earth Totem]|h|r",EquipLoc="",Type="Reagent"},["Grimoire of Create Spellstone"]={SubType="Book",Level=34,id=5721,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:5721::::::::40:::::::|h[Grimoire of Create Spellstone]|h|r",Type="Recipe"},["Black Blood of the Tormented"]={SubType="Quest",Level=0,id=11752,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134849,Type="Quest",Link="|cffffffff|Hitem:11752::::::::40:::::::|h[Black Blood of the Tormented]|h|r",EquipLoc=""},["Recipe: Elixir of Giants"]={SubType="Alchemy",Level=49,id=9298,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2250,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:9298::::::::40:::::::|h[Recipe: Elixir of Giants]|h|r"},["Monster - Mace, Basic Wooden Hammer"]={SubType="One-Handed Maces",Level=1,id=1902,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133040,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:1902::::::::40:::::::|h[Monster - Mace, Basic Wooden Hammer]|h|r",Type="Weapon"},["Sabertooth Fang"]={SubType="Junk",Level=1,id=4580,StackCount=10,Rarity=0,MinLevel=0,SellPrice=787,Texture=134298,Link="|cff9d9d9d|Hitem:4580::::::::40:::::::|h[Sabertooth Fang]|h|r",EquipLoc="",Type="Miscellaneous"},["Pillager's Leggings"]={SubType="Mail",Level=36,id=15561,StackCount=1,Rarity=2,MinLevel=31,SellPrice=4705,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15561::::::::40:::::::|h[Pillager's Leggings]|h|r",Type="Armor"},["Empty Firewater Flask"]={SubType="Quest",Level=52,id=12771,StackCount=1,Rarity=1,MinLevel=52,SellPrice=0,Texture=134865,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12771::::::::40:::::::|h[Empty Firewater Flask]|h|r"},["Libram: Turn Undead"]={SubType="Book",Level=24,id=5677,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133740,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5677::::::::40:::::::|h[Libram: Turn Undead]|h|r"},["Test Frost Resist Leather LockBox"]={SubType="Junk",Level=1,id=16174,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16174::::::::40:::::::|h[Test Frost Resist Leather LockBox]|h|r",Type="Miscellaneous"},["Jewel-encrusted Sash"]={SubType="Cloth",Level=21,id=4436,StackCount=1,Rarity=2,MinLevel=16,SellPrice=331,Texture=132493,Link="|cff1eff00|Hitem:4436::::::::40:::::::|h[Jewel-encrusted Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Tablet of Searing Totem V"]={SubType="Book",Level=50,id=9146,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9146::::::::40:::::::|h[Tablet of Searing Totem V]|h|r"},["Renegade Circlet"]={SubType="Mail",Level=36,id=9870,StackCount=1,Rarity=2,MinLevel=31,SellPrice=3686,Texture=132768,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9870::::::::40:::::::|h[Renegade Circlet]|h|r"},["Legionnaire's Satin Trousers"]={SubType="Cloth",Level=63,id=17611,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11179,Texture=134591,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:17611::::::::40:::::::|h[Legionnaire's Satin Trousers]|h|r",Type="Armor"},["Valdred's Hands"]={SubType="Quest",Level=1,id=3613,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132943,EquipLoc="",Link="|cffffffff|Hitem:3613::::::::40:::::::|h[Valdred's Hands]|h|r",Type="Quest"},["Soldier's Leggings"]={SubType="Mail",Level=17,id=6546,StackCount=1,Rarity=2,MinLevel=12,SellPrice=533,Texture=134590,Type="Armor",Link="|cff1eff00|Hitem:6546::::::::40:::::::|h[Soldier's Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Energetic Rod"]={SubType="One-Handed Maces",Level=59,id=18321,StackCount=1,Rarity=3,MinLevel=54,SellPrice=49320,Texture=133488,Type="Weapon",Link="|cff0070dd|Hitem:18321::::::::40:::::::|h[Energetic Rod]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Shieldplate Sabatons"]={SubType="Plate",Level=54,id=12021,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9327,Texture=132582,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:12021::::::::40:::::::|h[Shieldplate Sabatons]|h|r"},["Storm Crystal"]={SubType="Quest",Level=1,id=17423,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=134125,EquipLoc="",Link="|cffffffff|Hitem:17423::::::::40:::::::|h[Storm Crystal]|h|r",Type="Quest"},["Excavator's Brand"]={SubType="One-Handed Maces",Level=36,id=9386,StackCount=1,Rarity=3,MinLevel=31,SellPrice=9859,Texture=135432,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9386::::::::40:::::::|h[Excavator's Brand]|h|r"},["Bloodfang Bracers"]={SubType="Leather",Level=76,id=16911,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34872,Texture=132601,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16911::::::::40:::::::|h[Bloodfang Bracers]|h|r",Type="Armor"},["Grimoire of Spell Lock (Rank 2)"]={SubType="Book",Level=52,id=16389,StackCount=1,Rarity=1,MinLevel=52,SellPrice=4500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16389::::::::40:::::::|h[Grimoire of Spell Lock (Rank 2)]|h|r",Type="Recipe"},["Footman Tunic"]={SubType="Leather",Level=13,id=6085,StackCount=1,Rarity=2,MinLevel=0,SellPrice=243,Texture=132724,Type="Armor",Link="|cff1eff00|Hitem:6085::::::::40:::::::|h[Footman Tunic]|h|r",EquipLoc="INVTYPE_CHEST"},["Codex of Shackle Undead II"]={SubType="Book",Level=40,id=8986,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8986::::::::40:::::::|h[Codex of Shackle Undead II]|h|r"},["Tallonkai's Jewel"]={SubType="Quest",Level=1,id=8050,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134104,Link="|cffffffff|Hitem:8050::::::::40:::::::|h[Tallonkai's Jewel]|h|r",EquipLoc="",Type="Quest"},["Runed Copper Pants"]={SubType="Mail",Level=13,id=3473,StackCount=1,Rarity=2,MinLevel=8,SellPrice=299,Texture=134583,Link="|cff1eff00|Hitem:3473::::::::40:::::::|h[Runed Copper Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Talisman of Evasion"]={SubType="Miscellaneous",Level=60,id=13177,StackCount=1,Rarity=3,MinLevel=55,SellPrice=16396,Texture=133279,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:13177::::::::40:::::::|h[Talisman of Evasion]|h|r"},["Resonite Crystal"]={SubType="Quest",Level=1,id=16581,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134076,EquipLoc="",Link="|cffffffff|Hitem:16581::::::::40:::::::|h[Resonite Crystal]|h|r",Type="Quest"},["Hand of Righteousness"]={SubType="One-Handed Maces",Level=44,id=7721,StackCount=1,Rarity=3,MinLevel=39,SellPrice=17922,Texture=133039,Link="|cff0070dd|Hitem:7721::::::::40:::::::|h[Hand of Righteousness]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Letter of Commendation"]={SubType="Quest",Level=1,id=5539,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133460,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5539::::::::40:::::::|h[Letter of Commendation]|h|r"},["Bracers of the People's Militia"]={SubType="Cloth",Level=14,id=710,StackCount=1,Rarity=1,MinLevel=0,SellPrice=72,Texture=132610,Type="Armor",Link="|cffffffff|Hitem:710::::::::40:::::::|h[Bracers of the People's Militia]|h|r",EquipLoc="INVTYPE_WRIST"},["Twain Random Sword FOO"]={SubType="Miscellaneous",Level=20,id=7170,StackCount=1,Rarity=0,MinLevel=15,SellPrice=692,Texture=135273,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:7170::::::::40:::::::|h[Twain Random Sword FOO]|h|r",Type="Weapon"},["Imperial Cloak"]={SubType="Cloth",Level=41,id=6432,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3741,Texture=133770,Link="|cff1eff00|Hitem:6432::::::::40:::::::|h[Imperial Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Recipe: Major Troll's Blood Potion"]={SubType="Alchemy",Level=58,id=20014,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:20014::::::::40:::::::|h[Recipe: Major Troll's Blood Potion]|h|r",EquipLoc="",Type="Recipe"},["Disciple's Bracers"]={SubType="Cloth",Level=10,id=7350,StackCount=1,Rarity=1,MinLevel=5,SellPrice=29,Texture=132611,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:7350::::::::40:::::::|h[Disciple's Bracers]|h|r",Type="Armor"},["Coif of The Five Thunders"]={SubType="Mail",Level=60,id=22097,StackCount=1,Rarity=4,MinLevel=0,SellPrice=30427,Texture=133072,Link="|cffa335ee|Hitem:22097::::::::40:::::::|h[Coif of The Five Thunders]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Recipe: Shadow Protection Potion"]={SubType="Alchemy",Level=27,id=6054,StackCount=1,Rarity=1,MinLevel=0,SellPrice=225,Texture=134939,Link="|cffffffff|Hitem:6054::::::::40:::::::|h[Recipe: Shadow Protection Potion]|h|r",EquipLoc="",Type="Recipe"},["Flax Gloves"]={SubType="Cloth",Level=5,id=3275,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:3275::::::::40:::::::|h[Flax Gloves]|h|r"},["Test Potion LockBox (Paladin)"]={SubType="Junk",Level=1,id=16076,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16076::::::::40:::::::|h[Test Potion LockBox (Paladin)]|h|r",Type="Miscellaneous"},["Tellurium Necklace"]={SubType="Miscellaneous",Level=45,id=12023,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4971,Texture=133290,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12023::::::::40:::::::|h[Tellurium Necklace]|h|r"},["Hunting Gloves"]={SubType="Leather",Level=15,id=2976,StackCount=1,Rarity=2,MinLevel=10,SellPrice=171,Texture=132939,Type="Armor",Link="|cff1eff00|Hitem:2976::::::::40:::::::|h[Hunting Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Shadowsong's Sorrow"]={SubType="Daggers",Level=76,id=21522,StackCount=1,Rarity=4,MinLevel=60,SellPrice=142269,Texture=135661,Link="|cffa335ee|Hitem:21522::::::::40:::::::|h[Shadowsong's Sorrow]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Serpent's Kiss"]={SubType="One-Handed Axes",Level=20,id=5426,StackCount=1,Rarity=3,MinLevel=15,SellPrice=1686,Texture=132417,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:5426::::::::40:::::::|h[Serpent's Kiss]|h|r"},["Satchel of Cenarius"]={SubType="Herb Bag",Level=65,id=22252,StackCount=1,Rarity=2,MinLevel=0,SellPrice=30000,Texture=133669,Link="|cff1eff00|Hitem:22252::::::::40:::::::|h[Satchel of Cenarius]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Fel Hardened Bracers"]={SubType="Plate",Level=62,id=18754,StackCount=1,Rarity=3,MinLevel=57,SellPrice=10461,Texture=132614,Type="Armor",Link="|cff0070dd|Hitem:18754::::::::40:::::::|h[Fel Hardened Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Ghostly Bracers"]={SubType="Cloth",Level=8,id=3323,StackCount=1,Rarity=1,MinLevel=3,SellPrice=15,Texture=132606,Type="Armor",Link="|cffffffff|Hitem:3323::::::::40:::::::|h[Ghostly Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Light Mail Bracers"]={SubType="Mail",Level=10,id=2396,StackCount=1,Rarity=1,MinLevel=5,SellPrice=43,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:2396::::::::40:::::::|h[Light Mail Bracers]|h|r",Type="Armor"},["Reinforced Targe"]={SubType="Shields",Level=27,id=2442,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1312,Texture=134956,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:2442::::::::40:::::::|h[Reinforced Targe]|h|r"},["Mithril Ore"]={SubType="Trade Goods",Level=40,id=3858,StackCount=10,Rarity=1,MinLevel=0,SellPrice=250,Texture=134576,Link="|cffffffff|Hitem:3858::::::::40:::::::|h[Mithril Ore]|h|r",EquipLoc="",Type="Trade Goods"},["Battered Leather Gloves"]={SubType="Leather",Level=10,id=2375,StackCount=1,Rarity=1,MinLevel=5,SellPrice=34,Texture=132952,Link="|cffffffff|Hitem:2375::::::::40:::::::|h[Battered Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Deprecated Light Winter Cloak"]={SubType="Cloth",Level=6,id=2305,StackCount=1,Rarity=0,MinLevel=1,SellPrice=9,Texture=133150,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:2305::::::::40:::::::|h[Deprecated Light Winter Cloak]|h|r"},["Greater Arcane Elixir"]={SubType="Consumable",Level=57,id=13454,StackCount=5,Rarity=1,MinLevel=47,SellPrice=750,Texture=134805,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13454::::::::40:::::::|h[Greater Arcane Elixir]|h|r"},["Test Frost Resist Plate LockBox"]={SubType="Junk",Level=1,id=16176,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16176::::::::40:::::::|h[Test Frost Resist Plate LockBox]|h|r",Type="Miscellaneous"},["Ritual Cape"]={SubType="Cloth",Level=17,id=14123,StackCount=1,Rarity=2,MinLevel=12,SellPrice=287,Texture=133766,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14123::::::::40:::::::|h[Ritual Cape]|h|r"},["Cracked Leather Gloves"]={SubType="Leather",Level=5,id=2125,StackCount=1,Rarity=1,MinLevel=1,SellPrice=6,Texture=132952,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2125::::::::40:::::::|h[Cracked Leather Gloves]|h|r"},["Crystal Sword"]={SubType="One-Handed Swords",Level=57,id=15218,StackCount=1,Rarity=2,MinLevel=52,SellPrice=37047,Texture=135349,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15218::::::::40:::::::|h[Crystal Sword]|h|r",Type="Weapon"},["Keeper's Woolies"]={SubType="Leather",Level=52,id=14668,StackCount=1,Rarity=2,MinLevel=47,SellPrice=13596,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14668::::::::40:::::::|h[Keeper's Woolies]|h|r"},["Ceremonial Leather Gloves"]={SubType="Leather",Level=15,id=3314,StackCount=1,Rarity=2,MinLevel=10,SellPrice=171,Texture=132952,Type="Armor",Link="|cff1eff00|Hitem:3314::::::::40:::::::|h[Ceremonial Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Deprecated Winter Mail Leggings"]={SubType="Mail",Level=28,id=3050,StackCount=1,Rarity=0,MinLevel=23,SellPrice=846,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:3050::::::::40:::::::|h[Deprecated Winter Mail Leggings]|h|r",Type="Armor"},["Traveler's Leggings"]={SubType="Leather",Level=60,id=8300,StackCount=1,Rarity=2,MinLevel=55,SellPrice=20172,Texture=134586,Link="|cff1eff00|Hitem:8300::::::::40:::::::|h[Traveler's Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Bloodpike"]={SubType="Polearms",Level=28,id=13057,StackCount=1,Rarity=3,MinLevel=23,SellPrice=5382,Texture=135125,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13057::::::::40:::::::|h[Bloodpike]|h|r"},["Thick Yeti Fur"]={SubType="Quest",Level=1,id=12366,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134347,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12366::::::::40:::::::|h[Thick Yeti Fur]|h|r"},["Monster - Sword2H, Red White Broad"]={SubType="Two-Handed Swords",Level=1,id=12949,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135280,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12949::::::::40:::::::|h[Monster - Sword2H, Red White Broad]|h|r"},["Acceptable Basilisk Sample"]={SubType="Quest",Level=0,id=9440,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134305,Link="|cffffffff|Hitem:9440::::::::40:::::::|h[Acceptable Basilisk Sample]|h|r",EquipLoc="",Type="Quest"},["Deprecated Worn Bronze Lockpick"]={SubType="Lockpick",Level=20,id=2792,StackCount=10,Rarity=1,MinLevel=1,SellPrice=50,Texture=134065,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:2792::::::::40:::::::|h[Deprecated Worn Bronze Lockpick]|h|r"},["Crocolisk Steak"]={SubType="Consumable",Level=15,id=3662,StackCount=20,Rarity=1,MinLevel=5,SellPrice=25,Texture=134003,EquipLoc="",Link="|cffffffff|Hitem:3662::::::::40:::::::|h[Crocolisk Steak]|h|r",Type="Consumable"},["Pristine Enchanted South Seas Kelp"]={SubType="Miscellaneous",Level=65,id=19613,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=133313,Link="|cffa335ee|Hitem:19613::::::::40:::::::|h[Pristine Enchanted South Seas Kelp]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Stormwind Deputy Kit"]={SubType="Junk",Level=1,id=11442,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132597,Type="Miscellaneous",Link="|cffffffff|Hitem:11442::::::::40:::::::|h[Stormwind Deputy Kit]|h|r",EquipLoc=""},["Ironwood Seed"]={SubType="Reagent",Level=60,id=17038,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=133944,EquipLoc="",Link="|cffffffff|Hitem:17038::::::::40:::::::|h[Ironwood Seed]|h|r",Type="Reagent"},["Green Woolen Robe"]={SubType="Cloth",Level=18,id=6243,StackCount=1,Rarity=2,MinLevel=13,SellPrice=445,Texture=132663,Type="Armor",Link="|cff1eff00|Hitem:6243::::::::40:::::::|h[Green Woolen Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Eridan's Vial"]={SubType="Quest",Level=1,id=11682,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134870,Type="Quest",Link="|cffffffff|Hitem:11682::::::::40:::::::|h[Eridan's Vial]|h|r",EquipLoc=""},["Royal Headband"]={SubType="Cloth",Level=45,id=9915,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5091,Texture=133693,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9915::::::::40:::::::|h[Royal Headband]|h|r"},["Mystical Armor"]={SubType="Cloth",Level=58,id=10181,StackCount=1,Rarity=2,MinLevel=53,SellPrice=14640,Texture=135021,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10181::::::::40:::::::|h[Mystical Armor]|h|r",Type="Armor"},["Heavy Woolen Cloak"]={SubType="Cloth",Level=21,id=4311,StackCount=1,Rarity=2,MinLevel=16,SellPrice=475,Texture=133766,Link="|cff1eff00|Hitem:4311::::::::40:::::::|h[Heavy Woolen Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Deprecated Pattern: Light Winter Cloak"]={SubType="Leatherworking",Level=6,id=2404,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:2404::::::::40:::::::|h[Deprecated Pattern: Light Winter Cloak]|h|r",EquipLoc=""},["Wicked Leather Headband"]={SubType="Leather",Level=56,id=15086,StackCount=1,Rarity=2,MinLevel=51,SellPrice=13154,Texture=133683,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15086::::::::40:::::::|h[Wicked Leather Headband]|h|r",Type="Armor"},["Tainted Parchment"]={SubType="Quest",Level=1,id=9579,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9579::::::::40:::::::|h[Tainted Parchment]|h|r"},["Plans: Hardened Iron Shortsword"]={SubType="Blacksmithing",Level=32,id=12162,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12162::::::::40:::::::|h[Plans: Hardened Iron Shortsword]|h|r"},["Perdition's Blade"]={SubType="Daggers",Level=77,id=18816,StackCount=1,Rarity=4,MinLevel=60,SellPrice=148714,Texture=135358,Type="Weapon",Link="|cffa335ee|Hitem:18816::::::::40:::::::|h[Perdition's Blade]|h|r",EquipLoc="INVTYPE_WEAPON"},["Blood Guard's Leather Treads"]={SubType="Leather",Level=63,id=16498,StackCount=1,Rarity=3,MinLevel=58,SellPrice=10360,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16498::::::::40:::::::|h[Blood Guard's Leather Treads]|h|r",Type="Armor"},["Scroll of Spirit II"]={SubType="Consumable",Level=25,id=1712,StackCount=5,Rarity=1,MinLevel=15,SellPrice=62,Texture=134937,Type="Consumable",Link="|cffffffff|Hitem:1712::::::::40:::::::|h[Scroll of Spirit II]|h|r",EquipLoc=""},["Deathmist Mantle"]={SubType="Cloth",Level=65,id=22073,StackCount=1,Rarity=3,MinLevel=0,SellPrice=19138,Texture=133732,Link="|cff0070dd|Hitem:22073::::::::40:::::::|h[Deathmist Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Painweaver Band"]={SubType="Miscellaneous",Level=63,id=13098,StackCount=1,Rarity=3,MinLevel=58,SellPrice=15282,Texture=133360,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:13098::::::::40:::::::|h[Painweaver Band]|h|r"},["Head of Rend Blackhand"]={SubType="Quest",Level=1,id=12630,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12630::::::::40:::::::|h[Head of Rend Blackhand]|h|r"},["Deprecated Recipe: Murloc Fin Soup"]={SubType="Book",Level=1,id=1492,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:1492::::::::40:::::::|h[Deprecated Recipe: Murloc Fin Soup]|h|r",Type="Recipe"},["Brocade Shoes"]={SubType="Cloth",Level=23,id=1772,StackCount=1,Rarity=0,MinLevel=18,SellPrice=247,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:1772::::::::40:::::::|h[Brocade Shoes]|h|r"},["Exalted Armsplints"]={SubType="Plate",Level=59,id=14983,StackCount=1,Rarity=2,MinLevel=54,SellPrice=7985,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14983::::::::40:::::::|h[Exalted Armsplints]|h|r"},["Colossus of Ashi's Husk"]={SubType="Quest",Level=1,id=21534,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134314,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:21534::::::::40:::::::|h[Colossus of Ashi's Husk]|h|r"},["Treant's Bane"]={SubType="Two-Handed Axes",Level=63,id=18538,StackCount=1,Rarity=4,MinLevel=58,SellPrice=96748,Texture=132401,Type="Weapon",Link="|cffa335ee|Hitem:18538::::::::40:::::::|h[Treant's Bane]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Force Imbued Gauntlets"]={SubType="Plate",Level=61,id=18383,StackCount=1,Rarity=3,MinLevel=56,SellPrice=10179,Texture=132943,Type="Armor",Link="|cff0070dd|Hitem:18383::::::::40:::::::|h[Force Imbued Gauntlets]|h|r",EquipLoc="INVTYPE_HAND"},["Deprecated [PH] Redridge Rye"]={SubType="Consumable",Level=1,id=1128,StackCount=1,Rarity=1,MinLevel=0,SellPrice=21,Texture=134719,Link="|cffffffff|Hitem:1128::::::::40:::::::|h[Deprecated [PH] Redridge Rye]|h|r",EquipLoc="",Type="Consumable"},["Chromatic Cloak"]={SubType="Cloth",Level=62,id=18509,StackCount=1,Rarity=4,MinLevel=57,SellPrice=23006,Texture=133754,Type="Armor",Link="|cffa335ee|Hitem:18509::::::::40:::::::|h[Chromatic Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Test Nature Res Cloak Cloth"]={SubType="Cloth",Level=35,id=16116,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2219,Texture=133759,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:16116::::::::40:::::::|h[Test Nature Res Cloak Cloth]|h|r",Type="Armor"},["Gypsy Buckler"]={SubType="Shields",Level=12,id=9753,StackCount=1,Rarity=2,MinLevel=7,SellPrice=248,Texture=134956,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9753::::::::40:::::::|h[Gypsy Buckler]|h|r"},["Flask of Mystery Goo"]={SubType="Quest",Level=1,id=12813,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134799,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12813::::::::40:::::::|h[Flask of Mystery Goo]|h|r"},["Bronze Mace"]={SubType="One-Handed Maces",Level=22,id=2848,StackCount=1,Rarity=1,MinLevel=17,SellPrice=1119,Texture=133483,Link="|cffffffff|Hitem:2848::::::::40:::::::|h[Bronze Mace]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Pledge of Loyalty: Darnassus"]={SubType="Consumable",Level=1,id=22120,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134332,Link="|cffffffff|Hitem:22120::::::::40:::::::|h[Pledge of Loyalty: Darnassus]|h|r",EquipLoc="",Type="Consumable"},["Oily Blackmouth"]={SubType="Reagent",Level=15,id=6358,StackCount=20,Rarity=1,MinLevel=0,SellPrice=4,Texture=134302,Link="|cffffffff|Hitem:6358::::::::40:::::::|h[Oily Blackmouth]|h|r",EquipLoc="",Type="Reagent"},["Red Helper Box"]={SubType="Junk",Level=1,id=21305,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133202,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21305::::::::40:::::::|h[Red Helper Box]|h|r"},["Sack of Murloc Heads"]={SubType="Quest",Level=1,id=3717,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133639,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3717::::::::40:::::::|h[Sack of Murloc Heads]|h|r"},["General's Dragonhide Leggings"]={SubType="Leather",Level=71,id=16552,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29413,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16552::::::::40:::::::|h[General's Dragonhide Leggings]|h|r",Type="Armor"},["Conjurer's Vest"]={SubType="Cloth",Level=38,id=9844,StackCount=1,Rarity=2,MinLevel=33,SellPrice=3709,Texture=132647,Link="|cff1eff00|Hitem:9844::::::::40:::::::|h[Conjurer's Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Libram: Purify"]={SubType="Book",Level=6,id=1150,StackCount=1,Rarity=1,MinLevel=6,SellPrice=20,Texture=133740,Link="|cffffffff|Hitem:1150::::::::40:::::::|h[Libram: Purify]|h|r",EquipLoc="",Type="Recipe"},["Prospector's Woolies"]={SubType="Leather",Level=21,id=14565,StackCount=1,Rarity=2,MinLevel=16,SellPrice=809,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14565::::::::40:::::::|h[Prospector's Woolies]|h|r"},["Righteous Armor"]={SubType="Leather",Level=55,id=10070,StackCount=1,Rarity=2,MinLevel=50,SellPrice=15482,Texture=132632,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10070::::::::40:::::::|h[Righteous Armor]|h|r",Type="Armor"},["Pattern: Mooncloth Bag"]={SubType="Tailoring",Level=60,id=14499,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14499::::::::40:::::::|h[Pattern: Mooncloth Bag]|h|r"},["Molten Helm"]={SubType="Leather",Level=60,id=16983,StackCount=1,Rarity=4,MinLevel=55,SellPrice=25709,Texture=133076,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16983::::::::40:::::::|h[Molten Helm]|h|r",Type="Armor"},["Vipore's Beacon"]={SubType="Quest",Level=1,id=17506,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135148,EquipLoc="",Link="|cffffffff|Hitem:17506::::::::40:::::::|h[Vipore's Beacon]|h|r",Type="Quest"},["Golden Scale Boots"]={SubType="Mail",Level=40,id=3847,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4977,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:3847::::::::40:::::::|h[Golden Scale Boots]|h|r"},["Rune of Escape"]={SubType="Quest",Level=1,id=11198,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134419,Type="Quest",Link="|cffffffff|Hitem:11198::::::::40:::::::|h[Rune of Escape]|h|r",EquipLoc=""},["Rainwalker Boots"]={SubType="Leather",Level=7,id=4906,StackCount=1,Rarity=1,MinLevel=0,SellPrice=21,Texture=132537,Type="Armor",Link="|cffffffff|Hitem:4906::::::::40:::::::|h[Rainwalker Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Dusty Chain Armor"]={SubType="Mail",Level=26,id=2016,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1769,Texture=132624,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:2016::::::::40:::::::|h[Dusty Chain Armor]|h|r",Type="Armor"},["Backus' Phat Lewt"]={SubType="Quest",Level=1,id=7007,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134754,EquipLoc="",Link="|cffffffff|Hitem:7007::::::::40:::::::|h[Backus' Phat Lewt]|h|r",Type="Quest"},["Sorcerer's Leggings"]={SubType="Cloth",Level=66,id=22067,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25501,Texture=134586,Link="|cff0070dd|Hitem:22067::::::::40:::::::|h[Sorcerer's Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Smolderweb Carrier"]={SubType="Junk",Level=59,id=12529,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=132598,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:12529::::::::40:::::::|h[Smolderweb Carrier]|h|r"},["Salt Shaker"]={SubType="Devices",Level=50,id=15846,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7500,Texture=132836,EquipLoc="",Link="|cffffffff|Hitem:15846::::::::40:::::::|h[Salt Shaker]|h|r",Type="Trade Goods"},["Mo'grosh Can Opener"]={SubType="Two-Handed Axes",Level=19,id=2823,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1618,Texture=132397,Link="|cff1eff00|Hitem:2823::::::::40:::::::|h[Mo'grosh Can Opener]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Barrel of Plagueland Termites"]={SubType="Quest",Level=1,id=15044,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132620,EquipLoc="",Link="|cffffffff|Hitem:15044::::::::40:::::::|h[Barrel of Plagueland Termites]|h|r",Type="Quest"},["Kuz's Skull"]={SubType="Quest",Level=1,id=5074,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133732,EquipLoc="",Link="|cffffffff|Hitem:5074::::::::40:::::::|h[Kuz's Skull]|h|r",Type="Quest"},["Interlaced Vest"]={SubType="Cloth",Level=37,id=3799,StackCount=1,Rarity=0,MinLevel=32,SellPrice=1460,Texture=132681,Link="|cff9d9d9d|Hitem:3799::::::::40:::::::|h[Interlaced Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Felnok's Package"]={SubType="Quest",Level=1,id=12445,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132764,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12445::::::::40:::::::|h[Felnok's Package]|h|r"},["Deprecated Palomino Summoning (Mount)"]={SubType="Junk",Level=1,id=902,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134937,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:902::::::::40:::::::|h[Deprecated Palomino Summoning (Mount)]|h|r"},["Pimgib's Collar"]={SubType="Miscellaneous",Level=60,id=18354,StackCount=1,Rarity=3,MinLevel=55,SellPrice=17466,Texture=133280,Type="Armor",Link="|cff0070dd|Hitem:18354::::::::40:::::::|h[Pimgib's Collar]|h|r",EquipLoc="INVTYPE_TRINKET"},["Disciple's Robe"]={SubType="Cloth",Level=13,id=6512,StackCount=1,Rarity=2,MinLevel=8,SellPrice=191,Texture=132663,Type="Armor",Link="|cff1eff00|Hitem:6512::::::::40:::::::|h[Disciple's Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Filled Amethyst Phial"]={SubType="Quest",Level=1,id=18151,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134798,Type="Quest",Link="|cffffffff|Hitem:18151::::::::40:::::::|h[Filled Amethyst Phial]|h|r",EquipLoc=""},["Plans: Dark Iron Shoulders"]={SubType="Blacksmithing",Level=56,id=11615,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:11615::::::::40:::::::|h[Plans: Dark Iron Shoulders]|h|r",EquipLoc=""},["Bracers of Subterfuge"]={SubType="Leather",Level=60,id=22668,StackCount=1,Rarity=4,MinLevel=0,SellPrice=16048,Texture=132603,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:22668::::::::40:::::::|h[Bracers of Subterfuge]|h|r"},["Pattern: Barbaric Belt"]={SubType="Leatherworking",Level=40,id=4301,StackCount=1,Rarity=3,MinLevel=0,SellPrice=875,Texture=134939,Link="|cff0070dd|Hitem:4301::::::::40:::::::|h[Pattern: Barbaric Belt]|h|r",EquipLoc="",Type="Recipe"},["Silver-lined Bracers"]={SubType="Cloth",Level=10,id=3224,StackCount=1,Rarity=1,MinLevel=5,SellPrice=28,Texture=132607,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3224::::::::40:::::::|h[Silver-lined Bracers]|h|r",Type="Armor"},["Stormwind Guard Leggings"]={SubType="Mail",Level=13,id=6084,StackCount=1,Rarity=2,MinLevel=0,SellPrice=290,Texture=134583,Type="Armor",Link="|cff1eff00|Hitem:6084::::::::40:::::::|h[Stormwind Guard Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Master Builder's Shirt"]={SubType="Miscellaneous",Level=55,id=11840,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7137,Texture=135022,Type="Armor",Link="|cffffffff|Hitem:11840::::::::40:::::::|h[Master Builder's Shirt]|h|r",EquipLoc="INVTYPE_BODY"},["Astral Knot Robe"]={SubType="Cloth",Level=31,id=7511,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1938,Texture=132645,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:7511::::::::40:::::::|h[Astral Knot Robe]|h|r",Type="Armor"},["Tablet of Lightning Shield VI"]={SubType="Book",Level=48,id=9137,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9137::::::::40:::::::|h[Tablet of Lightning Shield VI]|h|r"},["Nat's Measuring Tape"]={SubType="Quest",Level=1,id=19973,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133672,Link="|cffffffff|Hitem:19973::::::::40:::::::|h[Nat's Measuring Tape]|h|r",EquipLoc="",Type="Quest"},["Recipe: Elixir of Fortitude"]={SubType="Alchemy",Level=35,id=3830,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:3830::::::::40:::::::|h[Recipe: Elixir of Fortitude]|h|r"},["Deprecated Long Panther Tail"]={SubType="Junk",Level=1,id=4578,StackCount=10,Rarity=1,MinLevel=0,SellPrice=536,Texture=134413,Link="|cffffffff|Hitem:4578::::::::40:::::::|h[Deprecated Long Panther Tail]|h|r",EquipLoc="",Type="Miscellaneous"},["Kodobane's Head"]={SubType="Quest",Level=1,id=5022,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134151,EquipLoc="",Link="|cffffffff|Hitem:5022::::::::40:::::::|h[Kodobane's Head]|h|r",Type="Quest"},["Humbert's Sword"]={SubType="Quest",Level=1,id=3693,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135276,Type="Quest",Link="|cffffffff|Hitem:3693::::::::40:::::::|h[Humbert's Sword]|h|r",EquipLoc=""},["Embossed Plate Gauntlets"]={SubType="Plate",Level=43,id=9967,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2900,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9967::::::::40:::::::|h[Embossed Plate Gauntlets]|h|r"},["Brown Leather Satchel"]={SubType="Bag",Level=15,id=4498,StackCount=1,Rarity=1,MinLevel=0,SellPrice=625,Texture=133634,Type="Container",Link="|cffffffff|Hitem:4498::::::::40:::::::|h[Brown Leather Satchel]|h|r",EquipLoc="INVTYPE_BAG"},["Spiced Wolf Ribs"]={SubType="Consumable",Level=35,id=12211,StackCount=20,Rarity=1,MinLevel=25,SellPrice=300,Texture=134004,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12211::::::::40:::::::|h[Spiced Wolf Ribs]|h|r"},["Stone of Backus"]={SubType="Miscellaneous",Level=1,id=6724,StackCount=1,Rarity=6,MinLevel=1,SellPrice=837,Texture=133346,Type="Armor",Link="|cffe6cc80|Hitem:6724::::::::40:::::::|h[Stone of Backus]|h|r",EquipLoc="INVTYPE_FINGER"},["Seven of Warlords"]={SubType="Junk",Level=1,id=19264,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134497,Link="|cff0070dd|Hitem:19264::::::::40:::::::|h[Seven of Warlords]|h|r",EquipLoc="",Type="Miscellaneous"},["Hyperion Armor"]={SubType="Plate",Level=65,id=10384,StackCount=1,Rarity=2,MinLevel=60,SellPrice=20370,Texture=132751,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10384::::::::40:::::::|h[Hyperion Armor]|h|r",Type="Armor"},["Fleshhide Shoulders"]={SubType="Leather",Level=42,id=10774,StackCount=1,Rarity=3,MinLevel=37,SellPrice=5957,Texture=135059,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:10774::::::::40:::::::|h[Fleshhide Shoulders]|h|r",Type="Armor"},["Nightsky Gloves"]={SubType="Cloth",Level=34,id=4040,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1347,Texture=132955,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:4040::::::::40:::::::|h[Nightsky Gloves]|h|r",Type="Armor"},["Tablet of Fire Resistance Totem III"]={SubType="Book",Level=58,id=9170,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9170::::::::40:::::::|h[Tablet of Fire Resistance Totem III]|h|r"},["Broadsword"]={SubType="One-Handed Swords",Level=36,id=2520,StackCount=1,Rarity=1,MinLevel=31,SellPrice=4925,Texture=135275,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2520::::::::40:::::::|h[Broadsword]|h|r"},["Harbinger Boots"]={SubType="Leather",Level=30,id=7754,StackCount=1,Rarity=3,MinLevel=25,SellPrice=1959,Texture=132539,Link="|cff0070dd|Hitem:7754::::::::40:::::::|h[Harbinger Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Eye of Sulfuras"]={SubType="Trade Goods",Level=60,id=17204,StackCount=1,Rarity=5,MinLevel=0,SellPrice=200000,Texture=134124,EquipLoc="",Link="|cffff8000|Hitem:17204::::::::40:::::::|h[Eye of Sulfuras]|h|r",Type="Trade Goods"},["(OLD)Medium Throwing Axe"]={SubType="Thrown",Level=4,id=3128,StackCount=200,Rarity=1,MinLevel=1,SellPrice=0,Texture=132392,Link="|cffffffff|Hitem:3128::::::::40:::::::|h[(OLD)Medium Throwing Axe]|h|r",EquipLoc="INVTYPE_THROWN",Type="Weapon"},["Monster - Mace2H, Kazon's Maul"]={SubType="Two-Handed Maces",Level=1,id=10685,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:10685::::::::40:::::::|h[Monster - Mace2H, Kazon's Maul]|h|r",Type="Weapon"},["Valiant Shortsword"]={SubType="One-Handed Swords",Level=58,id=15801,StackCount=1,Rarity=2,MinLevel=0,SellPrice=35860,Texture=135326,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15801::::::::40:::::::|h[Valiant Shortsword]|h|r",Type="Weapon"},["Wolfpack Medallion"]={SubType="Miscellaneous",Level=31,id=5754,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2538,Texture=133278,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:5754::::::::40:::::::|h[Wolfpack Medallion]|h|r",Type="Armor"},["Giant Clam Scorcho"]={SubType="Consumable",Level=35,id=6038,StackCount=20,Rarity=1,MinLevel=25,SellPrice=312,Texture=132386,Type="Consumable",Link="|cffffffff|Hitem:6038::::::::40:::::::|h[Giant Clam Scorcho]|h|r",EquipLoc=""},["Codex of Holy Smite VIII"]={SubType="Book",Level=54,id=9016,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9016::::::::40:::::::|h[Codex of Holy Smite VIII]|h|r"},["Deprecated Stasis Totem"]={SubType="Reagent",Level=15,id=4451,StackCount=20,Rarity=1,MinLevel=0,SellPrice=13,Texture=135138,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:4451::::::::40:::::::|h[Deprecated Stasis Totem]|h|r"},["Hulking Cloak"]={SubType="Cloth",Level=20,id=14745,StackCount=1,Rarity=2,MinLevel=15,SellPrice=444,Texture=133772,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14745::::::::40:::::::|h[Hulking Cloak]|h|r"},["Dwarven Fishing Pole"]={SubType="Guns",Level=19,id=3567,StackCount=1,Rarity=2,MinLevel=0,SellPrice=922,Texture=135610,Link="|cff1eff00|Hitem:3567::::::::40:::::::|h[Dwarven Fishing Pole]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["90 Epic Rogue Cloak"]={SubType="Cloth",Level=90,id=20276,StackCount=1,Rarity=4,MinLevel=60,SellPrice=89888,Texture=133757,Link="|cffa335ee|Hitem:20276::::::::40:::::::|h[90 Epic Rogue Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Zealous Shadowshard Pendant"]={SubType="Miscellaneous",Level=42,id=17772,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7132,Texture=133293,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:17772::::::::40:::::::|h[Zealous Shadowshard Pendant]|h|r",Type="Armor"},["Nek'rosh's Head"]={SubType="Quest",Level=1,id=3625,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3625::::::::40:::::::|h[Nek'rosh's Head]|h|r"},["Darkrune Gauntlets"]={SubType="Plate",Level=63,id=20549,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11484,Texture=132961,Link="|cff0070dd|Hitem:20549::::::::40:::::::|h[Darkrune Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Archer's Belt"]={SubType="Leather",Level=35,id=9855,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1895,Texture=132492,Link="|cff1eff00|Hitem:9855::::::::40:::::::|h[Archer's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Rune of Nesting"]={SubType="Quest",Level=1,id=3408,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134414,EquipLoc="",Link="|cffffffff|Hitem:3408::::::::40:::::::|h[Rune of Nesting]|h|r",Type="Quest"},["Leg Meat"]={SubType="Consumable",Level=5,id=7097,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=133974,EquipLoc="",Link="|cffffffff|Hitem:7097::::::::40:::::::|h[Leg Meat]|h|r",Type="Consumable"},["Brackwater Cloak"]={SubType="Cloth",Level=13,id=4680,StackCount=1,Rarity=1,MinLevel=8,SellPrice=91,Texture=133769,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:4680::::::::40:::::::|h[Brackwater Cloak]|h|r"},["QAEnchant Bracer +4 Mana\\5"]={SubType="Consumable",Level=1,id=22036,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22036::::::::40:::::::|h[QAEnchant Bracer +4 Mana\\5]|h|r",EquipLoc="",Type="Consumable"},["Sharp Claw"]={SubType="Trade Goods",Level=15,id=5635,StackCount=5,Rarity=1,MinLevel=0,SellPrice=45,Texture=134296,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:5635::::::::40:::::::|h[Sharp Claw]|h|r"},["Pattern: Stormcloth Shoulders"]={SubType="Tailoring",Level=49,id=10322,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1875,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10322::::::::40:::::::|h[Pattern: Stormcloth Shoulders]|h|r",Type="Recipe"},["Dust of Decay"]={SubType="Trade Goods",Level=20,id=2928,StackCount=20,Rarity=1,MinLevel=0,SellPrice=5,Texture=133849,Link="|cffffffff|Hitem:2928::::::::40:::::::|h[Dust of Decay]|h|r",EquipLoc="",Type="Trade Goods"},["Tablet of Flametongue Weapon II"]={SubType="Book",Level=22,id=9064,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9064::::::::40:::::::|h[Tablet of Flametongue Weapon II]|h|r"},["Test Epic Mount"]={SubType="Junk",Level=60,id=18063,StackCount=1,Rarity=3,MinLevel=60,SellPrice=250000,Texture=132264,Type="Miscellaneous",Link="|cff0070dd|Hitem:18063::::::::40:::::::|h[Test Epic Mount]|h|r",EquipLoc=""},["Codex of Prayer of Healing V"]={SubType="Book",Level=60,id=21287,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133741,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:21287::::::::40:::::::|h[Codex of Prayer of Healing V]|h|r"},["Scaled Leather Gloves"]={SubType="Leather",Level=31,id=9832,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1248,Texture=132958,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9832::::::::40:::::::|h[Scaled Leather Gloves]|h|r"},["Ironhide Bracers"]={SubType="Mail",Level=50,id=15639,StackCount=1,Rarity=2,MinLevel=45,SellPrice=7040,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15639::::::::40:::::::|h[Ironhide Bracers]|h|r",Type="Armor"},["Tablet of Stoneclaw Totem VI"]={SubType="Book",Level=58,id=9176,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9176::::::::40:::::::|h[Tablet of Stoneclaw Totem VI]|h|r"},["Feathered Cape"]={SubType="Cloth",Level=26,id=5971,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1136,Texture=133756,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:5971::::::::40:::::::|h[Feathered Cape]|h|r",Type="Armor"},["Schematic: World Enlarger"]={SubType="Engineering",Level=52,id=18661,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:18661::::::::40:::::::|h[Schematic: World Enlarger]|h|r",EquipLoc=""},["Forest Tracker Epaulets"]={SubType="Leather",Level=31,id=2278,StackCount=1,Rarity=3,MinLevel=26,SellPrice=2326,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:2278::::::::40:::::::|h[Forest Tracker Epaulets]|h|r",Type="Armor"},["Glowing Wax Stick"]={SubType="Consumable",Level=7,id=1434,StackCount=20,Rarity=1,MinLevel=0,SellPrice=43,Texture=133752,EquipLoc="",Link="|cffffffff|Hitem:1434::::::::40:::::::|h[Glowing Wax Stick]|h|r",Type="Consumable"},["Mystic's Belt"]={SubType="Cloth",Level=17,id=14025,StackCount=1,Rarity=2,MinLevel=12,SellPrice=188,Texture=132515,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14025::::::::40:::::::|h[Mystic's Belt]|h|r"},["Living Breastplate"]={SubType="Leather",Level=60,id=15059,StackCount=1,Rarity=3,MinLevel=55,SellPrice=24776,Texture=132742,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:15059::::::::40:::::::|h[Living Breastplate]|h|r",Type="Armor"},["Feral Buckler"]={SubType="Shields",Level=19,id=15307,StackCount=1,Rarity=2,MinLevel=14,SellPrice=815,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15307::::::::40:::::::|h[Feral Buckler]|h|r",Type="Armor"},["Tome of Arcane Missiles VII"]={SubType="Book",Level=56,id=8885,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=133739,Link="|cffffffff|Hitem:8885::::::::40:::::::|h[Tome of Arcane Missiles VII]|h|r",EquipLoc="",Type="Recipe"},["Monster - Mace2H, Special NPC (Mograine)"]={SubType="Two-Handed Maces",Level=1,id=7706,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133488,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:7706::::::::40:::::::|h[Monster - Mace2H, Special NPC (Mograine)]|h|r",Type="Weapon"},["Highlander's Leather Boots"]={SubType="Leather",Level=63,id=20052,StackCount=1,Rarity=3,MinLevel=58,SellPrice=20569,Texture=132562,Link="|cff0070dd|Hitem:20052::::::::40:::::::|h[Highlander's Leather Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Silver Contact"]={SubType="Parts",Level=18,id=4404,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=133218,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4404::::::::40:::::::|h[Silver Contact]|h|r"},["Warbringer's Armsplints"]={SubType="Plate",Level=42,id=14941,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2515,Texture=132618,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14941::::::::40:::::::|h[Warbringer's Armsplints]|h|r"},["Soulkeeper"]={SubType="Staves",Level=54,id=1607,StackCount=1,Rarity=3,MinLevel=49,SellPrice=43420,Texture=136163,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:1607::::::::40:::::::|h[Soulkeeper]|h|r"},["Crudely Dried Meat"]={SubType="Quest",Level=1,id=6069,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133972,Type="Quest",Link="|cffffffff|Hitem:6069::::::::40:::::::|h[Crudely Dried Meat]|h|r",EquipLoc=""},["Scroll of Celebras"]={SubType="Quest",Level=1,id=17731,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:17731::::::::40:::::::|h[Scroll of Celebras]|h|r",Type="Quest"},["Knight's Bracers"]={SubType="Mail",Level=36,id=7461,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2429,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:7461::::::::40:::::::|h[Knight's Bracers]|h|r"},["Wild Leather Leggings"]={SubType="Leather",Level=50,id=8212,StackCount=1,Rarity=2,MinLevel=45,SellPrice=11585,Texture=134594,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:8212::::::::40:::::::|h[Wild Leather Leggings]|h|r"},["The Skull of Scryer"]={SubType="Quest",Level=1,id=16869,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134153,EquipLoc="",Link="|cffffffff|Hitem:16869::::::::40:::::::|h[The Skull of Scryer]|h|r",Type="Quest"},["Manual: Crystal Infused Bandage"]={SubType="First Aid",Level=60,id=23689,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6250,Texture=133735,Link="|cffffffff|Hitem:23689::::::::40:::::::|h[Manual: Crystal Infused Bandage]|h|r",EquipLoc="",Type="Recipe"},["Pious Legwraps"]={SubType="Cloth",Level=31,id=10043,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2033,Texture=134591,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10043::::::::40:::::::|h[Pious Legwraps]|h|r",Type="Armor"},["TEST SWORD 3"]={SubType="One-Handed Swords",Level=60,id=16212,StackCount=1,Rarity=1,MinLevel=0,SellPrice=23721,Texture=132312,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:16212::::::::40:::::::|h[TEST SWORD 3]|h|r",Type="Weapon"},["Monster - Staff, Feathered Silver"]={SubType="Staves",Level=1,id=13339,StackCount=1,Rarity=0,MinLevel=0,SellPrice=2,Texture=135225,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13339::::::::40:::::::|h[Monster - Staff, Feathered Silver]|h|r"},["Civinad Robes"]={SubType="Cloth",Level=37,id=9623,StackCount=1,Rarity=3,MinLevel=0,SellPrice=4198,Texture=132659,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:9623::::::::40:::::::|h[Civinad Robes]|h|r"},["Boots of Avoidance"]={SubType="Plate",Level=45,id=14549,StackCount=1,Rarity=4,MinLevel=40,SellPrice=7807,Texture=132586,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:14549::::::::40:::::::|h[Boots of Avoidance]|h|r"},["Monster - Axe, 2H Pendulum of Doom"]={SubType="Two-Handed Axes",Level=1,id=11342,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",Link="|cff9d9d9d|Hitem:11342::::::::40:::::::|h[Monster - Axe, 2H Pendulum of Doom]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Hakkari Loa Cloak"]={SubType="Cloth",Level=71,id=19870,StackCount=1,Rarity=3,MinLevel=60,SellPrice=25356,Texture=133770,Link="|cff0070dd|Hitem:19870::::::::40:::::::|h[Hakkari Loa Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Large Blue Rocket"]={SubType="Consumable",Level=1,id=21589,StackCount=20,Rarity=1,MinLevel=0,SellPrice=12,Texture=134270,Link="|cffffffff|Hitem:21589::::::::40:::::::|h[Large Blue Rocket]|h|r",EquipLoc="",Type="Consumable"},["Blackwood Nut Sample"]={SubType="Quest",Level=1,id=12343,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133944,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12343::::::::40:::::::|h[Blackwood Nut Sample]|h|r"},["Garrett Family Treasure"]={SubType="Quest",Level=1,id=8026,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132482,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:8026::::::::40:::::::|h[Garrett Family Treasure]|h|r"},["Gauntlets of Annihilation"]={SubType="Plate",Level=88,id=21581,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50891,Texture=132965,Link="|cffa335ee|Hitem:21581::::::::40:::::::|h[Gauntlets of Annihilation]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Schematic: Dark Iron Rifle"]={SubType="Engineering",Level=55,id=16048,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:16048::::::::40:::::::|h[Schematic: Dark Iron Rifle]|h|r",Type="Recipe"},["Pumpkin Bag"]={SubType="Bag",Level=1,id=20400,StackCount=1,Rarity=2,MinLevel=0,SellPrice=20000,Texture=134015,Link="|cff1eff00|Hitem:20400::::::::40:::::::|h[Pumpkin Bag]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Spire of the Stoneshaper"]={SubType="Staves",Level=56,id=12532,StackCount=1,Rarity=3,MinLevel=51,SellPrice=48501,Texture=135469,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12532::::::::40:::::::|h[Spire of the Stoneshaper]|h|r"},["Thornling Seed"]={SubType="Consumable",Level=60,id=18297,StackCount=5,Rarity=1,MinLevel=55,SellPrice=0,Texture=132877,Type="Consumable",Link="|cffffffff|Hitem:18297::::::::40:::::::|h[Thornling Seed]|h|r",EquipLoc=""},["Monster - Staff, 3 Piece Taped Staff Red"]={SubType="Staves",Level=1,id=12943,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135146,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12943::::::::40:::::::|h[Monster - Staff, 3 Piece Taped Staff Red]|h|r"},["Royal Seal of Eldre'Thalas"]={SubType="Miscellaneous",Level=62,id=18465,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133443,Type="Armor",Link="|cff0070dd|Hitem:18465::::::::40:::::::|h[Royal Seal of Eldre'Thalas]|h|r",EquipLoc="INVTYPE_TRINKET"},["Boots of Prophecy"]={SubType="Cloth",Level=66,id=16811,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26962,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16811::::::::40:::::::|h[Boots of Prophecy]|h|r",Type="Armor"},["Shadow Weaver Leggings"]={SubType="Leather",Level=27,id=2233,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1690,Texture=134592,Type="Armor",Link="|cff1eff00|Hitem:2233::::::::40:::::::|h[Shadow Weaver Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Small Hand Blade"]={SubType="Daggers",Level=11,id=816,StackCount=1,Rarity=2,MinLevel=6,SellPrice=305,Texture=135637,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:816::::::::40:::::::|h[Small Hand Blade]|h|r",Type="Weapon"},["[PH] Shining Dawn Coif"]={SubType="Mail",Level=100,id=13794,StackCount=1,Rarity=1,MinLevel=100,SellPrice=75151,Texture=133137,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:13794::::::::40:::::::|h[[PH] Shining Dawn Coif]|h|r"},["Grimoire of Shadow Ward IV"]={SubType="Book",Level=60,id=22891,StackCount=1,Rarity=3,MinLevel=60,SellPrice=10000,Texture=133739,Link="|cff0070dd|Hitem:22891::::::::40:::::::|h[Grimoire of Shadow Ward IV]|h|r",EquipLoc="",Type="Recipe"},["Cleansed Infernal Orb"]={SubType="Quest",Level=1,id=12642,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134336,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12642::::::::40:::::::|h[Cleansed Infernal Orb]|h|r"},["Book of Starfire VI"]={SubType="Book",Level=58,id=8798,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8798::::::::40:::::::|h[Book of Starfire VI]|h|r"},["Schematic: Green Firework"]={SubType="Engineering",Level=30,id=18648,StackCount=1,Rarity=1,MinLevel=0,SellPrice=450,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:18648::::::::40:::::::|h[Schematic: Green Firework]|h|r",EquipLoc=""},["Opulent Robes"]={SubType="Cloth",Level=56,id=14284,StackCount=1,Rarity=2,MinLevel=51,SellPrice=13135,Texture=132687,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14284::::::::40:::::::|h[Opulent Robes]|h|r"},["Rough Vulture Feathers"]={SubType="Junk",Level=10,id=555,StackCount=10,Rarity=0,MinLevel=0,SellPrice=8,Texture=135992,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:555::::::::40:::::::|h[Rough Vulture Feathers]|h|r"},["Rune Edge"]={SubType="One-Handed Axes",Level=57,id=12779,StackCount=1,Rarity=2,MinLevel=52,SellPrice=35338,Texture=132408,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:12779::::::::40:::::::|h[Rune Edge]|h|r"},["Darkmoon Ring"]={SubType="Miscellaneous",Level=55,id=19302,StackCount=1,Rarity=3,MinLevel=50,SellPrice=12500,Texture=133376,Link="|cff0070dd|Hitem:19302::::::::40:::::::|h[Darkmoon Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Vision of Voodress"]={SubType="Miscellaneous",Level=60,id=19606,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133310,Link="|cff1eff00|Hitem:19606::::::::40:::::::|h[Vision of Voodress]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Robes of the Shadowcaster"]={SubType="Cloth",Level=31,id=1297,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2038,Texture=132658,Link="|cff1eff00|Hitem:1297::::::::40:::::::|h[Robes of the Shadowcaster]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Argent Defender"]={SubType="Shields",Level=62,id=13243,StackCount=1,Rarity=3,MinLevel=0,SellPrice=36515,Texture=134951,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:13243::::::::40:::::::|h[Argent Defender]|h|r"},["Tablet of Purge"]={SubType="Book",Level=12,id=1049,StackCount=1,Rarity=1,MinLevel=12,SellPrice=150,Texture=134459,Type="Recipe",Link="|cffffffff|Hitem:1049::::::::40:::::::|h[Tablet of Purge]|h|r",EquipLoc=""},["Orb of Soran'ruk"]={SubType="Miscellaneous",Level=25,id=6898,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4132,Texture=134335,Type="Armor",Link="|cff1eff00|Hitem:6898::::::::40:::::::|h[Orb of Soran'ruk]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Book of Healing Touch IX"]={SubType="Book",Level=50,id=8783,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133743,Link="|cffffffff|Hitem:8783::::::::40:::::::|h[Book of Healing Touch IX]|h|r",EquipLoc="",Type="Recipe"},["Monster - Sword, Horde Sword Black"]={SubType="One-Handed Swords",Level=1,id=10614,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:10614::::::::40:::::::|h[Monster - Sword, Horde Sword Black]|h|r",Type="Weapon"},["Mechanic's Pipehammer"]={SubType="Two-Handed Maces",Level=30,id=9604,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5632,Texture=133479,Link="|cff1eff00|Hitem:9604::::::::40:::::::|h[Mechanic's Pipehammer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Legionnaire's Chain Legguards"]={SubType="Mail",Level=68,id=22875,StackCount=1,Rarity=3,MinLevel=60,SellPrice=21423,Texture=134583,Link="|cff0070dd|Hitem:22875::::::::40:::::::|h[Legionnaire's Chain Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Explosive Shell"]={SubType="Reagent",Level=20,id=5105,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=135809,EquipLoc="",Link="|cffffffff|Hitem:5105::::::::40:::::::|h[Explosive Shell]|h|r",Type="Reagent"},["Deathdealer Breastplate"]={SubType="Mail",Level=57,id=11926,StackCount=1,Rarity=3,MinLevel=52,SellPrice=24590,Texture=132629,Type="Armor",Link="|cff0070dd|Hitem:11926::::::::40:::::::|h[Deathdealer Breastplate]|h|r",EquipLoc="INVTYPE_CHEST"},["Demon Blade"]={SubType="Daggers",Level=62,id=15246,StackCount=1,Rarity=2,MinLevel=57,SellPrice=45704,Texture=135639,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15246::::::::40:::::::|h[Demon Blade]|h|r",Type="Weapon"},["Heavy Scorpid Belt"]={SubType="Mail",Level=56,id=15082,StackCount=1,Rarity=2,MinLevel=51,SellPrice=10375,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15082::::::::40:::::::|h[Heavy Scorpid Belt]|h|r",Type="Armor"},["Vitreous Focuser"]={SubType="Quest",Level=1,id=13370,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135143,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13370::::::::40:::::::|h[Vitreous Focuser]|h|r"},["Highlander's Lizardhide Shoulders"]={SubType="Leather",Level=65,id=20060,StackCount=1,Rarity=4,MinLevel=60,SellPrice=32012,Texture=135055,Link="|cffa335ee|Hitem:20060::::::::40:::::::|h[Highlander's Lizardhide Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Sterling Chain Bracers"]={SubType="Mail",Level=66,id=4010,StackCount=1,Rarity=0,MinLevel=61,SellPrice=6409,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:4010::::::::40:::::::|h[Sterling Chain Bracers]|h|r",Type="Armor"},["Silksand Bracers"]={SubType="Cloth",Level=38,id=14419,StackCount=1,Rarity=2,MinLevel=33,SellPrice=1919,Texture=132601,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14419::::::::40:::::::|h[Silksand Bracers]|h|r"},["Scarlet Initiate Robes"]={SubType="Cloth",Level=4,id=3260,StackCount=1,Rarity=1,MinLevel=1,SellPrice=6,Texture=132659,Type="Armor",Link="|cffffffff|Hitem:3260::::::::40:::::::|h[Scarlet Initiate Robes]|h|r",EquipLoc="INVTYPE_ROBE"},["Deprecated The Southern Kingdoms"]={SubType="Junk",Level=0,id=4475,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133742,EquipLoc="",Link="|cffffffff|Hitem:4475::::::::40:::::::|h[Deprecated The Southern Kingdoms]|h|r",Type="Miscellaneous"},["Monster - Sword2H, Battlefield Destroyer"]={SubType="Two-Handed Swords",Level=1,id=11591,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135280,Type="Weapon",Link="|cff9d9d9d|Hitem:11591::::::::40:::::::|h[Monster - Sword2H, Battlefield Destroyer]|h|r",EquipLoc="INVTYPE_WEAPON"},["Sturdy Dragonmaw Shinbone"]={SubType="Quest",Level=1,id=7134,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133718,EquipLoc="",Link="|cffffffff|Hitem:7134::::::::40:::::::|h[Sturdy Dragonmaw Shinbone]|h|r",Type="Quest"},["Penance Spaulders"]={SubType="Leather",Level=53,id=11963,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10025,Texture=135056,Type="Armor",Link="|cff1eff00|Hitem:11963::::::::40:::::::|h[Penance Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["[PH] Shining Dawn Fists"]={SubType="Mail",Level=100,id=13736,StackCount=1,Rarity=1,MinLevel=100,SellPrice=50962,Texture=132944,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:13736::::::::40:::::::|h[[PH] Shining Dawn Fists]|h|r"},["Netherwind Crown"]={SubType="Cloth",Level=76,id=16914,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42324,Texture=133172,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16914::::::::40:::::::|h[Netherwind Crown]|h|r",Type="Armor"},["Exorcism Censer"]={SubType="Quest",Level=1,id=18752,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135923,Type="Quest",Link="|cffffffff|Hitem:18752::::::::40:::::::|h[Exorcism Censer]|h|r",EquipLoc=""},["Deprecated Warden's Buckler"]={SubType="Shields",Level=41,id=14597,StackCount=1,Rarity=2,MinLevel=36,SellPrice=7312,Texture=134956,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14597::::::::40:::::::|h[Deprecated Warden's Buckler]|h|r"},["Iridium Circle"]={SubType="Miscellaneous",Level=43,id=11987,StackCount=1,Rarity=2,MinLevel=38,SellPrice=2885,Texture=133357,Type="Armor",Link="|cff1eff00|Hitem:11987::::::::40:::::::|h[Iridium Circle]|h|r",EquipLoc="INVTYPE_FINGER"},["Middle Map Fragment"]={SubType="Quest",Level=1,id=9253,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134329,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9253::::::::40:::::::|h[Middle Map Fragment]|h|r"},["Monster - Mace, Baron Silverlaine"]={SubType="One-Handed Maces",Level=1,id=11264,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133476,Type="Weapon",Link="|cff9d9d9d|Hitem:11264::::::::40:::::::|h[Monster - Mace, Baron Silverlaine]|h|r",EquipLoc="INVTYPE_WEAPON"},["Broken Boar Tusk"]={SubType="Junk",Level=1,id=3171,StackCount=5,Rarity=0,MinLevel=0,SellPrice=6,Texture=133722,EquipLoc="",Link="|cff9d9d9d|Hitem:3171::::::::40:::::::|h[Broken Boar Tusk]|h|r",Type="Miscellaneous"},["Dawnspire Cord"]={SubType="Cloth",Level=53,id=12466,StackCount=1,Rarity=3,MinLevel=48,SellPrice=6865,Texture=132500,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:12466::::::::40:::::::|h[Dawnspire Cord]|h|r"},["Deadman Dagger"]={SubType="Daggers",Level=3,id=3296,StackCount=1,Rarity=1,MinLevel=1,SellPrice=10,Texture=135641,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:3296::::::::40:::::::|h[Deadman Dagger]|h|r"},["Guide: Multi-Shot V"]={SubType="Book",Level=60,id=21304,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133734,Link="|cff0070dd|Hitem:21304::::::::40:::::::|h[Guide: Multi-Shot V]|h|r",EquipLoc="",Type="Recipe"},["Stoneshield Cloak"]={SubType="Cloth",Level=56,id=12551,StackCount=1,Rarity=3,MinLevel=51,SellPrice=11594,Texture=133773,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:12551::::::::40:::::::|h[Stoneshield Cloak]|h|r"},["Pattern: Core Felcloth Bag"]={SubType="Tailoring",Level=60,id=21371,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20000,Texture=134941,Link="|cff0070dd|Hitem:21371::::::::40:::::::|h[Pattern: Core Felcloth Bag]|h|r",EquipLoc="",Type="Recipe"},["Lake Skulker Moss"]={SubType="Quest",Level=1,id=3256,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134186,Type="Quest",Link="|cffffffff|Hitem:3256::::::::40:::::::|h[Lake Skulker Moss]|h|r",EquipLoc=""},["Goretusk Snout"]={SubType="Trade Goods",Level=12,id=731,StackCount=10,Rarity=1,MinLevel=0,SellPrice=27,Texture=135997,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:731::::::::40:::::::|h[Goretusk Snout]|h|r"},["Tome of Dampen Magic III"]={SubType="Book",Level=36,id=8834,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8834::::::::40:::::::|h[Tome of Dampen Magic III]|h|r"},["Handstitched Leather Boots"]={SubType="Leather",Level=8,id=2302,StackCount=1,Rarity=1,MinLevel=3,SellPrice=29,Texture=132538,Type="Armor",Link="|cffffffff|Hitem:2302::::::::40:::::::|h[Handstitched Leather Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Crafted Light Shot"]={SubType="Bullet",Level=10,id=8067,StackCount=200,Rarity=1,MinLevel=5,SellPrice=0,Texture=132384,Link="|cffffffff|Hitem:8067::::::::40:::::::|h[Crafted Light Shot]|h|r",EquipLoc="INVTYPE_AMMO",Type="Projectile"},["Deprecated Iron Pummel"]={SubType="Quest",Level=1,id=5515,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133718,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5515::::::::40:::::::|h[Deprecated Iron Pummel]|h|r"},["Keeper's Mantle"]={SubType="Leather",Level=51,id=14669,StackCount=1,Rarity=2,MinLevel=46,SellPrice=9654,Texture=135049,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14669::::::::40:::::::|h[Keeper's Mantle]|h|r"},["Demonheart Spaulders"]={SubType="Mail",Level=58,id=18320,StackCount=1,Rarity=3,MinLevel=53,SellPrice=21157,Texture=135054,Type="Armor",Link="|cff0070dd|Hitem:18320::::::::40:::::::|h[Demonheart Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Formula: Enchant Gloves - Superior Agility"]={SubType="Enchanting",Level=70,id=20731,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25000,Texture=134327,Link="|cff0070dd|Hitem:20731::::::::40:::::::|h[Formula: Enchant Gloves - Superior Agility]|h|r",EquipLoc="",Type="Recipe"},["Willow Pants"]={SubType="Cloth",Level=18,id=6540,StackCount=1,Rarity=2,MinLevel=13,SellPrice=431,Texture=134590,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:6540::::::::40:::::::|h[Willow Pants]|h|r"},["Stink Bomb Cleaner"]={SubType="Quest",Level=1,id=20604,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133860,Link="|cffffffff|Hitem:20604::::::::40:::::::|h[Stink Bomb Cleaner]|h|r",EquipLoc="",Type="Quest"},["Relic of the Dead"]={SubType="Miscellaneous",Level=15,id=3004,StackCount=1,Rarity=1,MinLevel=10,SellPrice=125,Texture=134514,Type="Armor",Link="|cffffffff|Hitem:3004::::::::40:::::::|h[Relic of the Dead]|h|r",EquipLoc="INVTYPE_TRINKET"},["Fetid Skull"]={SubType="Quest",Level=1,id=13157,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133728,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13157::::::::40:::::::|h[Fetid Skull]|h|r"},["Wooden Stock"]={SubType="Parts",Level=10,id=4399,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=133486,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4399::::::::40:::::::|h[Wooden Stock]|h|r"},["Moss-covered Gauntlets"]={SubType="Mail",Level=10,id=5589,StackCount=1,Rarity=1,MinLevel=0,SellPrice=41,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:5589::::::::40:::::::|h[Moss-covered Gauntlets]|h|r",Type="Armor"},["Deprecated Crag Boar Hide"]={SubType="Trade Goods",Level=9,id=2322,StackCount=10,Rarity=1,MinLevel=0,SellPrice=18,Texture=134366,EquipLoc="",Link="|cffffffff|Hitem:2322::::::::40:::::::|h[Deprecated Crag Boar Hide]|h|r",Type="Trade Goods"},["Practice Sword"]={SubType="Two-Handed Swords",Level=7,id=8177,StackCount=1,Rarity=1,MinLevel=2,SellPrice=71,Texture=135355,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:8177::::::::40:::::::|h[Practice Sword]|h|r"},["Filled Egg of Hakkar"]={SubType="Quest",Level=50,id=10662,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132836,EquipLoc="",Link="|cffffffff|Hitem:10662::::::::40:::::::|h[Filled Egg of Hakkar]|h|r",Type="Quest"},["Augmented Chain Belt"]={SubType="Mail",Level=37,id=2419,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1578,Texture=132492,Type="Armor",Link="|cffffffff|Hitem:2419::::::::40:::::::|h[Augmented Chain Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Smokey's Drape"]={SubType="Cloth",Level=58,id=17523,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10758,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:17523::::::::40:::::::|h[Smokey's Drape]|h|r",Type="Armor"},["Empty Worg Pup Cage"]={SubType="Quest",Level=1,id=12262,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132599,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12262::::::::40:::::::|h[Empty Worg Pup Cage]|h|r"},["The Collector's Schedule"]={SubType="Quest",Level=1,id=2223,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2223::::::::40:::::::|h[The Collector's Schedule]|h|r"},["Sacred Cloth Leggings"]={SubType="Cloth",Level=57,id=18745,StackCount=1,Rarity=3,MinLevel=52,SellPrice=17228,Texture=134581,Type="Armor",Link="|cff0070dd|Hitem:18745::::::::40:::::::|h[Sacred Cloth Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Deathweed"]={SubType="Trade Goods",Level=30,id=5173,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=133940,Link="|cffffffff|Hitem:5173::::::::40:::::::|h[Deathweed]|h|r",EquipLoc="",Type="Trade Goods"},["Brilliant Wizard Oil"]={SubType="Trade Goods",Level=55,id=20749,StackCount=1,Rarity=1,MinLevel=45,SellPrice=1000,Texture=134727,Link="|cffffffff|Hitem:20749::::::::40:::::::|h[Brilliant Wizard Oil]|h|r",EquipLoc="",Type="Trade Goods"},["Dragonstalker's Breastplate"]={SubType="Mail",Level=76,id=16942,StackCount=1,Rarity=4,MinLevel=60,SellPrice=89496,Texture=132625,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16942::::::::40:::::::|h[Dragonstalker's Breastplate]|h|r",Type="Armor"},["Spire of Hakkar"]={SubType="Staves",Level=54,id=10844,StackCount=1,Rarity=3,MinLevel=49,SellPrice=44314,Texture=135169,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:10844::::::::40:::::::|h[Spire of Hakkar]|h|r",Type="Weapon"},["Master Hunter's Bow"]={SubType="Bows",Level=45,id=4110,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11999,Texture=135499,Type="Weapon",Link="|cff1eff00|Hitem:4110::::::::40:::::::|h[Master Hunter's Bow]|h|r",EquipLoc="INVTYPE_RANGED"},["Wine-stained Cloak"]={SubType="Cloth",Level=5,id=11475,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=133770,Type="Armor",Link="|cffffffff|Hitem:11475::::::::40:::::::|h[Wine-stained Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Grand Marshal's Punisher"]={SubType="One-Handed Maces",Level=78,id=18865,StackCount=1,Rarity=4,MinLevel=60,SellPrice=49684,Texture=133488,Type="Weapon",Link="|cffa335ee|Hitem:18865::::::::40:::::::|h[Grand Marshal's Punisher]|h|r",EquipLoc="INVTYPE_WEAPON"},["Elixir of Tongues (NYI)"]={SubType="Consumable",Level=15,id=2460,StackCount=5,Rarity=1,MinLevel=5,SellPrice=25,Texture=134743,Link="|cffffffff|Hitem:2460::::::::40:::::::|h[Elixir of Tongues (NYI)]|h|r",EquipLoc="",Type="Consumable"},["Cauterizing Band"]={SubType="Miscellaneous",Level=71,id=19140,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133381,Link="|cffa335ee|Hitem:19140::::::::40:::::::|h[Cauterizing Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Codex of Shadow Word: Befuddle"]={SubType="Book",Level=24,id=3114,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1250,Texture=133741,Type="Recipe",Link="|cffffffff|Hitem:3114::::::::40:::::::|h[Codex of Shadow Word: Befuddle]|h|r",EquipLoc=""},["Ruined Jumper Cables XL"]={SubType="Devices",Level=53,id=18636,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=134070,Type="Trade Goods",Link="|cffffffff|Hitem:18636::::::::40:::::::|h[Ruined Jumper Cables XL]|h|r",EquipLoc=""},["Footpads of the Fang"]={SubType="Leather",Level=23,id=10411,StackCount=1,Rarity=2,MinLevel=18,SellPrice=787,Texture=132538,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10411::::::::40:::::::|h[Footpads of the Fang]|h|r",Type="Armor"},["Lieutenant Commander's Lamellar Headguard"]={SubType="Plate",Level=63,id=16434,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8800,Texture=133073,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16434::::::::40:::::::|h[Lieutenant Commander's Lamellar Headguard]|h|r",Type="Armor"},["Demon Summoning Torch"]={SubType="Quest",Level=1,id=21144,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135432,Link="|cffffffff|Hitem:21144::::::::40:::::::|h[Demon Summoning Torch]|h|r",EquipLoc="",Type="Quest"},["Legionnaire's Leather Hauberk"]={SubType="Leather",Level=63,id=16505,StackCount=1,Rarity=3,MinLevel=58,SellPrice=14184,Texture=132720,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16505::::::::40:::::::|h[Legionnaire's Leather Hauberk]|h|r",Type="Armor"},["Pattern: Lava Belt"]={SubType="Leatherworking",Level=66,id=19330,StackCount=1,Rarity=1,MinLevel=0,SellPrice=15000,Texture=134939,Link="|cffffffff|Hitem:19330::::::::40:::::::|h[Pattern: Lava Belt]|h|r",EquipLoc="",Type="Recipe"},["Book of Entangling Roots IV"]={SubType="Book",Level=38,id=8900,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133743,Link="|cffffffff|Hitem:8900::::::::40:::::::|h[Book of Entangling Roots IV]|h|r",EquipLoc="",Type="Recipe"},["Goblin Race Ticket"]={SubType="Quest",Level=1,id=5769,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=134941,EquipLoc="",Link="|cffffffff|Hitem:5769::::::::40:::::::|h[Goblin Race Ticket]|h|r",Type="Quest"},["Ward of the Vale"]={SubType="Shields",Level=27,id=5357,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2221,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:5357::::::::40:::::::|h[Ward of the Vale]|h|r",Type="Armor"},["OLDThick Trapper's Shirt"]={SubType="Miscellaneous",Level=1,id=89,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135011,Type="Armor",Link="|cffffffff|Hitem:89::::::::40:::::::|h[OLDThick Trapper's Shirt]|h|r",EquipLoc="INVTYPE_BODY"},["Black Rose"]={SubType="Miscellaneous",Level=40,id=3420,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=133436,Link="|cffffffff|Hitem:3420::::::::40:::::::|h[Black Rose]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Muddy Journal Pages"]={SubType="Quest",Level=1,id=938,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133680,Type="Quest",Link="|cffffffff|Hitem:938::::::::40:::::::|h[Muddy Journal Pages]|h|r",EquipLoc=""},["Gryphon Mail Belt"]={SubType="Mail",Level=48,id=15619,StackCount=1,Rarity=2,MinLevel=43,SellPrice=5987,Texture=132518,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15619::::::::40:::::::|h[Gryphon Mail Belt]|h|r",Type="Armor"},["Plans: Ebon Shiv"]={SubType="Blacksmithing",Level=51,id=8030,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134939,Link="|cffffffff|Hitem:8030::::::::40:::::::|h[Plans: Ebon Shiv]|h|r",EquipLoc="",Type="Recipe"},["Conqueror's Greaves"]={SubType="Plate",Level=78,id=21333,StackCount=1,Rarity=4,MinLevel=60,SellPrice=46519,Texture=132586,Link="|cffa335ee|Hitem:21333::::::::40:::::::|h[Conqueror's Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Wolf Rider's Leggings"]={SubType="Leather",Level=44,id=15374,StackCount=1,Rarity=2,MinLevel=39,SellPrice=7363,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15374::::::::40:::::::|h[Wolf Rider's Leggings]|h|r",Type="Armor"},["Sand Polished Hammer"]={SubType="One-Handed Maces",Level=72,id=21715,StackCount=1,Rarity=4,MinLevel=60,SellPrice=120142,Texture=133501,Link="|cffa335ee|Hitem:21715::::::::40:::::::|h[Sand Polished Hammer]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Lawbringer Gauntlets"]={SubType="Plate",Level=66,id=16860,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17249,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16860::::::::40:::::::|h[Lawbringer Gauntlets]|h|r",Type="Armor"},["Deprecated Orc Apprentice Boots"]={SubType="Miscellaneous",Level=1,id=125,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:125::::::::40:::::::|h[Deprecated Orc Apprentice Boots]|h|r",Type="Armor"},["Logistics Task Briefing V"]={SubType="Quest",Level=60,id=21382,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21382::::::::40:::::::|h[Logistics Task Briefing V]|h|r",EquipLoc="",Type="Quest"},["iCoke Gift Box Voucher"]={SubType="Quest",Level=1,id=23227,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:23227::::::::40:::::::|h[iCoke Gift Box Voucher]|h|r",EquipLoc="",Type="Quest"},["Blood Scythe"]={SubType="Trade Goods",Level=60,id=19727,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=135665,Link="|cff0070dd|Hitem:19727::::::::40:::::::|h[Blood Scythe]|h|r",EquipLoc="",Type="Trade Goods"},["Grimoire of Curse of Mannoroth III"]={SubType="Book",Level=32,id=4212,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2500,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4212::::::::40:::::::|h[Grimoire of Curse of Mannoroth III]|h|r"},["Delicate Insect Wing"]={SubType="Junk",Level=1,id=6302,StackCount=5,Rarity=0,MinLevel=0,SellPrice=628,Texture=134303,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:6302::::::::40:::::::|h[Delicate Insect Wing]|h|r",EquipLoc=""},["Hops"]={SubType="Trade Goods",Level=1,id=1274,StackCount=20,Rarity=1,MinLevel=0,SellPrice=8,Texture=134188,Link="|cffffffff|Hitem:1274::::::::40:::::::|h[Hops]|h|r",EquipLoc="",Type="Trade Goods"},["Symbol of Divinity"]={SubType="Reagent",Level=30,id=17033,StackCount=5,Rarity=1,MinLevel=0,SellPrice=500,Texture=135259,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:17033::::::::40:::::::|h[Symbol of Divinity]|h|r"},["Bonecaster's Spaulders"]={SubType="Cloth",Level=56,id=14298,StackCount=1,Rarity=2,MinLevel=51,SellPrice=9628,Texture=135045,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14298::::::::40:::::::|h[Bonecaster's Spaulders]|h|r"},["Warped Leather Vest"]={SubType="Leather",Level=11,id=1509,StackCount=1,Rarity=0,MinLevel=6,SellPrice=59,Texture=135009,Link="|cff9d9d9d|Hitem:1509::::::::40:::::::|h[Warped Leather Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Scarlet Leggings"]={SubType="Mail",Level=43,id=10330,StackCount=1,Rarity=3,MinLevel=38,SellPrice=9587,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:10330::::::::40:::::::|h[Scarlet Leggings]|h|r",Type="Armor"},["TEST Level 80 Epic"]={SubType="Two-Handed Swords",Level=80,id=18882,StackCount=1,Rarity=4,MinLevel=60,SellPrice=209804,Texture=135302,Type="Weapon",Link="|cffa335ee|Hitem:18882::::::::40:::::::|h[TEST Level 80 Epic]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Recipe: Mighty Rage Potion"]={SubType="Alchemy",Level=51,id=13476,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13476::::::::40:::::::|h[Recipe: Mighty Rage Potion]|h|r"},["Gahz'ridian Detector"]={SubType="Quest",Level=1,id=9978,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133151,Type="Quest",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:9978::::::::40:::::::|h[Gahz'ridian Detector]|h|r"},["Imperial Plate Shoulders"]={SubType="Plate",Level=53,id=12428,StackCount=1,Rarity=2,MinLevel=47,SellPrice=8646,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:12428::::::::40:::::::|h[Imperial Plate Shoulders]|h|r"},["Seaforium Booster"]={SubType="Quest",Level=1,id=5862,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132385,Link="|cffffffff|Hitem:5862::::::::40:::::::|h[Seaforium Booster]|h|r",EquipLoc="",Type="Quest"},["Key to Salem's Chest"]={SubType="Key",Level=1,id=17242,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134240,EquipLoc="",Link="|cffffffff|Hitem:17242::::::::40:::::::|h[Key to Salem's Chest]|h|r",Type="Key"},["Light Plate Chestpiece"]={SubType="Plate",Level=58,id=8080,StackCount=1,Rarity=0,MinLevel=53,SellPrice=5987,Texture=132739,Link="|cff9d9d9d|Hitem:8080::::::::40:::::::|h[Light Plate Chestpiece]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Plans: Icebane Bracers"]={SubType="Blacksmithing",Level=80,id=22705,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37500,Texture=134939,Link="|cffffffff|Hitem:22705::::::::40:::::::|h[Plans: Icebane Bracers]|h|r",EquipLoc="",Type="Recipe"},["Glimmering Mail Gauntlets"]={SubType="Mail",Level=30,id=4072,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1340,Texture=132937,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:4072::::::::40:::::::|h[Glimmering Mail Gauntlets]|h|r",Type="Armor"},["Barbaric Cloth Bracers"]={SubType="Cloth",Level=12,id=3644,StackCount=1,Rarity=1,MinLevel=7,SellPrice=47,Texture=132607,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3644::::::::40:::::::|h[Barbaric Cloth Bracers]|h|r"},["Rock Chipper"]={SubType="Two-Handed Axes",Level=15,id=6206,StackCount=1,Rarity=1,MinLevel=10,SellPrice=555,Texture=134708,Type="Weapon",Link="|cffffffff|Hitem:6206::::::::40:::::::|h[Rock Chipper]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Insane Scribbles"]={SubType="Quest",Level=1,id=5272,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:5272::::::::40:::::::|h[Insane Scribbles]|h|r",Type="Quest"},["Blood of the Mountain"]={SubType="Trade Goods",Level=50,id=11382,StackCount=20,Rarity=2,MinLevel=0,SellPrice=750,Texture=134086,Type="Trade Goods",Link="|cff1eff00|Hitem:11382::::::::40:::::::|h[Blood of the Mountain]|h|r",EquipLoc=""},["Zandalarian Hero Charm"]={SubType="Miscellaneous",Level=68,id=19950,StackCount=1,Rarity=4,MinLevel=0,SellPrice=111303,Texture=133300,Link="|cffa335ee|Hitem:19950::::::::40:::::::|h[Zandalarian Hero Charm]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Monster - Staff, Green Feathered"]={SubType="Staves",Level=1,id=12322,StackCount=1,Rarity=0,MinLevel=0,SellPrice=2,Texture=135225,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12322::::::::40:::::::|h[Monster - Staff, Green Feathered]|h|r"},["Archer's Buckler"]={SubType="Shields",Level=36,id=9858,StackCount=1,Rarity=2,MinLevel=31,SellPrice=4882,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9858::::::::40:::::::|h[Archer's Buckler]|h|r"},["Silithid Egg"]={SubType="Quest",Level=1,id=5058,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132834,EquipLoc="",Link="|cffffffff|Hitem:5058::::::::40:::::::|h[Silithid Egg]|h|r",Type="Quest"},["Spritekin Cloak"]={SubType="Cloth",Level=27,id=16990,StackCount=1,Rarity=2,MinLevel=0,SellPrice=998,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:16990::::::::40:::::::|h[Spritekin Cloak]|h|r",Type="Armor"},["Zandalar Freethinker's Breastplate"]={SubType="Plate",Level=65,id=19825,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132742,Link="|cffa335ee|Hitem:19825::::::::40:::::::|h[Zandalar Freethinker's Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Elemental Attuned Blade"]={SubType="One-Handed Swords",Level=63,id=20698,StackCount=1,Rarity=4,MinLevel=58,SellPrice=75410,Texture=135323,Link="|cffa335ee|Hitem:20698::::::::40:::::::|h[Elemental Attuned Blade]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Barbaric Harness"]={SubType="Leather",Level=38,id=5739,StackCount=1,Rarity=1,MinLevel=33,SellPrice=2738,Texture=132719,Link="|cffffffff|Hitem:5739::::::::40:::::::|h[Barbaric Harness]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Ivar's Head"]={SubType="Quest",Level=1,id=3621,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133731,Link="|cffffffff|Hitem:3621::::::::40:::::::|h[Ivar's Head]|h|r",EquipLoc="",Type="Quest"},["Burning Charm"]={SubType="Consumable",Level=35,id=4479,StackCount=10,Rarity=1,MinLevel=25,SellPrice=178,Texture=133434,Type="Consumable",Link="|cffffffff|Hitem:4479::::::::40:::::::|h[Burning Charm]|h|r",EquipLoc=""},["Frostwolf Legionnaire's Cloak"]={SubType="Cloth",Level=60,id=19083,StackCount=1,Rarity=3,MinLevel=55,SellPrice=15044,Texture=133768,Link="|cff0070dd|Hitem:19083::::::::40:::::::|h[Frostwolf Legionnaire's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Smokey's Fireshooter"]={SubType="Wands",Level=60,id=16993,StackCount=1,Rarity=2,MinLevel=0,SellPrice=30989,Texture=135465,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:16993::::::::40:::::::|h[Smokey's Fireshooter]|h|r",Type="Weapon"},["Gloves of Old"]={SubType="Cloth",Level=34,id=9395,StackCount=1,Rarity=3,MinLevel=29,SellPrice=1565,Texture=132958,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:9395::::::::40:::::::|h[Gloves of Old]|h|r"},["Field Plate Shield"]={SubType="Shields",Level=43,id=7496,StackCount=1,Rarity=2,MinLevel=38,SellPrice=8882,Texture=134951,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:7496::::::::40:::::::|h[Field Plate Shield]|h|r",Type="Armor"},["Black Stone"]={SubType="Junk",Level=60,id=21223,StackCount=10,Rarity=0,MinLevel=0,SellPrice=1500,Texture=134456,Link="|cff9d9d9d|Hitem:21223::::::::40:::::::|h[Black Stone]|h|r",EquipLoc="",Type="Miscellaneous"},["Shortsword"]={SubType="One-Handed Swords",Level=3,id=2131,StackCount=1,Rarity=1,MinLevel=1,SellPrice=10,Texture=135274,Type="Weapon",Link="|cffffffff|Hitem:2131::::::::40:::::::|h[Shortsword]|h|r",EquipLoc="INVTYPE_WEAPON"},["Lung Juice Cocktail"]={SubType="Consumable",Level=1,id=8411,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132799,Link="|cffffffff|Hitem:8411::::::::40:::::::|h[Lung Juice Cocktail]|h|r",EquipLoc="",Type="Consumable"},["Backusarian Gauntlets"]={SubType="Plate",Level=60,id=12637,StackCount=1,Rarity=3,MinLevel=55,SellPrice=10316,Texture=132960,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:12637::::::::40:::::::|h[Backusarian Gauntlets]|h|r"},["Breastplate of the Chosen"]={SubType="Mail",Level=63,id=13090,StackCount=1,Rarity=3,MinLevel=58,SellPrice=35955,Texture=132638,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:13090::::::::40:::::::|h[Breastplate of the Chosen]|h|r"},["Champion's Cape"]={SubType="Cloth",Level=44,id=7544,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4296,Texture=133763,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:7544::::::::40:::::::|h[Champion's Cape]|h|r",Type="Armor"},["Colorful Kilt"]={SubType="Cloth",Level=24,id=10048,StackCount=1,Rarity=2,MinLevel=14,SellPrice=935,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10048::::::::40:::::::|h[Colorful Kilt]|h|r",Type="Armor"},["Fireguard Shoulders"]={SubType="Leather",Level=71,id=19139,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42244,Texture=135054,Link="|cffa335ee|Hitem:19139::::::::40:::::::|h[Fireguard Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Darkwater Robes"]={SubType="Cloth",Level=77,id=21527,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60872,Texture=132672,Link="|cffa335ee|Hitem:21527::::::::40:::::::|h[Darkwater Robes]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Baron Charr's Sceptre"]={SubType="One-Handed Maces",Level=59,id=18671,StackCount=1,Rarity=3,MinLevel=54,SellPrice=45184,Texture=133483,Type="Weapon",Link="|cff0070dd|Hitem:18671::::::::40:::::::|h[Baron Charr's Sceptre]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Spiked Wooden Plank"]={SubType="One-Handed Maces",Level=11,id=3329,StackCount=1,Rarity=1,MinLevel=6,SellPrice=179,Texture=133485,Type="Weapon",Link="|cffffffff|Hitem:3329::::::::40:::::::|h[Spiked Wooden Plank]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Schematic: Large Green Rocket"]={SubType="Engineering",Level=35,id=21728,StackCount=1,Rarity=2,MinLevel=0,SellPrice=275,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:21728::::::::40:::::::|h[Schematic: Large Green Rocket]|h|r"},["Blood of Pythas"]={SubType="Quest",Level=1,id=5401,StackCount=1,Rarity=1,MinLevel=0,SellPrice=17,Texture=134719,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5401::::::::40:::::::|h[Blood of Pythas]|h|r"},["War Maul"]={SubType="Two-Handed Maces",Level=45,id=2533,StackCount=1,Rarity=1,MinLevel=40,SellPrice=12221,Texture=133054,Type="Weapon",Link="|cffffffff|Hitem:2533::::::::40:::::::|h[War Maul]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Darkmist Girdle"]={SubType="Cloth",Level=41,id=14245,StackCount=1,Rarity=2,MinLevel=36,SellPrice=2346,Texture=132499,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14245::::::::40:::::::|h[Darkmist Girdle]|h|r"},["Electropeller"]={SubType="Quest",Level=1,id=6718,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134065,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6718::::::::40:::::::|h[Electropeller]|h|r"},["Kam's Walking Stick"]={SubType="Staves",Level=27,id=2280,StackCount=1,Rarity=2,MinLevel=22,SellPrice=4023,Texture=135143,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:2280::::::::40:::::::|h[Kam's Walking Stick]|h|r"},["Jaron's Supplies"]={SubType="Quest",Level=1,id=12525,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132765,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12525::::::::40:::::::|h[Jaron's Supplies]|h|r"},["Knight-Lieutenant's Satin Walkers"]={SubType="Cloth",Level=66,id=23289,StackCount=1,Rarity=3,MinLevel=60,SellPrice=9526,Texture=132539,Link="|cff0070dd|Hitem:23289::::::::40:::::::|h[Knight-Lieutenant's Satin Walkers]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Journeyman's Vest"]={SubType="Cloth",Level=11,id=2957,StackCount=1,Rarity=2,MinLevel=6,SellPrice=119,Texture=132647,Type="Armor",Link="|cff1eff00|Hitem:2957::::::::40:::::::|h[Journeyman's Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Monster - Mace2H, Wood Handle Large Spiked Head"]={SubType="Two-Handed Maces",Level=1,id=5300,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7,Texture=133489,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5300::::::::40:::::::|h[Monster - Mace2H, Wood Handle Large Spiked Head]|h|r"},["Monster - Claw"]={SubType="Fist Weapons",Level=1,id=3494,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134294,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:3494::::::::40:::::::|h[Monster - Claw]|h|r"},["Grand Gauntlets"]={SubType="Leather",Level=60,id=15192,StackCount=1,Rarity=2,MinLevel=55,SellPrice=10595,Texture=132965,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15192::::::::40:::::::|h[Grand Gauntlets]|h|r",Type="Armor"},["Tome of Ice Armor"]={SubType="Book",Level=30,id=994,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133739,Link="|cffffffff|Hitem:994::::::::40:::::::|h[Tome of Ice Armor]|h|r",EquipLoc="",Type="Recipe"},["Highlander's Chain Girdle"]={SubType="Mail",Level=53,id=20088,StackCount=1,Rarity=3,MinLevel=48,SellPrice=10495,Texture=132509,Link="|cff0070dd|Hitem:20088::::::::40:::::::|h[Highlander's Chain Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Barbed Club"]={SubType="One-Handed Maces",Level=19,id=15222,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1219,Texture=133045,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:15222::::::::40:::::::|h[Barbed Club]|h|r",Type="Weapon"},["Greater Shadow Protection Potion"]={SubType="Consumable",Level=58,id=13459,StackCount=5,Rarity=1,MinLevel=48,SellPrice=100,Texture=134803,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13459::::::::40:::::::|h[Greater Shadow Protection Potion]|h|r"},["Boots of the Fallen Prophet"]={SubType="Mail",Level=73,id=21705,StackCount=1,Rarity=4,MinLevel=60,SellPrice=59105,Texture=132549,Link="|cffa335ee|Hitem:21705::::::::40:::::::|h[Boots of the Fallen Prophet]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Crochet Shoulderpads"]={SubType="Cloth",Level=49,id=3942,StackCount=1,Rarity=0,MinLevel=44,SellPrice=2636,Texture=135040,Type="Armor",Link="|cff9d9d9d|Hitem:3942::::::::40:::::::|h[Crochet Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER"},["A Dingy Fanny Pack"]={SubType="Junk",Level=56,id=11883,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133635,Type="Miscellaneous",Link="|cffffffff|Hitem:11883::::::::40:::::::|h[A Dingy Fanny Pack]|h|r",EquipLoc=""},["Invisibility Liquor"]={SubType="Quest",Level=1,id=1257,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134776,EquipLoc="",Link="|cffffffff|Hitem:1257::::::::40:::::::|h[Invisibility Liquor]|h|r",Type="Quest"},["Prepared Field Duty Papers"]={SubType="Quest",Level=1,id=23024,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:23024::::::::40:::::::|h[Prepared Field Duty Papers]|h|r",EquipLoc="",Type="Quest"},["Green Hills of Stranglethorn - Page 24"]={SubType="Junk",Level=1,id=2748,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:2748::::::::40:::::::|h[Green Hills of Stranglethorn - Page 24]|h|r",Type="Miscellaneous"},["White Bandit Mask"]={SubType="Cloth",Level=43,id=10008,StackCount=1,Rarity=2,MinLevel=38,SellPrice=4365,Texture=133763,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10008::::::::40:::::::|h[White Bandit Mask]|h|r",Type="Armor"},["Blackened Defias Gloves"]={SubType="Leather",Level=18,id=10401,StackCount=1,Rarity=2,MinLevel=13,SellPrice=255,Texture=132952,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10401::::::::40:::::::|h[Blackened Defias Gloves]|h|r",Type="Armor"},["Amplifying Cloak"]={SubType="Cloth",Level=61,id=18350,StackCount=1,Rarity=2,MinLevel=56,SellPrice=13063,Texture=133770,Type="Armor",Link="|cff1eff00|Hitem:18350::::::::40:::::::|h[Amplifying Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["SnowMaster 9000"]={SubType="Devices",Level=38,id=17716,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7500,Texture=135863,EquipLoc="",Link="|cffffffff|Hitem:17716::::::::40:::::::|h[SnowMaster 9000]|h|r",Type="Trade Goods"},["Shredder Operating Manual - Page 9"]={SubType="Junk",Level=1,id=16653,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:16653::::::::40:::::::|h[Shredder Operating Manual - Page 9]|h|r",Type="Miscellaneous"},["Red Swashbuckler's Shirt"]={SubType="Miscellaneous",Level=35,id=6796,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=135029,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:6796::::::::40:::::::|h[Red Swashbuckler's Shirt]|h|r"},["Large Boar Tusk"]={SubType="Junk",Level=1,id=2295,StackCount=5,Rarity=0,MinLevel=0,SellPrice=70,Texture=133721,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:2295::::::::40:::::::|h[Large Boar Tusk]|h|r"},["Arcanist Leggings"]={SubType="Cloth",Level=66,id=16796,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33990,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16796::::::::40:::::::|h[Arcanist Leggings]|h|r",Type="Armor"},["Warrior's Buckler"]={SubType="Shields",Level=9,id=3648,StackCount=1,Rarity=1,MinLevel=4,SellPrice=73,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:3648::::::::40:::::::|h[Warrior's Buckler]|h|r",Type="Armor"},["Evergreen Pouch"]={SubType="Quest",Level=1,id=11020,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133651,Type="Quest",Link="|cffffffff|Hitem:11020::::::::40:::::::|h[Evergreen Pouch]|h|r",EquipLoc=""},["Grunt's Legguards"]={SubType="Mail",Level=24,id=15511,StackCount=1,Rarity=2,MinLevel=19,SellPrice=1474,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15511::::::::40:::::::|h[Grunt's Legguards]|h|r",Type="Armor"},["Disciple's Stein"]={SubType="Miscellaneous",Level=12,id=15932,StackCount=1,Rarity=2,MinLevel=7,SellPrice=527,Texture=132790,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15932::::::::40:::::::|h[Disciple's Stein]|h|r",Type="Armor"},["Goodsteel's Balanced Flameberge"]={SubType="Quest",Level=1,id=11723,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135272,Type="Quest",Link="|cffffffff|Hitem:11723::::::::40:::::::|h[Goodsteel's Balanced Flameberge]|h|r",EquipLoc=""},["Bracers of Might"]={SubType="Plate",Level=66,id=16861,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17786,Texture=132618,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16861::::::::40:::::::|h[Bracers of Might]|h|r",Type="Armor"},["Recipe: Instant Toxin"]={SubType="Book",Level=24,id=5657,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=134941,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5657::::::::40:::::::|h[Recipe: Instant Toxin]|h|r"},["Polished Jazeraint Armor"]={SubType="Mail",Level=44,id=1715,StackCount=1,Rarity=3,MinLevel=39,SellPrice=10301,Texture=132631,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:1715::::::::40:::::::|h[Polished Jazeraint Armor]|h|r",Type="Armor"},["Grimoire of Health Funnel II"]={SubType="Book",Level=20,id=9204,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9204::::::::40:::::::|h[Grimoire of Health Funnel II]|h|r"},["Elunarian Sarong"]={SubType="Cloth",Level=62,id=14462,StackCount=1,Rarity=2,MinLevel=57,SellPrice=18751,Texture=134590,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14462::::::::40:::::::|h[Elunarian Sarong]|h|r"},["Head of Balnazzar"]={SubType="Quest",Level=1,id=13250,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136183,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13250::::::::40:::::::|h[Head of Balnazzar]|h|r"},["Arthas' Tears"]={SubType="Trade Goods",Level=44,id=8836,StackCount=20,Rarity=1,MinLevel=0,SellPrice=95,Texture=134194,Link="|cffffffff|Hitem:8836::::::::40:::::::|h[Arthas' Tears]|h|r",EquipLoc="",Type="Trade Goods"},["QAEnchant Gloves +7 Agility"]={SubType="Consumable",Level=1,id=17898,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17898::::::::40:::::::|h[QAEnchant Gloves +7 Agility]|h|r",Type="Consumable"},["Stormrage's Talisman of Seething"]={SubType="Miscellaneous",Level=92,id=23053,StackCount=1,Rarity=4,MinLevel=60,SellPrice=86443,Texture=133317,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:23053::::::::40:::::::|h[Stormrage's Talisman of Seething]|h|r"},["Pattern: Frostweave Robe"]={SubType="Tailoring",Level=51,id=14467,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14467::::::::40:::::::|h[Pattern: Frostweave Robe]|h|r"},["Urchin's Pants"]={SubType="Cloth",Level=10,id=2238,StackCount=1,Rarity=1,MinLevel=0,SellPrice=60,Texture=134588,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:2238::::::::40:::::::|h[Urchin's Pants]|h|r"},["Bloodwoven Pads"]={SubType="Cloth",Level=47,id=14266,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5606,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14266::::::::40:::::::|h[Bloodwoven Pads]|h|r"},["Warsong Runner Update"]={SubType="Quest",Level=1,id=16763,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133468,EquipLoc="",Link="|cffffffff|Hitem:16763::::::::40:::::::|h[Warsong Runner Update]|h|r",Type="Quest"},["Smokey's Special Compound"]={SubType="Quest",Level=1,id=15736,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133715,EquipLoc="",Link="|cffffffff|Hitem:15736::::::::40:::::::|h[Smokey's Special Compound]|h|r",Type="Quest"},["Bludgeoning Cudgel"]={SubType="One-Handed Maces",Level=22,id=1823,StackCount=1,Rarity=0,MinLevel=17,SellPrice=779,Texture=133485,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:1823::::::::40:::::::|h[Bludgeoning Cudgel]|h|r",Type="Weapon"},["Bonecrusher"]={SubType="Two-Handed Maces",Level=63,id=18420,StackCount=1,Rarity=3,MinLevel=0,SellPrice=71236,Texture=133477,Type="Weapon",Link="|cff0070dd|Hitem:18420::::::::40:::::::|h[Bonecrusher]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Blood of the Martyr"]={SubType="Miscellaneous",Level=61,id=17045,StackCount=1,Rarity=3,MinLevel=0,SellPrice=14846,Texture=133367,EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:17045::::::::40:::::::|h[Blood of the Martyr]|h|r",Type="Armor"},["Brown Skeletal Horse"]={SubType="Junk",Level=40,id=13333,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132264,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:13333::::::::40:::::::|h[Brown Skeletal Horse]|h|r"},["Oaken War Staff"]={SubType="Staves",Level=28,id=1831,StackCount=1,Rarity=0,MinLevel=23,SellPrice=1790,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1831::::::::40:::::::|h[Oaken War Staff]|h|r"},["Condensed Mana Fragment"]={SubType="Junk",Level=1,id=18286,StackCount=20,Rarity=0,MinLevel=0,SellPrice=2953,Texture=134096,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18286::::::::40:::::::|h[Condensed Mana Fragment]|h|r",EquipLoc=""},["Lady Falther'ess' Finger"]={SubType="Wands",Level=41,id=23177,StackCount=1,Rarity=3,MinLevel=36,SellPrice=10536,Texture=135474,Link="|cff0070dd|Hitem:23177::::::::40:::::::|h[Lady Falther'ess' Finger]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Wildheart Belt"]={SubType="Leather",Level=58,id=16716,StackCount=1,Rarity=3,MinLevel=53,SellPrice=11620,Texture=132504,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16716::::::::40:::::::|h[Wildheart Belt]|h|r",Type="Armor"},["QAEnchant Chest +100 Health"]={SubType="Consumable",Level=1,id=17882,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17882::::::::40:::::::|h[QAEnchant Chest +100 Health]|h|r",Type="Consumable"},["Revenant Bracers"]={SubType="Plate",Level=49,id=10127,StackCount=1,Rarity=2,MinLevel=44,SellPrice=4350,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10127::::::::40:::::::|h[Revenant Bracers]|h|r",Type="Armor"},["Ironweb Spider Silk"]={SubType="Trade Goods",Level=50,id=14227,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2500,Texture=136113,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:14227::::::::40:::::::|h[Ironweb Spider Silk]|h|r"},["Lifeless Skull"]={SubType="Junk",Level=1,id=3671,StackCount=5,Rarity=0,MinLevel=0,SellPrice=201,Texture=133730,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:3671::::::::40:::::::|h[Lifeless Skull]|h|r",EquipLoc=""},["Skullsplitter Fetish"]={SubType="Quest",Level=1,id=2466,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134232,Type="Quest",Link="|cffffffff|Hitem:2466::::::::40:::::::|h[Skullsplitter Fetish]|h|r",EquipLoc=""},["Cliff Runner Boots"]={SubType="Mail",Level=10,id=4972,StackCount=1,Rarity=1,MinLevel=0,SellPrice=64,Texture=132535,Link="|cffffffff|Hitem:4972::::::::40:::::::|h[Cliff Runner Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Sealed Field Testing Kit"]={SubType="Quest",Level=1,id=8527,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133632,Link="|cffffffff|Hitem:8527::::::::40:::::::|h[Sealed Field Testing Kit]|h|r",EquipLoc="",Type="Quest"},["Test MP Ring"]={SubType="Miscellaneous",Level=1,id=6674,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1052,Texture=133352,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff9d9d9d|Hitem:6674::::::::40:::::::|h[Test MP Ring]|h|r"},["Kodo Mount"]={SubType="Junk",Level=40,id=14062,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132264,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:14062::::::::40:::::::|h[Kodo Mount]|h|r"},["Recomposed Boots"]={SubType="Cloth",Level=76,id=21648,StackCount=1,Rarity=4,MinLevel=60,SellPrice=44756,Texture=132564,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:21648::::::::40:::::::|h[Recomposed Boots]|h|r"},["Stormcaller's Pauldrons"]={SubType="Mail",Level=78,id=21376,StackCount=1,Rarity=4,MinLevel=60,SellPrice=70861,Texture=135034,Link="|cffa335ee|Hitem:21376::::::::40:::::::|h[Stormcaller's Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Pledge of Friendship: Thunder Bluff"]={SubType="Consumable",Level=1,id=22162,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135449,Link="|cffffffff|Hitem:22162::::::::40:::::::|h[Pledge of Friendship: Thunder Bluff]|h|r",EquipLoc="",Type="Consumable"},["Reinforced Buckler"]={SubType="Shields",Level=33,id=3817,StackCount=1,Rarity=0,MinLevel=28,SellPrice=1585,Texture=134955,Type="Armor",Link="|cff9d9d9d|Hitem:3817::::::::40:::::::|h[Reinforced Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Dizzy's Eye"]={SubType="Quest",Level=1,id=3897,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133884,EquipLoc="",Link="|cffffffff|Hitem:3897::::::::40:::::::|h[Dizzy's Eye]|h|r",Type="Quest"},["Knight-Captain's Dreadweave Leggings"]={SubType="Cloth",Level=63,id=17567,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11860,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:17567::::::::40:::::::|h[Knight-Captain's Dreadweave Leggings]|h|r",Type="Armor"},["Cuirboulli Gloves"]={SubType="Leather",Level=27,id=2145,StackCount=1,Rarity=1,MinLevel=22,SellPrice=529,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2145::::::::40:::::::|h[Cuirboulli Gloves]|h|r"},["Nightslayer Belt"]={SubType="Leather",Level=66,id=16827,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22139,Texture=132512,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16827::::::::40:::::::|h[Nightslayer Belt]|h|r",Type="Armor"},["Scorpashi Shoulder Pads"]={SubType="Leather",Level=47,id=14660,StackCount=1,Rarity=2,MinLevel=42,SellPrice=7063,Texture=135036,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14660::::::::40:::::::|h[Scorpashi Shoulder Pads]|h|r"},["Primalist's Linked Legguards"]={SubType="Mail",Level=75,id=19401,StackCount=1,Rarity=4,MinLevel=60,SellPrice=83116,Texture=134671,Link="|cffa335ee|Hitem:19401::::::::40:::::::|h[Primalist's Linked Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Pattern: Wild Leather Leggings"]={SubType="Leatherworking",Level=50,id=8407,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:8407::::::::40:::::::|h[Pattern: Wild Leather Leggings]|h|r",EquipLoc="",Type="Recipe"},["Soft Banana Bread"]={SubType="Consumable",Level=45,id=4601,StackCount=20,Rarity=1,MinLevel=35,SellPrice=100,Texture=133951,EquipLoc="",Link="|cffffffff|Hitem:4601::::::::40:::::::|h[Soft Banana Bread]|h|r",Type="Consumable"},["Example Collar"]={SubType="Quest",Level=1,id=6658,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132519,Type="Quest",Link="|cffffffff|Hitem:6658::::::::40:::::::|h[Example Collar]|h|r",EquipLoc=""},["Resilient Cord"]={SubType="Cloth",Level=30,id=14406,StackCount=1,Rarity=2,MinLevel=25,SellPrice=935,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14406::::::::40:::::::|h[Resilient Cord]|h|r"},["Patchwork Armor"]={SubType="Cloth",Level=7,id=1433,StackCount=1,Rarity=0,MinLevel=2,SellPrice=14,Texture=135010,EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:1433::::::::40:::::::|h[Patchwork Armor]|h|r",Type="Armor"},["63 Green Warrior Ring"]={SubType="Miscellaneous",Level=63,id=20290,StackCount=1,Rarity=2,MinLevel=58,SellPrice=7888,Texture=133368,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:20290::::::::40:::::::|h[63 Green Warrior Ring]|h|r"},["Belt of the Ordained"]={SubType="Plate",Level=60,id=18702,StackCount=1,Rarity=3,MinLevel=55,SellPrice=9695,Texture=132517,Type="Armor",Link="|cff0070dd|Hitem:18702::::::::40:::::::|h[Belt of the Ordained]|h|r",EquipLoc="INVTYPE_WAIST"},["Excelsior Boots"]={SubType="Leather",Level=41,id=4109,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4393,Texture=132541,Link="|cff1eff00|Hitem:4109::::::::40:::::::|h[Excelsior Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Healing Herb"]={SubType="Consumable",Level=5,id=961,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2,Texture=134181,EquipLoc="",Link="|cffffffff|Hitem:961::::::::40:::::::|h[Healing Herb]|h|r",Type="Consumable"},["[PH] Rising Dawn Coif"]={SubType="Mail",Level=1,id=13793,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133137,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:13793::::::::40:::::::|h[[PH] Rising Dawn Coif]|h|r"},["The Second Troll Legend"]={SubType="Quest",Level=1,id=2006,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,EquipLoc="",Link="|cffffffff|Hitem:2006::::::::40:::::::|h[The Second Troll Legend]|h|r",Type="Quest"},["Deprecated Book of Barkskin"]={SubType="Book",Level=14,id=5146,StackCount=1,Rarity=1,MinLevel=14,SellPrice=325,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:5146::::::::40:::::::|h[Deprecated Book of Barkskin]|h|r",Type="Recipe"},["OLDRecruit's Belt"]={SubType="Miscellaneous",Level=1,id=41,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132494,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:41::::::::40:::::::|h[OLDRecruit's Belt]|h|r",Type="Armor"},["Gaea's Tunic"]={SubType="Cloth",Level=52,id=14277,StackCount=1,Rarity=2,MinLevel=47,SellPrice=10131,Texture=132649,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14277::::::::40:::::::|h[Gaea's Tunic]|h|r"},["Glowing Shadowhide Pendant"]={SubType="Quest",Level=15,id=1962,StackCount=1,Rarity=1,MinLevel=15,SellPrice=0,Texture=133438,Link="|cffffffff|Hitem:1962::::::::40:::::::|h[Glowing Shadowhide Pendant]|h|r",EquipLoc="",Type="Quest"},["Pattern: Raptor Hide Harness"]={SubType="Leatherworking",Level=33,id=13287,StackCount=1,Rarity=2,MinLevel=0,SellPrice=625,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13287::::::::40:::::::|h[Pattern: Raptor Hide Harness]|h|r"},["Bingles' Screwdriver"]={SubType="Quest",Level=1,id=7345,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134428,EquipLoc="",Link="|cffffffff|Hitem:7345::::::::40:::::::|h[Bingles' Screwdriver]|h|r",Type="Quest"},["Clay Scarab"]={SubType="Quest",Level=1,id=20863,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=134931,Link="|cff1eff00|Hitem:20863::::::::40:::::::|h[Clay Scarab]|h|r",EquipLoc="",Type="Quest"},["High Potency Radioactive Fallout"]={SubType="Quest",Level=1,id=9365,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136006,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9365::::::::40:::::::|h[High Potency Radioactive Fallout]|h|r"},["Dire Wolf Fang"]={SubType="Junk",Level=1,id=893,StackCount=10,Rarity=0,MinLevel=0,SellPrice=137,Texture=134298,EquipLoc="",Link="|cff9d9d9d|Hitem:893::::::::40:::::::|h[Dire Wolf Fang]|h|r",Type="Miscellaneous"},["Wicked Mithril Blade"]={SubType="One-Handed Swords",Level=45,id=7943,StackCount=1,Rarity=2,MinLevel=40,SellPrice=15891,Texture=135280,Link="|cff1eff00|Hitem:7943::::::::40:::::::|h[Wicked Mithril Blade]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["90 Green Warrior Ring"]={SubType="Miscellaneous",Level=90,id=20250,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7888,Texture=133368,Link="|cff1eff00|Hitem:20250::::::::40:::::::|h[90 Green Warrior Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Surveyor's Tunic"]={SubType="Leather",Level=48,id=10827,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10238,Texture=132720,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10827::::::::40:::::::|h[Surveyor's Tunic]|h|r",Type="Armor"},["Belt of Transcendence"]={SubType="Cloth",Level=76,id=16925,StackCount=1,Rarity=4,MinLevel=60,SellPrice=30153,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16925::::::::40:::::::|h[Belt of Transcendence]|h|r",Type="Armor"},["Protector Waistband"]={SubType="Mail",Level=50,id=14793,StackCount=1,Rarity=2,MinLevel=45,SellPrice=6985,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14793::::::::40:::::::|h[Protector Waistband]|h|r"},["Emberfury Talisman"]={SubType="Miscellaneous",Level=61,id=12929,StackCount=1,Rarity=3,MinLevel=56,SellPrice=19646,Texture=133292,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:12929::::::::40:::::::|h[Emberfury Talisman]|h|r"},["Bracers of the Eclipse"]={SubType="Leather",Level=62,id=18375,StackCount=1,Rarity=3,MinLevel=57,SellPrice=14329,Texture=132606,Type="Armor",Link="|cff0070dd|Hitem:18375::::::::40:::::::|h[Bracers of the Eclipse]|h|r",EquipLoc="INVTYPE_WRIST"},["Recruit's Boots"]={SubType="Miscellaneous",Level=1,id=40,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132540,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:40::::::::40:::::::|h[Recruit's Boots]|h|r",Type="Armor"},["Black Husk Shield"]={SubType="Shields",Level=24,id=4444,StackCount=1,Rarity=2,MinLevel=19,SellPrice=1490,Texture=134321,Link="|cff1eff00|Hitem:4444::::::::40:::::::|h[Black Husk Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Twilight Robe"]={SubType="Cloth",Level=40,id=7430,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4194,Texture=132666,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:7430::::::::40:::::::|h[Twilight Robe]|h|r"},["Schematic: Snake Burst Firework"]={SubType="Engineering",Level=50,id=19027,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=134939,Link="|cffffffff|Hitem:19027::::::::40:::::::|h[Schematic: Snake Burst Firework]|h|r",EquipLoc="",Type="Recipe"},["Shipment to Galvan"]={SubType="Quest",Level=1,id=10738,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132764,EquipLoc="",Link="|cffffffff|Hitem:10738::::::::40:::::::|h[Shipment to Galvan]|h|r",Type="Quest"},["Commander's Steed"]={SubType="Junk",Level=60,id=16339,StackCount=1,Rarity=1,MinLevel=60,SellPrice=0,Texture=132261,EquipLoc="",Link="|cffffffff|Hitem:16339::::::::40:::::::|h[Commander's Steed]|h|r",Type="Miscellaneous"},["Glowstar Rod"]={SubType="Wands",Level=57,id=15281,StackCount=1,Rarity=2,MinLevel=52,SellPrice=26110,Texture=135147,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15281::::::::40:::::::|h[Glowstar Rod]|h|r",Type="Weapon"},["Augmented Chain Helm"]={SubType="Mail",Level=37,id=3891,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2456,Texture=133071,EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:3891::::::::40:::::::|h[Augmented Chain Helm]|h|r",Type="Armor"},["Venomshroud Orb"]={SubType="Miscellaneous",Level=54,id=15966,StackCount=1,Rarity=2,MinLevel=49,SellPrice=9137,Texture=134125,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15966::::::::40:::::::|h[Venomshroud Orb]|h|r",Type="Armor"},["Leggings of Destruction"]={SubType="Mail",Level=63,id=18524,StackCount=1,Rarity=3,MinLevel=58,SellPrice=35596,Texture=134583,Type="Armor",Link="|cff0070dd|Hitem:18524::::::::40:::::::|h[Leggings of Destruction]|h|r",EquipLoc="INVTYPE_LEGS"},["Pocket Lint"]={SubType="Junk",Level=1,id=5263,StackCount=10,Rarity=0,MinLevel=0,SellPrice=1,Texture=132911,Link="|cff9d9d9d|Hitem:5263::::::::40:::::::|h[Pocket Lint]|h|r",EquipLoc="",Type="Miscellaneous"},["Steadfast Breastplate"]={SubType="Mail",Level=43,id=15591,StackCount=1,Rarity=2,MinLevel=38,SellPrice=8739,Texture=132626,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15591::::::::40:::::::|h[Steadfast Breastplate]|h|r",Type="Armor"},["Bloodlust Buckler"]={SubType="Shields",Level=59,id=14800,StackCount=1,Rarity=2,MinLevel=54,SellPrice=25826,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14800::::::::40:::::::|h[Bloodlust Buckler]|h|r"},["Shadoweave Pants"]={SubType="Cloth",Level=42,id=10002,StackCount=1,Rarity=2,MinLevel=37,SellPrice=5276,Texture=134591,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10002::::::::40:::::::|h[Shadoweave Pants]|h|r",Type="Armor"},["Ritual Candle"]={SubType="Consumable",Level=1,id=12924,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=133752,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12924::::::::40:::::::|h[Ritual Candle]|h|r"},["Calico Tunic"]={SubType="Cloth",Level=13,id=1501,StackCount=1,Rarity=0,MinLevel=8,SellPrice=80,Texture=135020,EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:1501::::::::40:::::::|h[Calico Tunic]|h|r",Type="Armor"},["Pledge of Adoration: Stormwind"]={SubType="Consumable",Level=1,id=21975,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135450,Link="|cffffffff|Hitem:21975::::::::40:::::::|h[Pledge of Adoration: Stormwind]|h|r",EquipLoc="",Type="Consumable"},["Swiftwind"]={SubType="Crossbows",Level=40,id=13038,StackCount=1,Rarity=3,MinLevel=35,SellPrice=9630,Texture=135533,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13038::::::::40:::::::|h[Swiftwind]|h|r"},["Harpy Wing Clipper"]={SubType="One-Handed Swords",Level=11,id=4932,StackCount=1,Rarity=1,MinLevel=0,SellPrice=179,Texture=135274,Type="Weapon",Link="|cffffffff|Hitem:4932::::::::40:::::::|h[Harpy Wing Clipper]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Pattern: Swift Flight Bracers"]={SubType="Leatherworking",Level=62,id=18516,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18516::::::::40:::::::|h[Pattern: Swift Flight Bracers]|h|r",EquipLoc=""},["Monster - Dagger, Alliance PvP"]={SubType="Daggers",Level=1,id=21551,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135638,Link="|cff9d9d9d|Hitem:21551::::::::40:::::::|h[Monster - Dagger, Alliance PvP]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Vanguard Legplates"]={SubType="Plate",Level=57,id=14859,StackCount=1,Rarity=2,MinLevel=52,SellPrice=14820,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14859::::::::40:::::::|h[Vanguard Legplates]|h|r"},["Banded Gauntlets"]={SubType="Mail",Level=31,id=9839,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1426,Texture=132945,Link="|cff1eff00|Hitem:9839::::::::40:::::::|h[Banded Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Embroidered Gloves"]={SubType="Cloth",Level=50,id=2440,StackCount=1,Rarity=1,MinLevel=45,SellPrice=2819,Texture=132952,Type="Armor",Link="|cffffffff|Hitem:2440::::::::40:::::::|h[Embroidered Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Coyote Jawbone"]={SubType="Quest",Level=1,id=6166,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133726,Type="Quest",Link="|cffffffff|Hitem:6166::::::::40:::::::|h[Coyote Jawbone]|h|r",EquipLoc=""},["Rough-hewn Kodo Leggings"]={SubType="Leather",Level=9,id=4970,StackCount=1,Rarity=1,MinLevel=0,SellPrice=54,Texture=134706,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:4970::::::::40:::::::|h[Rough-hewn Kodo Leggings]|h|r"},["Fist of the Damned"]={SubType="One-Handed Maces",Level=54,id=10804,StackCount=1,Rarity=2,MinLevel=49,SellPrice=29551,Texture=133048,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:10804::::::::40:::::::|h[Fist of the Damned]|h|r",Type="Weapon"},["Weegli's Barrel"]={SubType="Consumable",Level=1,id=8493,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132620,Link="|cffffffff|Hitem:8493::::::::40:::::::|h[Weegli's Barrel]|h|r",EquipLoc="",Type="Consumable"},["Sayge's Fortune #5"]={SubType="Junk",Level=1,id=19240,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19240::::::::40:::::::|h[Sayge's Fortune #5]|h|r",EquipLoc="",Type="Miscellaneous"},["Tome of Arcane Missiles V"]={SubType="Book",Level=40,id=8849,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133739,Link="|cffffffff|Hitem:8849::::::::40:::::::|h[Tome of Arcane Missiles V]|h|r",EquipLoc="",Type="Recipe"},["Samophlange Screwdriver"]={SubType="Two-Handed Swords",Level=19,id=11854,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1494,Texture=135356,Type="Weapon",Link="|cff1eff00|Hitem:11854::::::::40:::::::|h[Samophlange Screwdriver]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["90 Epic Rogue Belt"]={SubType="Leather",Level=90,id=20267,StackCount=1,Rarity=4,MinLevel=60,SellPrice=70643,Texture=132492,Link="|cffa335ee|Hitem:20267::::::::40:::::::|h[90 Epic Rogue Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Bloodfang Hood"]={SubType="Leather",Level=76,id=16908,StackCount=1,Rarity=4,MinLevel=60,SellPrice=55707,Texture=133143,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16908::::::::40:::::::|h[Bloodfang Hood]|h|r",Type="Armor"},["Level 65 Test Gear Cloth - Priest"]={SubType="Junk",Level=1,id=17824,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17824::::::::40:::::::|h[Level 65 Test Gear Cloth - Priest]|h|r",Type="Miscellaneous"},["Kayser's Boots of Precision"]={SubType="Cloth",Level=61,id=22231,StackCount=1,Rarity=3,MinLevel=56,SellPrice=16444,Texture=132559,Link="|cff0070dd|Hitem:22231::::::::40:::::::|h[Kayser's Boots of Precision]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Tracker's Cloak"]={SubType="Cloth",Level=43,id=9919,StackCount=1,Rarity=2,MinLevel=38,SellPrice=5149,Texture=133753,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9919::::::::40:::::::|h[Tracker's Cloak]|h|r"},["Dwarven Hatchet"]={SubType="One-Handed Axes",Level=15,id=2073,StackCount=1,Rarity=2,MinLevel=10,SellPrice=742,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:2073::::::::40:::::::|h[Dwarven Hatchet]|h|r"},["Recipe: Elixir of Brute Force"]={SubType="Alchemy",Level=55,id=13481,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3750,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13481::::::::40:::::::|h[Recipe: Elixir of Brute Force]|h|r"},["Ooze-covered Bag"]={SubType="Bag",Level=25,id=3352,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=133642,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:3352::::::::40:::::::|h[Ooze-covered Bag]|h|r",Type="Container"},["Keen Machete"]={SubType="One-Handed Swords",Level=6,id=18610,StackCount=1,Rarity=1,MinLevel=1,SellPrice=36,Texture=135314,Type="Weapon",Link="|cffffffff|Hitem:18610::::::::40:::::::|h[Keen Machete]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Stormpike Soldier's Blood"]={SubType="Quest",Level=1,id=17306,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=134830,EquipLoc="",Link="|cffffffff|Hitem:17306::::::::40:::::::|h[Stormpike Soldier's Blood]|h|r",Type="Quest"},["Thicket Hammer"]={SubType="Two-Handed Maces",Level=11,id=5595,StackCount=1,Rarity=1,MinLevel=0,SellPrice=235,Texture=133052,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:5595::::::::40:::::::|h[Thicket Hammer]|h|r"},["Yeti Hide Bracers"]={SubType="Leather",Level=63,id=19113,StackCount=1,Rarity=3,MinLevel=58,SellPrice=13730,Texture=132607,Link="|cff0070dd|Hitem:19113::::::::40:::::::|h[Yeti Hide Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Aquadynamic Fish Attractor"]={SubType="Devices",Level=30,id=6533,StackCount=20,Rarity=1,MinLevel=0,SellPrice=62,Texture=133982,Link="|cffffffff|Hitem:6533::::::::40:::::::|h[Aquadynamic Fish Attractor]|h|r",EquipLoc="",Type="Trade Goods"},["Lunar Sphere"]={SubType="Miscellaneous",Level=47,id=15981,StackCount=1,Rarity=2,MinLevel=42,SellPrice=7215,Texture=134122,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15981::::::::40:::::::|h[Lunar Sphere]|h|r",Type="Armor"},["Pridelord Pauldrons"]={SubType="Leather",Level=57,id=14678,StackCount=1,Rarity=2,MinLevel=52,SellPrice=13156,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14678::::::::40:::::::|h[Pridelord Pauldrons]|h|r"},["Torch of Austen"]={SubType="Wands",Level=58,id=13004,StackCount=1,Rarity=3,MinLevel=53,SellPrice=33590,Texture=135473,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13004::::::::40:::::::|h[Torch of Austen]|h|r"},["Obsidian Golem Shard"]={SubType="Quest",Level=1,id=7681,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135241,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7681::::::::40:::::::|h[Obsidian Golem Shard]|h|r"},["Netherwind Belt"]={SubType="Cloth",Level=76,id=16818,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27895,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16818::::::::40:::::::|h[Netherwind Belt]|h|r",Type="Armor"},["Schematic: Arcanite Dragonling"]={SubType="Engineering",Level=60,id=16054,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:16054::::::::40:::::::|h[Schematic: Arcanite Dragonling]|h|r",Type="Recipe"},["Draconic Infused Emblem"]={SubType="Miscellaneous",Level=63,id=22268,StackCount=1,Rarity=3,MinLevel=58,SellPrice=66290,Texture=133442,Link="|cff0070dd|Hitem:22268::::::::40:::::::|h[Draconic Infused Emblem]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Green Dragonscale"]={SubType="Junk",Level=50,id=15412,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134313,EquipLoc="",Link="|cffffffff|Hitem:15412::::::::40:::::::|h[Green Dragonscale]|h|r",Type="Miscellaneous"},["Defender Boots"]={SubType="Mail",Level=23,id=6573,StackCount=1,Rarity=2,MinLevel=18,SellPrice=938,Texture=132582,Type="Armor",Link="|cff1eff00|Hitem:6573::::::::40:::::::|h[Defender Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Lieutenant's Insignia"]={SubType="Quest",Level=1,id=14544,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134417,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14544::::::::40:::::::|h[Lieutenant's Insignia]|h|r"},["Twilight Boots"]={SubType="Cloth",Level=37,id=7434,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2536,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7434::::::::40:::::::|h[Twilight Boots]|h|r",Type="Armor"},["Simple Cord"]={SubType="Cloth",Level=12,id=9742,StackCount=1,Rarity=1,MinLevel=7,SellPrice=49,Texture=132491,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:9742::::::::40:::::::|h[Simple Cord]|h|r"},["Dokebi Buckler"]={SubType="Shields",Level=31,id=14608,StackCount=1,Rarity=2,MinLevel=26,SellPrice=3162,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14608::::::::40:::::::|h[Dokebi Buckler]|h|r"},["Blue Power Crystal"]={SubType="Junk",Level=1,id=11184,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=134133,Type="Miscellaneous",Link="|cffffffff|Hitem:11184::::::::40:::::::|h[Blue Power Crystal]|h|r",EquipLoc=""},["Warden's Woolies"]={SubType="Leather",Level=43,id=14605,StackCount=1,Rarity=2,MinLevel=38,SellPrice=6868,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14605::::::::40:::::::|h[Warden's Woolies]|h|r"},["Ragged Leather Vest"]={SubType="Leather",Level=5,id=1364,StackCount=1,Rarity=0,MinLevel=1,SellPrice=8,Texture=135009,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:1364::::::::40:::::::|h[Ragged Leather Vest]|h|r"},["Deprecated Book of Nullify Disease II"]={SubType="Book",Level=24,id=1880,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1250,Texture=133743,Link="|cffffffff|Hitem:1880::::::::40:::::::|h[Deprecated Book of Nullify Disease II]|h|r",EquipLoc="",Type="Recipe"},["Worn Shortbow"]={SubType="Bows",Level=2,id=2504,StackCount=1,Rarity=1,MinLevel=1,SellPrice=5,Texture=135493,EquipLoc="INVTYPE_RANGED",Link="|cffffffff|Hitem:2504::::::::40:::::::|h[Worn Shortbow]|h|r",Type="Weapon"},["Dreamwalker Handguards"]={SubType="Leather",Level=88,id=22493,StackCount=1,Rarity=4,MinLevel=60,SellPrice=67240,Texture=132959,Link="|cffa335ee|Hitem:22493::::::::40:::::::|h[Dreamwalker Handguards]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Recipe: Mighty Troll's Blood Potion"]={SubType="Alchemy",Level=36,id=3831,StackCount=1,Rarity=1,MinLevel=0,SellPrice=550,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:3831::::::::40:::::::|h[Recipe: Mighty Troll's Blood Potion]|h|r",EquipLoc=""},["Angerforge's Battle Axe"]={SubType="Two-Handed Axes",Level=56,id=11816,StackCount=1,Rarity=3,MinLevel=51,SellPrice=48882,Texture=135576,Type="Weapon",Link="|cff0070dd|Hitem:11816::::::::40:::::::|h[Angerforge's Battle Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Scale of Onyxia"]={SubType="Trade Goods",Level=60,id=15410,StackCount=20,Rarity=3,MinLevel=0,SellPrice=5000,Texture=134309,EquipLoc="",Link="|cff0070dd|Hitem:15410::::::::40:::::::|h[Scale of Onyxia]|h|r",Type="Trade Goods"},["Shiny Dirk"]={SubType="Daggers",Level=39,id=3786,StackCount=1,Rarity=0,MinLevel=34,SellPrice=3957,Texture=135637,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:3786::::::::40:::::::|h[Shiny Dirk]|h|r"},["Jewelry Box"]={SubType="Bag",Level=5,id=6756,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1375,Texture=134344,Link="|cffffffff|Hitem:6756::::::::40:::::::|h[Jewelry Box]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Black Dragonscale Breastplate"]={SubType="Mail",Level=58,id=15050,StackCount=1,Rarity=3,MinLevel=53,SellPrice=26071,Texture=132741,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:15050::::::::40:::::::|h[Black Dragonscale Breastplate]|h|r",Type="Armor"},["Raider's Gauntlets"]={SubType="Mail",Level=19,id=9787,StackCount=1,Rarity=2,MinLevel=14,SellPrice=358,Texture=132938,Link="|cff1eff00|Hitem:9787::::::::40:::::::|h[Raider's Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Rain-spotted Cape"]={SubType="Cloth",Level=11,id=5591,StackCount=1,Rarity=1,MinLevel=0,SellPrice=67,Texture=133764,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:5591::::::::40:::::::|h[Rain-spotted Cape]|h|r",Type="Armor"},["Abyssal War Beads"]={SubType="Miscellaneous",Level=63,id=20695,StackCount=1,Rarity=3,MinLevel=58,SellPrice=36253,Texture=133291,Link="|cff0070dd|Hitem:20695::::::::40:::::::|h[Abyssal War Beads]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["90 Green Frost Robes"]={SubType="Cloth",Level=90,id=20347,StackCount=1,Rarity=2,MinLevel=60,SellPrice=72499,Texture=132666,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:20347::::::::40:::::::|h[90 Green Frost Robes]|h|r"},["Cabalist Boots"]={SubType="Leather",Level=46,id=7531,StackCount=1,Rarity=2,MinLevel=41,SellPrice=6434,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7531::::::::40:::::::|h[Cabalist Boots]|h|r",Type="Armor"},["Scalemail Belt"]={SubType="Mail",Level=22,id=1853,StackCount=1,Rarity=1,MinLevel=17,SellPrice=338,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:1853::::::::40:::::::|h[Scalemail Belt]|h|r",Type="Armor"},["Hallowed Sigil"]={SubType="Quest",Level=1,id=9557,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134415,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9557::::::::40:::::::|h[Hallowed Sigil]|h|r"},["Brewing Rod"]={SubType="Staves",Level=25,id=3738,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3439,Texture=135466,Link="|cff1eff00|Hitem:3738::::::::40:::::::|h[Brewing Rod]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Regal Gloves"]={SubType="Cloth",Level=42,id=7471,StackCount=1,Rarity=2,MinLevel=37,SellPrice=2455,Texture=132966,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7471::::::::40:::::::|h[Regal Gloves]|h|r"},["Warlord's Plate Shoulders"]={SubType="Plate",Level=74,id=16544,StackCount=1,Rarity=4,MinLevel=60,SellPrice=19850,Texture=135042,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16544::::::::40:::::::|h[Warlord's Plate Shoulders]|h|r",Type="Armor"},["Test Arcane Res Feet Mail"]={SubType="Mail",Level=35,id=16157,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3118,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:16157::::::::40:::::::|h[Test Arcane Res Feet Mail]|h|r",Type="Armor"},["Everwarm Handwraps"]={SubType="Cloth",Level=48,id=19123,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4114,Texture=132953,Link="|cff1eff00|Hitem:19123::::::::40:::::::|h[Everwarm Handwraps]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Glyphed Boots"]={SubType="Leather",Level=39,id=6420,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3739,Texture=132542,Type="Armor",Link="|cff1eff00|Hitem:6420::::::::40:::::::|h[Glyphed Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Field Marshal's Leather Chestpiece"]={SubType="Leather",Level=74,id=16453,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33324,Texture=132648,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16453::::::::40:::::::|h[Field Marshal's Leather Chestpiece]|h|r",Type="Armor"},["63 Green Rogue Boots"]={SubType="Leather",Level=63,id=20312,StackCount=1,Rarity=2,MinLevel=58,SellPrice=18541,Texture=132542,Link="|cff1eff00|Hitem:20312::::::::40:::::::|h[63 Green Rogue Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Chimeric Gloves"]={SubType="Leather",Level=53,id=15074,StackCount=1,Rarity=2,MinLevel=48,SellPrice=6867,Texture=132957,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15074::::::::40:::::::|h[Chimeric Gloves]|h|r",Type="Armor"},["Immature Venom Sac"]={SubType="Consumable",Level=50,id=12586,StackCount=50,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12586::::::::40:::::::|h[Immature Venom Sac]|h|r"},["Olmann Sewar"]={SubType="One-Handed Swords",Level=41,id=4116,StackCount=1,Rarity=2,MinLevel=0,SellPrice=12337,Texture=135343,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:4116::::::::40:::::::|h[Olmann Sewar]|h|r"},["Heavy Leather Ball"]={SubType="Consumable",Level=1,id=18662,StackCount=5,Rarity=1,MinLevel=1,SellPrice=5,Texture=134480,Type="Consumable",Link="|cffffffff|Hitem:18662::::::::40:::::::|h[Heavy Leather Ball]|h|r",EquipLoc=""},["Hi-Impact Mithril Slugs"]={SubType="Bullet",Level=42,id=10512,StackCount=200,Rarity=2,MinLevel=37,SellPrice=2,Texture=132383,EquipLoc="INVTYPE_AMMO",Link="|cff1eff00|Hitem:10512::::::::40:::::::|h[Hi-Impact Mithril Slugs]|h|r",Type="Projectile"},["Level 60 Test Gear Plate - Paladin/Warrior"]={SubType="Junk",Level=1,id=13684,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13684::::::::40:::::::|h[Level 60 Test Gear Plate - Paladin/Warrior]|h|r"},["Lesser Arcanum of Resilience"]={SubType="Quest",Level=50,id=11644,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134073,Type="Quest",Link="|cff1eff00|Hitem:11644::::::::40:::::::|h[Lesser Arcanum of Resilience]|h|r",EquipLoc=""},["Solid Shot"]={SubType="Bullet",Level=30,id=3033,StackCount=200,Rarity=1,MinLevel=25,SellPrice=0,Texture=132384,Type="Projectile",EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:3033::::::::40:::::::|h[Solid Shot]|h|r"},["Fire Striders"]={SubType="Cloth",Level=63,id=13369,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17526,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13369::::::::40:::::::|h[Fire Striders]|h|r"},["Canvas Belt"]={SubType="Cloth",Level=18,id=3376,StackCount=1,Rarity=0,MinLevel=13,SellPrice=86,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:3376::::::::40:::::::|h[Canvas Belt]|h|r",Type="Armor"},["Elemental Raiment"]={SubType="Cloth",Level=41,id=9434,StackCount=1,Rarity=3,MinLevel=36,SellPrice=5648,Texture=132718,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:9434::::::::40:::::::|h[Elemental Raiment]|h|r"},["Deprecated Wristguards of the Fen Warden"]={SubType="Cloth",Level=23,id=1392,StackCount=1,Rarity=0,MinLevel=0,SellPrice=176,Texture=132611,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:1392::::::::40:::::::|h[Deprecated Wristguards of the Fen Warden]|h|r"},["Resplendent Epaulets"]={SubType="Cloth",Level=61,id=14325,StackCount=1,Rarity=2,MinLevel=56,SellPrice=13204,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14325::::::::40:::::::|h[Resplendent Epaulets]|h|r"},["Pattern: White Wedding Dress"]={SubType="Tailoring",Level=50,id=10325,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10325::::::::40:::::::|h[Pattern: White Wedding Dress]|h|r",Type="Recipe"},["Test Fire Sword"]={SubType="One-Handed Swords",Level=1,id=788,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3,Texture=135323,Type="Weapon",Link="|cffffffff|Hitem:788::::::::40:::::::|h[Test Fire Sword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Shimmering Platinum Warhammer"]={SubType="Two-Handed Maces",Level=63,id=15418,StackCount=1,Rarity=3,MinLevel=0,SellPrice=73597,Texture=133044,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:15418::::::::40:::::::|h[Shimmering Platinum Warhammer]|h|r",Type="Weapon"},["Bloodtinged Kilt"]={SubType="Cloth",Level=71,id=19895,StackCount=1,Rarity=3,MinLevel=60,SellPrice=34428,Texture=134608,Link="|cff0070dd|Hitem:19895::::::::40:::::::|h[Bloodtinged Kilt]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Zinge's Purchase Order"]={SubType="Quest",Level=1,id=8525,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:8525::::::::40:::::::|h[Zinge's Purchase Order]|h|r",EquipLoc="",Type="Quest"},["Petrified Bark Shield"]={SubType="Shields",Level=61,id=18352,StackCount=1,Rarity=2,MinLevel=56,SellPrice=28072,Texture=134964,Type="Armor",Link="|cff1eff00|Hitem:18352::::::::40:::::::|h[Petrified Bark Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Traveler's Belt"]={SubType="Leather",Level=56,id=8293,StackCount=1,Rarity=2,MinLevel=51,SellPrice=8542,Texture=132501,Link="|cff1eff00|Hitem:8293::::::::40:::::::|h[Traveler's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Eric Test Item A"]={SubType="Consumable",Level=1,id=17162,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132381,EquipLoc="",Link="|cffffffff|Hitem:17162::::::::40:::::::|h[Eric Test Item A]|h|r",Type="Consumable"},["Tome of Frost Armor III"]={SubType="Book",Level=20,id=5648,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133739,Link="|cffffffff|Hitem:5648::::::::40:::::::|h[Tome of Frost Armor III]|h|r",EquipLoc="",Type="Recipe"},["Journeyman's Gloves"]={SubType="Cloth",Level=9,id=2960,StackCount=1,Rarity=1,MinLevel=4,SellPrice=21,Texture=132955,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2960::::::::40:::::::|h[Journeyman's Gloves]|h|r",Type="Armor"},["Awbee's Scale"]={SubType="Quest",Level=1,id=12923,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134312,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12923::::::::40:::::::|h[Awbee's Scale]|h|r"},["Grimoire of Firebolt (Rank 4)"]={SubType="Book",Level=28,id=16317,StackCount=1,Rarity=1,MinLevel=28,SellPrice=1250,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16317::::::::40:::::::|h[Grimoire of Firebolt (Rank 4)]|h|r",Type="Recipe"},["Thick Scale Shoulder Pads"]={SubType="Mail",Level=34,id=15553,StackCount=1,Rarity=2,MinLevel=29,SellPrice=3061,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15553::::::::40:::::::|h[Thick Scale Shoulder Pads]|h|r",Type="Armor"},["Ritual Gloves"]={SubType="Cloth",Level=20,id=14124,StackCount=1,Rarity=2,MinLevel=15,SellPrice=292,Texture=132952,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14124::::::::40:::::::|h[Ritual Gloves]|h|r"},["Atal'ai Breastplate"]={SubType="Mail",Level=52,id=10784,StackCount=1,Rarity=3,MinLevel=47,SellPrice=18432,Texture=132627,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:10784::::::::40:::::::|h[Atal'ai Breastplate]|h|r",Type="Armor"},["Durable Pants"]={SubType="Cloth",Level=33,id=9825,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2355,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9825::::::::40:::::::|h[Durable Pants]|h|r"},["Pattern: Cloak of Fire"]={SubType="Tailoring",Level=55,id=14486,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:14486::::::::40:::::::|h[Pattern: Cloak of Fire]|h|r"},["90 Green Rogue Boots"]={SubType="Leather",Level=90,id=20298,StackCount=1,Rarity=2,MinLevel=60,SellPrice=63984,Texture=132542,Link="|cff1eff00|Hitem:20298::::::::40:::::::|h[90 Green Rogue Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Silver Rod"]={SubType="Trade Goods",Level=20,id=6338,StackCount=1,Rarity=1,MinLevel=0,SellPrice=125,Texture=135138,Type="Trade Goods",Link="|cffffffff|Hitem:6338::::::::40:::::::|h[Silver Rod]|h|r",EquipLoc=""},["Mithril Heavy-bore Rifle"]={SubType="Guns",Level=44,id=10510,StackCount=1,Rarity=2,MinLevel=39,SellPrice=11369,Texture=135616,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:10510::::::::40:::::::|h[Mithril Heavy-bore Rifle]|h|r",Type="Weapon"},["Nat Pagle's Extreme Angler FC-5000"]={SubType="Fishing Pole",Level=50,id=19022,StackCount=1,Rarity=2,MinLevel=0,SellPrice=28580,Texture=132931,Link="|cff1eff00|Hitem:19022::::::::40:::::::|h[Nat Pagle's Extreme Angler FC-5000]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Feralheart Kilt"]={SubType="Leather",Level=66,id=22111,StackCount=1,Rarity=3,MinLevel=0,SellPrice=33239,Texture=134588,Link="|cff0070dd|Hitem:22111::::::::40:::::::|h[Feralheart Kilt]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Seer's Pants"]={SubType="Cloth",Level=20,id=2982,StackCount=1,Rarity=2,MinLevel=15,SellPrice=565,Texture=134581,Type="Armor",Link="|cff1eff00|Hitem:2982::::::::40:::::::|h[Seer's Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["[PH] Brilliant Dawn Gloves"]={SubType="Cloth",Level=100,id=13727,StackCount=1,Rarity=1,MinLevel=100,SellPrice=36324,Texture=132950,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:13727::::::::40:::::::|h[[PH] Brilliant Dawn Gloves]|h|r"},["Formula: Enchant Gloves - Greater Strength"]={SubType="Enchanting",Level=59,id=16244,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16244::::::::40:::::::|h[Formula: Enchant Gloves - Greater Strength]|h|r",Type="Recipe"},["Pattern: Devilsaur Gauntlets"]={SubType="Leatherworking",Level=58,id=15758,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5500,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15758::::::::40:::::::|h[Pattern: Devilsaur Gauntlets]|h|r",Type="Recipe"},["Southwind Helm"]={SubType="Leather",Level=74,id=21455,StackCount=1,Rarity=3,MinLevel=60,SellPrice=37098,Texture=133069,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:21455::::::::40:::::::|h[Southwind Helm]|h|r"},["Vanguard Shield"]={SubType="Shields",Level=59,id=15890,StackCount=1,Rarity=2,MinLevel=54,SellPrice=25831,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15890::::::::40:::::::|h[Vanguard Shield]|h|r",Type="Armor"},["Runed Ring"]={SubType="Miscellaneous",Level=50,id=862,StackCount=1,Rarity=3,MinLevel=45,SellPrice=38222,Texture=132523,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:862::::::::40:::::::|h[Runed Ring]|h|r"},["Tome of Arcane Missiles VIII"]={SubType="Book",Level=60,id=21280,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133739,Link="|cff0070dd|Hitem:21280::::::::40:::::::|h[Tome of Arcane Missiles VIII]|h|r",EquipLoc="",Type="Recipe"},["Formula: Enchant Gloves - Greater Agility"]={SubType="Enchanting",Level=54,id=16219,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3500,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16219::::::::40:::::::|h[Formula: Enchant Gloves - Greater Agility]|h|r",Type="Recipe"},["Dusty Mining Gloves"]={SubType="Leather",Level=18,id=2036,StackCount=1,Rarity=2,MinLevel=0,SellPrice=258,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:2036::::::::40:::::::|h[Dusty Mining Gloves]|h|r"},["Duskbat Pelt"]={SubType="Quest",Level=1,id=2876,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134355,Type="Quest",Link="|cffffffff|Hitem:2876::::::::40:::::::|h[Duskbat Pelt]|h|r",EquipLoc=""},["Eye of Moam"]={SubType="Miscellaneous",Level=74,id=21473,StackCount=1,Rarity=3,MinLevel=60,SellPrice=82878,Texture=133884,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:21473::::::::40:::::::|h[Eye of Moam]|h|r"},["Vanquisher's Sword"]={SubType="One-Handed Swords",Level=44,id=10823,StackCount=1,Rarity=3,MinLevel=0,SellPrice=17796,Texture=135345,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:10823::::::::40:::::::|h[Vanquisher's Sword]|h|r",Type="Weapon"},["Grimoire of Soul Funnel IV"]={SubType="Book",Level=36,id=4217,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4217::::::::40:::::::|h[Grimoire of Soul Funnel IV]|h|r"},["Book of Rejuvenation IV"]={SubType="Book",Level=22,id=3088,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133743,Type="Recipe",Link="|cffffffff|Hitem:3088::::::::40:::::::|h[Book of Rejuvenation IV]|h|r",EquipLoc=""},["Regal Star"]={SubType="Miscellaneous",Level=45,id=7555,StackCount=1,Rarity=2,MinLevel=40,SellPrice=7123,Texture=135464,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:7555::::::::40:::::::|h[Regal Star]|h|r"},["Cannonball Runner"]={SubType="Miscellaneous",Level=61,id=13382,StackCount=1,Rarity=3,MinLevel=56,SellPrice=10850,Texture=133712,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:13382::::::::40:::::::|h[Cannonball Runner]|h|r"},["Glorious Shoulder Pads"]={SubType="Plate",Level=57,id=14971,StackCount=1,Rarity=2,MinLevel=52,SellPrice=11076,Texture=135051,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14971::::::::40:::::::|h[Glorious Shoulder Pads]|h|r"},["Instant Poison III"]={SubType="Consumable",Level=36,id=6950,StackCount=20,Rarity=1,MinLevel=36,SellPrice=30,Texture=132273,Link="|cffffffff|Hitem:6950::::::::40:::::::|h[Instant Poison III]|h|r",EquipLoc="",Type="Consumable"},["Deprecated Capstone"]={SubType="Miscellaneous",Level=40,id=1403,StackCount=1,Rarity=1,MinLevel=35,SellPrice=175,Texture=134414,Type="Armor",Link="|cffffffff|Hitem:1403::::::::40:::::::|h[Deprecated Capstone]|h|r",EquipLoc="INVTYPE_TRINKET"},["Blight"]={SubType="Polearms",Level=50,id=7959,StackCount=1,Rarity=3,MinLevel=45,SellPrice=33857,Texture=135130,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:7959::::::::40:::::::|h[Blight]|h|r"},["Bandit Shoulders"]={SubType="Leather",Level=22,id=10405,StackCount=1,Rarity=1,MinLevel=17,SellPrice=409,Texture=135058,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:10405::::::::40:::::::|h[Bandit Shoulders]|h|r",Type="Armor"},["Trapper's Boots"]={SubType="Miscellaneous",Level=1,id=6127,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132540,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:6127::::::::40:::::::|h[Trapper's Boots]|h|r"},["Sapper's Gloves"]={SubType="Mail",Level=17,id=2274,StackCount=1,Rarity=2,MinLevel=12,SellPrice=289,Texture=132937,Link="|cff1eff00|Hitem:2274::::::::40:::::::|h[Sapper's Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Five of Warlords"]={SubType="Junk",Level=1,id=19262,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134497,Link="|cff0070dd|Hitem:19262::::::::40:::::::|h[Five of Warlords]|h|r",EquipLoc="",Type="Miscellaneous"},["Bloodsail Charts"]={SubType="Quest",Level=1,id=3920,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134269,EquipLoc="",Link="|cffffffff|Hitem:3920::::::::40:::::::|h[Bloodsail Charts]|h|r",Type="Quest"},["Yorgen Bracers"]={SubType="Mail",Level=27,id=13012,StackCount=1,Rarity=3,MinLevel=22,SellPrice=1241,Texture=132601,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13012::::::::40:::::::|h[Yorgen Bracers]|h|r"},["90 Epic Warrior Pauldrons"]={SubType="Plate",Level=90,id=20140,StackCount=1,Rarity=4,MinLevel=60,SellPrice=88950,Texture=135046,Link="|cffa335ee|Hitem:20140::::::::40:::::::|h[90 Epic Warrior Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Codex of Sleep III"]={SubType="Book",Level=40,id=4283,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133741,Link="|cffffffff|Hitem:4283::::::::40:::::::|h[Codex of Sleep III]|h|r",EquipLoc="",Type="Recipe"},["Instant Poison IV"]={SubType="Consumable",Level=44,id=8926,StackCount=20,Rarity=1,MinLevel=44,SellPrice=75,Texture=132273,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8926::::::::40:::::::|h[Instant Poison IV]|h|r"},["Hinterlands Honey Ripple"]={SubType="Quest",Level=1,id=8684,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132797,Link="|cffffffff|Hitem:8684::::::::40:::::::|h[Hinterlands Honey Ripple]|h|r",EquipLoc="",Type="Quest"},["Marshal's Leather Handgrips"]={SubType="Leather",Level=71,id=16454,StackCount=1,Rarity=4,MinLevel=60,SellPrice=14444,Texture=132955,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16454::::::::40:::::::|h[Marshal's Leather Handgrips]|h|r",Type="Armor"},["QAEnchant Gloves +1% Haste"]={SubType="Consumable",Level=1,id=17899,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17899::::::::40:::::::|h[QAEnchant Gloves +1% Haste]|h|r",Type="Consumable"},["Heart of Noxxion"]={SubType="Miscellaneous",Level=51,id=17744,StackCount=1,Rarity=3,MinLevel=46,SellPrice=9031,Texture=134125,EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:17744::::::::40:::::::|h[Heart of Noxxion]|h|r",Type="Armor"},["Blood Guard's Dragonhide Boots"]={SubType="Leather",Level=63,id=16494,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11282,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16494::::::::40:::::::|h[Blood Guard's Dragonhide Boots]|h|r",Type="Armor"},["Thick Furry Mane"]={SubType="Junk",Level=1,id=4583,StackCount=5,Rarity=0,MinLevel=0,SellPrice=812,Texture=134353,Link="|cff9d9d9d|Hitem:4583::::::::40:::::::|h[Thick Furry Mane]|h|r",EquipLoc="",Type="Miscellaneous"},["Deathbone Legguards"]={SubType="Plate",Level=61,id=14623,StackCount=1,Rarity=3,MinLevel=56,SellPrice=20503,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:14623::::::::40:::::::|h[Deathbone Legguards]|h|r"},["Monster - Mace, Maul B03 Red"]={SubType="One-Handed Maces",Level=1,id=12934,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12934::::::::40:::::::|h[Monster - Mace, Maul B03 Red]|h|r"},["Proxy of Nozdormu"]={SubType="Junk",Level=60,id=20403,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=135971,Link="|cff1eff00|Hitem:20403::::::::40:::::::|h[Proxy of Nozdormu]|h|r",EquipLoc="",Type="Miscellaneous"},["Ebonhold Helmet"]={SubType="Mail",Level=55,id=8270,StackCount=1,Rarity=2,MinLevel=50,SellPrice=14351,Texture=133074,Link="|cff1eff00|Hitem:8270::::::::40:::::::|h[Ebonhold Helmet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Pridemail Leggings"]={SubType="Mail",Level=60,id=12105,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25144,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:12105::::::::40:::::::|h[Pridemail Leggings]|h|r"},["Embroidered Armor"]={SubType="Cloth",Level=50,id=2435,StackCount=1,Rarity=1,MinLevel=45,SellPrice=5536,Texture=135021,Type="Armor",Link="|cffffffff|Hitem:2435::::::::40:::::::|h[Embroidered Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Tome of Khadgar's Unlocking II"]={SubType="Book",Level=30,id=1567,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:1567::::::::40:::::::|h[Tome of Khadgar's Unlocking II]|h|r",EquipLoc=""},["Scarab Plate Helm"]={SubType="Plate",Level=60,id=18480,StackCount=1,Rarity=2,MinLevel=55,SellPrice=11860,Texture=133125,Type="Armor",Link="|cff1eff00|Hitem:18480::::::::40:::::::|h[Scarab Plate Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Linken's Boomerang"]={SubType="Miscellaneous",Level=56,id=11905,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6203,Texture=135646,Type="Armor",Link="|cff1eff00|Hitem:11905::::::::40:::::::|h[Linken's Boomerang]|h|r",EquipLoc="INVTYPE_TRINKET"},["Pattern: Wicked Leather Armor"]={SubType="Leatherworking",Level=61,id=15773,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15773::::::::40:::::::|h[Pattern: Wicked Leather Armor]|h|r",Type="Recipe"},["Harness: Black Ram"]={SubType="Junk",Level=40,id=5874,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132248,Link="|cffffffff|Hitem:5874::::::::40:::::::|h[Harness: Black Ram]|h|r",EquipLoc="",Type="Miscellaneous"},["Logistics Task Briefing III"]={SubType="Quest",Level=60,id=20940,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:20940::::::::40:::::::|h[Logistics Task Briefing III]|h|r",EquipLoc="",Type="Quest"},["Monster - Item, Glass - Clear"]={SubType="Miscellaneous",Level=1,id=2718,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134400,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2718::::::::40:::::::|h[Monster - Item, Glass - Clear]|h|r"},["Monster - Item, Potion Blue Offhand"]={SubType="Miscellaneous",Level=1,id=3697,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134718,Link="|cff9d9d9d|Hitem:3697::::::::40:::::::|h[Monster - Item, Potion Blue Offhand]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Common White Shirt"]={SubType="Miscellaneous",Level=20,id=16060,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=135030,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:16060::::::::40:::::::|h[Common White Shirt]|h|r",Type="Armor"},["Canvas Pants"]={SubType="Cloth",Level=20,id=1768,StackCount=1,Rarity=0,MinLevel=15,SellPrice=217,Texture=134589,Link="|cff9d9d9d|Hitem:1768::::::::40:::::::|h[Canvas Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Hero's Pauldrons"]={SubType="Mail",Level=60,id=8310,StackCount=1,Rarity=2,MinLevel=55,SellPrice=19419,Texture=135054,Link="|cff1eff00|Hitem:8310::::::::40:::::::|h[Hero's Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Lunar Festival Invitation"]={SubType="Consumable",Level=55,id=21711,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134941,Link="|cffffffff|Hitem:21711::::::::40:::::::|h[Lunar Festival Invitation]|h|r",EquipLoc="",Type="Consumable"},["Thurman's Letter"]={SubType="Quest",Level=1,id=2837,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2837::::::::40:::::::|h[Thurman's Letter]|h|r"},["Bone Slicing Hatchet"]={SubType="One-Handed Axes",Level=62,id=18737,StackCount=1,Rarity=3,MinLevel=57,SellPrice=52427,Texture=132402,Type="Weapon",Link="|cff0070dd|Hitem:18737::::::::40:::::::|h[Bone Slicing Hatchet]|h|r",EquipLoc="INVTYPE_WEAPON"},["Enduring Breastplate"]={SubType="Mail",Level=39,id=14760,StackCount=1,Rarity=2,MinLevel=34,SellPrice=6263,Texture=132637,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14760::::::::40:::::::|h[Enduring Breastplate]|h|r"},["Heavy Shot"]={SubType="Bullet",Level=15,id=2519,StackCount=200,Rarity=1,MinLevel=10,SellPrice=0,Texture=132384,Type="Projectile",EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:2519::::::::40:::::::|h[Heavy Shot]|h|r"},["Verna's Westfall Stew Recipe"]={SubType="Quest",Level=1,id=2832,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:2832::::::::40:::::::|h[Verna's Westfall Stew Recipe]|h|r",EquipLoc="",Type="Quest"},["Nimboya's Laden Pike"]={SubType="Consumable",Level=1,id=9319,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135125,Link="|cffffffff|Hitem:9319::::::::40:::::::|h[Nimboya's Laden Pike]|h|r",EquipLoc="",Type="Consumable"},["Manacle Cuffs"]={SubType="Cloth",Level=55,id=11962,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7939,Texture=132612,Type="Armor",Link="|cff0070dd|Hitem:11962::::::::40:::::::|h[Manacle Cuffs]|h|r",EquipLoc="INVTYPE_WRIST"},["Pioneer Gloves"]={SubType="Leather",Level=11,id=6521,StackCount=1,Rarity=1,MinLevel=6,SellPrice=47,Texture=132939,Type="Armor",Link="|cffffffff|Hitem:6521::::::::40:::::::|h[Pioneer Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Coarse Grinding Stone"]={SubType="Trade Goods",Level=20,id=3478,StackCount=20,Rarity=1,MinLevel=0,SellPrice=10,Texture=135244,Type="Trade Goods",Link="|cffffffff|Hitem:3478::::::::40:::::::|h[Coarse Grinding Stone]|h|r",EquipLoc=""},["Harvest Fish"]={SubType="Consumable",Level=55,id=19996,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133905,Link="|cffffffff|Hitem:19996::::::::40:::::::|h[Harvest Fish]|h|r",EquipLoc="",Type="Consumable"},["Deprecated Mantle of Nobility"]={SubType="Cloth",Level=18,id=3219,StackCount=1,Rarity=0,MinLevel=13,SellPrice=124,Texture=135040,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3219::::::::40:::::::|h[Deprecated Mantle of Nobility]|h|r"},["Gem of Pythas"]={SubType="Quest",Level=1,id=9740,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134134,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9740::::::::40:::::::|h[Gem of Pythas]|h|r"},["Tome of Fire Ward V"]={SubType="Book",Level=60,id=8897,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133739,Link="|cffffffff|Hitem:8897::::::::40:::::::|h[Tome of Fire Ward V]|h|r",EquipLoc="",Type="Recipe"},["Sandstalker Gauntlets"]={SubType="Mail",Level=62,id=20477,StackCount=1,Rarity=3,MinLevel=57,SellPrice=16898,Texture=132945,Link="|cff0070dd|Hitem:20477::::::::40:::::::|h[Sandstalker Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["White Bone Shredder"]={SubType="Fist Weapons",Level=52,id=11863,StackCount=1,Rarity=2,MinLevel=0,SellPrice=27191,Texture=132369,Type="Weapon",Link="|cff1eff00|Hitem:11863::::::::40:::::::|h[White Bone Shredder]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND"},["Healthy Dragon Scale"]={SubType="Quest",Level=55,id=13920,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134319,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13920::::::::40:::::::|h[Healthy Dragon Scale]|h|r"},["Pattern: Felcloth Pants"]={SubType="Tailoring",Level=55,id=14483,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:14483::::::::40:::::::|h[Pattern: Felcloth Pants]|h|r"},["Plans: Golden Scale Coif"]={SubType="Blacksmithing",Level=38,id=6047,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1100,Texture=134939,Link="|cffffffff|Hitem:6047::::::::40:::::::|h[Plans: Golden Scale Coif]|h|r",EquipLoc="",Type="Recipe"},["Workshop Key"]={SubType="Key",Level=0,id=6893,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134240,Link="|cffffffff|Hitem:6893::::::::40:::::::|h[Workshop Key]|h|r",EquipLoc="",Type="Key"},["Linen Bag"]={SubType="Bag",Level=5,id=4238,StackCount=1,Rarity=1,MinLevel=0,SellPrice=200,Texture=133622,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:4238::::::::40:::::::|h[Linen Bag]|h|r",Type="Container"},["Merciless Epaulets"]={SubType="Mail",Level=54,id=15656,StackCount=1,Rarity=2,MinLevel=49,SellPrice=13366,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15656::::::::40:::::::|h[Merciless Epaulets]|h|r",Type="Armor"},["Deprecated Winter Mail Bracers"]={SubType="Mail",Level=25,id=3215,StackCount=1,Rarity=0,MinLevel=20,SellPrice=341,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:3215::::::::40:::::::|h[Deprecated Winter Mail Bracers]|h|r"},["Mux's Quality Goods"]={SubType="Junk",Level=1,id=22320,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133645,Link="|cffffffff|Hitem:22320::::::::40:::::::|h[Mux's Quality Goods]|h|r",EquipLoc="",Type="Miscellaneous"},["Wizards' Reagents"]={SubType="Quest",Level=1,id=6170,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133640,Link="|cffffffff|Hitem:6170::::::::40:::::::|h[Wizards' Reagents]|h|r",EquipLoc="",Type="Quest"},["Leather Helmet A (test)"]={SubType="Leather",Level=1,id=1021,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133072,Type="Armor",Link="|cffffffff|Hitem:1021::::::::40:::::::|h[Leather Helmet A (test)]|h|r",EquipLoc="INVTYPE_HEAD"},["Deprecated Dwarven Apprentice Pants"]={SubType="Cloth",Level=1,id=113,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:113::::::::40:::::::|h[Deprecated Dwarven Apprentice Pants]|h|r",Type="Armor"},["Some Rune"]={SubType="Quest",Level=1,id=13815,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134418,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13815::::::::40:::::::|h[Some Rune]|h|r"},["Codex of Shadow Word: Pain V"]={SubType="Book",Level=34,id=4279,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4279::::::::40:::::::|h[Codex of Shadow Word: Pain V]|h|r"},["Gossamer Shoulderpads"]={SubType="Cloth",Level=46,id=7523,StackCount=1,Rarity=2,MinLevel=41,SellPrice=4993,Texture=135033,Link="|cff1eff00|Hitem:7523::::::::40:::::::|h[Gossamer Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Primal Cape"]={SubType="Cloth",Level=8,id=15007,StackCount=1,Rarity=1,MinLevel=3,SellPrice=24,Texture=133755,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:15007::::::::40:::::::|h[Primal Cape]|h|r",Type="Armor"},["Noosegrip Gauntlets"]={SubType="Mail",Level=14,id=15402,StackCount=1,Rarity=1,MinLevel=0,SellPrice=109,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:15402::::::::40:::::::|h[Noosegrip Gauntlets]|h|r",Type="Armor"},["Darnassus Marzipan"]={SubType="Quest",Level=1,id=20496,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133985,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:20496::::::::40:::::::|h[Darnassus Marzipan]|h|r"},["Blackened Defias Belt"]={SubType="Leather",Level=22,id=10403,StackCount=1,Rarity=2,MinLevel=17,SellPrice=451,Texture=132515,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10403::::::::40:::::::|h[Blackened Defias Belt]|h|r",Type="Armor"},["Crude Bastard Sword"]={SubType="Two-Handed Swords",Level=7,id=1412,StackCount=1,Rarity=0,MinLevel=2,SellPrice=49,Texture=135276,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1412::::::::40:::::::|h[Crude Bastard Sword]|h|r",Type="Weapon"},["Mortar and Pestle"]={SubType="Quest",Level=1,id=15454,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133748,EquipLoc="",Link="|cffffffff|Hitem:15454::::::::40:::::::|h[Mortar and Pestle]|h|r",Type="Quest"},["Monster - Staff, Jeweled Yellow Staff w/Low Purple Glow"]={SubType="Staves",Level=1,id=20718,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Link="|cff9d9d9d|Hitem:20718::::::::40:::::::|h[Monster - Staff, Jeweled Yellow Staff w/Low Purple Glow]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Ebonhold Armor"]={SubType="Mail",Level=56,id=8265,StackCount=1,Rarity=2,MinLevel=51,SellPrice=19914,Texture=132639,Link="|cff1eff00|Hitem:8265::::::::40:::::::|h[Ebonhold Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Anvilmar Sledge"]={SubType="Two-Handed Maces",Level=5,id=5761,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30,Texture=133052,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:5761::::::::40:::::::|h[Anvilmar Sledge]|h|r",Type="Weapon"},["Breastplate of Might"]={SubType="Plate",Level=66,id=16865,StackCount=1,Rarity=4,MinLevel=60,SellPrice=36095,Texture=132751,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16865::::::::40:::::::|h[Breastplate of Might]|h|r",Type="Armor"},["Elven Gem"]={SubType="Quest",Level=1,id=4492,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134117,EquipLoc="",Link="|cffffffff|Hitem:4492::::::::40:::::::|h[Elven Gem]|h|r",Type="Quest"},["Cutthroat's Pants"]={SubType="Leather",Level=33,id=15139,StackCount=1,Rarity=2,MinLevel=28,SellPrice=3055,Texture=134587,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15139::::::::40:::::::|h[Cutthroat's Pants]|h|r",Type="Armor"},["Black Dragonscale Leggings"]={SubType="Mail",Level=62,id=15052,StackCount=1,Rarity=3,MinLevel=57,SellPrice=31933,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:15052::::::::40:::::::|h[Black Dragonscale Leggings]|h|r",Type="Armor"},["Lofty Sabatons"]={SubType="Plate",Level=53,id=14922,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8273,Texture=132592,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14922::::::::40:::::::|h[Lofty Sabatons]|h|r"},["Inferno Robe"]={SubType="Cloth",Level=40,id=2231,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4386,Texture=132666,Type="Armor",Link="|cff1eff00|Hitem:2231::::::::40:::::::|h[Inferno Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Moss-twined Heart"]={SubType="Quest",Level=5,id=5179,StackCount=1,Rarity=1,MinLevel=5,SellPrice=0,Texture=134339,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5179::::::::40:::::::|h[Moss-twined Heart]|h|r"},["Dryad's Wrist Bindings"]={SubType="Cloth",Level=65,id=19595,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17509,Texture=132612,Link="|cffa335ee|Hitem:19595::::::::40:::::::|h[Dryad's Wrist Bindings]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Ring of Demonic Guile"]={SubType="Miscellaneous",Level=59,id=18314,StackCount=1,Rarity=3,MinLevel=54,SellPrice=12100,Texture=133373,Type="Armor",Link="|cff0070dd|Hitem:18314::::::::40:::::::|h[Ring of Demonic Guile]|h|r",EquipLoc="INVTYPE_FINGER"},["Syndicate Man Tracker (MURP)"]={SubType="Quest",Level=1,id=17347,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133002,EquipLoc="",Link="|cff1eff00|Hitem:17347::::::::40:::::::|h[Syndicate Man Tracker (MURP)]|h|r",Type="Quest"},["Soul Dust"]={SubType="Trade Goods",Level=25,id=11083,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132857,Type="Trade Goods",Link="|cffffffff|Hitem:11083::::::::40:::::::|h[Soul Dust]|h|r",EquipLoc=""},["Shadowstalker Scalp"]={SubType="Quest",Level=1,id=6441,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134361,Link="|cffffffff|Hitem:6441::::::::40:::::::|h[Shadowstalker Scalp]|h|r",EquipLoc="",Type="Quest"},["Monster - Item, Scepter - Gold"]={SubType="Miscellaneous",Level=1,id=12748,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135471,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12748::::::::40:::::::|h[Monster - Item, Scepter - Gold]|h|r"},["63 Green Frost Robes"]={SubType="Cloth",Level=63,id=20360,StackCount=1,Rarity=2,MinLevel=58,SellPrice=18923,Texture=132666,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:20360::::::::40:::::::|h[63 Green Frost Robes]|h|r"},["Thaumaturgist Staff"]={SubType="Staves",Level=54,id=15275,StackCount=1,Rarity=2,MinLevel=49,SellPrice=35714,Texture=135140,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15275::::::::40:::::::|h[Thaumaturgist Staff]|h|r",Type="Weapon"},["Silk Bandage"]={SubType="Consumable",Level=1,id=6450,StackCount=20,Rarity=1,MinLevel=0,SellPrice=200,Texture=133671,Type="Consumable",Link="|cffffffff|Hitem:6450::::::::40:::::::|h[Silk Bandage]|h|r",EquipLoc=""},["Brimstone"]={SubType="Consumable",Level=12,id=1402,StackCount=1,Rarity=1,MinLevel=2,SellPrice=162,Texture=135230,EquipLoc="",Link="|cffffffff|Hitem:1402::::::::40:::::::|h[Brimstone]|h|r",Type="Consumable"},["Grand Legguards"]={SubType="Leather",Level=61,id=15194,StackCount=1,Rarity=2,MinLevel=56,SellPrice=22412,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15194::::::::40:::::::|h[Grand Legguards]|h|r",Type="Armor"},["High Councillor's Pants"]={SubType="Cloth",Level=63,id=10141,StackCount=1,Rarity=2,MinLevel=58,SellPrice=20103,Texture=134593,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10141::::::::40:::::::|h[High Councillor's Pants]|h|r",Type="Armor"},["Blood-tinged Armor"]={SubType="Mail",Level=42,id=4508,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7793,Texture=132743,Type="Armor",Link="|cff1eff00|Hitem:4508::::::::40:::::::|h[Blood-tinged Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["An Antique Gun"]={SubType="Junk",Level=1,id=24283,StackCount=1,Rarity=0,MinLevel=0,SellPrice=38086,Texture=134535,Link="|cff9d9d9d|Hitem:24283::::::::40:::::::|h[An Antique Gun]|h|r",EquipLoc="",Type="Miscellaneous"},["Recipe: Greater Stoneshield Potion"]={SubType="Alchemy",Level=56,id=13490,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13490::::::::40:::::::|h[Recipe: Greater Stoneshield Potion]|h|r"},["Shabby Knot"]={SubType="Junk",Level=1,id=24232,StackCount=20,Rarity=0,MinLevel=0,SellPrice=225,Texture=133676,Link="|cff9d9d9d|Hitem:24232::::::::40:::::::|h[Shabby Knot]|h|r",EquipLoc="",Type="Miscellaneous"},["The Shadowfoot Stabber"]={SubType="Daggers",Level=57,id=24222,StackCount=1,Rarity=3,MinLevel=52,SellPrice=44210,Texture=135654,Link="|cff0070dd|Hitem:24222::::::::40:::::::|h[The Shadowfoot Stabber]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Rainstrider Leggings"]={SubType="Cloth",Level=55,id=11123,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15037,Texture=134588,Type="Armor",Link="|cff0070dd|Hitem:11123::::::::40:::::::|h[Rainstrider Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["High Warlord's Tome of Mending"]={SubType="Miscellaneous",Level=78,id=23469,StackCount=1,Rarity=4,MinLevel=60,SellPrice=75452,Texture=133746,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffa335ee|Hitem:23469::::::::40:::::::|h[High Warlord's Tome of Mending]|h|r"},["High Warlord's Battle Mace"]={SubType="One-Handed Maces",Level=78,id=23464,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45671,Texture=133039,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:23464::::::::40:::::::|h[High Warlord's Battle Mace]|h|r"},["Permanent R.O.I.D.S."]={SubType="Consumable",Level=1,id=23722,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135241,Link="|cffffffff|Hitem:23722::::::::40:::::::|h[Permanent R.O.I.D.S.]|h|r",EquipLoc="",Type="Consumable"},["Permanent Ground Scorpok Assay"]={SubType="Consumable",Level=1,id=23718,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,Link="|cffffffff|Hitem:23718::::::::40:::::::|h[Permanent Ground Scorpok Assay]|h|r",EquipLoc="",Type="Consumable"},["Schematic: Powerful Seaforium Charge"]={SubType="Engineering",Level=55,id=18656,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:18656::::::::40:::::::|h[Schematic: Powerful Seaforium Charge]|h|r",EquipLoc=""},["Elderberry Pie"]={SubType="Consumable",Level=1,id=23435,StackCount=20,Rarity=1,MinLevel=1,SellPrice=0,Texture=133952,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:23435::::::::40:::::::|h[Elderberry Pie]|h|r"},["Sand Reaver Wristguards"]={SubType="Mail",Level=71,id=21502,StackCount=1,Rarity=3,MinLevel=60,SellPrice=24409,Texture=132618,Link="|cff0070dd|Hitem:21502::::::::40:::::::|h[Sand Reaver Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Book of Moonfire VII"]={SubType="Book",Level=40,id=8903,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8903::::::::40:::::::|h[Book of Moonfire VII]|h|r"},["Lesser Mystic Essence"]={SubType="Trade Goods",Level=30,id=11134,StackCount=10,Rarity=2,MinLevel=0,SellPrice=0,Texture=132869,Type="Trade Goods",Link="|cff1eff00|Hitem:11134::::::::40:::::::|h[Lesser Mystic Essence]|h|r",EquipLoc=""},["Tabard of Flame"]={SubType="Miscellaneous",Level=1,id=23705,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=135026,Link="|cffffffff|Hitem:23705::::::::40:::::::|h[Tabard of Flame]|h|r",EquipLoc="INVTYPE_TABARD",Type="Armor"},["Glyphs of Summoning"]={SubType="Quest",Level=1,id=7464,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134416,Link="|cffffffff|Hitem:7464::::::::40:::::::|h[Glyphs of Summoning]|h|r",EquipLoc="",Type="Quest"},["Bleakwood Hew"]={SubType="Two-Handed Axes",Level=54,id=12769,StackCount=1,Rarity=3,MinLevel=49,SellPrice=46154,Texture=132418,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12769::::::::40:::::::|h[Bleakwood Hew]|h|r"},["Foreman Vest"]={SubType="Cloth",Level=11,id=10553,StackCount=1,Rarity=2,MinLevel=6,SellPrice=131,Texture=135009,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10553::::::::40:::::::|h[Foreman Vest]|h|r",Type="Armor"},["Bundle of Atal'ai Artifacts"]={SubType="Quest",Level=1,id=6193,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133644,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6193::::::::40:::::::|h[Bundle of Atal'ai Artifacts]|h|r"},["Tablet of Thunderclap II"]={SubType="Book",Level=36,id=4172,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:4172::::::::40:::::::|h[Tablet of Thunderclap II]|h|r",Type="Recipe"},["Hammer of Divine Might"]={SubType="Two-Handed Maces",Level=62,id=22333,StackCount=1,Rarity=3,MinLevel=57,SellPrice=65383,Texture=133041,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:22333::::::::40:::::::|h[Hammer of Divine Might]|h|r"},["Earthborn Kilt"]={SubType="Leather",Level=60,id=9402,StackCount=1,Rarity=3,MinLevel=55,SellPrice=25308,Texture=134592,Link="|cff0070dd|Hitem:9402::::::::40:::::::|h[Earthborn Kilt]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["[PH] Light Consumable [DEP]"]={SubType="Consumable",Level=60,id=23699,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135265,Link="|cffffffff|Hitem:23699::::::::40:::::::|h[[PH] Light Consumable [DEP]]|h|r",EquipLoc="",Type="Consumable"},["Magnificent Guard"]={SubType="Shields",Level=62,id=15675,StackCount=1,Rarity=2,MinLevel=57,SellPrice=28932,Texture=134951,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15675::::::::40:::::::|h[Magnificent Guard]|h|r",Type="Armor"},["[PH] Potion of Heightened Senses [DEP]"]={SubType="Consumable",Level=60,id=23696,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134813,Link="|cffffffff|Hitem:23696::::::::40:::::::|h[[PH] Potion of Heightened Senses [DEP]]|h|r",EquipLoc="",Type="Consumable"},["Spaulders of the Grand Crusader"]={SubType="Plate",Level=85,id=23667,StackCount=1,Rarity=4,MinLevel=60,SellPrice=65720,Texture=135053,Link="|cffa335ee|Hitem:23667::::::::40:::::::|h[Spaulders of the Grand Crusader]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Enchanted Sea Kelp"]={SubType="Quest",Level=1,id=4639,StackCount=1,Rarity=1,MinLevel=0,SellPrice=162,Texture=134184,Type="Quest",Link="|cffffffff|Hitem:4639::::::::40:::::::|h[Enchanted Sea Kelp]|h|r",EquipLoc=""},["Girdle of Elemental Fury"]={SubType="Mail",Level=85,id=23663,StackCount=1,Rarity=4,MinLevel=60,SellPrice=64264,Texture=132521,Link="|cffa335ee|Hitem:23663::::::::40:::::::|h[Girdle of Elemental Fury]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Promotion Test Item"]={SubType="Consumable",Level=1,id=23656,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Link="|cffffffff|Hitem:23656::::::::40:::::::|h[Promotion Test Item]|h|r",EquipLoc="",Type="Consumable"},["Thick Leather Ammo Pouch"]={SubType="Ammo Pouch",Level=45,id=8218,StackCount=1,Rarity=2,MinLevel=40,SellPrice=1000,Texture=133635,Type="Quiver",EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:8218::::::::40:::::::|h[Thick Leather Ammo Pouch]|h|r"},["Grimoire of Corruption"]={SubType="Book",Level=4,id=9192,StackCount=1,Rarity=1,MinLevel=4,SellPrice=10,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9192::::::::40:::::::|h[Grimoire of Corruption]|h|r"},["The Hungering Cold"]={SubType="One-Handed Swords",Level=89,id=23577,StackCount=1,Rarity=4,MinLevel=60,SellPrice=269253,Texture=135372,Link="|cffa335ee|Hitem:23577::::::::40:::::::|h[The Hungering Cold]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Formula: Enchant 2H Weapon - Lesser Spirit"]={SubType="Enchanting",Level=22,id=11038,StackCount=1,Rarity=2,MinLevel=0,SellPrice=200,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11038::::::::40:::::::|h[Formula: Enchant 2H Weapon - Lesser Spirit]|h|r",EquipLoc=""},["The Burrower's Shell"]={SubType="Miscellaneous",Level=81,id=23558,StackCount=1,Rarity=4,MinLevel=60,SellPrice=1807,Texture=134969,Link="|cffa335ee|Hitem:23558::::::::40:::::::|h[The Burrower's Shell]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Loatheb's Reflection"]={SubType="Miscellaneous",Level=85,id=23042,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91160,Texture=135443,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:23042::::::::40:::::::|h[Loatheb's Reflection]|h|r"},["Brawler's Pants"]={SubType="Cloth",Level=1,id=139,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:139::::::::40:::::::|h[Brawler's Pants]|h|r"},["Plated Abomination Ribcage"]={SubType="Plate",Level=85,id=23000,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91256,Texture=132637,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:23000::::::::40:::::::|h[Plated Abomination Ribcage]|h|r"},["Durability Gloves"]={SubType="Cloth",Level=1,id=14387,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132940,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:14387::::::::40:::::::|h[Durability Gloves]|h|r"},["Purple Rocket Cluster"]={SubType="Consumable",Level=1,id=21575,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=134290,Link="|cffffffff|Hitem:21575::::::::40:::::::|h[Purple Rocket Cluster]|h|r",EquipLoc="",Type="Consumable"},["Lifestone"]={SubType="Miscellaneous",Level=56,id=833,StackCount=1,Rarity=4,MinLevel=51,SellPrice=28000,Texture=134580,Link="|cffa335ee|Hitem:833::::::::40:::::::|h[Lifestone]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["High Warlord's Quickblade"]={SubType="One-Handed Swords",Level=78,id=23467,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45671,Texture=135275,Link="|cffa335ee|Hitem:23467::::::::40:::::::|h[High Warlord's Quickblade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Glacial Mantle"]={SubType="Cloth",Level=83,id=22968,StackCount=1,Rarity=4,MinLevel=0,SellPrice=59390,Texture=135045,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:22968::::::::40:::::::|h[Glacial Mantle]|h|r"},["Test Sapper Charge"]={SubType="Explosives",Level=41,id=23418,StackCount=10,Rarity=1,MinLevel=0,SellPrice=500,Texture=135826,Link="|cffffffff|Hitem:23418::::::::40:::::::|h[Test Sapper Charge]|h|r",EquipLoc="",Type="Trade Goods"},["Ironweave Pants"]={SubType="Cloth",Level=62,id=22303,StackCount=1,Rarity=3,MinLevel=57,SellPrice=22366,Texture=134588,Link="|cff0070dd|Hitem:22303::::::::40:::::::|h[Ironweave Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Monster - Sword2H, Instructor Razuvious"]={SubType="Two-Handed Swords",Level=1,id=23328,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135273,Link="|cff9d9d9d|Hitem:23328::::::::40:::::::|h[Monster - Sword2H, Instructor Razuvious]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Blood Guard's Dragonhide Grips"]={SubType="Leather",Level=66,id=22863,StackCount=1,Rarity=3,MinLevel=60,SellPrice=7947,Texture=132959,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:22863::::::::40:::::::|h[Blood Guard's Dragonhide Grips]|h|r"},["Tattered Cloth Boots"]={SubType="Cloth",Level=5,id=195,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=132539,Link="|cffffffff|Hitem:195::::::::40:::::::|h[Tattered Cloth Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Lieutenant Commander's Satin Hood"]={SubType="Cloth",Level=71,id=23316,StackCount=1,Rarity=3,MinLevel=60,SellPrice=12823,Texture=133119,Link="|cff0070dd|Hitem:23316::::::::40:::::::|h[Lieutenant Commander's Satin Hood]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Plans: Obsidian Mail Tunic"]={SubType="Blacksmithing",Level=72,id=22221,StackCount=1,Rarity=1,MinLevel=0,SellPrice=20000,Texture=134939,Link="|cffffffff|Hitem:22221::::::::40:::::::|h[Plans: Obsidian Mail Tunic]|h|r",EquipLoc="",Type="Recipe"},["Lieutenant Commander's Plate Shoulders"]={SubType="Plate",Level=71,id=23315,StackCount=1,Rarity=3,MinLevel=60,SellPrice=12776,Texture=135042,Link="|cff0070dd|Hitem:23315::::::::40:::::::|h[Lieutenant Commander's Plate Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Brigade Girdle"]={SubType="Mail",Level=43,id=9931,StackCount=1,Rarity=2,MinLevel=38,SellPrice=4303,Texture=132500,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9931::::::::40:::::::|h[Brigade Girdle]|h|r"},["Smooth Stone Chip"]={SubType="Junk",Level=1,id=4552,StackCount=10,Rarity=0,MinLevel=0,SellPrice=530,Texture=135236,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:4552::::::::40:::::::|h[Smooth Stone Chip]|h|r"},["Lieutenant Commander's Dreadweave Cowl"]={SubType="Cloth",Level=71,id=23310,StackCount=1,Rarity=3,MinLevel=60,SellPrice=12541,Texture=133076,Link="|cff0070dd|Hitem:23310::::::::40:::::::|h[Lieutenant Commander's Dreadweave Cowl]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Light Plate Gloves"]={SubType="Plate",Level=56,id=8084,StackCount=1,Rarity=0,MinLevel=51,SellPrice=2703,Texture=132962,Link="|cff9d9d9d|Hitem:8084::::::::40:::::::|h[Light Plate Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Knight-Captain's Silk Tunic"]={SubType="Cloth",Level=68,id=23305,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15258,Texture=132669,Link="|cff0070dd|Hitem:23305::::::::40:::::::|h[Knight-Captain's Silk Tunic]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Recipe: Elixir of Superior Defense"]={SubType="Alchemy",Level=53,id=13478,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3250,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13478::::::::40:::::::|h[Recipe: Elixir of Superior Defense]|h|r"},["Knight-Lieutenant's Satin Handwraps"]={SubType="Cloth",Level=66,id=23288,StackCount=1,Rarity=3,MinLevel=60,SellPrice=6993,Texture=132951,Link="|cff0070dd|Hitem:23288::::::::40:::::::|h[Knight-Lieutenant's Satin Handwraps]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Knight-Lieutenant's Leather Walkers"]={SubType="Leather",Level=66,id=23285,StackCount=1,Rarity=3,MinLevel=60,SellPrice=12976,Texture=132539,Link="|cff0070dd|Hitem:23285::::::::40:::::::|h[Knight-Lieutenant's Leather Walkers]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Knight-Lieutenant's Leather Grips"]={SubType="Leather",Level=66,id=23284,StackCount=1,Rarity=3,MinLevel=60,SellPrice=8619,Texture=132949,Link="|cff0070dd|Hitem:23284::::::::40:::::::|h[Knight-Lieutenant's Leather Grips]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Sealed Reliquary of Purity"]={SubType="Quest",Level=1,id=18540,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132595,Type="Quest",Link="|cffffffff|Hitem:18540::::::::40:::::::|h[Sealed Reliquary of Purity]|h|r",EquipLoc=""},["Energized Stone Circle"]={SubType="Shields",Level=36,id=9522,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4938,Texture=134956,Link="|cff1eff00|Hitem:9522::::::::40:::::::|h[Energized Stone Circle]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Tablet of Windfury Weapon II"]={SubType="Book",Level=40,id=9101,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9101::::::::40:::::::|h[Tablet of Windfury Weapon II]|h|r"},["Maleki's Footwraps"]={SubType="Cloth",Level=62,id=18735,StackCount=1,Rarity=3,MinLevel=57,SellPrice=17253,Texture=132537,Type="Armor",Link="|cff0070dd|Hitem:18735::::::::40:::::::|h[Maleki's Footwraps]|h|r",EquipLoc="INVTYPE_FEET"},["Monster Omelet"]={SubType="Consumable",Level=45,id=12218,StackCount=20,Rarity=1,MinLevel=40,SellPrice=300,Texture=133948,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12218::::::::40:::::::|h[Monster Omelet]|h|r"},["Gossamer Cape"]={SubType="Cloth",Level=44,id=7524,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4297,Texture=133766,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:7524::::::::40:::::::|h[Gossamer Cape]|h|r",Type="Armor"},["Boots of Heroism"]={SubType="Plate",Level=60,id=21995,StackCount=1,Rarity=4,MinLevel=0,SellPrice=19624,Texture=132584,Link="|cffa335ee|Hitem:21995::::::::40:::::::|h[Boots of Heroism]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Champion's Satin Hood"]={SubType="Cloth",Level=71,id=23261,StackCount=1,Rarity=3,MinLevel=60,SellPrice=13062,Texture=133119,Link="|cff0070dd|Hitem:23261::::::::40:::::::|h[Champion's Satin Hood]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Might of the Tribe"]={SubType="Cloth",Level=68,id=22712,StackCount=1,Rarity=3,MinLevel=60,SellPrice=22241,Texture=133768,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:22712::::::::40:::::::|h[Might of the Tribe]|h|r"},["Champion's Dreadweave Cowl"]={SubType="Cloth",Level=71,id=23255,StackCount=1,Rarity=3,MinLevel=60,SellPrice=12443,Texture=133076,Link="|cff0070dd|Hitem:23255::::::::40:::::::|h[Champion's Dreadweave Cowl]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Pattern: Polar Tunic"]={SubType="Leatherworking",Level=80,id=22692,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:22692::::::::40:::::::|h[Pattern: Polar Tunic]|h|r"},["Burning Blossom"]={SubType="Junk",Level=1,id=23247,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135263,Link="|cffffffff|Hitem:23247::::::::40:::::::|h[Burning Blossom]|h|r",EquipLoc="",Type="Miscellaneous"},["Champion's Plate Shoulders"]={SubType="Plate",Level=71,id=23243,StackCount=1,Rarity=3,MinLevel=60,SellPrice=13158,Texture=135042,Link="|cff0070dd|Hitem:23243::::::::40:::::::|h[Champion's Plate Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["A Crumpled Up Note"]={SubType="Quest",Level=50,id=11446,StackCount=1,Rarity=1,MinLevel=50,SellPrice=0,Texture=134331,Type="Quest",Link="|cffffffff|Hitem:11446::::::::40:::::::|h[A Crumpled Up Note]|h|r",EquipLoc=""},["Tiger Band"]={SubType="Miscellaneous",Level=31,id=6749,StackCount=1,Rarity=2,MinLevel=0,SellPrice=897,Texture=133355,Type="Armor",Link="|cff1eff00|Hitem:6749::::::::40:::::::|h[Tiger Band]|h|r",EquipLoc="INVTYPE_FINGER"},["ALEX BUG TEST ITEM"]={SubType="Quest",Level=1,id=17122,StackCount=1,Rarity=6,MinLevel=0,SellPrice=0,Texture=132483,EquipLoc="",Link="|cffe6cc80|Hitem:17122::::::::40:::::::|h[ALEX BUG TEST ITEM]|h|r",Type="Quest"},["Ring of the Eternal Flame"]={SubType="Miscellaneous",Level=83,id=23237,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133390,Link="|cffa335ee|Hitem:23237::::::::40:::::::|h[Ring of the Eternal Flame]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Short Cutlass"]={SubType="One-Handed Swords",Level=29,id=1829,StackCount=1,Rarity=0,MinLevel=24,SellPrice=1563,Texture=135325,Type="Weapon",Link="|cff9d9d9d|Hitem:1829::::::::40:::::::|h[Short Cutlass]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Mark of the Champion"]={SubType="Miscellaneous",Level=90,id=23206,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=134500,Link="|cffa335ee|Hitem:23206::::::::40:::::::|h[Mark of the Champion]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Libram of Divinity"]={SubType="Librams",Level=65,id=23201,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18997,Texture=134916,Link="|cff0070dd|Hitem:23201::::::::40:::::::|h[Libram of Divinity]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Totem of Sustaining"]={SubType="Totems",Level=65,id=23200,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18929,Texture=134918,Link="|cff0070dd|Hitem:23200::::::::40:::::::|h[Totem of Sustaining]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["DEBUG Samophlange Manual Page"]={SubType="Consumable",Level=1,id=11616,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134332,Type="Consumable",Link="|cffffffff|Hitem:11616::::::::40:::::::|h[DEBUG Samophlange Manual Page]|h|r",EquipLoc=""},["Billy Club"]={SubType="One-Handed Maces",Level=9,id=4563,StackCount=1,Rarity=1,MinLevel=4,SellPrice=110,Texture=133476,Link="|cffffffff|Hitem:4563::::::::40:::::::|h[Billy Club]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Monster - Sword2H, Corrupted Ashbringer"]={SubType="Two-Handed Swords",Level=1,id=22709,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135273,Link="|cff9d9d9d|Hitem:22709::::::::40:::::::|h[Monster - Sword2H, Corrupted Ashbringer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Heavy Mithril Lotterybox"]={SubType="Junk",Level=45,id=8507,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=132597,Type="Miscellaneous",EquipLoc="",Link="|cff1eff00|Hitem:8507::::::::40:::::::|h[Heavy Mithril Lotterybox]|h|r"},["Flame of Orgrimmar"]={SubType="Quest",Level=1,id=23179,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135813,Link="|cffffffff|Hitem:23179::::::::40:::::::|h[Flame of Orgrimmar]|h|r",EquipLoc="",Type="Quest"},["Warsong Gulch Silk Bandage"]={SubType="Consumable",Level=35,id=19068,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=133672,Link="|cffffffff|Hitem:19068::::::::40:::::::|h[Warsong Gulch Silk Bandage]|h|r",EquipLoc="",Type="Consumable"},["[PH] Shining Dawn Mitts"]={SubType="Leather",Level=100,id=13735,StackCount=1,Rarity=1,MinLevel=100,SellPrice=42306,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:13735::::::::40:::::::|h[[PH] Shining Dawn Mitts]|h|r"},["Bubbly Beverage"]={SubType="Consumable",Level=1,id=23164,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132799,Link="|cffffffff|Hitem:23164::::::::40:::::::|h[Bubbly Beverage]|h|r",EquipLoc="",Type="Consumable"},["Collectronic Module"]={SubType="Quest",Level=1,id=12287,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133014,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12287::::::::40:::::::|h[Collectronic Module]|h|r"},["Sublime Wristguards"]={SubType="Cloth",Level=60,id=18497,StackCount=1,Rarity=3,MinLevel=55,SellPrice=9488,Texture=132612,Type="Armor",Link="|cff0070dd|Hitem:18497::::::::40:::::::|h[Sublime Wristguards]|h|r",EquipLoc="INVTYPE_WRIST"},["Blackwood's Thigh"]={SubType="Miscellaneous",Level=62,id=23156,StackCount=1,Rarity=3,MinLevel=57,SellPrice=13113,Texture=133727,Link="|cff0070dd|Hitem:23156::::::::40:::::::|h[Blackwood's Thigh]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Lord Blackwood's Buckler"]={SubType="Shields",Level=62,id=23139,StackCount=1,Rarity=3,MinLevel=57,SellPrice=33837,Texture=134948,Link="|cff0070dd|Hitem:23139::::::::40:::::::|h[Lord Blackwood's Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Red-speckled Mushroom"]={SubType="Consumable",Level=15,id=4605,StackCount=20,Rarity=1,MinLevel=5,SellPrice=6,Texture=134532,Link="|cffffffff|Hitem:4605::::::::40:::::::|h[Red-speckled Mushroom]|h|r",EquipLoc="",Type="Consumable"},["Helm of the New Moon"]={SubType="Leather",Level=61,id=22407,StackCount=1,Rarity=3,MinLevel=56,SellPrice=18681,Texture=133143,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:22407::::::::40:::::::|h[Helm of the New Moon]|h|r"},["Chains of the Lich"]={SubType="Miscellaneous",Level=60,id=23125,StackCount=1,Rarity=3,MinLevel=55,SellPrice=41953,Texture=132507,Link="|cff0070dd|Hitem:23125::::::::40:::::::|h[Chains of the Lich]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Shepherd's Girdle"]={SubType="Leather",Level=34,id=3753,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1635,Texture=132506,Link="|cff1eff00|Hitem:3753::::::::40:::::::|h[Shepherd's Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Forcestone Buckler"]={SubType="Shields",Level=45,id=7748,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10862,Texture=134948,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:7748::::::::40:::::::|h[Forcestone Buckler]|h|r",Type="Armor"},["Bracers of Undead Cleansing"]={SubType="Cloth",Level=63,id=23091,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11615,Texture=132611,Link="|cff0070dd|Hitem:23091::::::::40:::::::|h[Bracers of Undead Cleansing]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Desecrated Belt"]={SubType="Junk",Level=60,id=22370,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133804,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:22370::::::::40:::::::|h[Desecrated Belt]|h|r"},["Small Soul Pouch"]={SubType="Soul Bag",Level=20,id=22243,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=133635,Link="|cff1eff00|Hitem:22243::::::::40:::::::|h[Small Soul Pouch]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Desecrated Girdle"]={SubType="Junk",Level=60,id=22363,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133820,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:22363::::::::40:::::::|h[Desecrated Girdle]|h|r"},["Sample Elven Gem"]={SubType="Quest",Level=1,id=4502,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134116,Link="|cffffffff|Hitem:4502::::::::40:::::::|h[Sample Elven Gem]|h|r",EquipLoc="",Type="Quest"},["Handwraps of Undead Slaying"]={SubType="Leather",Level=63,id=23081,StackCount=1,Rarity=3,MinLevel=0,SellPrice=13989,Texture=132940,Link="|cff0070dd|Hitem:23081::::::::40:::::::|h[Handwraps of Undead Slaying]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Ribsplitter"]={SubType="One-Handed Axes",Level=53,id=12527,StackCount=1,Rarity=3,MinLevel=48,SellPrice=35332,Texture=132404,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:12527::::::::40:::::::|h[Ribsplitter]|h|r"},["Decoded True Believer Clippings"]={SubType="Junk",Level=1,id=20469,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133653,Link="|cffffffff|Hitem:20469::::::::40:::::::|h[Decoded True Believer Clippings]|h|r",EquipLoc="",Type="Miscellaneous"},["Indomitable Gauntlets"]={SubType="Leather",Level=62,id=14685,StackCount=1,Rarity=2,MinLevel=57,SellPrice=11594,Texture=132949,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14685::::::::40:::::::|h[Indomitable Gauntlets]|h|r"},["Winterhoof Cleansing Totem"]={SubType="Miscellaneous",Level=1,id=5411,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135139,EquipLoc="",Link="|cffffffff|Hitem:5411::::::::40:::::::|h[Winterhoof Cleansing Totem]|h|r",Type="Armor"},["Wrangler's Belt"]={SubType="Leather",Level=24,id=15329,StackCount=1,Rarity=2,MinLevel=19,SellPrice=622,Texture=132505,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15329::::::::40:::::::|h[Wrangler's Belt]|h|r",Type="Armor"},["Crystal Basilisk Spine"]={SubType="Consumable",Level=35,id=1703,StackCount=10,Rarity=1,MinLevel=25,SellPrice=81,Texture=133720,Type="Consumable",Link="|cffffffff|Hitem:1703::::::::40:::::::|h[Crystal Basilisk Spine]|h|r",EquipLoc=""},["Mature Black Dragon Sinew"]={SubType="Quest",Level=71,id=18705,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135894,Type="Quest",Link="|cffa335ee|Hitem:18705::::::::40:::::::|h[Mature Black Dragon Sinew]|h|r",EquipLoc=""},["Thick Leather Boots"]={SubType="Leather",Level=48,id=3962,StackCount=1,Rarity=0,MinLevel=43,SellPrice=3079,Texture=132537,EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:3962::::::::40:::::::|h[Thick Leather Boots]|h|r",Type="Armor"},["Stack of Cards"]={SubType="Consumable",Level=1,id=22289,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133465,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22289::::::::40:::::::|h[Stack of Cards]|h|r"},["Stormwind Pledge Collection"]={SubType="Consumable",Level=1,id=22285,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133457,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22285::::::::40:::::::|h[Stormwind Pledge Collection]|h|r"},["Deft Stiletto"]={SubType="Daggers",Level=29,id=2766,StackCount=1,Rarity=0,MinLevel=24,SellPrice=1564,Texture=135641,Type="Weapon",Link="|cff9d9d9d|Hitem:2766::::::::40:::::::|h[Deft Stiletto]|h|r",EquipLoc="INVTYPE_WEAPON"},["Enchanted Runecloth Bag"]={SubType="Enchanting Bag",Level=55,id=22248,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=133666,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:22248::::::::40:::::::|h[Enchanted Runecloth Bag]|h|r"},["Tablet of Disease Cleansing Totem"]={SubType="Book",Level=38,id=9096,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9096::::::::40:::::::|h[Tablet of Disease Cleansing Totem]|h|r"},["\"Mage-Eye\" Blunderbuss"]={SubType="Guns",Level=31,id=3041,StackCount=1,Rarity=2,MinLevel=26,SellPrice=3769,Texture=135614,Type="Weapon",Link="|cff1eff00|Hitem:3041::::::::40:::::::|h[\"Mage-Eye\" Blunderbuss]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Winter Veil Eggnog"]={SubType="Consumable",Level=55,id=21241,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132803,Link="|cffffffff|Hitem:21241::::::::40:::::::|h[Winter Veil Eggnog]|h|r",EquipLoc="",Type="Consumable"},["Sapphiron's Left Eye"]={SubType="Miscellaneous",Level=90,id=23049,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72651,Texture=134546,Link="|cffa335ee|Hitem:23049::::::::40:::::::|h[Sapphiron's Left Eye]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Lunar Buckler"]={SubType="Shields",Level=40,id=3763,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6761,Texture=134956,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:3763::::::::40:::::::|h[Lunar Buckler]|h|r"},["Wind Spirit Staff"]={SubType="Staves",Level=32,id=6689,StackCount=1,Rarity=3,MinLevel=27,SellPrice=8267,Texture=135138,Link="|cff0070dd|Hitem:6689::::::::40:::::::|h[Wind Spirit Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Sapphiron's Right Eye"]={SubType="Miscellaneous",Level=90,id=23048,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72651,Texture=134545,Link="|cffa335ee|Hitem:23048::::::::40:::::::|h[Sapphiron's Right Eye]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Sandworm Meat"]={SubType="Trade Goods",Level=55,id=20424,StackCount=20,Rarity=1,MinLevel=0,SellPrice=175,Texture=134007,Link="|cffffffff|Hitem:20424::::::::40:::::::|h[Sandworm Meat]|h|r",EquipLoc="",Type="Trade Goods"},["Deprecated Skin of Sweet Rum"]={SubType="Quest",Level=15,id=1940,StackCount=1,Rarity=1,MinLevel=0,SellPrice=317,Texture=132794,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1940::::::::40:::::::|h[Deprecated Skin of Sweet Rum]|h|r"},["Warmth of Forgiveness"]={SubType="Miscellaneous",Level=85,id=23027,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91160,Texture=135439,Link="|cffa335ee|Hitem:23027::::::::40:::::::|h[Warmth of Forgiveness]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Ring of Spiritual Fervor"]={SubType="Miscellaneous",Level=85,id=23037,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133394,Link="|cffa335ee|Hitem:23037::::::::40:::::::|h[Ring of Spiritual Fervor]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Preceptor's Hat"]={SubType="Cloth",Level=83,id=23035,StackCount=1,Rarity=4,MinLevel=60,SellPrice=62561,Texture=133152,Link="|cffa335ee|Hitem:23035::::::::40:::::::|h[Preceptor's Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Frostfire Gloves"]={SubType="Cloth",Level=88,id=22501,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50116,Texture=132951,Link="|cffa335ee|Hitem:22501::::::::40:::::::|h[Frostfire Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Bow of Plunder"]={SubType="Bows",Level=28,id=3742,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2862,Texture=135490,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:3742::::::::40:::::::|h[Bow of Plunder]|h|r",Type="Weapon"},["Nax PH Crit Plate Shoulders"]={SubType="Plate",Level=83,id=23034,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58290,Texture=135060,Link="|cffa335ee|Hitem:23034::::::::40:::::::|h[Nax PH Crit Plate Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["The Face of Death"]={SubType="Shields",Level=90,id=23043,StackCount=1,Rarity=4,MinLevel=60,SellPrice=174810,Texture=134971,Link="|cffa335ee|Hitem:23043::::::::40:::::::|h[The Face of Death]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Jadefire Epaulets"]={SubType="Leather",Level=53,id=15395,StackCount=1,Rarity=2,MinLevel=48,SellPrice=10379,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15395::::::::40:::::::|h[Jadefire Epaulets]|h|r",Type="Armor"},["Pledge of Adoration: Thunder Bluff"]={SubType="Consumable",Level=1,id=22158,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135450,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22158::::::::40:::::::|h[Pledge of Adoration: Thunder Bluff]|h|r"},["VanCleef's Boots"]={SubType="Leather",Level=25,id=7187,StackCount=1,Rarity=2,MinLevel=20,SellPrice=979,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7187::::::::40:::::::|h[VanCleef's Boots]|h|r",Type="Armor"},["Polished Walking Staff"]={SubType="Staves",Level=24,id=16889,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3093,Texture=135157,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:16889::::::::40:::::::|h[Polished Walking Staff]|h|r",Type="Weapon"},["Second Wind"]={SubType="Miscellaneous",Level=59,id=11819,StackCount=1,Rarity=3,MinLevel=54,SellPrice=10000,Texture=133439,Type="Armor",Link="|cff0070dd|Hitem:11819::::::::40:::::::|h[Second Wind]|h|r",EquipLoc="INVTYPE_TRINKET"},["Signet of the Fallen Defender"]={SubType="Miscellaneous",Level=83,id=23018,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133392,Link="|cffa335ee|Hitem:23018::::::::40:::::::|h[Signet of the Fallen Defender]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Deadman Cleaver"]={SubType="One-Handed Axes",Level=3,id=3293,StackCount=1,Rarity=1,MinLevel=1,SellPrice=11,Texture=132417,Type="Weapon",Link="|cffffffff|Hitem:3293::::::::40:::::::|h[Deadman Cleaver]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Dreamwalker Wristguards"]={SubType="Leather",Level=88,id=22495,StackCount=1,Rarity=4,MinLevel=60,SellPrice=67721,Texture=132601,Link="|cffa335ee|Hitem:22495::::::::40:::::::|h[Dreamwalker Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Turtle Scale Breastplate"]={SubType="Mail",Level=42,id=8189,StackCount=1,Rarity=2,MinLevel=37,SellPrice=7567,Texture=132634,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:8189::::::::40:::::::|h[Turtle Scale Breastplate]|h|r"},["Eye of Diminution"]={SubType="Miscellaneous",Level=85,id=23001,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91160,Texture=135440,Link="|cffa335ee|Hitem:23001::::::::40:::::::|h[Eye of Diminution]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Big Iron Bomb"]={SubType="Explosives",Level=43,id=4394,StackCount=10,Rarity=1,MinLevel=0,SellPrice=750,Texture=133709,EquipLoc="",Link="|cffffffff|Hitem:4394::::::::40:::::::|h[Big Iron Bomb]|h|r",Type="Trade Goods"},["Cologne Bottle"]={SubType="Consumable",Level=1,id=21833,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=135446,Link="|cffffffff|Hitem:21833::::::::40:::::::|h[Cologne Bottle]|h|r",EquipLoc="",Type="Consumable"},["Sharpened Silithid Femur"]={SubType="One-Handed Swords",Level=78,id=21622,StackCount=1,Rarity=4,MinLevel=60,SellPrice=160986,Texture=135368,Link="|cffa335ee|Hitem:21622::::::::40:::::::|h[Sharpened Silithid Femur]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["The End of Dreams"]={SubType="One-Handed Maces",Level=83,id=22988,StackCount=1,Rarity=4,MinLevel=60,SellPrice=197946,Texture=133496,Link="|cffa335ee|Hitem:22988::::::::40:::::::|h[The End of Dreams]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Bracers of Undead Slaying"]={SubType="Plate",Level=63,id=23090,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11572,Texture=132613,Link="|cff0070dd|Hitem:23090::::::::40:::::::|h[Bracers of Undead Slaying]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Celebrian Rod"]={SubType="Quest",Level=1,id=17702,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135156,EquipLoc="",Link="|cffffffff|Hitem:17702::::::::40:::::::|h[Celebrian Rod]|h|r",Type="Quest"},["Icy Scale Spaulders"]={SubType="Mail",Level=83,id=22967,StackCount=1,Rarity=4,MinLevel=0,SellPrice=95926,Texture=135045,Link="|cffa335ee|Hitem:22967::::::::40:::::::|h[Icy Scale Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Test QARaid Uber Ammo Lockbox"]={SubType="Junk",Level=1,id=22045,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22045::::::::40:::::::|h[Test QARaid Uber Ammo Lockbox]|h|r"},["Hollowfang Blade"]={SubType="Daggers",Level=18,id=2020,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1049,Texture=135652,Type="Weapon",Link="|cff1eff00|Hitem:2020::::::::40:::::::|h[Hollowfang Blade]|h|r",EquipLoc="INVTYPE_WEAPON"},["Baroque Apron"]={SubType="Cloth",Level=40,id=6801,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4456,Texture=132680,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:6801::::::::40:::::::|h[Baroque Apron]|h|r"},["Daryl's Hunting Rifle"]={SubType="Guns",Level=16,id=2904,StackCount=1,Rarity=2,MinLevel=0,SellPrice=595,Texture=135612,Link="|cff1eff00|Hitem:2904::::::::40:::::::|h[Daryl's Hunting Rifle]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Kiss of the Spider"]={SubType="Miscellaneous",Level=85,id=22954,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91160,Texture=135442,Link="|cffa335ee|Hitem:22954::::::::40:::::::|h[Kiss of the Spider]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Worn Wooden Shield"]={SubType="Shields",Level=1,id=2362,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Link="|cff9d9d9d|Hitem:2362::::::::40:::::::|h[Worn Wooden Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Faded Photograph"]={SubType="Quest",Level=1,id=11108,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134944,Type="Quest",Link="|cffffffff|Hitem:11108::::::::40:::::::|h[Faded Photograph]|h|r",EquipLoc=""},["QAEnchant Gloves +20 Fire Damage"]={SubType="Consumable",Level=1,id=22030,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22030::::::::40:::::::|h[QAEnchant Gloves +20 Fire Damage]|h|r"},["Outrunner's Cuffs"]={SubType="Mail",Level=18,id=15499,StackCount=1,Rarity=2,MinLevel=13,SellPrice=307,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15499::::::::40:::::::|h[Outrunner's Cuffs]|h|r",Type="Armor"},["Fingerless Gloves"]={SubType="Cloth",Level=11,id=6202,StackCount=1,Rarity=1,MinLevel=6,SellPrice=35,Texture=132939,Link="|cffffffff|Hitem:6202::::::::40:::::::|h[Fingerless Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Deprecated Hands of the Quarter Moon"]={SubType="Leather",Level=15,id=5296,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:5296::::::::40:::::::|h[Deprecated Hands of the Quarter Moon]|h|r",Type="Armor"},["Self-locking Ironpaper"]={SubType="Consumable",Level=5,id=5049,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=134146,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5049::::::::40:::::::|h[Self-locking Ironpaper]|h|r"},["Monster - Item, Bread"]={SubType="One-Handed Maces",Level=1,id=2197,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133964,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2197::::::::40:::::::|h[Monster - Item, Bread]|h|r",Type="Weapon"},["Anvilmar Hand Axe"]={SubType="One-Handed Axes",Level=5,id=2047,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=135419,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2047::::::::40:::::::|h[Anvilmar Hand Axe]|h|r"},["Will of the Mountain Giant"]={SubType="Two-Handed Axes",Level=51,id=9685,StackCount=1,Rarity=2,MinLevel=46,SellPrice=32277,Texture=132409,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:9685::::::::40:::::::|h[Will of the Mountain Giant]|h|r"},["Craftsman's Dagger"]={SubType="Daggers",Level=13,id=2218,StackCount=1,Rarity=2,MinLevel=0,SellPrice=501,Texture=135641,Link="|cff1eff00|Hitem:2218::::::::40:::::::|h[Craftsman's Dagger]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Schematic: Large Blue Rocket"]={SubType="Engineering",Level=35,id=21727,StackCount=1,Rarity=2,MinLevel=0,SellPrice=275,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:21727::::::::40:::::::|h[Schematic: Large Blue Rocket]|h|r"},["Schematic: Small Green Rocket"]={SubType="Engineering",Level=25,id=21725,StackCount=1,Rarity=2,MinLevel=0,SellPrice=175,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:21725::::::::40:::::::|h[Schematic: Small Green Rocket]|h|r"},["Tablet of Healing Wave IX"]={SubType="Book",Level=56,id=9168,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9168::::::::40:::::::|h[Tablet of Healing Wave IX]|h|r"},["Pattern: Festival Suit"]={SubType="Tailoring",Level=50,id=21723,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:21723::::::::40:::::::|h[Pattern: Festival Suit]|h|r"},["Target Dummy"]={SubType="Devices",Level=17,id=4366,StackCount=10,Rarity=1,MinLevel=0,SellPrice=75,Texture=132766,Link="|cffffffff|Hitem:4366::::::::40:::::::|h[Target Dummy]|h|r",EquipLoc="",Type="Trade Goods"},["Celestial Cape"]={SubType="Cloth",Level=54,id=14313,StackCount=1,Rarity=2,MinLevel=49,SellPrice=9298,Texture=133757,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14313::::::::40:::::::|h[Celestial Cape]|h|r"},["Sturdy Female Troll Mask"]={SubType="Miscellaneous",Level=45,id=20589,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4845,Texture=134178,Link="|cff1eff00|Hitem:20589::::::::40:::::::|h[Sturdy Female Troll Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Stone of Lapidis"]={SubType="Miscellaneous",Level=1,id=6707,StackCount=1,Rarity=6,MinLevel=1,SellPrice=837,Texture=133346,Link="|cffe6cc80|Hitem:6707::::::::40:::::::|h[Stone of Lapidis]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Prospector's Chestpiece"]={SubType="Leather",Level=23,id=14562,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1039,Texture=132724,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14562::::::::40:::::::|h[Prospector's Chestpiece]|h|r"},["Level 60 Test Gear Leather - Rogue 2"]={SubType="Junk",Level=1,id=17833,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17833::::::::40:::::::|h[Level 60 Test Gear Leather - Rogue 2]|h|r",Type="Miscellaneous"},["Lieutenant Commander's Silk Mantle"]={SubType="Cloth",Level=71,id=23319,StackCount=1,Rarity=3,MinLevel=60,SellPrice=12964,Texture=135033,Link="|cff0070dd|Hitem:23319::::::::40:::::::|h[Lieutenant Commander's Silk Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Conjured Cinnamon Roll"]={SubType="Consumable",Level=65,id=22895,StackCount=20,Rarity=1,MinLevel=55,SellPrice=0,Texture=134029,Link="|cffffffff|Hitem:22895::::::::40:::::::|h[Conjured Cinnamon Roll]|h|r",EquipLoc="",Type="Consumable"},["Lesser Astral Essence"]={SubType="Trade Goods",Level=20,id=10998,StackCount=10,Rarity=2,MinLevel=0,SellPrice=0,Texture=132863,EquipLoc="",Link="|cff1eff00|Hitem:10998::::::::40:::::::|h[Lesser Astral Essence]|h|r",Type="Trade Goods"},["Leaded Vial"]={SubType="Trade Goods",Level=25,id=3372,StackCount=20,Rarity=1,MinLevel=0,SellPrice=10,Texture=132793,Type="Trade Goods",Link="|cffffffff|Hitem:3372::::::::40:::::::|h[Leaded Vial]|h|r",EquipLoc=""},["Creeping Vine Helm"]={SubType="Leather",Level=76,id=21669,StackCount=1,Rarity=4,MinLevel=60,SellPrice=52140,Texture=133069,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:21669::::::::40:::::::|h[Creeping Vine Helm]|h|r"},["Legionnaire's Silk Tunic"]={SubType="Cloth",Level=68,id=22886,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14876,Texture=132669,Link="|cff0070dd|Hitem:22886::::::::40:::::::|h[Legionnaire's Silk Tunic]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Keeper's Armor"]={SubType="Leather",Level=54,id=14664,StackCount=1,Rarity=2,MinLevel=49,SellPrice=15058,Texture=132717,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14664::::::::40:::::::|h[Keeper's Armor]|h|r"},["Chief Brigadier Leggings"]={SubType="Mail",Level=40,id=4079,StackCount=1,Rarity=2,MinLevel=35,SellPrice=6753,Texture=134583,Type="Armor",Link="|cff1eff00|Hitem:4079::::::::40:::::::|h[Chief Brigadier Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Monster - Axe, 2H War C01 Blue Limited"]={SubType="Two-Handed Axes",Level=1,id=11317,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",Link="|cff9d9d9d|Hitem:11317::::::::40:::::::|h[Monster - Axe, 2H War C01 Blue Limited]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Broken Wine Bottle"]={SubType="One-Handed Maces",Level=12,id=6651,StackCount=1,Rarity=1,MinLevel=7,SellPrice=234,Texture=132797,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:6651::::::::40:::::::|h[Broken Wine Bottle]|h|r"},["Schematic: EZ-Thro Dynamite II"]={SubType="Engineering",Level=40,id=18650,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:18650::::::::40:::::::|h[Schematic: EZ-Thro Dynamite II]|h|r",EquipLoc=""},["Monster - Thieves Blade"]={SubType="One-Handed Swords",Level=1,id=1900,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135274,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:1900::::::::40:::::::|h[Monster - Thieves Blade]|h|r",Type="Weapon"},["Shardtooth E'ko"]={SubType="Quest",Level=1,id=12432,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135227,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12432::::::::40:::::::|h[Shardtooth E'ko]|h|r"},["Judgement Legplates"]={SubType="Plate",Level=76,id=16954,StackCount=1,Rarity=4,MinLevel=60,SellPrice=56415,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16954::::::::40:::::::|h[Judgement Legplates]|h|r",Type="Armor"},["Thekal's Grasp"]={SubType="Fist Weapons",Level=65,id=19896,StackCount=1,Rarity=4,MinLevel=60,SellPrice=85949,Texture=135592,Link="|cffa335ee|Hitem:19896::::::::40:::::::|h[Thekal's Grasp]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Test AQ Resource - Mageweave Bandages"]={SubType="Junk",Level=1,id=21658,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21658::::::::40:::::::|h[Test AQ Resource - Mageweave Bandages]|h|r"},["Legionnaire's Leather Chestpiece"]={SubType="Leather",Level=68,id=22879,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18123,Texture=132720,Link="|cff0070dd|Hitem:22879::::::::40:::::::|h[Legionnaire's Leather Chestpiece]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Stormwind Gift Collection"]={SubType="Junk",Level=1,id=22131,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134142,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22131::::::::40:::::::|h[Stormwind Gift Collection]|h|r"},["Galgann's Firehammer"]={SubType="One-Handed Maces",Level=46,id=9419,StackCount=1,Rarity=2,MinLevel=41,SellPrice=18076,Texture=133054,Link="|cff1eff00|Hitem:9419::::::::40:::::::|h[Galgann's Firehammer]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Elixir of Agility"]={SubType="Consumable",Level=37,id=8949,StackCount=5,Rarity=1,MinLevel=27,SellPrice=200,Texture=134873,Link="|cffffffff|Hitem:8949::::::::40:::::::|h[Elixir of Agility]|h|r",EquipLoc="",Type="Consumable"},["90 Green Rogue Belt"]={SubType="Leather",Level=90,id=20297,StackCount=1,Rarity=2,MinLevel=60,SellPrice=46978,Texture=132492,Link="|cff1eff00|Hitem:20297::::::::40:::::::|h[90 Green Rogue Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Felcloth Boots"]={SubType="Cloth",Level=57,id=14108,StackCount=1,Rarity=2,MinLevel=52,SellPrice=11112,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14108::::::::40:::::::|h[Felcloth Boots]|h|r"},["Dalin's Heart"]={SubType="Quest",Level=1,id=6312,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Type="Quest",Link="|cffffffff|Hitem:6312::::::::40:::::::|h[Dalin's Heart]|h|r",EquipLoc=""},["Old Leather Belt"]={SubType="Leather",Level=5,id=2173,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=132493,Link="|cffffffff|Hitem:2173::::::::40:::::::|h[Old Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Deprecated Anti-magic Potion"]={SubType="Consumable",Level=28,id=3768,StackCount=5,Rarity=1,MinLevel=18,SellPrice=62,Texture=134720,Type="Consumable",Link="|cffffffff|Hitem:3768::::::::40:::::::|h[Deprecated Anti-magic Potion]|h|r",EquipLoc=""},["Grasp of the Fallen Emperor"]={SubType="Mail",Level=81,id=21607,StackCount=1,Rarity=4,MinLevel=60,SellPrice=56933,Texture=132521,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:21607::::::::40:::::::|h[Grasp of the Fallen Emperor]|h|r"},["Bracelets of Royal Redemption"]={SubType="Cloth",Level=81,id=21604,StackCount=1,Rarity=4,MinLevel=60,SellPrice=37549,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:21604::::::::40:::::::|h[Bracelets of Royal Redemption]|h|r"},["Gorishi Scent Gland"]={SubType="Quest",Level=1,id=11837,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134343,Type="Quest",Link="|cffffffff|Hitem:11837::::::::40:::::::|h[Gorishi Scent Gland]|h|r",EquipLoc=""},["Cloak of Clarity"]={SubType="Cloth",Level=88,id=21583,StackCount=1,Rarity=4,MinLevel=60,SellPrice=76906,Texture=133754,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffa335ee|Hitem:21583::::::::40:::::::|h[Cloak of Clarity]|h|r"},["Brilliant Scale"]={SubType="Junk",Level=1,id=6826,StackCount=10,Rarity=0,MinLevel=0,SellPrice=548,Texture=134303,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:6826::::::::40:::::::|h[Brilliant Scale]|h|r",EquipLoc=""},["Arachnidian Pauldrons"]={SubType="Cloth",Level=52,id=14296,StackCount=1,Rarity=2,MinLevel=47,SellPrice=7568,Texture=135049,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14296::::::::40:::::::|h[Arachnidian Pauldrons]|h|r"},["Fel Iron"]={SubType="Quest",Level=1,id=11171,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135231,Type="Quest",Link="|cffffffff|Hitem:11171::::::::40:::::::|h[Fel Iron]|h|r",EquipLoc=""},["Gnomish Ham Radio"]={SubType="Devices",Level=44,id=10723,StackCount=10,Rarity=1,MinLevel=0,SellPrice=750,Texture=135899,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:10723::::::::40:::::::|h[Gnomish Ham Radio]|h|r",Type="Trade Goods"},["Block Mallet"]={SubType="One-Handed Maces",Level=22,id=1938,StackCount=1,Rarity=2,MinLevel=17,SellPrice=1962,Texture=133052,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:1938::::::::40:::::::|h[Block Mallet]|h|r",Type="Weapon"},["Blood Guard's Leather Walkers"]={SubType="Leather",Level=66,id=22856,StackCount=1,Rarity=3,MinLevel=60,SellPrice=12192,Texture=132539,Link="|cff0070dd|Hitem:22856::::::::40:::::::|h[Blood Guard's Leather Walkers]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Kresh's Back"]={SubType="Shields",Level=20,id=13245,StackCount=1,Rarity=3,MinLevel=15,SellPrice=1064,Texture=134964,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:13245::::::::40:::::::|h[Kresh's Back]|h|r"},["Celestial Crown"]={SubType="Cloth",Level=61,id=14312,StackCount=1,Rarity=2,MinLevel=56,SellPrice=13541,Texture=132767,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14312::::::::40:::::::|h[Celestial Crown]|h|r"},["Master's Robe"]={SubType="Cloth",Level=65,id=10254,StackCount=1,Rarity=2,MinLevel=60,SellPrice=22164,Texture=132670,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:10254::::::::40:::::::|h[Master's Robe]|h|r",Type="Armor"},["Band of Unanswered Prayers"]={SubType="Miscellaneous",Level=83,id=22939,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133392,Link="|cffa335ee|Hitem:22939::::::::40:::::::|h[Band of Unanswered Prayers]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Red Whelp Scale"]={SubType="Junk",Level=1,id=7287,StackCount=5,Rarity=1,MinLevel=0,SellPrice=100,Texture=134304,EquipLoc="",Link="|cffffffff|Hitem:7287::::::::40:::::::|h[Red Whelp Scale]|h|r",Type="Miscellaneous"},["Glowing Crystal Ring"]={SubType="Miscellaneous",Level=57,id=18402,StackCount=1,Rarity=2,MinLevel=0,SellPrice=18662,Texture=133363,Type="Armor",Link="|cff1eff00|Hitem:18402::::::::40:::::::|h[Glowing Crystal Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Thunder Ale"]={SubType="Consumable",Level=1,id=2686,StackCount=10,Rarity=1,MinLevel=1,SellPrice=12,Texture=132800,EquipLoc="",Link="|cffffffff|Hitem:2686::::::::40:::::::|h[Thunder Ale]|h|r",Type="Consumable"},["Monster - Sword, Horde Jagged Green"]={SubType="One-Handed Swords",Level=1,id=10878,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:10878::::::::40:::::::|h[Monster - Sword, Horde Jagged Green]|h|r",Type="Weapon"},["Thief's Blade"]={SubType="One-Handed Swords",Level=22,id=5192,StackCount=1,Rarity=2,MinLevel=17,SellPrice=1803,Texture=135325,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:5192::::::::40:::::::|h[Thief's Blade]|h|r"},["Grimoire of Blood Boil"]={SubType="Book",Level=6,id=1228,StackCount=1,Rarity=1,MinLevel=6,SellPrice=50,Texture=133738,Link="|cffffffff|Hitem:1228::::::::40:::::::|h[Grimoire of Blood Boil]|h|r",EquipLoc="",Type="Recipe"},["AHNQIRAJ TEST ITEM A CLOTH BRACER"]={SubType="Miscellaneous",Level=1,id=21433,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:21433::::::::40:::::::|h[AHNQIRAJ TEST ITEM A CLOTH BRACER]|h|r"},["Spiced Wolf Meat"]={SubType="Consumable",Level=7,id=2680,StackCount=20,Rarity=1,MinLevel=1,SellPrice=10,Texture=134021,Link="|cffffffff|Hitem:2680::::::::40:::::::|h[Spiced Wolf Meat]|h|r",EquipLoc="",Type="Consumable"},["Monster - Dynamite, Lit"]={SubType="One-Handed Maces",Level=1,id=2884,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133714,Link="|cff9d9d9d|Hitem:2884::::::::40:::::::|h[Monster - Dynamite, Lit]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["The Plague Bearer"]={SubType="Shields",Level=83,id=22818,StackCount=1,Rarity=4,MinLevel=60,SellPrice=124717,Texture=134972,Link="|cffa335ee|Hitem:22818::::::::40:::::::|h[The Plague Bearer]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Sweet Surprise"]={SubType="Consumable",Level=1,id=22239,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135459,Link="|cffffffff|Hitem:22239::::::::40:::::::|h[Sweet Surprise]|h|r",EquipLoc="",Type="Consumable"},["Belgrom's Sealed Note"]={SubType="Quest",Level=1,id=5850,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133468,EquipLoc="",Link="|cffffffff|Hitem:5850::::::::40:::::::|h[Belgrom's Sealed Note]|h|r",Type="Quest"},["Lightforge Ingot"]={SubType="Quest",Level=1,id=2702,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133218,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2702::::::::40:::::::|h[Lightforge Ingot]|h|r"},["Laughing Sister's Hair"]={SubType="Quest",Level=1,id=7270,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134162,EquipLoc="",Link="|cffffffff|Hitem:7270::::::::40:::::::|h[Laughing Sister's Hair]|h|r",Type="Quest"},["Thunder Bluff Marzipan"]={SubType="Quest",Level=1,id=20497,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133985,Link="|cffffffff|Hitem:20497::::::::40:::::::|h[Thunder Bluff Marzipan]|h|r",EquipLoc="",Type="Quest"},["Monster - Mace2H, Ornate Metal Hammer"]={SubType="Two-Handed Maces",Level=1,id=2557,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=133041,Link="|cff9d9d9d|Hitem:2557::::::::40:::::::|h[Monster - Mace2H, Ornate Metal Hammer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Blue Firework"]={SubType="Consumable",Level=20,id=9312,StackCount=5,Rarity=1,MinLevel=0,SellPrice=5,Texture=135989,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9312::::::::40:::::::|h[Blue Firework]|h|r"},["Darkmoon Card: Blue Dragon"]={SubType="Miscellaneous",Level=66,id=19288,StackCount=1,Rarity=4,MinLevel=60,SellPrice=100000,Texture=134484,Link="|cffa335ee|Hitem:19288::::::::40:::::::|h[Darkmoon Card: Blue Dragon]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Long-barreled Musket"]={SubType="Guns",Level=33,id=3780,StackCount=1,Rarity=0,MinLevel=28,SellPrice=1877,Texture=135610,Type="Weapon",Link="|cff9d9d9d|Hitem:3780::::::::40:::::::|h[Long-barreled Musket]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Band of Veiled Shadows"]={SubType="Miscellaneous",Level=65,id=21405,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133425,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:21405::::::::40:::::::|h[Band of Veiled Shadows]|h|r"},["Manual: Mageweave Bandage"]={SubType="First Aid",Level=42,id=16113,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=133735,EquipLoc="",Link="|cffffffff|Hitem:16113::::::::40:::::::|h[Manual: Mageweave Bandage]|h|r",Type="Recipe"},["Nerubian Slavemaker"]={SubType="Crossbows",Level=89,id=22812,StackCount=1,Rarity=4,MinLevel=60,SellPrice=211849,Texture=135541,Link="|cffa335ee|Hitem:22812::::::::40:::::::|h[Nerubian Slavemaker]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Letter to Ello"]={SubType="Quest",Level=1,id=1637,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",Link="|cffffffff|Hitem:1637::::::::40:::::::|h[Letter to Ello]|h|r",EquipLoc=""},["Thieves' Tools"]={SubType="Trade Goods",Level=15,id=5060,StackCount=1,Rarity=1,MinLevel=15,SellPrice=0,Texture=134065,Link="|cffffffff|Hitem:5060::::::::40:::::::|h[Thieves' Tools]|h|r",EquipLoc="",Type="Trade Goods"},["Broken Wishbone"]={SubType="Junk",Level=1,id=5115,StackCount=5,Rarity=0,MinLevel=0,SellPrice=101,Texture=133727,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5115::::::::40:::::::|h[Broken Wishbone]|h|r"},["Green Hills of Stranglethorn - Page 6"]={SubType="Junk",Level=1,id=2730,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,Type="Miscellaneous",Link="|cffffffff|Hitem:2730::::::::40:::::::|h[Green Hills of Stranglethorn - Page 6]|h|r",EquipLoc=""},["Mantle of the Oracle"]={SubType="Cloth",Level=78,id=21350,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45983,Texture=135034,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:21350::::::::40:::::::|h[Mantle of the Oracle]|h|r"},["Pattern: Volcanic Leggings"]={SubType="Leatherworking",Level=54,id=15732,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15732::::::::40:::::::|h[Pattern: Volcanic Leggings]|h|r",Type="Recipe"},["Goldenbark Apple"]={SubType="Consumable",Level=35,id=4539,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=133976,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:4539::::::::40:::::::|h[Goldenbark Apple]|h|r"},["Slayer's Crest"]={SubType="Miscellaneous",Level=90,id=23041,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91160,Texture=135441,Link="|cffa335ee|Hitem:23041::::::::40:::::::|h[Slayer's Crest]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Brackclaw"]={SubType="Daggers",Level=19,id=2235,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1281,Texture=135651,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:2235::::::::40:::::::|h[Brackclaw]|h|r"},["Red Power Crystal"]={SubType="Junk",Level=1,id=11186,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=134130,Type="Miscellaneous",Link="|cffffffff|Hitem:11186::::::::40:::::::|h[Red Power Crystal]|h|r",EquipLoc=""},["Handbook of Feint V"]={SubType="Book",Level=60,id=21303,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133742,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:21303::::::::40:::::::|h[Handbook of Feint V]|h|r"},["Champion's Greaves"]={SubType="Mail",Level=46,id=7542,StackCount=1,Rarity=2,MinLevel=41,SellPrice=8284,Texture=132590,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7542::::::::40:::::::|h[Champion's Greaves]|h|r",Type="Armor"},["Polar Bear Collar"]={SubType="Junk",Level=1,id=22781,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132498,Link="|cffffffff|Hitem:22781::::::::40:::::::|h[Polar Bear Collar]|h|r",EquipLoc="",Type="Miscellaneous"},["Adept Short Staff"]={SubType="Staves",Level=8,id=2503,StackCount=1,Rarity=1,MinLevel=3,SellPrice=103,Texture=135139,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:2503::::::::40:::::::|h[Adept Short Staff]|h|r"},["Recipe: Giant Clam Scorcho"]={SubType="Cooking",Level=35,id=6039,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:6039::::::::40:::::::|h[Recipe: Giant Clam Scorcho]|h|r",EquipLoc=""},["Enigma Circlet"]={SubType="Cloth",Level=81,id=21347,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58170,Texture=133074,Link="|cffa335ee|Hitem:21347::::::::40:::::::|h[Enigma Circlet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Smoldering Claw"]={SubType="Polearms",Level=54,id=12243,StackCount=1,Rarity=3,MinLevel=49,SellPrice=45980,Texture=135574,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12243::::::::40:::::::|h[Smoldering Claw]|h|r"},["Apprentice's Robe"]={SubType="Cloth",Level=1,id=6116,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=132662,Link="|cff9d9d9d|Hitem:6116::::::::40:::::::|h[Apprentice's Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Amethyst Phial"]={SubType="Quest",Level=1,id=5623,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134798,EquipLoc="",Link="|cffffffff|Hitem:5623::::::::40:::::::|h[Amethyst Phial]|h|r",Type="Quest"},["Monster - Gun, Silver Musket"]={SubType="Guns",Level=1,id=12523,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135612,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:12523::::::::40:::::::|h[Monster - Gun, Silver Musket]|h|r"},["Pattern: Sylvan Shoulders"]={SubType="Tailoring",Level=70,id=22772,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:22772::::::::40:::::::|h[Pattern: Sylvan Shoulders]|h|r",EquipLoc="",Type="Recipe"},["Schematic: Small Seaforium Charge"]={SubType="Engineering",Level=20,id=4409,StackCount=1,Rarity=2,MinLevel=0,SellPrice=200,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:4409::::::::40:::::::|h[Schematic: Small Seaforium Charge]|h|r"},["Eye of C'Thun"]={SubType="Quest",Level=60,id=21221,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=136152,Type="Quest",EquipLoc="",Link="|cffa335ee|Hitem:21221::::::::40:::::::|h[Eye of C'Thun]|h|r"},["Rich Purple Silk Shirt"]={SubType="Miscellaneous",Level=37,id=4335,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=135020,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:4335::::::::40:::::::|h[Rich Purple Silk Shirt]|h|r"},["Recipe: Transmute Water to Air"]={SubType="Alchemy",Level=55,id=13485,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13485::::::::40:::::::|h[Recipe: Transmute Water to Air]|h|r"},["Heraldic Headpiece"]={SubType="Leather",Level=48,id=8122,StackCount=1,Rarity=2,MinLevel=43,SellPrice=7875,Texture=133127,Link="|cff1eff00|Hitem:8122::::::::40:::::::|h[Heraldic Headpiece]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Helm of Narv"]={SubType="Mail",Level=59,id=2245,StackCount=1,Rarity=4,MinLevel=54,SellPrice=27636,Texture=133073,Link="|cffa335ee|Hitem:2245::::::::40:::::::|h[Helm of Narv]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Sigil Fragment"]={SubType="Quest",Level=1,id=4450,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134416,Type="Quest",Link="|cffffffff|Hitem:4450::::::::40:::::::|h[Sigil Fragment]|h|r",EquipLoc=""},["Wax-polished Armor"]={SubType="Mail",Level=15,id=6195,StackCount=1,Rarity=2,MinLevel=10,SellPrice=416,Texture=132624,Type="Armor",Link="|cff1eff00|Hitem:6195::::::::40:::::::|h[Wax-polished Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Grim Pauldrons"]={SubType="Mail",Level=36,id=4443,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3472,Texture=135038,Link="|cff1eff00|Hitem:4443::::::::40:::::::|h[Grim Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Filled Vial Labeled #3"]={SubType="Quest",Level=1,id=10693,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134836,EquipLoc="",Link="|cffffffff|Hitem:10693::::::::40:::::::|h[Filled Vial Labeled #3]|h|r",Type="Quest"},["Resplendent Sarong"]={SubType="Cloth",Level=60,id=14324,StackCount=1,Rarity=2,MinLevel=55,SellPrice=16706,Texture=134592,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14324::::::::40:::::::|h[Resplendent Sarong]|h|r"},["Silvershell Leggings"]={SubType="Plate",Level=51,id=10633,StackCount=1,Rarity=3,MinLevel=46,SellPrice=11684,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:10633::::::::40:::::::|h[Silvershell Leggings]|h|r",Type="Armor"},["Plans: Rough Bronze Bracers"]={SubType="Blacksmithing",Level=23,id=5577,StackCount=1,Rarity=2,MinLevel=0,SellPrice=300,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:5577::::::::40:::::::|h[Plans: Rough Bronze Bracers]|h|r",Type="Recipe"},["Flimsy Chain Bracers"]={SubType="Mail",Level=4,id=2651,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:2651::::::::40:::::::|h[Flimsy Chain Bracers]|h|r",Type="Armor"},["Monster - Claw Insect"]={SubType="Fist Weapons",Level=1,id=11314,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134294,Type="Weapon",Link="|cff9d9d9d|Hitem:11314::::::::40:::::::|h[Monster - Claw Insect]|h|r",EquipLoc="INVTYPE_WEAPON"},["Deckhand's Shirt"]={SubType="Miscellaneous",Level=14,id=5107,StackCount=1,Rarity=1,MinLevel=0,SellPrice=139,Texture=135016,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:5107::::::::40:::::::|h[Deckhand's Shirt]|h|r",Type="Armor"},["Ironvine Gloves"]={SubType="Plate",Level=70,id=22763,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15806,Texture=132963,Link="|cff0070dd|Hitem:22763::::::::40:::::::|h[Ironvine Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Magus Long Staff"]={SubType="Staves",Level=58,id=15276,StackCount=1,Rarity=2,MinLevel=53,SellPrice=45263,Texture=135151,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15276::::::::40:::::::|h[Magus Long Staff]|h|r",Type="Weapon"},["Head of Nagaz"]={SubType="Quest",Level=1,id=3672,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Type="Quest",Link="|cffffffff|Hitem:3672::::::::40:::::::|h[Head of Nagaz]|h|r",EquipLoc=""},["Recipe: Dirge's Kickin' Chimaerok Chops"]={SubType="Cooking",Level=60,id=21025,StackCount=1,Rarity=4,MinLevel=0,SellPrice=1250,Texture=133734,Type="Recipe",EquipLoc="",Link="|cffa335ee|Hitem:21025::::::::40:::::::|h[Recipe: Dirge's Kickin' Chimaerok Chops]|h|r"},["Forest Pendant"]={SubType="Miscellaneous",Level=38,id=12040,StackCount=1,Rarity=2,MinLevel=33,SellPrice=4164,Texture=133288,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12040::::::::40:::::::|h[Forest Pendant]|h|r"},["Dirge's Kickin' Chimaerok Chops"]={SubType="Consumable",Level=65,id=21023,StackCount=20,Rarity=1,MinLevel=55,SellPrice=250,Texture=134021,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:21023::::::::40:::::::|h[Dirge's Kickin' Chimaerok Chops]|h|r"},["Young Crocolisk Skin"]={SubType="Quest",Level=1,id=3397,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134304,Link="|cffffffff|Hitem:3397::::::::40:::::::|h[Young Crocolisk Skin]|h|r",EquipLoc="",Type="Quest"},["Blazing Wand"]={SubType="Wands",Level=17,id=5212,StackCount=1,Rarity=2,MinLevel=12,SellPrice=672,Texture=135139,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5212::::::::40:::::::|h[Blazing Wand]|h|r"},["Knight-Lieutenant's Satin Boots"]={SubType="Cloth",Level=63,id=17594,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8481,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:17594::::::::40:::::::|h[Knight-Lieutenant's Satin Boots]|h|r",Type="Armor"},["Rigid Bracelets"]={SubType="Leather",Level=20,id=15112,StackCount=1,Rarity=2,MinLevel=15,SellPrice=354,Texture=132600,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15112::::::::40:::::::|h[Rigid Bracelets]|h|r",Type="Armor"},["Sentry's Leggings"]={SubType="Mail",Level=29,id=15529,StackCount=1,Rarity=2,MinLevel=24,SellPrice=2487,Texture=134706,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15529::::::::40:::::::|h[Sentry's Leggings]|h|r",Type="Armor"},["Puissant Cape"]={SubType="Cloth",Level=70,id=18541,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33028,Texture=133758,Type="Armor",Link="|cffa335ee|Hitem:18541::::::::40:::::::|h[Puissant Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Head of Jammal'an"]={SubType="Quest",Level=1,id=6212,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134177,Link="|cffffffff|Hitem:6212::::::::40:::::::|h[Head of Jammal'an]|h|r",EquipLoc="",Type="Quest"},["Bronze Scarab"]={SubType="Quest",Level=1,id=20861,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=134930,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:20861::::::::40:::::::|h[Bronze Scarab]|h|r"},["Robust Boots"]={SubType="Leather",Level=28,id=15121,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1433,Texture=132537,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15121::::::::40:::::::|h[Robust Boots]|h|r",Type="Armor"},["Tome of Polymorph: Pig"]={SubType="Book",Level=60,id=4142,StackCount=1,Rarity=3,MinLevel=60,SellPrice=750,Texture=133739,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:4142::::::::40:::::::|h[Tome of Polymorph: Pig]|h|r"},["Imperial Qiraji Regalia"]={SubType="Junk",Level=60,id=21237,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135157,Link="|cffa335ee|Hitem:21237::::::::40:::::::|h[Imperial Qiraji Regalia]|h|r",EquipLoc="",Type="Miscellaneous"},["Crawler Leg"]={SubType="Quest",Level=1,id=5385,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,EquipLoc="",Link="|cffffffff|Hitem:5385::::::::40:::::::|h[Crawler Leg]|h|r",Type="Quest"},["Codex of Resurrection III"]={SubType="Book",Level=42,id=8996,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133741,Link="|cffffffff|Hitem:8996::::::::40:::::::|h[Codex of Resurrection III]|h|r",EquipLoc="",Type="Recipe"},["Corrupted Blackwood Staff"]={SubType="Staves",Level=62,id=20724,StackCount=1,Rarity=2,MinLevel=0,SellPrice=58873,Texture=135144,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:20724::::::::40:::::::|h[Corrupted Blackwood Staff]|h|r"},["Frostfire Shoulderpads"]={SubType="Cloth",Level=86,id=22499,StackCount=1,Rarity=4,MinLevel=60,SellPrice=67669,Texture=135056,Link="|cffa335ee|Hitem:22499::::::::40:::::::|h[Frostfire Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Abjurer's Bands"]={SubType="Cloth",Level=48,id=9937,StackCount=1,Rarity=2,MinLevel=43,SellPrice=4004,Texture=132610,Link="|cff1eff00|Hitem:9937::::::::40:::::::|h[Abjurer's Bands]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Green Holiday Shirt"]={SubType="Miscellaneous",Level=40,id=17723,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=135024,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:17723::::::::40:::::::|h[Green Holiday Shirt]|h|r",Type="Armor"},["Crystal Lined Greaves"]={SubType="Plate",Level=63,id=20711,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16521,Texture=132583,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:20711::::::::40:::::::|h[Crystal Lined Greaves]|h|r"},["Black Menace"]={SubType="Daggers",Level=44,id=6831,StackCount=1,Rarity=3,MinLevel=0,SellPrice=17522,Texture=135311,Link="|cff0070dd|Hitem:6831::::::::40:::::::|h[Black Menace]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Gorishi Queen Brain"]={SubType="Quest",Level=0,id=11835,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134340,Type="Quest",Link="|cffffffff|Hitem:11835::::::::40:::::::|h[Gorishi Queen Brain]|h|r",EquipLoc=""},["Indomitable Belt"]={SubType="Leather",Level=60,id=14684,StackCount=1,Rarity=2,MinLevel=55,SellPrice=10477,Texture=132501,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14684::::::::40:::::::|h[Indomitable Belt]|h|r"},["Ironwood Treebranch"]={SubType="Two-Handed Maces",Level=25,id=911,StackCount=1,Rarity=2,MinLevel=20,SellPrice=3324,Texture=133476,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:911::::::::40:::::::|h[Ironwood Treebranch]|h|r",Type="Weapon"},["Twilight Pendant"]={SubType="Quest",Level=1,id=5879,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133281,Link="|cffffffff|Hitem:5879::::::::40:::::::|h[Twilight Pendant]|h|r",EquipLoc="",Type="Quest"},["Abyssal Cloth Pants"]={SubType="Cloth",Level=62,id=20674,StackCount=1,Rarity=3,MinLevel=57,SellPrice=21227,Texture=134598,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:20674::::::::40:::::::|h[Abyssal Cloth Pants]|h|r"},["Tome of Frost Shield II"]={SubType="Book",Level=20,id=980,StackCount=1,Rarity=1,MinLevel=20,SellPrice=750,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:980::::::::40:::::::|h[Tome of Frost Shield II]|h|r",EquipLoc=""},["Cabalist Bracers"]={SubType="Leather",Level=45,id=7534,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4016,Texture=132615,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:7534::::::::40:::::::|h[Cabalist Bracers]|h|r"},["Deathbone Sabatons"]={SubType="Plate",Level=61,id=14621,StackCount=1,Rarity=3,MinLevel=56,SellPrice=15261,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:14621::::::::40:::::::|h[Deathbone Sabatons]|h|r"},["Scythe Axe"]={SubType="Two-Handed Axes",Level=23,id=5749,StackCount=1,Rarity=2,MinLevel=18,SellPrice=2664,Texture=132397,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:5749::::::::40:::::::|h[Scythe Axe]|h|r",Type="Weapon"},["Abyssal Mail Legguards"]={SubType="Mail",Level=62,id=20668,StackCount=1,Rarity=3,MinLevel=57,SellPrice=33536,Texture=134668,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:20668::::::::40:::::::|h[Abyssal Mail Legguards]|h|r"},["Medium Quiver"]={SubType="Quiver",Level=15,id=11362,StackCount=1,Rarity=1,MinLevel=10,SellPrice=250,Texture=134410,Type="Quiver",Link="|cffffffff|Hitem:11362::::::::40:::::::|h[Medium Quiver]|h|r",EquipLoc="INVTYPE_BAG"},["Overlinked Chain Armor"]={SubType="Mail",Level=45,id=4007,StackCount=1,Rarity=0,MinLevel=40,SellPrice=3696,Texture=132635,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:4007::::::::40:::::::|h[Overlinked Chain Armor]|h|r"},["Tome of Polymorph: Turtle"]={SubType="Book",Level=60,id=22739,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14750,Texture=133739,Link="|cff0070dd|Hitem:22739::::::::40:::::::|h[Tome of Polymorph: Turtle]|h|r",EquipLoc="",Type="Recipe"},["Monster - Sword, 1H Uber Demon Blade"]={SubType="One-Handed Swords",Level=1,id=22738,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Link="|cff9d9d9d|Hitem:22738::::::::40:::::::|h[Monster - Sword, 1H Uber Demon Blade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Beastsmasher"]={SubType="One-Handed Maces",Level=55,id=11906,StackCount=1,Rarity=2,MinLevel=0,SellPrice=32723,Texture=133060,Type="Weapon",Link="|cff1eff00|Hitem:11906::::::::40:::::::|h[Beastsmasher]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Mood Ring"]={SubType="Miscellaneous",Level=10,id=7338,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133354,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffffffff|Hitem:7338::::::::40:::::::|h[Mood Ring]|h|r"},["Zandalar Haruspex's Belt"]={SubType="Leather",Level=61,id=19839,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132490,Link="|cffa335ee|Hitem:19839::::::::40:::::::|h[Zandalar Haruspex's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Test Nature Res Wrist Leather"]={SubType="Leather",Level=35,id=16127,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1725,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:16127::::::::40:::::::|h[Test Nature Res Wrist Leather]|h|r",Type="Armor"},["Dragonspur Wraps"]={SubType="Leather",Level=71,id=20615,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29643,Texture=132614,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:20615::::::::40:::::::|h[Dragonspur Wraps]|h|r"},["Level 50 Test Gear Mail - Shaman"]={SubType="Junk",Level=1,id=13694,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13694::::::::40:::::::|h[Level 50 Test Gear Mail - Shaman]|h|r"},["Unused Cloth Shoulder A01 Gray"]={SubType="Cloth",Level=35,id=4855,StackCount=1,Rarity=0,MinLevel=30,SellPrice=838,Texture=135036,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:4855::::::::40:::::::|h[Unused Cloth Shoulder A01 Gray]|h|r"},["Monster - Item, Vial Purple Offhand"]={SubType="Miscellaneous",Level=1,id=3695,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134718,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:3695::::::::40:::::::|h[Monster - Item, Vial Purple Offhand]|h|r"},["Book of Thorns"]={SubType="Book",Level=6,id=5139,StackCount=1,Rarity=1,MinLevel=6,SellPrice=20,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:5139::::::::40:::::::|h[Book of Thorns]|h|r",Type="Recipe"},["Amy's Blanket"]={SubType="Cloth",Level=28,id=13005,StackCount=1,Rarity=3,MinLevel=23,SellPrice=1331,Texture=133768,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:13005::::::::40:::::::|h[Amy's Blanket]|h|r"},["Test Shadow Resist Plate LockBox"]={SubType="Junk",Level=1,id=16184,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16184::::::::40:::::::|h[Test Shadow Resist Plate LockBox]|h|r",Type="Miscellaneous"},["Sturdy Female Dwarf Mask"]={SubType="Miscellaneous",Level=45,id=20583,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4738,Texture=134160,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:20583::::::::40:::::::|h[Sturdy Female Dwarf Mask]|h|r"},["Frostsaber Tunic"]={SubType="Leather",Level=62,id=15068,StackCount=1,Rarity=2,MinLevel=57,SellPrice=21835,Texture=132632,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15068::::::::40:::::::|h[Frostsaber Tunic]|h|r",Type="Armor"},["Hulking Shield"]={SubType="Shields",Level=26,id=15891,StackCount=1,Rarity=2,MinLevel=21,SellPrice=2014,Texture=134965,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15891::::::::40:::::::|h[Hulking Shield]|h|r",Type="Armor"},["Jouster's Legplates"]={SubType="Plate",Level=41,id=8162,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4900,Texture=134583,Link="|cff1eff00|Hitem:8162::::::::40:::::::|h[Jouster's Legplates]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Prismatic Band"]={SubType="Miscellaneous",Level=65,id=12017,StackCount=1,Rarity=2,MinLevel=60,SellPrice=8963,Texture=133351,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12017::::::::40:::::::|h[Prismatic Band]|h|r"},["Swiftrunner Cape"]={SubType="Cloth",Level=33,id=6745,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2239,Texture=133765,Type="Armor",Link="|cff1eff00|Hitem:6745::::::::40:::::::|h[Swiftrunner Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Sample Snapjaw Shell"]={SubType="Quest",Level=1,id=10414,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134303,EquipLoc="",Link="|cffffffff|Hitem:10414::::::::40:::::::|h[Sample Snapjaw Shell]|h|r",Type="Quest"},["Runed Stygian Belt"]={SubType="Cloth",Level=63,id=20539,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11908,Texture=132503,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:20539::::::::40:::::::|h[Runed Stygian Belt]|h|r"},["Monster - Item, Rolling Pin"]={SubType="Miscellaneous",Level=1,id=3351,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133942,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:3351::::::::40:::::::|h[Monster - Item, Rolling Pin]|h|r",Type="Weapon"},["Broken Silithid Chitin"]={SubType="Junk",Level=55,id=20499,StackCount=20,Rarity=0,MinLevel=0,SellPrice=500,Texture=134319,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:20499::::::::40:::::::|h[Broken Silithid Chitin]|h|r"},["Mighty Cloak"]={SubType="Cloth",Level=58,id=10148,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11273,Texture=133762,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10148::::::::40:::::::|h[Mighty Cloak]|h|r",Type="Armor"},["Plans: Frost Tiger Blade"]={SubType="Blacksmithing",Level=40,id=3868,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,Link="|cff1eff00|Hitem:3868::::::::40:::::::|h[Plans: Frost Tiger Blade]|h|r",EquipLoc="",Type="Recipe"},["Gnomeregan Gumdrop"]={SubType="Quest",Level=1,id=20494,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134123,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:20494::::::::40:::::::|h[Gnomeregan Gumdrop]|h|r"},["Archer's Gloves"]={SubType="Leather",Level=35,id=9861,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1753,Texture=132956,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9861::::::::40:::::::|h[Archer's Gloves]|h|r"},["Overlord's Gauntlets"]={SubType="Plate",Level=49,id=10205,StackCount=1,Rarity=2,MinLevel=44,SellPrice=4316,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10205::::::::40:::::::|h[Overlord's Gauntlets]|h|r",Type="Armor"},["Bright Pants"]={SubType="Cloth",Level=26,id=3067,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1275,Texture=134582,Type="Armor",Link="|cff1eff00|Hitem:3067::::::::40:::::::|h[Bright Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Gloves of the Tormented"]={SubType="Mail",Level=68,id=22715,StackCount=1,Rarity=3,MinLevel=60,SellPrice=22484,Texture=132944,Link="|cff0070dd|Hitem:22715::::::::40:::::::|h[Gloves of the Tormented]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Candy Corn"]={SubType="Consumable",Level=55,id=20389,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133986,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20389::::::::40:::::::|h[Candy Corn]|h|r"},["Zulian Scepter of Rites"]={SubType="One-Handed Maces",Level=68,id=22713,StackCount=1,Rarity=3,MinLevel=60,SellPrice=74410,Texture=135461,Link="|cff0070dd|Hitem:22713::::::::40:::::::|h[Zulian Scepter of Rites]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Ancient Qiraji Ripper"]={SubType="One-Handed Swords",Level=77,id=21650,StackCount=1,Rarity=4,MinLevel=60,SellPrice=146570,Texture=135369,Link="|cffa335ee|Hitem:21650::::::::40:::::::|h[Ancient Qiraji Ripper]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Formula: Enchant Cloak - Greater Fire Resistance"]={SubType="Enchanting",Level=70,id=20732,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25000,Texture=134327,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:20732::::::::40:::::::|h[Formula: Enchant Cloak - Greater Fire Resistance]|h|r"},["Frostsaber Leather"]={SubType="Trade Goods",Level=50,id=15422,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134350,EquipLoc="",Link="|cffffffff|Hitem:15422::::::::40:::::::|h[Frostsaber Leather]|h|r",Type="Trade Goods"},["Cloak of the Unseen Path"]={SubType="Cloth",Level=67,id=21403,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133767,Link="|cffa335ee|Hitem:21403::::::::40:::::::|h[Cloak of the Unseen Path]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Elder Wizard's Mantle"]={SubType="Cloth",Level=56,id=13013,StackCount=1,Rarity=3,MinLevel=51,SellPrice=12355,Texture=135045,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13013::::::::40:::::::|h[Elder Wizard's Mantle]|h|r"},["Frightskull Shaft"]={SubType="Two-Handed Maces",Level=59,id=14531,StackCount=1,Rarity=3,MinLevel=54,SellPrice=59891,Texture=133050,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:14531::::::::40:::::::|h[Frightskull Shaft]|h|r"},["Nemesis Robes"]={SubType="Cloth",Level=76,id=16931,StackCount=1,Rarity=4,MinLevel=60,SellPrice=55790,Texture=132716,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:16931::::::::40:::::::|h[Nemesis Robes]|h|r",Type="Armor"},["Frog Leg Stew"]={SubType="Consumable",Level=35,id=6807,StackCount=20,Rarity=1,MinLevel=0,SellPrice=62,Texture=133748,Type="Consumable",Link="|cffffffff|Hitem:6807::::::::40:::::::|h[Frog Leg Stew]|h|r",EquipLoc=""},["Deprecated Cuirboulli Cap"]={SubType="Leather",Level=27,id=3887,StackCount=1,Rarity=1,MinLevel=22,SellPrice=757,Texture=133072,Type="Armor",Link="|cffffffff|Hitem:3887::::::::40:::::::|h[Deprecated Cuirboulli Cap]|h|r",EquipLoc="INVTYPE_HEAD"},["Formula: Enchant Bracer - Healing"]={SubType="Enchanting",Level=64,id=19447,StackCount=1,Rarity=1,MinLevel=0,SellPrice=15000,Texture=134327,Link="|cffffffff|Hitem:19447::::::::40:::::::|h[Formula: Enchant Bracer - Healing]|h|r",EquipLoc="",Type="Recipe"},["Polar Leggings"]={SubType="Leather",Level=80,id=22701,StackCount=1,Rarity=4,MinLevel=0,SellPrice=91682,Texture=134646,Link="|cffa335ee|Hitem:22701::::::::40:::::::|h[Polar Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["The Shoveler"]={SubType="Two-Handed Maces",Level=37,id=9391,StackCount=1,Rarity=3,MinLevel=32,SellPrice=12831,Texture=134436,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9391::::::::40:::::::|h[The Shoveler]|h|r"},["Long Crawler Limb"]={SubType="Daggers",Level=15,id=2088,StackCount=1,Rarity=2,MinLevel=10,SellPrice=729,Texture=133723,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:2088::::::::40:::::::|h[Long Crawler Limb]|h|r"},["Strapped Bracers"]={SubType="Leather",Level=67,id=3979,StackCount=1,Rarity=0,MinLevel=62,SellPrice=5802,Texture=132603,EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:3979::::::::40:::::::|h[Strapped Bracers]|h|r",Type="Armor"},["Thunderfury, Blessed Blade of the Windseeker"]={SubType="One-Handed Swords",Level=80,id=19019,StackCount=1,Rarity=5,MinLevel=60,SellPrice=255355,Texture=135349,Link="|cffff8000|Hitem:19019::::::::40:::::::|h[Thunderfury, Blessed Blade of the Windseeker]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Ritual Belt"]={SubType="Cloth",Level=19,id=14131,StackCount=1,Rarity=2,MinLevel=14,SellPrice=242,Texture=132494,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14131::::::::40:::::::|h[Ritual Belt]|h|r"},["OOX-22/FE Distress Beacon"]={SubType="Quest",Level=40,id=8705,StackCount=1,Rarity=2,MinLevel=40,SellPrice=0,Texture=132836,Link="|cff1eff00|Hitem:8705::::::::40:::::::|h[OOX-22/FE Distress Beacon]|h|r",EquipLoc="",Type="Quest"},["Rock Hammer"]={SubType="Two-Handed Maces",Level=21,id=2026,StackCount=1,Rarity=1,MinLevel=16,SellPrice=1257,Texture=133046,Type="Weapon",Link="|cffffffff|Hitem:2026::::::::40:::::::|h[Rock Hammer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Shiny Red Apple"]={SubType="Consumable",Level=5,id=4536,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=133975,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:4536::::::::40:::::::|h[Shiny Red Apple]|h|r"},["Burnished Pauldrons"]={SubType="Mail",Level=22,id=4694,StackCount=1,Rarity=1,MinLevel=17,SellPrice=515,Texture=135059,Link="|cffffffff|Hitem:4694::::::::40:::::::|h[Burnished Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Purple Dye"]={SubType="Trade Goods",Level=50,id=4342,StackCount=10,Rarity=1,MinLevel=0,SellPrice=625,Texture=134713,Link="|cffffffff|Hitem:4342::::::::40:::::::|h[Purple Dye]|h|r",EquipLoc="",Type="Trade Goods"},["Imposing Boots"]={SubType="Leather",Level=45,id=15162,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5829,Texture=132536,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15162::::::::40:::::::|h[Imposing Boots]|h|r",Type="Armor"},["Ravasaur Pheromone Gland"]={SubType="Quest",Level=1,id=11509,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134343,Type="Quest",Link="|cffffffff|Hitem:11509::::::::40:::::::|h[Ravasaur Pheromone Gland]|h|r",EquipLoc=""},["Torn Furry Ear"]={SubType="Junk",Level=1,id=5136,StackCount=5,Rarity=0,MinLevel=0,SellPrice=177,Texture=134360,EquipLoc="",Link="|cff9d9d9d|Hitem:5136::::::::40:::::::|h[Torn Furry Ear]|h|r",Type="Miscellaneous"},["Pattern: Polar Bracers"]={SubType="Tailoring",Level=80,id=22695,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37500,Texture=134939,Link="|cffffffff|Hitem:22695::::::::40:::::::|h[Pattern: Polar Bracers]|h|r",EquipLoc="",Type="Recipe"},["90 Green Warrior Gun"]={SubType="Guns",Level=90,id=20245,StackCount=1,Rarity=2,MinLevel=60,SellPrice=131474,Texture=135614,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:20245::::::::40:::::::|h[90 Green Warrior Gun]|h|r"},["90 Green Warrior Bracelets"]={SubType="Plate",Level=90,id=20239,StackCount=1,Rarity=2,MinLevel=60,SellPrice=34271,Texture=132618,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:20239::::::::40:::::::|h[90 Green Warrior Bracelets]|h|r"},["Incendia Agave"]={SubType="Quest",Level=1,id=12732,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134196,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12732::::::::40:::::::|h[Incendia Agave]|h|r"},["Stromgarde Cavalry Leggings"]={SubType="Mail",Level=37,id=4741,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5438,Texture=134583,Type="Armor",Link="|cff1eff00|Hitem:4741::::::::40:::::::|h[Stromgarde Cavalry Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Defiler's Silk Bandage"]={SubType="Consumable",Level=35,id=20235,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=133672,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20235::::::::40:::::::|h[Defiler's Silk Bandage]|h|r"},["PVP - Alliance Mine Deed"]={SubType="Key",Level=1,id=6210,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134238,Type="Key",Link="|cffffffff|Hitem:6210::::::::40:::::::|h[PVP - Alliance Mine Deed]|h|r",EquipLoc=""},["Monster - Staff, Badass Red Staff"]={SubType="Staves",Level=1,id=11365,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",Link="|cff9d9d9d|Hitem:11365::::::::40:::::::|h[Monster - Staff, Badass Red Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Highlander's Field Ration"]={SubType="Consumable",Level=35,id=20226,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=133951,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20226::::::::40:::::::|h[Highlander's Field Ration]|h|r"},["Skeletal Fragments"]={SubType="Quest",Level=1,id=14619,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133724,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14619::::::::40:::::::|h[Skeletal Fragments]|h|r"},["Dwarven Homebrew"]={SubType="Consumable",Level=1,id=22173,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132797,Link="|cffffffff|Hitem:22173::::::::40:::::::|h[Dwarven Homebrew]|h|r",EquipLoc="",Type="Consumable"},["Small Glimmering Shard"]={SubType="Trade Goods",Level=20,id=10978,StackCount=20,Rarity=3,MinLevel=0,SellPrice=0,Texture=132877,EquipLoc="",Link="|cff0070dd|Hitem:10978::::::::40:::::::|h[Small Glimmering Shard]|h|r",Type="Trade Goods"},["Knight-Lieutenant's Chain Gauntlets"]={SubType="Mail",Level=63,id=16403,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8223,Texture=132944,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16403::::::::40:::::::|h[Knight-Lieutenant's Chain Gauntlets]|h|r",Type="Armor"},["Pattern: Wild Leather Cloak"]={SubType="Leatherworking",Level=50,id=8408,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:8408::::::::40:::::::|h[Pattern: Wild Leather Cloak]|h|r"},["Icy Scale Gauntlets"]={SubType="Mail",Level=80,id=22666,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50712,Texture=132962,Link="|cffa335ee|Hitem:22666::::::::40:::::::|h[Icy Scale Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Journeyman's Belt"]={SubType="Cloth",Level=9,id=4663,StackCount=1,Rarity=1,MinLevel=4,SellPrice=23,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:4663::::::::40:::::::|h[Journeyman's Belt]|h|r",Type="Armor"},["Libram: Seal of Wrath II"]={SubType="Book",Level=40,id=5666,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:5666::::::::40:::::::|h[Libram: Seal of Wrath II]|h|r",Type="Recipe"},["Deprecated Big Quiver"]={SubType="Quiver",Level=1,id=2003,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133628,Type="Quiver",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:2003::::::::40:::::::|h[Deprecated Big Quiver]|h|r"},["Runed Bloodstained Hauberk"]={SubType="Mail",Level=65,id=19904,StackCount=1,Rarity=4,MinLevel=60,SellPrice=49325,Texture=132743,Link="|cffa335ee|Hitem:19904::::::::40:::::::|h[Runed Bloodstained Hauberk]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Deprecated Ham Sandwich"]={SubType="Consumable",Level=40,id=1649,StackCount=10,Rarity=1,MinLevel=30,SellPrice=126,Texture=133951,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:1649::::::::40:::::::|h[Deprecated Ham Sandwich]|h|r"},["High Chief's Armor"]={SubType="Plate",Level=56,id=14958,StackCount=1,Rarity=2,MinLevel=51,SellPrice=12938,Texture=132636,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14958::::::::40:::::::|h[High Chief's Armor]|h|r"},["Murloc Scale Bracers"]={SubType="Leather",Level=38,id=5783,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2316,Texture=132604,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:5783::::::::40:::::::|h[Murloc Scale Bracers]|h|r",Type="Armor"},["Test Fire Resist Leather LockBox"]={SubType="Junk",Level=1,id=16069,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16069::::::::40:::::::|h[Test Fire Resist Leather LockBox]|h|r",Type="Miscellaneous"},["Raincaller Pants"]={SubType="Cloth",Level=31,id=14193,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2006,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14193::::::::40:::::::|h[Raincaller Pants]|h|r"},["22 Pound Lobster"]={SubType="Junk",Level=55,id=13913,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=133900,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13913::::::::40:::::::|h[22 Pound Lobster]|h|r"},["Super Snapper FX"]={SubType="Quest",Level=1,id=9328,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134442,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9328::::::::40:::::::|h[Super Snapper FX]|h|r"},["Pattern: Felcloth Hood"]={SubType="Tailoring",Level=58,id=14496,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14496::::::::40:::::::|h[Pattern: Felcloth Hood]|h|r"},["Feral Bindings"]={SubType="Leather",Level=16,id=15306,StackCount=1,Rarity=2,MinLevel=11,SellPrice=208,Texture=132604,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15306::::::::40:::::::|h[Feral Bindings]|h|r",Type="Armor"},["Grimoire of Tainted Blood (Rank 1)"]={SubType="Book",Level=32,id=16384,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16384::::::::40:::::::|h[Grimoire of Tainted Blood (Rank 1)]|h|r",Type="Recipe"},["Carved Ogre Idol"]={SubType="Miscellaneous",Level=1,id=23716,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134230,Link="|cffffffff|Hitem:23716::::::::40:::::::|h[Carved Ogre Idol]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Tome of Conjure Water II"]={SubType="Book",Level=10,id=3097,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:3097::::::::40:::::::|h[Tome of Conjure Water II]|h|r",EquipLoc=""},["Warsong Gulch Runecloth Bandage"]={SubType="Consumable",Level=55,id=19066,StackCount=20,Rarity=1,MinLevel=45,SellPrice=100,Texture=133682,Link="|cffffffff|Hitem:19066::::::::40:::::::|h[Warsong Gulch Runecloth Bandage]|h|r",EquipLoc="",Type="Consumable"},["Forsaken Maul"]={SubType="One-Handed Maces",Level=5,id=3269,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=133053,Link="|cffffffff|Hitem:3269::::::::40:::::::|h[Forsaken Maul]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Sample Ichor"]={SubType="Quest",Level=1,id=3237,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134717,Link="|cffffffff|Hitem:3237::::::::40:::::::|h[Sample Ichor]|h|r",EquipLoc="",Type="Quest"},["Gem of the Fourth Khan"]={SubType="Quest",Level=1,id=17764,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134132,EquipLoc="",Link="|cffffffff|Hitem:17764::::::::40:::::::|h[Gem of the Fourth Khan]|h|r",Type="Quest"},["Bonescythe Waistguard"]={SubType="Leather",Level=88,id=22482,StackCount=1,Rarity=4,MinLevel=60,SellPrice=62892,Texture=132516,Link="|cffa335ee|Hitem:22482::::::::40:::::::|h[Bonescythe Waistguard]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Gordunni Orb"]={SubType="Quest",Level=1,id=9371,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134120,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9371::::::::40:::::::|h[Gordunni Orb]|h|r"},["Deprecated Apprentice Wand"]={SubType="Wands",Level=1,id=4902,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=135464,Link="|cffffffff|Hitem:4902::::::::40:::::::|h[Deprecated Apprentice Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Grimoire of Suffering (Rank 2)"]={SubType="Book",Level=36,id=16364,StackCount=1,Rarity=1,MinLevel=36,SellPrice=2250,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16364::::::::40:::::::|h[Grimoire of Suffering (Rank 2)]|h|r",Type="Recipe"},["Lok'delar, Stave of the Ancient Keepers DEP"]={SubType="Staves",Level=75,id=20487,StackCount=1,Rarity=4,MinLevel=60,SellPrice=166093,Texture=135158,Link="|cffa335ee|Hitem:20487::::::::40:::::::|h[Lok'delar, Stave of the Ancient Keepers DEP]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Craftsman's Writ - Baked Salmon"]={SubType="Junk",Level=60,id=22625,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22625::::::::40:::::::|h[Craftsman's Writ - Baked Salmon]|h|r",EquipLoc="",Type="Miscellaneous"},["Heavy Scorpid Leg"]={SubType="Junk",Level=1,id=19938,StackCount=10,Rarity=0,MinLevel=0,SellPrice=580,Texture=134343,Link="|cff9d9d9d|Hitem:19938::::::::40:::::::|h[Heavy Scorpid Leg]|h|r",EquipLoc="",Type="Miscellaneous"},["High Councillor's Sash"]={SubType="Cloth",Level=60,id=10144,StackCount=1,Rarity=2,MinLevel=55,SellPrice=8164,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10144::::::::40:::::::|h[High Councillor's Sash]|h|r",Type="Armor"},["Craftsman's Writ - Stonescale Eel"]={SubType="Junk",Level=60,id=22622,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22622::::::::40:::::::|h[Craftsman's Writ - Stonescale Eel]|h|r",EquipLoc="",Type="Miscellaneous"},["Ravager's Crown"]={SubType="Mail",Level=43,id=14774,StackCount=1,Rarity=2,MinLevel=38,SellPrice=6252,Texture=133121,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14774::::::::40:::::::|h[Ravager's Crown]|h|r"},["Codex of Mind Blast VIII"]={SubType="Book",Level=52,id=9015,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=133741,Link="|cffffffff|Hitem:9015::::::::40:::::::|h[Codex of Mind Blast VIII]|h|r",EquipLoc="",Type="Recipe"},["Craftsman's Writ - Flask of Petrification"]={SubType="Junk",Level=60,id=22621,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22621::::::::40:::::::|h[Craftsman's Writ - Flask of Petrification]|h|r",EquipLoc="",Type="Miscellaneous"},["Khadgar's Essays on Dimensional Convergence"]={SubType="Quest",Level=1,id=6065,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133461,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6065::::::::40:::::::|h[Khadgar's Essays on Dimensional Convergence]|h|r"},["Beaded Wraps"]={SubType="Cloth",Level=11,id=14094,StackCount=1,Rarity=2,MinLevel=6,SellPrice=121,Texture=135009,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14094::::::::40:::::::|h[Beaded Wraps]|h|r"},["Tablet of Serpent Totem III"]={SubType="Book",Level=20,id=5706,StackCount=1,Rarity=1,MinLevel=20,SellPrice=750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5706::::::::40:::::::|h[Tablet of Serpent Totem III]|h|r"},["Craftsman's Writ - Greater Frost Protection Potion"]={SubType="Junk",Level=60,id=22619,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22619::::::::40:::::::|h[Craftsman's Writ - Greater Frost Protection Potion]|h|r",EquipLoc="",Type="Miscellaneous"},["Plate Helmet D3 (test)"]={SubType="Leather",Level=1,id=1026,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133071,Type="Armor",Link="|cffffffff|Hitem:1026::::::::40:::::::|h[Plate Helmet D3 (test)]|h|r",EquipLoc="INVTYPE_HEAD"},["War Paint Shield"]={SubType="Shields",Level=20,id=14729,StackCount=1,Rarity=2,MinLevel=15,SellPrice=870,Texture=134964,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14729::::::::40:::::::|h[War Paint Shield]|h|r"},["Darkmist Wraps"]={SubType="Cloth",Level=46,id=14244,StackCount=1,Rarity=2,MinLevel=41,SellPrice=6870,Texture=132677,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14244::::::::40:::::::|h[Darkmist Wraps]|h|r"},["Crystallized Note"]={SubType="Junk",Level=1,id=10839,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134416,EquipLoc="",Link="|cffffffff|Hitem:10839::::::::40:::::::|h[Crystallized Note]|h|r",Type="Miscellaneous"},["Bottle of Dalaran Noir"]={SubType="Consumable",Level=1,id=2723,StackCount=20,Rarity=1,MinLevel=1,SellPrice=12,Texture=132797,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2723::::::::40:::::::|h[Bottle of Dalaran Noir]|h|r"},["Native Cloak"]={SubType="Cloth",Level=10,id=14098,StackCount=1,Rarity=1,MinLevel=5,SellPrice=43,Texture=133762,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:14098::::::::40:::::::|h[Native Cloak]|h|r"},["Keen Axe"]={SubType="One-Handed Axes",Level=38,id=3785,StackCount=1,Rarity=0,MinLevel=33,SellPrice=3650,Texture=132417,Type="Weapon",Link="|cff9d9d9d|Hitem:3785::::::::40:::::::|h[Keen Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Frost Runed Headdress"]={SubType="Cloth",Level=63,id=19105,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17540,Texture=133163,Link="|cff0070dd|Hitem:19105::::::::40:::::::|h[Frost Runed Headdress]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Tiny Crimson Whelpling"]={SubType="Junk",Level=30,id=8499,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134153,Link="|cffffffff|Hitem:8499::::::::40:::::::|h[Tiny Crimson Whelpling]|h|r",EquipLoc="",Type="Miscellaneous"},["Engraved Breastplate"]={SubType="Mail",Level=60,id=10230,StackCount=1,Rarity=2,MinLevel=55,SellPrice=25686,Texture=132751,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10230::::::::40:::::::|h[Engraved Breastplate]|h|r",Type="Armor"},["Dirty Trogg Cloth"]={SubType="Junk",Level=9,id=2591,StackCount=5,Rarity=0,MinLevel=0,SellPrice=5,Texture=133693,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:2591::::::::40:::::::|h[Dirty Trogg Cloth]|h|r",EquipLoc=""},["Outrider's Chain Leggings"]={SubType="Mail",Level=65,id=22673,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50092,Texture=134583,Link="|cffa335ee|Hitem:22673::::::::40:::::::|h[Outrider's Chain Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Tracking Boots"]={SubType="Mail",Level=5,id=5399,StackCount=1,Rarity=1,MinLevel=0,SellPrice=11,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:5399::::::::40:::::::|h[Tracking Boots]|h|r"},["Craftsman's Writ - Goblin Sapper Charge"]={SubType="Junk",Level=60,id=22613,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22613::::::::40:::::::|h[Craftsman's Writ - Goblin Sapper Charge]|h|r",EquipLoc="",Type="Miscellaneous"},["Burnt Leather Boots"]={SubType="Leather",Level=9,id=2963,StackCount=1,Rarity=1,MinLevel=4,SellPrice=41,Texture=132543,Type="Armor",Link="|cffffffff|Hitem:2963::::::::40:::::::|h[Burnt Leather Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Desecrated Robe"]={SubType="Junk",Level=60,id=22351,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133807,Link="|cffa335ee|Hitem:22351::::::::40:::::::|h[Desecrated Robe]|h|r",EquipLoc="",Type="Miscellaneous"},["Flash Bomb"]={SubType="Explosives",Level=37,id=4852,StackCount=5,Rarity=1,MinLevel=27,SellPrice=300,Texture=133581,EquipLoc="",Link="|cffffffff|Hitem:4852::::::::40:::::::|h[Flash Bomb]|h|r",Type="Trade Goods"},["Primalist's Seal"]={SubType="Miscellaneous",Level=71,id=19863,StackCount=1,Rarity=3,MinLevel=60,SellPrice=61286,Texture=133389,Link="|cff0070dd|Hitem:19863::::::::40:::::::|h[Primalist's Seal]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Monster - Axe, Hatchet C03 Red"]={SubType="One-Handed Axes",Level=1,id=13104,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13104::::::::40:::::::|h[Monster - Axe, Hatchet C03 Red]|h|r"},["Cerulean Talisman"]={SubType="Miscellaneous",Level=31,id=7427,StackCount=1,Rarity=2,MinLevel=26,SellPrice=3788,Texture=133290,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:7427::::::::40:::::::|h[Cerulean Talisman]|h|r"},["Snufflenose Owner's Manual"]={SubType="Quest",Level=1,id=5897,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133735,EquipLoc="",Link="|cffffffff|Hitem:5897::::::::40:::::::|h[Snufflenose Owner's Manual]|h|r",Type="Quest"},["Vestments of the Atal'ai Prophet"]={SubType="Cloth",Level=55,id=10806,StackCount=1,Rarity=3,MinLevel=50,SellPrice=15146,Texture=132679,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:10806::::::::40:::::::|h[Vestments of the Atal'ai Prophet]|h|r",Type="Armor"},["Craftsman's Writ - Runecloth Bag"]={SubType="Junk",Level=60,id=22611,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22611::::::::40:::::::|h[Craftsman's Writ - Runecloth Bag]|h|r",EquipLoc="",Type="Miscellaneous"},["Prison Cell Key"]={SubType="Key",Level=1,id=11140,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134244,Type="Key",Link="|cffffffff|Hitem:11140::::::::40:::::::|h[Prison Cell Key]|h|r",EquipLoc=""},["Webwood Egg"]={SubType="Quest",Level=1,id=5167,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132833,EquipLoc="",Link="|cffffffff|Hitem:5167::::::::40:::::::|h[Webwood Egg]|h|r",Type="Quest"},["Slavedriver's Cane"]={SubType="Staves",Level=60,id=13372,StackCount=1,Rarity=3,MinLevel=55,SellPrice=63769,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13372::::::::40:::::::|h[Slavedriver's Cane]|h|r"},["Craftsman's Writ - Runic Leather Pants"]={SubType="Junk",Level=60,id=22608,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22608::::::::40:::::::|h[Craftsman's Writ - Runic Leather Pants]|h|r",EquipLoc="",Type="Miscellaneous"},["Deprecated Glorious Shield"]={SubType="Shields",Level=60,id=15888,StackCount=1,Rarity=2,MinLevel=55,SellPrice=26929,Texture=134153,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15888::::::::40:::::::|h[Deprecated Glorious Shield]|h|r",Type="Armor"},["Test Strength Chest"]={SubType="Plate",Level=60,id=12189,StackCount=1,Rarity=1,MinLevel=55,SellPrice=9466,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:12189::::::::40:::::::|h[Test Strength Chest]|h|r"},["Scaled Silithid Gauntlets"]={SubType="Mail",Level=73,id=21480,StackCount=1,Rarity=3,MinLevel=60,SellPrice=29523,Texture=132944,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:21480::::::::40:::::::|h[Scaled Silithid Gauntlets]|h|r"},["Veiled Grips"]={SubType="Leather",Level=10,id=4940,StackCount=1,Rarity=1,MinLevel=0,SellPrice=36,Texture=132939,Link="|cffffffff|Hitem:4940::::::::40:::::::|h[Veiled Grips]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Pitchwood Wand"]={SubType="Wands",Level=45,id=5238,StackCount=1,Rarity=1,MinLevel=40,SellPrice=7145,Texture=135139,Link="|cffffffff|Hitem:5238::::::::40:::::::|h[Pitchwood Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Urgent Message"]={SubType="Quest",Level=1,id=11886,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134331,Type="Quest",Link="|cffffffff|Hitem:11886::::::::40:::::::|h[Urgent Message]|h|r",EquipLoc=""},["Pattern: Lavender Mageweave Shirt"]={SubType="Tailoring",Level=46,id=10314,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10314::::::::40:::::::|h[Pattern: Lavender Mageweave Shirt]|h|r",Type="Recipe"},["Jug of Badlands Bourbon"]={SubType="Consumable",Level=35,id=2595,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=132621,Type="Consumable",Link="|cffffffff|Hitem:2595::::::::40:::::::|h[Jug of Badlands Bourbon]|h|r",EquipLoc=""},["Silent Hunter"]={SubType="Daggers",Level=41,id=9520,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11461,Texture=135654,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:9520::::::::40:::::::|h[Silent Hunter]|h|r"},["Enchanted Water"]={SubType="Consumable",Level=35,id=4791,StackCount=20,Rarity=1,MinLevel=25,SellPrice=133,Texture=134797,Link="|cffffffff|Hitem:4791::::::::40:::::::|h[Enchanted Water]|h|r",EquipLoc="",Type="Consumable"},["Monster - Shield, Stormwind Guard"]={SubType="Shields",Level=1,id=143,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134951,EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:143::::::::40:::::::|h[Monster - Shield, Stormwind Guard]|h|r",Type="Armor"},["Tattered Cloth Pants"]={SubType="Cloth",Level=5,id=194,StackCount=1,Rarity=1,MinLevel=1,SellPrice=9,Texture=134592,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:194::::::::40:::::::|h[Tattered Cloth Pants]|h|r",Type="Armor"},["Honorguard Chestpiece"]={SubType="Mail",Level=55,id=9650,StackCount=1,Rarity=2,MinLevel=0,SellPrice=18016,Texture=132751,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9650::::::::40:::::::|h[Honorguard Chestpiece]|h|r"},["Tome of Mana Shield IV"]={SubType="Book",Level=44,id=8858,StackCount=1,Rarity=1,MinLevel=44,SellPrice=6250,Texture=133739,Link="|cffffffff|Hitem:8858::::::::40:::::::|h[Tome of Mana Shield IV]|h|r",EquipLoc="",Type="Recipe"},["QAEnchant Cloak +10 Shadow Resistance"]={SubType="Consumable",Level=1,id=22588,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22588::::::::40:::::::|h[QAEnchant Cloak +10 Shadow Resistance]|h|r",EquipLoc="",Type="Consumable"},["Carved Stone Idol"]={SubType="Quest",Level=1,id=2636,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134230,Link="|cffffffff|Hitem:2636::::::::40:::::::|h[Carved Stone Idol]|h|r",EquipLoc="",Type="Quest"},["QAEnchant Boots +5 Spirit"]={SubType="Consumable",Level=1,id=17895,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17895::::::::40:::::::|h[QAEnchant Boots +5 Spirit]|h|r",Type="Consumable"},["Tightly Sealed Trunk"]={SubType="Junk",Level=15,id=20708,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2,Texture=132594,Link="|cffffffff|Hitem:20708::::::::40:::::::|h[Tightly Sealed Trunk]|h|r",EquipLoc="",Type="Miscellaneous"},["Militia Warhammer"]={SubType="Two-Handed Maces",Level=5,id=5579,StackCount=1,Rarity=1,MinLevel=0,SellPrice=32,Texture=133052,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:5579::::::::40:::::::|h[Militia Warhammer]|h|r",Type="Weapon"},["Savage Guard"]={SubType="Junk",Level=60,id=22635,StackCount=1,Rarity=3,MinLevel=55,SellPrice=0,Texture=136094,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:22635::::::::40:::::::|h[Savage Guard]|h|r"},["Peerless Headband"]={SubType="Leather",Level=60,id=15430,StackCount=1,Rarity=2,MinLevel=55,SellPrice=15435,Texture=133689,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15430::::::::40:::::::|h[Peerless Headband]|h|r",Type="Armor"},["Lawbringer Boots"]={SubType="Plate",Level=66,id=16859,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25778,Texture=132590,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16859::::::::40:::::::|h[Lawbringer Boots]|h|r",Type="Armor"},["Commander's Leggings"]={SubType="Plate",Level=62,id=10382,StackCount=1,Rarity=2,MinLevel=57,SellPrice=18808,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10382::::::::40:::::::|h[Commander's Leggings]|h|r",Type="Armor"},["General's Dragonhide Belt"]={SubType="Leather",Level=65,id=16556,StackCount=1,Rarity=4,MinLevel=60,SellPrice=10351,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16556::::::::40:::::::|h[General's Dragonhide Belt]|h|r",Type="Armor"},["Drudge Boots"]={SubType="Leather",Level=77,id=21532,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58116,Texture=132542,Link="|cffa335ee|Hitem:21532::::::::40:::::::|h[Drudge Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Crypt Fiend Parts"]={SubType="Junk",Level=1,id=22525,StackCount=250,Rarity=1,MinLevel=0,SellPrice=0,Texture=133571,Link="|cffffffff|Hitem:22525::::::::40:::::::|h[Crypt Fiend Parts]|h|r",EquipLoc="",Type="Miscellaneous"},["Pattern: Icy Scale Breastplate"]={SubType="Leatherworking",Level=80,id=22696,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37500,Texture=134939,Link="|cffffffff|Hitem:22696::::::::40:::::::|h[Pattern: Icy Scale Breastplate]|h|r",EquipLoc="",Type="Recipe"},["Pattern: Hands of Darkness"]={SubType="Tailoring",Level=29,id=7092,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:7092::::::::40:::::::|h[Pattern: Hands of Darkness]|h|r"},["Metal Buckler"]={SubType="Shields",Level=37,id=2443,StackCount=1,Rarity=1,MinLevel=32,SellPrice=3417,Texture=134956,Link="|cffffffff|Hitem:2443::::::::40:::::::|h[Metal Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Venture Co. Documents"]={SubType="Quest",Level=1,id=4834,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133470,Type="Quest",Link="|cffffffff|Hitem:4834::::::::40:::::::|h[Venture Co. Documents]|h|r",EquipLoc=""},["Zanzil's Mixture"]={SubType="Quest",Level=1,id=4016,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134799,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4016::::::::40:::::::|h[Zanzil's Mixture]|h|r"},["Waistband of Balzaphon"]={SubType="Cloth",Level=60,id=23126,StackCount=1,Rarity=3,MinLevel=55,SellPrice=9488,Texture=132502,Link="|cff0070dd|Hitem:23126::::::::40:::::::|h[Waistband of Balzaphon]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["TEST Ragnaros Hammer"]={SubType="Two-Handed Maces",Level=80,id=18881,StackCount=1,Rarity=5,MinLevel=60,SellPrice=314707,Texture=133066,Type="Weapon",Link="|cffff8000|Hitem:18881::::::::40:::::::|h[TEST Ragnaros Hammer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Superior Cloak"]={SubType="Cloth",Level=24,id=9805,StackCount=1,Rarity=2,MinLevel=19,SellPrice=709,Texture=133762,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9805::::::::40:::::::|h[Superior Cloak]|h|r"},["Shoulderpads of Faith"]={SubType="Cloth",Level=86,id=22515,StackCount=1,Rarity=4,MinLevel=60,SellPrice=73703,Texture=135056,Link="|cffa335ee|Hitem:22515::::::::40:::::::|h[Shoulderpads of Faith]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Handguards of Undead Slaying"]={SubType="Mail",Level=63,id=23082,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16851,Texture=132945,Link="|cff0070dd|Hitem:23082::::::::40:::::::|h[Handguards of Undead Slaying]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Star of Mystaria"]={SubType="Miscellaneous",Level=63,id=12103,StackCount=1,Rarity=3,MinLevel=58,SellPrice=12157,Texture=133441,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:12103::::::::40:::::::|h[Star of Mystaria]|h|r"},["Deprecated Militia Handaxe"]={SubType="One-Handed Axes",Level=4,id=1157,StackCount=1,Rarity=0,MinLevel=1,SellPrice=10,Texture=132392,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:1157::::::::40:::::::|h[Deprecated Militia Handaxe]|h|r",Type="Weapon"},["Heavy Crate"]={SubType="Junk",Level=45,id=13874,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132763,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13874::::::::40:::::::|h[Heavy Crate]|h|r"},["Chromite Greaves"]={SubType="Plate",Level=44,id=8141,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4613,Texture=132539,Link="|cff1eff00|Hitem:8141::::::::40:::::::|h[Chromite Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Lightforged Blade"]={SubType="Two-Handed Swords",Level=52,id=20504,StackCount=1,Rarity=3,MinLevel=47,SellPrice=37873,Texture=135349,Link="|cff0070dd|Hitem:20504::::::::40:::::::|h[Lightforged Blade]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Hallowed Relic Charm"]={SubType="Miscellaneous",Level=45,id=4031,StackCount=1,Rarity=1,MinLevel=40,SellPrice=4000,Texture=133439,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:4031::::::::40:::::::|h[Hallowed Relic Charm]|h|r"},["Shadowhide Scalper"]={SubType="One-Handed Axes",Level=24,id=1459,StackCount=1,Rarity=2,MinLevel=19,SellPrice=2380,Texture=135421,Type="Weapon",Link="|cff1eff00|Hitem:1459::::::::40:::::::|h[Shadowhide Scalper]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Recipe: Redridge Goulash"]={SubType="Cooking",Level=20,id=2699,StackCount=1,Rarity=1,MinLevel=0,SellPrice=200,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:2699::::::::40:::::::|h[Recipe: Redridge Goulash]|h|r"},["Brackwater Vest"]={SubType="Mail",Level=18,id=3306,StackCount=1,Rarity=2,MinLevel=13,SellPrice=653,Texture=132647,Link="|cff1eff00|Hitem:3306::::::::40:::::::|h[Brackwater Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Gahz'rilla's Electrified Scale"]={SubType="Quest",Level=1,id=8707,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134305,Link="|cffffffff|Hitem:8707::::::::40:::::::|h[Gahz'rilla's Electrified Scale]|h|r",EquipLoc="",Type="Quest"},["Left Piece of Lord Valthalak's Amulet"]={SubType="Quest",Level=1,id=21984,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133320,Link="|cffffffff|Hitem:21984::::::::40:::::::|h[Left Piece of Lord Valthalak's Amulet]|h|r",EquipLoc="",Type="Quest"},["Knight's Pauldrons"]={SubType="Mail",Level=38,id=7459,StackCount=1,Rarity=2,MinLevel=33,SellPrice=4317,Texture=135058,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7459::::::::40:::::::|h[Knight's Pauldrons]|h|r",Type="Armor"},["Hardened Tumor"]={SubType="Quest",Level=1,id=3258,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3258::::::::40:::::::|h[Hardened Tumor]|h|r"},["Coral Claymore"]={SubType="Two-Handed Swords",Level=15,id=3188,StackCount=1,Rarity=2,MinLevel=10,SellPrice=879,Texture=135348,Type="Weapon",Link="|cff1eff00|Hitem:3188::::::::40:::::::|h[Coral Claymore]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Belt of the Fallen Emperor"]={SubType="Plate",Level=81,id=21606,StackCount=1,Rarity=4,MinLevel=60,SellPrice=37819,Texture=132523,Link="|cffa335ee|Hitem:21606::::::::40:::::::|h[Belt of the Fallen Emperor]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Blue Linen Robe"]={SubType="Cloth",Level=14,id=6242,StackCount=1,Rarity=2,MinLevel=9,SellPrice=243,Texture=132664,Type="Armor",Link="|cff1eff00|Hitem:6242::::::::40:::::::|h[Blue Linen Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Monster - Shield, Wall Metal Gold"]={SubType="Shields",Level=1,id=12981,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:12981::::::::40:::::::|h[Monster - Shield, Wall Metal Gold]|h|r"},["Frostfire Circlet"]={SubType="Cloth",Level=88,id=22498,StackCount=1,Rarity=4,MinLevel=60,SellPrice=74316,Texture=132767,Link="|cffa335ee|Hitem:22498::::::::40:::::::|h[Frostfire Circlet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Shalehusk Boots"]={SubType="Plate",Level=58,id=11787,StackCount=1,Rarity=3,MinLevel=53,SellPrice=13732,Texture=132582,Type="Armor",Link="|cff0070dd|Hitem:11787::::::::40:::::::|h[Shalehusk Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Janice's Parcel"]={SubType="Quest",Level=1,id=12724,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134144,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12724::::::::40:::::::|h[Janice's Parcel]|h|r"},["Lightweight Boots"]={SubType="Mail",Level=10,id=4946,StackCount=1,Rarity=1,MinLevel=0,SellPrice=67,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:4946::::::::40:::::::|h[Lightweight Boots]|h|r"},["Eye of the Dead"]={SubType="Miscellaneous",Level=90,id=23047,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91160,Texture=135439,Link="|cffa335ee|Hitem:23047::::::::40:::::::|h[Eye of the Dead]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Pulsating Hydra Heart"]={SubType="Miscellaneous",Level=20,id=5183,StackCount=1,Rarity=3,MinLevel=15,SellPrice=1575,Texture=134336,EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:5183::::::::40:::::::|h[Pulsating Hydra Heart]|h|r",Type="Armor"},["Arena Master"]={SubType="Quest",Level=40,id=18706,StackCount=1,Rarity=2,MinLevel=35,SellPrice=10031,Texture=133608,Type="Quest",Link="|cff1eff00|Hitem:18706::::::::40:::::::|h[Arena Master]|h|r",EquipLoc="INVTYPE_TRINKET"},["Monk's Staff"]={SubType="Staves",Level=42,id=866,StackCount=1,Rarity=2,MinLevel=37,SellPrice=16640,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:866::::::::40:::::::|h[Monk's Staff]|h|r"},["Alcor's Sunrazor"]={SubType="Daggers",Level=63,id=14555,StackCount=1,Rarity=4,MinLevel=58,SellPrice=78772,Texture=135344,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:14555::::::::40:::::::|h[Alcor's Sunrazor]|h|r"},["Recipe: Transmute Water to Undeath"]={SubType="Alchemy",Level=55,id=13487,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3750,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13487::::::::40:::::::|h[Recipe: Transmute Water to Undeath]|h|r"},["Energy Cloak"]={SubType="Cloth",Level=39,id=9397,StackCount=1,Rarity=3,MinLevel=34,SellPrice=3672,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:9397::::::::40:::::::|h[Energy Cloak]|h|r"},["Deprecated Lesser Bloodstone"]={SubType="Miscellaneous",Level=14,id=5409,StackCount=1,Rarity=1,MinLevel=9,SellPrice=0,Texture=135230,Link="|cffffffff|Hitem:5409::::::::40:::::::|h[Deprecated Lesser Bloodstone]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Heavy Mithril Pants"]={SubType="Plate",Level=42,id=7921,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5387,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7921::::::::40:::::::|h[Heavy Mithril Pants]|h|r",Type="Armor"},["Seal of the Damned"]={SubType="Miscellaneous",Level=85,id=23025,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133390,Link="|cffa335ee|Hitem:23025::::::::40:::::::|h[Seal of the Damned]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Trickster's Bindings"]={SubType="Leather",Level=38,id=15360,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2372,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15360::::::::40:::::::|h[Trickster's Bindings]|h|r",Type="Armor"},["Silver Mail Shoulderpads (Test)"]={SubType="Cloth",Level=1,id=909,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=135033,Type="Armor",Link="|cffffffff|Hitem:909::::::::40:::::::|h[Silver Mail Shoulderpads (Test)]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Dreamwalker Tunic"]={SubType="Leather",Level=92,id=22488,StackCount=1,Rarity=4,MinLevel=60,SellPrice=160571,Texture=132637,Link="|cffa335ee|Hitem:22488::::::::40:::::::|h[Dreamwalker Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Pattern: Dark Leather Tunic"]={SubType="Leatherworking",Level=20,id=2409,StackCount=1,Rarity=2,MinLevel=0,SellPrice=350,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:2409::::::::40:::::::|h[Pattern: Dark Leather Tunic]|h|r"},["Muddy Note"]={SubType="Quest",Level=1,id=2720,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:2720::::::::40:::::::|h[Muddy Note]|h|r",Type="Quest"},["Red Linen Bag"]={SubType="Bag",Level=5,id=5762,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=133623,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:5762::::::::40:::::::|h[Red Linen Bag]|h|r"},["Signet of Beckoning: Stone"]={SubType="Junk",Level=1,id=20435,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134457,Link="|cffffffff|Hitem:20435::::::::40:::::::|h[Signet of Beckoning: Stone]|h|r",EquipLoc="",Type="Miscellaneous"},["Plans: Radiant Breastplate"]={SubType="Blacksmithing",Level=54,id=12689,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12689::::::::40:::::::|h[Plans: Radiant Breastplate]|h|r"},["Silvered Bronze Gauntlets"]={SubType="Mail",Level=27,id=3483,StackCount=1,Rarity=2,MinLevel=22,SellPrice=965,Texture=132939,Type="Armor",Link="|cff1eff00|Hitem:3483::::::::40:::::::|h[Silvered Bronze Gauntlets]|h|r",EquipLoc="INVTYPE_HAND"},["Sayge's Fortune #8"]={SubType="Junk",Level=1,id=19243,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19243::::::::40:::::::|h[Sayge's Fortune #8]|h|r",EquipLoc="",Type="Miscellaneous"},["Rolf and Malakai's Medallions"]={SubType="Quest",Level=1,id=735,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133278,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:735::::::::40:::::::|h[Rolf and Malakai's Medallions]|h|r"},["Green Dragon Orb"]={SubType="Junk",Level=20,id=19055,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134333,Link="|cffffffff|Hitem:19055::::::::40:::::::|h[Green Dragon Orb]|h|r",EquipLoc="",Type="Miscellaneous"},["Fine Parchment"]={SubType="Junk",Level=1,id=3767,StackCount=5,Rarity=0,MinLevel=0,SellPrice=23,Texture=134944,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:3767::::::::40:::::::|h[Fine Parchment]|h|r"},["Swift Green Mechanostrider"]={SubType="Junk",Level=60,id=18772,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132247,Type="Miscellaneous",Link="|cffa335ee|Hitem:18772::::::::40:::::::|h[Swift Green Mechanostrider]|h|r",EquipLoc=""},["Spikelash Dagger"]={SubType="Daggers",Level=22,id=6333,StackCount=1,Rarity=2,MinLevel=17,SellPrice=1929,Texture=135646,Type="Weapon",Link="|cff1eff00|Hitem:6333::::::::40:::::::|h[Spikelash Dagger]|h|r",EquipLoc="INVTYPE_WEAPON"},["Deptecated White Stallion Summoning (Mount)"]={SubType="Junk",Level=1,id=901,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134937,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:901::::::::40:::::::|h[Deptecated White Stallion Summoning (Mount)]|h|r"},["Test Enchant Boots Stamina"]={SubType="Consumable",Level=45,id=16103,StackCount=1,Rarity=1,MinLevel=0,SellPrice=650,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:16103::::::::40:::::::|h[Test Enchant Boots Stamina]|h|r",Type="Consumable"},["Irontree Heart"]={SubType="Quest",Level=1,id=11173,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135241,Type="Quest",Link="|cffffffff|Hitem:11173::::::::40:::::::|h[Irontree Heart]|h|r",EquipLoc=""},["Wolf Rider's Belt"]={SubType="Leather",Level=42,id=15369,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3097,Texture=132491,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15369::::::::40:::::::|h[Wolf Rider's Belt]|h|r",Type="Armor"},["Briarwood Reed"]={SubType="Miscellaneous",Level=60,id=12930,StackCount=1,Rarity=3,MinLevel=55,SellPrice=10000,Texture=134413,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:12930::::::::40:::::::|h[Briarwood Reed]|h|r"},["Grimoire of Shadow Bolt V"]={SubType="Book",Level=28,id=9212,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9212::::::::40:::::::|h[Grimoire of Shadow Bolt V]|h|r"},["Jurassic Wristguards"]={SubType="Leather",Level=30,id=6198,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1113,Texture=132600,Type="Armor",Link="|cff1eff00|Hitem:6198::::::::40:::::::|h[Jurassic Wristguards]|h|r",EquipLoc="INVTYPE_WRIST"},["Rodentia Flint Axe"]={SubType="One-Handed Axes",Level=11,id=2281,StackCount=1,Rarity=2,MinLevel=6,SellPrice=300,Texture=132410,Link="|cff1eff00|Hitem:2281::::::::40:::::::|h[Rodentia Flint Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Pattern: Wild Leather Boots"]={SubType="Leatherworking",Level=49,id=8406,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:8406::::::::40:::::::|h[Pattern: Wild Leather Boots]|h|r"},["Moonshadow Stave"]={SubType="Staves",Level=52,id=22458,StackCount=1,Rarity=3,MinLevel=0,SellPrice=37892,Texture=135165,Link="|cff0070dd|Hitem:22458::::::::40:::::::|h[Moonshadow Stave]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Resilient Tunic"]={SubType="Cloth",Level=33,id=14398,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2355,Texture=135013,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14398::::::::40:::::::|h[Resilient Tunic]|h|r"},["Polished Obsidian Pauldrons"]={SubType="Plate",Level=68,id=21805,StackCount=1,Rarity=3,MinLevel=60,SellPrice=21414,Texture=135057,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:21805::::::::40:::::::|h[Polished Obsidian Pauldrons]|h|r"},["Headstriker Sword"]={SubType="Two-Handed Swords",Level=43,id=15251,StackCount=1,Rarity=2,MinLevel=38,SellPrice=17685,Texture=135352,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15251::::::::40:::::::|h[Headstriker Sword]|h|r",Type="Weapon"},["Diviner Long Staff"]={SubType="Staves",Level=52,id=15274,StackCount=1,Rarity=2,MinLevel=47,SellPrice=31666,Texture=135163,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15274::::::::40:::::::|h[Diviner Long Staff]|h|r",Type="Weapon"},["Azure Silk Hood"]={SubType="Cloth",Level=29,id=7048,StackCount=1,Rarity=1,MinLevel=24,SellPrice=745,Texture=133131,EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:7048::::::::40:::::::|h[Azure Silk Hood]|h|r",Type="Armor"},["Prelacy Cape"]={SubType="Cloth",Level=27,id=7004,StackCount=1,Rarity=2,MinLevel=0,SellPrice=984,Texture=133770,Link="|cff1eff00|Hitem:7004::::::::40:::::::|h[Prelacy Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Boots of the Redeemed Prophecy"]={SubType="Plate",Level=73,id=21704,StackCount=1,Rarity=4,MinLevel=60,SellPrice=39090,Texture=132589,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:21704::::::::40:::::::|h[Boots of the Redeemed Prophecy]|h|r"},["Redemption Girdle"]={SubType="Plate",Level=88,id=22431,StackCount=1,Rarity=4,MinLevel=60,SellPrice=52055,Texture=132511,Link="|cffa335ee|Hitem:22431::::::::40:::::::|h[Redemption Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Monster - Glaive - 2 Blade Silver (offhand)"]={SubType="One-Handed Axes",Level=1,id=20417,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,Link="|cff9d9d9d|Hitem:20417::::::::40:::::::|h[Monster - Glaive - 2 Blade Silver (offhand)]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Pattern: Rich Purple Silk Shirt"]={SubType="Tailoring",Level=37,id=4354,StackCount=1,Rarity=3,MinLevel=0,SellPrice=350,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:4354::::::::40:::::::|h[Pattern: Rich Purple Silk Shirt]|h|r",EquipLoc=""},["Breastplate of Wrath"]={SubType="Plate",Level=76,id=16966,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60503,Texture=132751,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16966::::::::40:::::::|h[Breastplate of Wrath]|h|r",Type="Armor"},["Dragonbone Wristguards"]={SubType="Plate",Level=71,id=20616,StackCount=1,Rarity=4,MinLevel=60,SellPrice=21638,Texture=132613,Link="|cffa335ee|Hitem:20616::::::::40:::::::|h[Dragonbone Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Cairnstone Sliver"]={SubType="Wands",Level=50,id=9654,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16928,Texture=135469,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:9654::::::::40:::::::|h[Cairnstone Sliver]|h|r"},["Legionnaire's Leather Legguards"]={SubType="Leather",Level=68,id=22880,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18191,Texture=134588,Link="|cff0070dd|Hitem:22880::::::::40:::::::|h[Legionnaire's Leather Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Redemption Wristguards"]={SubType="Plate",Level=88,id=22424,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50719,Texture=132601,Link="|cffa335ee|Hitem:22424::::::::40:::::::|h[Redemption Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Pattern: Red Mageweave Headband"]={SubType="Tailoring",Level=48,id=10320,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1750,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10320::::::::40:::::::|h[Pattern: Red Mageweave Headband]|h|r",Type="Recipe"},["Moonstalker Fang"]={SubType="Quest",Level=1,id=5413,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5413::::::::40:::::::|h[Moonstalker Fang]|h|r"},["Light Mail Armor"]={SubType="Mail",Level=10,id=2392,StackCount=1,Rarity=1,MinLevel=5,SellPrice=82,Texture=132624,Link="|cffffffff|Hitem:2392::::::::40:::::::|h[Light Mail Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Double-stitched Woolen Shoulders"]={SubType="Cloth",Level=22,id=4314,StackCount=1,Rarity=1,MinLevel=17,SellPrice=331,Texture=135037,Link="|cffffffff|Hitem:4314::::::::40:::::::|h[Double-stitched Woolen Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Rumsey Rum Dark"]={SubType="Consumable",Level=1,id=21114,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=132791,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:21114::::::::40:::::::|h[Rumsey Rum Dark]|h|r"},["Dreadmist Bracers"]={SubType="Cloth",Level=57,id=16703,StackCount=1,Rarity=3,MinLevel=52,SellPrice=8138,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16703::::::::40:::::::|h[Dreadmist Bracers]|h|r",Type="Armor"},["Deprecated Totemic Headpiece"]={SubType="Leather",Level=44,id=1684,StackCount=1,Rarity=0,MinLevel=39,SellPrice=2221,Texture=133072,Type="Armor",Link="|cff9d9d9d|Hitem:1684::::::::40:::::::|h[Deprecated Totemic Headpiece]|h|r",EquipLoc="INVTYPE_HEAD"},["Slayer's Sash"]={SubType="Mail",Level=28,id=14755,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1118,Texture=132502,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14755::::::::40:::::::|h[Slayer's Sash]|h|r"},["Berard's Journal"]={SubType="Quest",Level=1,id=3255,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133735,EquipLoc="",Link="|cffffffff|Hitem:3255::::::::40:::::::|h[Berard's Journal]|h|r",Type="Quest"},["Blood Guard's Plate Gauntlets"]={SubType="Plate",Level=66,id=22868,StackCount=1,Rarity=3,MinLevel=60,SellPrice=6357,Texture=132960,Link="|cff0070dd|Hitem:22868::::::::40:::::::|h[Blood Guard's Plate Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Dreadnaught Helmet"]={SubType="Plate",Level=88,id=22418,StackCount=1,Rarity=4,MinLevel=60,SellPrice=80096,Texture=133160,Link="|cffa335ee|Hitem:22418::::::::40:::::::|h[Dreadnaught Helmet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Shadowblade"]={SubType="Daggers",Level=53,id=2163,StackCount=1,Rarity=4,MinLevel=48,SellPrice=46710,Texture=135302,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:2163::::::::40:::::::|h[Shadowblade]|h|r"},["Searing Needle"]={SubType="Daggers",Level=51,id=12531,StackCount=1,Rarity=3,MinLevel=46,SellPrice=28883,Texture=135639,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:12531::::::::40:::::::|h[Searing Needle]|h|r"},["Peacekeeper Gauntlets"]={SubType="Plate",Level=68,id=20264,StackCount=1,Rarity=4,MinLevel=60,SellPrice=19101,Texture=132944,Link="|cffa335ee|Hitem:20264::::::::40:::::::|h[Peacekeeper Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Field Marshal's Lamellar Pauldrons"]={SubType="Plate",Level=74,id=16476,StackCount=1,Rarity=4,MinLevel=60,SellPrice=18757,Texture=135051,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16476::::::::40:::::::|h[Field Marshal's Lamellar Pauldrons]|h|r",Type="Armor"},["Mana Igniting Cord"]={SubType="Cloth",Level=71,id=19136,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22280,Texture=132500,Link="|cffa335ee|Hitem:19136::::::::40:::::::|h[Mana Igniting Cord]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Helm of the Executioner"]={SubType="Plate",Level=63,id=22411,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16476,Texture=133069,Link="|cff0070dd|Hitem:22411::::::::40:::::::|h[Helm of the Executioner]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Scouting Spaulders"]={SubType="Leather",Level=23,id=6588,StackCount=1,Rarity=1,MinLevel=18,SellPrice=458,Texture=135058,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:6588::::::::40:::::::|h[Scouting Spaulders]|h|r"},["Ebonhold Wristguards"]={SubType="Mail",Level=52,id=8264,StackCount=1,Rarity=2,MinLevel=47,SellPrice=7857,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:8264::::::::40:::::::|h[Ebonhold Wristguards]|h|r"},["Armored Chitin"]={SubType="Junk",Level=60,id=21222,StackCount=10,Rarity=0,MinLevel=0,SellPrice=1750,Texture=135035,Link="|cff9d9d9d|Hitem:21222::::::::40:::::::|h[Armored Chitin]|h|r",EquipLoc="",Type="Miscellaneous"},["Pauldrons of Elements"]={SubType="Mail",Level=60,id=16669,StackCount=1,Rarity=3,MinLevel=55,SellPrice=21995,Texture=135060,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16669::::::::40:::::::|h[Pauldrons of Elements]|h|r",Type="Armor"},["Grimoire of Soothing Kiss (Rank 3)"]={SubType="Book",Level=46,id=16377,StackCount=1,Rarity=1,MinLevel=46,SellPrice=3250,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16377::::::::40:::::::|h[Grimoire of Soothing Kiss (Rank 3)]|h|r",Type="Recipe"},["Monster - Staff, Basic"]={SubType="Staves",Level=1,id=1907,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135145,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1907::::::::40:::::::|h[Monster - Staff, Basic]|h|r",Type="Weapon"},["Cinder Wand"]={SubType="Wands",Level=16,id=5242,StackCount=1,Rarity=2,MinLevel=0,SellPrice=623,Texture=135139,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5242::::::::40:::::::|h[Cinder Wand]|h|r",Type="Weapon"},["Outrunner's Cloak"]={SubType="Cloth",Level=17,id=15501,StackCount=1,Rarity=2,MinLevel=12,SellPrice=269,Texture=133765,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15501::::::::40:::::::|h[Outrunner's Cloak]|h|r",Type="Armor"},["Earthfury Legguards"]={SubType="Mail",Level=66,id=16843,StackCount=1,Rarity=4,MinLevel=60,SellPrice=52346,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16843::::::::40:::::::|h[Earthfury Legguards]|h|r",Type="Armor"},["Rage Potion"]={SubType="Consumable",Level=14,id=5631,StackCount=5,Rarity=1,MinLevel=4,SellPrice=30,Texture=134804,EquipLoc="",Link="|cffffffff|Hitem:5631::::::::40:::::::|h[Rage Potion]|h|r",Type="Consumable"},["Solid Crystal Leg Shaft"]={SubType="Quest",Level=1,id=11725,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134321,Type="Quest",Link="|cffffffff|Hitem:11725::::::::40:::::::|h[Solid Crystal Leg Shaft]|h|r",EquipLoc=""},["Bite of Serra'kis"]={SubType="Daggers",Level=28,id=6904,StackCount=1,Rarity=3,MinLevel=23,SellPrice=4665,Texture=134298,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:6904::::::::40:::::::|h[Bite of Serra'kis]|h|r"},["Test Fire Resist Cloth LockBox"]={SubType="Junk",Level=1,id=16068,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16068::::::::40:::::::|h[Test Fire Resist Cloth LockBox]|h|r",Type="Miscellaneous"},["Brutal Gauntlets"]={SubType="Mail",Level=31,id=7129,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1546,Texture=132938,Link="|cff1eff00|Hitem:7129::::::::40:::::::|h[Brutal Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Perrine's Boots"]={SubType="Mail",Level=9,id=3332,StackCount=1,Rarity=1,MinLevel=4,SellPrice=48,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:3332::::::::40:::::::|h[Perrine's Boots]|h|r",Type="Armor"},["Embalmed Shroud"]={SubType="Cloth",Level=35,id=7691,StackCount=1,Rarity=3,MinLevel=30,SellPrice=2689,Texture=133130,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:7691::::::::40:::::::|h[Embalmed Shroud]|h|r",Type="Armor"},["Idol of Rejuvenation"]={SubType="Idols",Level=62,id=22398,StackCount=1,Rarity=3,MinLevel=57,SellPrice=16898,Texture=134914,Link="|cff0070dd|Hitem:22398::::::::40:::::::|h[Idol of Rejuvenation]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Defiler's Lamellar Greaves"]={SubType="Mail",Level=33,id=20182,StackCount=1,Rarity=3,MinLevel=28,SellPrice=3377,Texture=132585,Link="|cff0070dd|Hitem:20182::::::::40:::::::|h[Defiler's Lamellar Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Stitches' Femur"]={SubType="Miscellaneous",Level=30,id=3360,StackCount=1,Rarity=1,MinLevel=25,SellPrice=625,Texture=133718,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:3360::::::::40:::::::|h[Stitches' Femur]|h|r"},["Footwraps of the Oracle"]={SubType="Cloth",Level=78,id=21349,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45805,Texture=132564,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:21349::::::::40:::::::|h[Footwraps of the Oracle]|h|r"},["Unused Cloth Shoulder B02 Black"]={SubType="Cloth",Level=35,id=4858,StackCount=1,Rarity=0,MinLevel=30,SellPrice=847,Texture=135036,Type="Armor",Link="|cff9d9d9d|Hitem:4858::::::::40:::::::|h[Unused Cloth Shoulder B02 Black]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Tablet of Earth Shock"]={SubType="Book",Level=4,id=9039,StackCount=1,Rarity=1,MinLevel=4,SellPrice=10,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9039::::::::40:::::::|h[Tablet of Earth Shock]|h|r"},["Tome of Arcane Explosion III"]={SubType="Book",Level=30,id=8822,StackCount=1,Rarity=1,MinLevel=30,SellPrice=1050,Texture=133739,Link="|cffffffff|Hitem:8822::::::::40:::::::|h[Tome of Arcane Explosion III]|h|r",EquipLoc="",Type="Recipe"},["Strong Fishing Pole"]={SubType="Fishing Pole",Level=10,id=6365,StackCount=1,Rarity=1,MinLevel=5,SellPrice=180,Texture=132932,Link="|cffffffff|Hitem:6365::::::::40:::::::|h[Strong Fishing Pole]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Radiant Breastplate"]={SubType="Mail",Level=54,id=12415,StackCount=1,Rarity=2,MinLevel=49,SellPrice=17003,Texture=132751,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:12415::::::::40:::::::|h[Radiant Breastplate]|h|r"},["The Legacy Heart"]={SubType="Quest",Level=1,id=4644,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,EquipLoc="",Link="|cffffffff|Hitem:4644::::::::40:::::::|h[The Legacy Heart]|h|r",Type="Quest"},["Frostfire Belt"]={SubType="Cloth",Level=88,id=22502,StackCount=1,Rarity=4,MinLevel=60,SellPrice=51686,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:22502::::::::40:::::::|h[Frostfire Belt]|h|r"},["Tanglemoss Leggings"]={SubType="Leather",Level=61,id=18390,StackCount=1,Rarity=3,MinLevel=57,SellPrice=26811,Texture=134594,Type="Armor",Link="|cff0070dd|Hitem:18390::::::::40:::::::|h[Tanglemoss Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Elder's Bracers"]={SubType="Cloth",Level=31,id=7355,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1031,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:7355::::::::40:::::::|h[Elder's Bracers]|h|r",Type="Armor"},["Unidentified Ore"]={SubType="Quest",Level=1,id=5733,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134579,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5733::::::::40:::::::|h[Unidentified Ore]|h|r"},["Insignia Buckler"]={SubType="Shields",Level=35,id=4066,StackCount=1,Rarity=2,MinLevel=30,SellPrice=4845,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:4066::::::::40:::::::|h[Insignia Buckler]|h|r",Type="Armor"},["Titanic Leggings"]={SubType="Plate",Level=60,id=22385,StackCount=1,Rarity=4,MinLevel=55,SellPrice=25276,Texture=134584,Link="|cffa335ee|Hitem:22385::::::::40:::::::|h[Titanic Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Felcloth Gloves"]={SubType="Cloth",Level=62,id=18407,StackCount=1,Rarity=3,MinLevel=57,SellPrice=11139,Texture=132953,Type="Armor",Link="|cff0070dd|Hitem:18407::::::::40:::::::|h[Felcloth Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Persuader"]={SubType="One-Handed Maces",Level=63,id=22384,StackCount=1,Rarity=4,MinLevel=58,SellPrice=80554,Texture=133045,Link="|cffa335ee|Hitem:22384::::::::40:::::::|h[Persuader]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Sealed Venom Container"]={SubType="Quest",Level=1,id=22382,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132595,Link="|cffffffff|Hitem:22382::::::::40:::::::|h[Sealed Venom Container]|h|r",EquipLoc="",Type="Quest"},["Band of the Ogre King"]={SubType="Miscellaneous",Level=63,id=18522,StackCount=1,Rarity=3,MinLevel=58,SellPrice=36253,Texture=133374,Type="Armor",Link="|cff0070dd|Hitem:18522::::::::40:::::::|h[Band of the Ogre King]|h|r",EquipLoc="INVTYPE_FINGER"},["Demon Kissed Sack"]={SubType="Quest",Level=61,id=12849,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133646,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:12849::::::::40:::::::|h[Demon Kissed Sack]|h|r"},["Metalworking Gloves"]={SubType="Leather",Level=18,id=1944,StackCount=1,Rarity=2,MinLevel=13,SellPrice=259,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:1944::::::::40:::::::|h[Metalworking Gloves]|h|r",Type="Armor"},["Captain's Documents"]={SubType="Quest",Level=1,id=5882,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133467,EquipLoc="",Link="|cffffffff|Hitem:5882::::::::40:::::::|h[Captain's Documents]|h|r",Type="Quest"},["Tablet of Healing Stream Totem II"]={SubType="Book",Level=30,id=9081,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9081::::::::40:::::::|h[Tablet of Healing Stream Totem II]|h|r"},["Heavy Weave Belt"]={SubType="Cloth",Level=17,id=3589,StackCount=1,Rarity=1,MinLevel=12,SellPrice=115,Texture=132514,Link="|cffffffff|Hitem:3589::::::::40:::::::|h[Heavy Weave Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Empty Vial Labeled #3"]={SubType="Consumable",Level=1,id=10689,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132793,EquipLoc="",Link="|cffffffff|Hitem:10689::::::::40:::::::|h[Empty Vial Labeled #3]|h|r",Type="Consumable"},["Codex of Flash Heal IV"]={SubType="Book",Level=38,id=8983,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8983::::::::40:::::::|h[Codex of Flash Heal IV]|h|r"},["Black Metal War Axe"]={SubType="Two-Handed Axes",Level=28,id=2015,StackCount=1,Rarity=2,MinLevel=23,SellPrice=4443,Texture=132408,Type="Weapon",Link="|cff1eff00|Hitem:2015::::::::40:::::::|h[Black Metal War Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Seer's Cape"]={SubType="Cloth",Level=17,id=6378,StackCount=1,Rarity=2,MinLevel=12,SellPrice=292,Texture=133757,Link="|cff1eff00|Hitem:6378::::::::40:::::::|h[Seer's Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Parachute Cloak"]={SubType="Cloth",Level=45,id=10518,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4696,Texture=133763,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10518::::::::40:::::::|h[Parachute Cloak]|h|r",Type="Armor"},["Gem of Cobrahn"]={SubType="Quest",Level=1,id=9738,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134134,Link="|cffffffff|Hitem:9738::::::::40:::::::|h[Gem of Cobrahn]|h|r",EquipLoc="",Type="Quest"},["Silk Mantle of Gamn"]={SubType="Cloth",Level=28,id=2913,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1153,Texture=135036,Link="|cff1eff00|Hitem:2913::::::::40:::::::|h[Silk Mantle of Gamn]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Burnished Boots"]={SubType="Mail",Level=21,id=2991,StackCount=1,Rarity=2,MinLevel=16,SellPrice=705,Texture=132588,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:2991::::::::40:::::::|h[Burnished Boots]|h|r"},["Green Voodoo Feather"]={SubType="Junk",Level=1,id=20608,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=132925,Link="|cffffffff|Hitem:20608::::::::40:::::::|h[Green Voodoo Feather]|h|r",EquipLoc="",Type="Miscellaneous"},["Desecrated Circlet"]={SubType="Junk",Level=60,id=22367,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133809,Link="|cffa335ee|Hitem:22367::::::::40:::::::|h[Desecrated Circlet]|h|r",EquipLoc="",Type="Miscellaneous"},["Guild Charter"]={SubType="Junk",Level=0,id=5863,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133473,Link="|cffffffff|Hitem:5863::::::::40:::::::|h[Guild Charter]|h|r",EquipLoc="",Type="Miscellaneous"},["Heart of the Scale"]={SubType="Miscellaneous",Level=61,id=13164,StackCount=1,Rarity=3,MinLevel=56,SellPrice=10539,Texture=134084,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:13164::::::::40:::::::|h[Heart of the Scale]|h|r"},["Bloodsail Sash"]={SubType="Consumable",Level=1,id=22743,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133694,Link="|cffffffff|Hitem:22743::::::::40:::::::|h[Bloodsail Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Consumable"},["Deprecated Ravager Claw"]={SubType="Junk",Level=1,id=894,StackCount=5,Rarity=1,MinLevel=0,SellPrice=162,Texture=134297,EquipLoc="",Link="|cffffffff|Hitem:894::::::::40:::::::|h[Deprecated Ravager Claw]|h|r",Type="Miscellaneous"},["Tablet of Healing Wave V"]={SubType="Book",Level=24,id=9070,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9070::::::::40:::::::|h[Tablet of Healing Wave V]|h|r"},["Monster - Shield, Engineer A01"]={SubType="Shields",Level=1,id=11585,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",Link="|cff9d9d9d|Hitem:11585::::::::40:::::::|h[Monster - Shield, Engineer A01]|h|r",EquipLoc="INVTYPE_SHIELD"},["Tablet of Serpent Totem V"]={SubType="Book",Level=40,id=4187,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4187::::::::40:::::::|h[Tablet of Serpent Totem V]|h|r"},["Andonisus, Reaper of Souls"]={SubType="One-Handed Swords",Level=100,id=22736,StackCount=1,Rarity=5,MinLevel=60,SellPrice=0,Texture=135371,Link="|cffff8000|Hitem:22736::::::::40:::::::|h[Andonisus, Reaper of Souls]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Footpad's Pants"]={SubType="Cloth",Level=1,id=48,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Link="|cff9d9d9d|Hitem:48::::::::40:::::::|h[Footpad's Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Manslayer of the Qiraji"]={SubType="Two-Handed Swords",Level=66,id=21492,StackCount=1,Rarity=4,MinLevel=60,SellPrice=113287,Texture=135366,Link="|cffa335ee|Hitem:21492::::::::40:::::::|h[Manslayer of the Qiraji]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Crystal Starfire Medallion"]={SubType="Miscellaneous",Level=31,id=5003,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1713,Texture=133289,Link="|cff1eff00|Hitem:5003::::::::40:::::::|h[Crystal Starfire Medallion]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Dry Salt Lick"]={SubType="Junk",Level=1,id=5364,StackCount=5,Rarity=0,MinLevel=0,SellPrice=27,Texture=135234,Link="|cff9d9d9d|Hitem:5364::::::::40:::::::|h[Dry Salt Lick]|h|r",EquipLoc="",Type="Miscellaneous"},["Heavy Scorpid Shoulders"]={SubType="Mail",Level=61,id=15081,StackCount=1,Rarity=2,MinLevel=56,SellPrice=20261,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15081::::::::40:::::::|h[Heavy Scorpid Shoulders]|h|r",Type="Armor"},["Cloak of the Devoured"]={SubType="Cloth",Level=88,id=22731,StackCount=1,Rarity=4,MinLevel=60,SellPrice=74394,Texture=133770,Link="|cffa335ee|Hitem:22731::::::::40:::::::|h[Cloak of the Devoured]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Monster - Shield, Buckler Wooden"]={SubType="Shields",Level=1,id=1961,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Link="|cff9d9d9d|Hitem:1961::::::::40:::::::|h[Monster - Shield, Buckler Wooden]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Lofty Helm"]={SubType="Plate",Level=57,id=14925,StackCount=1,Rarity=2,MinLevel=52,SellPrice=10562,Texture=133078,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14925::::::::40:::::::|h[Lofty Helm]|h|r"},["Splinter of Atiesh"]={SubType="Junk",Level=60,id=22726,StackCount=40,Rarity=5,MinLevel=60,SellPrice=0,Texture=134888,Link="|cffff8000|Hitem:22726::::::::40:::::::|h[Splinter of Atiesh]|h|r",EquipLoc="",Type="Miscellaneous"},["Shadow Hunter Knife"]={SubType="Daggers",Level=32,id=5040,StackCount=1,Rarity=1,MinLevel=27,SellPrice=0,Texture=135647,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:5040::::::::40:::::::|h[Shadow Hunter Knife]|h|r",Type="Weapon"},["Barbed Choker"]={SubType="Miscellaneous",Level=77,id=21664,StackCount=1,Rarity=4,MinLevel=60,SellPrice=86443,Texture=133340,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:21664::::::::40:::::::|h[Barbed Choker]|h|r"},["Fahrad's Reloading Repeater"]={SubType="Crossbows",Level=65,id=22347,StackCount=1,Rarity=3,MinLevel=0,SellPrice=45728,Texture=135533,Link="|cff0070dd|Hitem:22347::::::::40:::::::|h[Fahrad's Reloading Repeater]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Mighty Spaulders"]={SubType="Leather",Level=62,id=10153,StackCount=1,Rarity=2,MinLevel=57,SellPrice=17444,Texture=135055,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10153::::::::40:::::::|h[Mighty Spaulders]|h|r",Type="Armor"},["Desecrated Breastplate"]={SubType="Junk",Level=60,id=22349,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133831,Link="|cffa335ee|Hitem:22349::::::::40:::::::|h[Desecrated Breastplate]|h|r",EquipLoc="",Type="Miscellaneous"},["Atal'ai Artifact"]={SubType="Quest",Level=1,id=6175,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134232,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6175::::::::40:::::::|h[Atal'ai Artifact]|h|r"},["Vial of Dire Water"]={SubType="Quest",Level=1,id=16973,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134805,EquipLoc="",Link="|cffffffff|Hitem:16973::::::::40:::::::|h[Vial of Dire Water]|h|r",Type="Quest"},["Soul Gem"]={SubType="Quest",Level=1,id=3912,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134336,Link="|cffffffff|Hitem:3912::::::::40:::::::|h[Soul Gem]|h|r",EquipLoc="",Type="Quest"},["Monster - Axe, 2H Arcanite Reaper"]={SubType="Two-Handed Axes",Level=1,id=22199,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=132395,Link="|cff9d9d9d|Hitem:22199::::::::40:::::::|h[Monster - Axe, 2H Arcanite Reaper]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Ebonhold Buckler"]={SubType="Shields",Level=56,id=8275,StackCount=1,Rarity=2,MinLevel=51,SellPrice=22028,Texture=134950,Link="|cff1eff00|Hitem:8275::::::::40:::::::|h[Ebonhold Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["(OLD)Medium Throwing Knife"]={SubType="Thrown",Level=3,id=2945,StackCount=200,Rarity=1,MinLevel=1,SellPrice=0,Texture=135426,Type="Weapon",EquipLoc="INVTYPE_THROWN",Link="|cffffffff|Hitem:2945::::::::40:::::::|h[(OLD)Medium Throwing Knife]|h|r"},["90 Epic Frost Shroud"]={SubType="Cloth",Level=90,id=20336,StackCount=1,Rarity=4,MinLevel=60,SellPrice=83524,Texture=133759,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffa335ee|Hitem:20336::::::::40:::::::|h[90 Epic Frost Shroud]|h|r"},["Brazier of Invocation: User's Manual"]={SubType="Junk",Level=0,id=22344,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,Link="|cffffffff|Hitem:22344::::::::40:::::::|h[Brazier of Invocation: User's Manual]|h|r",EquipLoc="",Type="Miscellaneous"},["Leggings of Torment"]={SubType="Cloth",Level=63,id=22342,StackCount=1,Rarity=3,MinLevel=58,SellPrice=21968,Texture=134589,Link="|cff0070dd|Hitem:22342::::::::40:::::::|h[Leggings of Torment]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Goblin \"Boom\" Box"]={SubType="Explosives",Level=43,id=10580,StackCount=10,Rarity=1,MinLevel=0,SellPrice=750,Texture=132594,EquipLoc="",Link="|cffffffff|Hitem:10580::::::::40:::::::|h[Goblin \"Boom\" Box]|h|r",Type="Trade Goods"},["Annealed Blade"]={SubType="One-Handed Swords",Level=40,id=9392,StackCount=1,Rarity=3,MinLevel=35,SellPrice=12980,Texture=135327,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9392::::::::40:::::::|h[Annealed Blade]|h|r"},["Heroic Pauldrons"]={SubType="Plate",Level=59,id=14937,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11406,Texture=135047,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14937::::::::40:::::::|h[Heroic Pauldrons]|h|r"},["Savage Frond"]={SubType="Junk",Level=1,id=22529,StackCount=250,Rarity=1,MinLevel=0,SellPrice=0,Texture=136074,Link="|cffffffff|Hitem:22529::::::::40:::::::|h[Savage Frond]|h|r",EquipLoc="",Type="Miscellaneous"},["Test Shadow Res Head Cloth"]={SubType="Cloth",Level=35,id=16146,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2070,Texture=133133,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:16146::::::::40:::::::|h[Test Shadow Res Head Cloth]|h|r",Type="Armor"},["Silvered Bronze Boots"]={SubType="Mail",Level=26,id=3482,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1317,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:3482::::::::40:::::::|h[Silvered Bronze Boots]|h|r"},["Deprecated Pickpocket"]={SubType="Junk",Level=1,id=5365,StackCount=5,Rarity=1,MinLevel=0,SellPrice=7,Texture=134368,Link="|cffffffff|Hitem:5365::::::::40:::::::|h[Deprecated Pickpocket]|h|r",EquipLoc="",Type="Miscellaneous"},["Large Glimmering Shard"]={SubType="Trade Goods",Level=25,id=11084,StackCount=20,Rarity=3,MinLevel=0,SellPrice=0,Texture=132876,Type="Trade Goods",Link="|cff0070dd|Hitem:11084::::::::40:::::::|h[Large Glimmering Shard]|h|r",EquipLoc=""},["Sergeant's Cloak"]={SubType="Cloth",Level=50,id=16341,StackCount=1,Rarity=3,MinLevel=45,SellPrice=4285,Texture=133759,EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:16341::::::::40:::::::|h[Sergeant's Cloak]|h|r",Type="Armor"},["A Bloodstained Envelope"]={SubType="Quest",Level=1,id=22930,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133466,Link="|cffffffff|Hitem:22930::::::::40:::::::|h[A Bloodstained Envelope]|h|r",EquipLoc="",Type="Quest"},["Black Mageweave Leggings"]={SubType="Cloth",Level=41,id=9999,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4832,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9999::::::::40:::::::|h[Black Mageweave Leggings]|h|r"},["Shardtooth Meat"]={SubType="Quest",Level=1,id=12622,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=133970,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12622::::::::40:::::::|h[Shardtooth Meat]|h|r"},["Lightforge Boots"]={SubType="Plate",Level=59,id=16725,StackCount=1,Rarity=3,MinLevel=54,SellPrice=13688,Texture=132584,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16725::::::::40:::::::|h[Lightforge Boots]|h|r",Type="Armor"},["Crescent of Forlorn Spirits"]={SubType="One-Handed Axes",Level=35,id=2044,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7357,Texture=132397,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:2044::::::::40:::::::|h[Crescent of Forlorn Spirits]|h|r"},["Handful of Oats"]={SubType="Quest",Level=1,id=1528,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134059,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1528::::::::40:::::::|h[Handful of Oats]|h|r"},["Deprecated White Leather Satchel"]={SubType="Bag",Level=15,id=855,StackCount=1,Rarity=1,MinLevel=0,SellPrice=625,Texture=133635,Link="|cffffffff|Hitem:855::::::::40:::::::|h[Deprecated White Leather Satchel]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Monster - Axe, Horde B01 Green"]={SubType="One-Handed Axes",Level=1,id=18596,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",Link="|cff9d9d9d|Hitem:18596::::::::40:::::::|h[Monster - Axe, Horde B01 Green]|h|r",EquipLoc="INVTYPE_WEAPON"},["Blade of Eternal Darkness"]={SubType="Daggers",Level=54,id=17780,StackCount=1,Rarity=4,MinLevel=49,SellPrice=46796,Texture=135279,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffa335ee|Hitem:17780::::::::40:::::::|h[Blade of Eternal Darkness]|h|r",Type="Weapon"},["Squealer's Belt"]={SubType="Leather",Level=7,id=4951,StackCount=1,Rarity=1,MinLevel=1,SellPrice=13,Texture=132493,Type="Armor",Link="|cffffffff|Hitem:4951::::::::40:::::::|h[Squealer's Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Barov Peasant Caller"]={SubType="Miscellaneous",Level=62,id=14022,StackCount=1,Rarity=3,MinLevel=0,SellPrice=8991,Texture=133706,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:14022::::::::40:::::::|h[Barov Peasant Caller]|h|r"},["Indomitable Vest"]={SubType="Leather",Level=64,id=14680,StackCount=1,Rarity=2,MinLevel=59,SellPrice=25101,Texture=132717,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14680::::::::40:::::::|h[Indomitable Vest]|h|r"},["Spellshifter Rod"]={SubType="Staves",Level=46,id=9527,StackCount=1,Rarity=2,MinLevel=0,SellPrice=21613,Texture=135473,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:9527::::::::40:::::::|h[Spellshifter Rod]|h|r"},["Small Quiver"]={SubType="Quiver",Level=5,id=5439,StackCount=1,Rarity=1,MinLevel=1,SellPrice=25,Texture=134409,Link="|cffffffff|Hitem:5439::::::::40:::::::|h[Small Quiver]|h|r",EquipLoc="INVTYPE_BAG",Type="Quiver"},["Pratt's Letter"]={SubType="Quest",Level=1,id=9235,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133461,Link="|cffffffff|Hitem:9235::::::::40:::::::|h[Pratt's Letter]|h|r",EquipLoc="",Type="Quest"},["Ironweave Bracers"]={SubType="Cloth",Level=61,id=22313,StackCount=1,Rarity=3,MinLevel=56,SellPrice=9963,Texture=132612,Link="|cff0070dd|Hitem:22313::::::::40:::::::|h[Ironweave Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Jadefire Pants"]={SubType="Leather",Level=54,id=15394,StackCount=1,Rarity=2,MinLevel=49,SellPrice=14615,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15394::::::::40:::::::|h[Jadefire Pants]|h|r",Type="Armor"},["Durability Shoulderpads"]={SubType="Cloth",Level=1,id=14389,StackCount=1,Rarity=3,MinLevel=0,SellPrice=2,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:14389::::::::40:::::::|h[Durability Shoulderpads]|h|r"},["Nagmara's Filled Vial"]={SubType="Consumable",Level=1,id=11413,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134714,Type="Consumable",Link="|cffffffff|Hitem:11413::::::::40:::::::|h[Nagmara's Filled Vial]|h|r",EquipLoc=""},["Cloak of the Cosmos"]={SubType="Cloth",Level=62,id=18389,StackCount=1,Rarity=3,MinLevel=57,SellPrice=16830,Texture=133753,Type="Armor",Link="|cff0070dd|Hitem:18389::::::::40:::::::|h[Cloak of the Cosmos]|h|r",EquipLoc="INVTYPE_CLOAK"},["Polar Tunic"]={SubType="Leather",Level=80,id=22661,StackCount=1,Rarity=4,MinLevel=60,SellPrice=89377,Texture=132649,Link="|cffa335ee|Hitem:22661::::::::40:::::::|h[Polar Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Don Rodrigo's Band"]={SubType="Miscellaneous",Level=65,id=21563,StackCount=1,Rarity=4,MinLevel=60,SellPrice=188888,Texture=133376,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:21563::::::::40:::::::|h[Don Rodrigo's Band]|h|r"},["Craftsman's Writ - Volcanic Hammer"]={SubType="Junk",Level=60,id=22602,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22602::::::::40:::::::|h[Craftsman's Writ - Volcanic Hammer]|h|r",EquipLoc="",Type="Miscellaneous"},["Dreamwatcher Staff"]={SubType="Staves",Level=10,id=4961,StackCount=1,Rarity=1,MinLevel=0,SellPrice=183,Texture=135159,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:4961::::::::40:::::::|h[Dreamwatcher Staff]|h|r",Type="Weapon"},["Scroll of Stamina II"]={SubType="Consumable",Level=30,id=1711,StackCount=5,Rarity=1,MinLevel=20,SellPrice=75,Texture=134943,Link="|cffffffff|Hitem:1711::::::::40:::::::|h[Scroll of Stamina II]|h|r",EquipLoc="",Type="Consumable"},["Hatchet"]={SubType="One-Handed Axes",Level=16,id=853,StackCount=1,Rarity=1,MinLevel=11,SellPrice=481,Texture=132402,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:853::::::::40:::::::|h[Hatchet]|h|r",Type="Weapon"},["Pattern: Big Bag of Enchantment"]={SubType="Tailoring",Level=65,id=22309,StackCount=1,Rarity=2,MinLevel=0,SellPrice=12500,Texture=134942,Link="|cff1eff00|Hitem:22309::::::::40:::::::|h[Pattern: Big Bag of Enchantment]|h|r",EquipLoc="",Type="Recipe"},["Glacial Vest"]={SubType="Cloth",Level=80,id=22652,StackCount=1,Rarity=4,MinLevel=60,SellPrice=69171,Texture=132649,Link="|cffa335ee|Hitem:22652::::::::40:::::::|h[Glacial Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Mildewed Letter"]={SubType="Consumable",Level=1,id=22765,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:22765::::::::40:::::::|h[Mildewed Letter]|h|r",EquipLoc="",Type="Consumable"},["Ironweave Belt"]={SubType="Cloth",Level=61,id=22306,StackCount=1,Rarity=3,MinLevel=56,SellPrice=9963,Texture=132492,Link="|cff0070dd|Hitem:22306::::::::40:::::::|h[Ironweave Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Coldtouch Phantom Wraps"]={SubType="Cloth",Level=60,id=13535,StackCount=1,Rarity=2,MinLevel=55,SellPrice=16829,Texture=132688,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:13535::::::::40:::::::|h[Coldtouch Phantom Wraps]|h|r"},["Ancestral Robe"]={SubType="Cloth",Level=13,id=6527,StackCount=1,Rarity=2,MinLevel=8,SellPrice=187,Texture=132654,Type="Armor",Link="|cff1eff00|Hitem:6527::::::::40:::::::|h[Ancestral Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Chromatic Boots"]={SubType="Plate",Level=77,id=19387,StackCount=1,Rarity=4,MinLevel=60,SellPrice=46826,Texture=132585,Link="|cffa335ee|Hitem:19387::::::::40:::::::|h[Chromatic Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Mistletoe"]={SubType="Junk",Level=1,id=21519,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134189,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21519::::::::40:::::::|h[Mistletoe]|h|r"},["Decoded Tablet Transcription"]={SubType="Consumable",Level=0,id=20405,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134331,Link="|cffffffff|Hitem:20405::::::::40:::::::|h[Decoded Tablet Transcription]|h|r",EquipLoc="",Type="Consumable"},["Ice Threaded Bullet"]={SubType="Bullet",Level=54,id=19317,StackCount=200,Rarity=2,MinLevel=51,SellPrice=7,Texture=135844,Link="|cff1eff00|Hitem:19317::::::::40:::::::|h[Ice Threaded Bullet]|h|r",EquipLoc="INVTYPE_AMMO",Type="Projectile"},["Signet of Expertise"]={SubType="Quest",Level=45,id=8703,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6492,Texture=133603,Type="Quest",EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:8703::::::::40:::::::|h[Signet of Expertise]|h|r"},["Hive'Zora Scout Report"]={SubType="Quest",Level=60,id=21158,StackCount=1,Rarity=1,MinLevel=58,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:21158::::::::40:::::::|h[Hive'Zora Scout Report]|h|r",EquipLoc="",Type="Quest"},["Gutgore Ripper"]={SubType="Daggers",Level=69,id=17071,StackCount=1,Rarity=4,MinLevel=60,SellPrice=104472,Texture=135654,EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:17071::::::::40:::::::|h[Gutgore Ripper]|h|r",Type="Weapon"},["Marshal's Satin Sash"]={SubType="Cloth",Level=65,id=17609,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8154,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:17609::::::::40:::::::|h[Marshal's Satin Sash]|h|r",Type="Armor"},["Chromite Barbute"]={SubType="Plate",Level=44,id=8142,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4630,Texture=133124,Link="|cff1eff00|Hitem:8142::::::::40:::::::|h[Chromite Barbute]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Windseeker Boots"]={SubType="Cloth",Level=25,id=16985,StackCount=1,Rarity=2,MinLevel=0,SellPrice=847,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:16985::::::::40:::::::|h[Windseeker Boots]|h|r",Type="Armor"},["Ironhide Shield"]={SubType="Shields",Level=56,id=15648,StackCount=1,Rarity=2,MinLevel=51,SellPrice=22212,Texture=134965,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15648::::::::40:::::::|h[Ironhide Shield]|h|r",Type="Armor"},["Sage's Cloth"]={SubType="Cloth",Level=32,id=6609,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2148,Texture=135012,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:6609::::::::40:::::::|h[Sage's Cloth]|h|r"},["Pattern: Big Voodoo Mask"]={SubType="Leatherworking",Level=44,id=8387,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1000,Texture=134942,Link="|cff1eff00|Hitem:8387::::::::40:::::::|h[Pattern: Big Voodoo Mask]|h|r",EquipLoc="",Type="Recipe"},["Jadefire Sabatons"]={SubType="Leather",Level=53,id=15389,StackCount=1,Rarity=2,MinLevel=48,SellPrice=10146,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15389::::::::40:::::::|h[Jadefire Sabatons]|h|r",Type="Armor"},["Pet Stone"]={SubType="Junk",Level=20,id=13343,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135240,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13343::::::::40:::::::|h[Pet Stone]|h|r"},["Snowball"]={SubType="Consumable",Level=5,id=17202,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132387,EquipLoc="",Link="|cffffffff|Hitem:17202::::::::40:::::::|h[Snowball]|h|r",Type="Consumable"},["Lion-headed Key"]={SubType="Quest",Level=1,id=11106,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134238,Type="Quest",Link="|cffffffff|Hitem:11106::::::::40:::::::|h[Lion-headed Key]|h|r",EquipLoc=""},["Red Wool Bandana"]={SubType="Quest",Level=1,id=2909,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133694,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2909::::::::40:::::::|h[Red Wool Bandana]|h|r"},["Dervish Boots"]={SubType="Leather",Level=28,id=6601,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1437,Texture=132537,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:6601::::::::40:::::::|h[Dervish Boots]|h|r"},["Satchel of Cards"]={SubType="Consumable",Level=1,id=22295,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133652,Link="|cffffffff|Hitem:22295::::::::40:::::::|h[Satchel of Cards]|h|r",EquipLoc="",Type="Consumable"},["Cuirboulli Boots"]={SubType="Leather",Level=27,id=2143,StackCount=1,Rarity=1,MinLevel=22,SellPrice=788,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:2143::::::::40:::::::|h[Cuirboulli Boots]|h|r"},["Explorers' League Commendation"]={SubType="Miscellaneous",Level=41,id=7746,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8430,Texture=133434,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:7746::::::::40:::::::|h[Explorers' League Commendation]|h|r",Type="Armor"},["Insect Analysis Report"]={SubType="Quest",Level=1,id=8594,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134331,Link="|cffffffff|Hitem:8594::::::::40:::::::|h[Insect Analysis Report]|h|r",EquipLoc="",Type="Quest"},["Dark Iron Pulverizer"]={SubType="Two-Handed Maces",Level=55,id=11608,StackCount=1,Rarity=3,MinLevel=50,SellPrice=45760,Texture=133046,Type="Weapon",Link="|cff0070dd|Hitem:11608::::::::40:::::::|h[Dark Iron Pulverizer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Cutlass"]={SubType="One-Handed Swords",Level=15,id=851,StackCount=1,Rarity=1,MinLevel=10,SellPrice=404,Texture=135346,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:851::::::::40:::::::|h[Cutlass]|h|r"},["Celestial Slippers"]={SubType="Cloth",Level=58,id=14310,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11615,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14310::::::::40:::::::|h[Celestial Slippers]|h|r"},["Cenarion Reservist's Legplates"]={SubType="Plate",Level=63,id=20700,StackCount=1,Rarity=3,MinLevel=0,SellPrice=21968,Texture=134694,Link="|cff0070dd|Hitem:20700::::::::40:::::::|h[Cenarion Reservist's Legplates]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Shiny War Axe"]={SubType="Two-Handed Axes",Level=23,id=1824,StackCount=1,Rarity=0,MinLevel=18,SellPrice=1104,Texture=132409,Link="|cff9d9d9d|Hitem:1824::::::::40:::::::|h[Shiny War Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Schematic: Field Repair Bot 74A"]={SubType="Engineering",Level=60,id=18235,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25000,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:18235::::::::40:::::::|h[Schematic: Field Repair Bot 74A]|h|r",EquipLoc=""},["Darkmantle Spaulders"]={SubType="Leather",Level=65,id=22008,StackCount=1,Rarity=3,MinLevel=0,SellPrice=22864,Texture=135038,Link="|cff0070dd|Hitem:22008::::::::40:::::::|h[Darkmantle Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Extinguished Torch"]={SubType="Junk",Level=1,id=7296,StackCount=5,Rarity=0,MinLevel=0,SellPrice=56,Texture=135434,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:7296::::::::40:::::::|h[Extinguished Torch]|h|r"},["Plans: Persuader"]={SubType="Blacksmithing",Level=63,id=22390,StackCount=1,Rarity=4,MinLevel=0,SellPrice=20000,Texture=134941,Link="|cffa335ee|Hitem:22390::::::::40:::::::|h[Plans: Persuader]|h|r",EquipLoc="",Type="Recipe"},["Codex of Shadow Word: Pain IV"]={SubType="Book",Level=26,id=1658,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133741,Type="Recipe",Link="|cffffffff|Hitem:1658::::::::40:::::::|h[Codex of Shadow Word: Pain IV]|h|r",EquipLoc=""},["Monster - Item, Sparkler White"]={SubType="Miscellaneous",Level=1,id=9702,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133942,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:9702::::::::40:::::::|h[Monster - Item, Sparkler White]|h|r"},["Prophetic Aura"]={SubType="Junk",Level=60,id=19789,StackCount=1,Rarity=3,MinLevel=60,SellPrice=0,Texture=135923,Link="|cff0070dd|Hitem:19789::::::::40:::::::|h[Prophetic Aura]|h|r",EquipLoc="",Type="Miscellaneous"},["Hyperion Legplates"]={SubType="Plate",Level=64,id=10389,StackCount=1,Rarity=2,MinLevel=59,SellPrice=19770,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10389::::::::40:::::::|h[Hyperion Legplates]|h|r",Type="Armor"},["Gypsy Trousers"]={SubType="Leather",Level=14,id=9756,StackCount=1,Rarity=2,MinLevel=9,SellPrice=294,Texture=134585,Link="|cff1eff00|Hitem:9756::::::::40:::::::|h[Gypsy Trousers]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["NG-5 Explosives (Blue)"]={SubType="Quest",Level=1,id=5695,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133713,Link="|cffffffff|Hitem:5695::::::::40:::::::|h[NG-5 Explosives (Blue)]|h|r",EquipLoc="",Type="Quest"},["Brilliant Smallfish"]={SubType="Consumable",Level=5,id=6290,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=133893,Link="|cffffffff|Hitem:6290::::::::40:::::::|h[Brilliant Smallfish]|h|r",EquipLoc="",Type="Consumable"},["Plans: Darkspear"]={SubType="Blacksmithing",Level=60,id=12832,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12832::::::::40:::::::|h[Plans: Darkspear]|h|r"},["Feralheart Cowl"]={SubType="Leather",Level=60,id=22109,StackCount=1,Rarity=4,MinLevel=0,SellPrice=24619,Texture=133129,Link="|cffa335ee|Hitem:22109::::::::40:::::::|h[Feralheart Cowl]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Craftsman's Writ - Wicked Leather Belt"]={SubType="Junk",Level=60,id=22607,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22607::::::::40:::::::|h[Craftsman's Writ - Wicked Leather Belt]|h|r",EquipLoc="",Type="Miscellaneous"},["Ishamuhale's Fang"]={SubType="Quest",Level=1,id=5101,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,EquipLoc="",Link="|cffffffff|Hitem:5101::::::::40:::::::|h[Ishamuhale's Fang]|h|r",Type="Quest"},["Purple Dinner Suit"]={SubType="Miscellaneous",Level=1,id=22282,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135028,Link="|cffffffff|Hitem:22282::::::::40:::::::|h[Purple Dinner Suit]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Deprecated Elven Protector"]={SubType="Shields",Level=36,id=9888,StackCount=1,Rarity=2,MinLevel=31,SellPrice=5204,Texture=136085,Link="|cff1eff00|Hitem:9888::::::::40:::::::|h[Deprecated Elven Protector]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Legplates of Ten Storms"]={SubType="Mail",Level=76,id=16946,StackCount=1,Rarity=4,MinLevel=60,SellPrice=90773,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16946::::::::40:::::::|h[Legplates of Ten Storms]|h|r",Type="Armor"},["Crimson Silk Belt"]={SubType="Cloth",Level=35,id=7055,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1503,Texture=132493,Link="|cff1eff00|Hitem:7055::::::::40:::::::|h[Crimson Silk Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Pattern: Wild Leather Shoulders"]={SubType="Leatherworking",Level=44,id=8403,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:8403::::::::40:::::::|h[Pattern: Wild Leather Shoulders]|h|r",EquipLoc="",Type="Recipe"},["Roast Raptor"]={SubType="Consumable",Level=35,id=12210,StackCount=20,Rarity=1,MinLevel=25,SellPrice=300,Texture=134006,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12210::::::::40:::::::|h[Roast Raptor]|h|r"},["Lovely Blue Dress"]={SubType="Miscellaneous",Level=1,id=22278,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132664,Link="|cffffffff|Hitem:22278::::::::40:::::::|h[Lovely Blue Dress]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Stronghorn Girdle"]={SubType="Mail",Level=50,id=9666,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7266,Texture=132515,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9666::::::::40:::::::|h[Stronghorn Girdle]|h|r"},["Wildvine"]={SubType="Trade Goods",Level=40,id=8153,StackCount=20,Rarity=1,MinLevel=0,SellPrice=5,Texture=134183,Link="|cffffffff|Hitem:8153::::::::40:::::::|h[Wildvine]|h|r",EquipLoc="",Type="Trade Goods"},["Canvas Vest"]={SubType="Cloth",Level=17,id=1770,StackCount=1,Rarity=0,MinLevel=12,SellPrice=143,Texture=135025,Link="|cff9d9d9d|Hitem:1770::::::::40:::::::|h[Canvas Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Monster - Axe, Hatchet Red"]={SubType="One-Handed Axes",Level=1,id=11763,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",Link="|cff9d9d9d|Hitem:11763::::::::40:::::::|h[Monster - Axe, Hatchet Red]|h|r",EquipLoc="INVTYPE_WEAPON"},["Monster - Sword2H, Horde A02"]={SubType="Two-Handed Swords",Level=1,id=22596,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4,Texture=135356,Link="|cffffffff|Hitem:22596::::::::40:::::::|h[Monster - Sword2H, Horde A02]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Clout Mace"]={SubType="One-Handed Maces",Level=54,id=13820,StackCount=1,Rarity=0,MinLevel=49,SellPrice=12042,Texture=133476,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:13820::::::::40:::::::|h[Clout Mace]|h|r"},["Adventurer's Pith Helmet"]={SubType="Leather",Level=37,id=9420,StackCount=1,Rarity=3,MinLevel=32,SellPrice=4083,Texture=133117,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:9420::::::::40:::::::|h[Adventurer's Pith Helmet]|h|r"},["Winter Kimchi"]={SubType="Consumable",Level=55,id=22324,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=134019,Link="|cffffffff|Hitem:22324::::::::40:::::::|h[Winter Kimchi]|h|r",EquipLoc="",Type="Consumable"},["Privateer's Cape"]={SubType="Cloth",Level=19,id=6179,StackCount=1,Rarity=2,MinLevel=14,SellPrice=556,Texture=133754,Link="|cff1eff00|Hitem:6179::::::::40:::::::|h[Privateer's Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Black Mageweave Shoulders"]={SubType="Cloth",Level=46,id=10027,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5479,Texture=135056,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10027::::::::40:::::::|h[Black Mageweave Shoulders]|h|r",Type="Armor"},["Ivycloth Pants"]={SubType="Cloth",Level=28,id=9797,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1528,Texture=134594,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9797::::::::40:::::::|h[Ivycloth Pants]|h|r"},["White Sparkler"]={SubType="Miscellaneous",Level=10,id=8625,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=135469,Link="|cffffffff|Hitem:8625::::::::40:::::::|h[White Sparkler]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Carved Stone Urn"]={SubType="Quest",Level=1,id=4610,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134514,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4610::::::::40:::::::|h[Carved Stone Urn]|h|r"},["Cenarion Reservist's Leggings"]={SubType="Leather",Level=63,id=20704,StackCount=1,Rarity=3,MinLevel=0,SellPrice=27461,Texture=134626,Link="|cff0070dd|Hitem:20704::::::::40:::::::|h[Cenarion Reservist's Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Ebonsteel Spaulders"]={SubType="Plate",Level=59,id=12557,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14368,Texture=135056,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:12557::::::::40:::::::|h[Ebonsteel Spaulders]|h|r"},["Acidic Walkers"]={SubType="Cloth",Level=32,id=9454,StackCount=1,Rarity=3,MinLevel=27,SellPrice=1984,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:9454::::::::40:::::::|h[Acidic Walkers]|h|r"},["Cruel Barb"]={SubType="One-Handed Swords",Level=24,id=5191,StackCount=1,Rarity=3,MinLevel=19,SellPrice=2964,Texture=135325,Link="|cff0070dd|Hitem:5191::::::::40:::::::|h[Cruel Barb]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Wraith Scythe"]={SubType="One-Handed Axes",Level=56,id=11920,StackCount=1,Rarity=3,MinLevel=51,SellPrice=40732,Texture=132404,Type="Weapon",Link="|cff0070dd|Hitem:11920::::::::40:::::::|h[Wraith Scythe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Warleader's Gauntlets"]={SubType="Plate",Level=60,id=14863,StackCount=1,Rarity=2,MinLevel=55,SellPrice=7951,Texture=132962,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14863::::::::40:::::::|h[Warleader's Gauntlets]|h|r"},["Legplates of the Eternal Guardian"]={SubType="Plate",Level=57,id=11927,StackCount=1,Rarity=3,MinLevel=52,SellPrice=16456,Texture=134584,Type="Armor",Link="|cff0070dd|Hitem:11927::::::::40:::::::|h[Legplates of the Eternal Guardian]|h|r",EquipLoc="INVTYPE_LEGS"},["Really Sticky Glue"]={SubType="Consumable",Level=10,id=4941,StackCount=20,Rarity=1,MinLevel=0,SellPrice=11,Texture=134712,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:4941::::::::40:::::::|h[Really Sticky Glue]|h|r"},["Gardening Gloves"]={SubType="Cloth",Level=9,id=5606,StackCount=1,Rarity=1,MinLevel=0,SellPrice=23,Texture=132939,Link="|cffffffff|Hitem:5606::::::::40:::::::|h[Gardening Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Leggings of Faith"]={SubType="Cloth",Level=88,id=22513,StackCount=1,Rarity=4,MinLevel=60,SellPrice=107574,Texture=134599,Link="|cffa335ee|Hitem:22513::::::::40:::::::|h[Leggings of Faith]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Vodouisant's Vigilant Embrace"]={SubType="Junk",Level=60,id=19786,StackCount=1,Rarity=3,MinLevel=60,SellPrice=0,Texture=136075,Link="|cff0070dd|Hitem:19786::::::::40:::::::|h[Vodouisant's Vigilant Embrace]|h|r",EquipLoc="",Type="Miscellaneous"},["Adventurer's Shoulders"]={SubType="Leather",Level=63,id=10263,StackCount=1,Rarity=2,MinLevel=58,SellPrice=18116,Texture=135046,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10263::::::::40:::::::|h[Adventurer's Shoulders]|h|r",Type="Armor"},["Plainstalker Tunic"]={SubType="Leather",Level=56,id=11876,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16287,Texture=132722,Type="Armor",Link="|cff1eff00|Hitem:11876::::::::40:::::::|h[Plainstalker Tunic]|h|r",EquipLoc="INVTYPE_CHEST"},["Emerald Encrusted Chest"]={SubType="Junk",Level=55,id=10752,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=132596,EquipLoc="",Link="|cff1eff00|Hitem:10752::::::::40:::::::|h[Emerald Encrusted Chest]|h|r",Type="Miscellaneous"},["Smooth Leather Shoulderpads"]={SubType="Leather",Level=52,id=3975,StackCount=1,Rarity=0,MinLevel=47,SellPrice=3896,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3975::::::::40:::::::|h[Smooth Leather Shoulderpads]|h|r",Type="Armor"},["Perfect Yeti Hide"]={SubType="Quest",Level=40,id=18972,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=134362,Type="Quest",Link="|cffffffff|Hitem:18972::::::::40:::::::|h[Perfect Yeti Hide]|h|r",EquipLoc=""},["Sword of Corruption"]={SubType="One-Handed Swords",Level=27,id=13032,StackCount=1,Rarity=3,MinLevel=22,SellPrice=4138,Texture=135327,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13032::::::::40:::::::|h[Sword of Corruption]|h|r"},["Crusader's Belt"]={SubType="Mail",Level=52,id=10197,StackCount=1,Rarity=2,MinLevel=47,SellPrice=7623,Texture=132493,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10197::::::::40:::::::|h[Crusader's Belt]|h|r",Type="Armor"},["Dragonrider Boots"]={SubType="Cloth",Level=63,id=18102,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17158,Texture=132539,Type="Armor",Link="|cff0070dd|Hitem:18102::::::::40:::::::|h[Dragonrider Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Book: Stresses of Iron"]={SubType="Quest",Level=1,id=2795,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2795::::::::40:::::::|h[Book: Stresses of Iron]|h|r"},["Plans: Orcish War Leggings"]={SubType="Blacksmithing",Level=46,id=7994,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7994::::::::40:::::::|h[Plans: Orcish War Leggings]|h|r",Type="Recipe"},["Gordon's Crate"]={SubType="Quest",Level=1,id=16210,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132764,EquipLoc="",Link="|cffffffff|Hitem:16210::::::::40:::::::|h[Gordon's Crate]|h|r",Type="Quest"},["Scroll of Spirit"]={SubType="Consumable",Level=10,id=1181,StackCount=5,Rarity=1,MinLevel=1,SellPrice=25,Texture=134937,Link="|cffffffff|Hitem:1181::::::::40:::::::|h[Scroll of Spirit]|h|r",EquipLoc="",Type="Consumable"},["2400 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19190,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19190::::::::40:::::::|h[2400 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Conjurer's Robe"]={SubType="Cloth",Level=38,id=9852,StackCount=1,Rarity=2,MinLevel=33,SellPrice=3820,Texture=132663,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:9852::::::::40:::::::|h[Conjurer's Robe]|h|r"},["Monster - Staff, Green Crystal Sphere"]={SubType="Staves",Level=1,id=13061,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13061::::::::40:::::::|h[Monster - Staff, Green Crystal Sphere]|h|r"},["Infernal Trickster Leggings"]={SubType="Mail",Level=50,id=17754,StackCount=1,Rarity=3,MinLevel=45,SellPrice=17394,Texture=134706,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:17754::::::::40:::::::|h[Infernal Trickster Leggings]|h|r",Type="Armor"},["Dragonscale Band"]={SubType="Miscellaneous",Level=60,id=12057,StackCount=1,Rarity=2,MinLevel=55,SellPrice=8375,Texture=133356,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12057::::::::40:::::::|h[Dragonscale Band]|h|r"},["Ferine Leggings"]={SubType="Leather",Level=34,id=6690,StackCount=1,Rarity=2,MinLevel=29,SellPrice=3346,Texture=134594,Type="Armor",Link="|cff1eff00|Hitem:6690::::::::40:::::::|h[Ferine Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["OLDBlackfathom MAGIC Relic"]={SubType="Junk",Level=1,id=5331,StackCount=1,Rarity=1,MinLevel=0,SellPrice=236,Texture=133276,EquipLoc="",Link="|cffffffff|Hitem:5331::::::::40:::::::|h[OLDBlackfathom MAGIC Relic]|h|r",Type="Miscellaneous"},["Holy Mightstone"]={SubType="Junk",Level=50,id=20620,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=135241,Link="|cffffffff|Hitem:20620::::::::40:::::::|h[Holy Mightstone]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Dagger, Vulture Black"]={SubType="Daggers",Level=1,id=19987,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135638,Link="|cff9d9d9d|Hitem:19987::::::::40:::::::|h[Monster - Dagger, Vulture Black]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Pattern: Green Woolen Bag"]={SubType="Tailoring",Level=19,id=4292,StackCount=1,Rarity=2,MinLevel=0,SellPrice=200,Texture=134939,Type="Recipe",Link="|cff1eff00|Hitem:4292::::::::40:::::::|h[Pattern: Green Woolen Bag]|h|r",EquipLoc=""},["Marksman's Girdle"]={SubType="Mail",Level=61,id=22232,StackCount=1,Rarity=3,MinLevel=56,SellPrice=14933,Texture=132507,Link="|cff0070dd|Hitem:22232::::::::40:::::::|h[Marksman's Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Level 50 Test Gear Plate - Paladin/Warrior"]={SubType="Junk",Level=1,id=13682,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13682::::::::40:::::::|h[Level 50 Test Gear Plate - Paladin/Warrior]|h|r"},["Delicate Feather"]={SubType="Reagent",Level=25,id=5636,StackCount=10,Rarity=0,MinLevel=0,SellPrice=75,Texture=132923,Type="Reagent",EquipLoc="",Link="|cff9d9d9d|Hitem:5636::::::::40:::::::|h[Delicate Feather]|h|r"},["Slagtree's Lost Tools"]={SubType="Quest",Level=1,id=19033,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134521,Link="|cffffffff|Hitem:19033::::::::40:::::::|h[Slagtree's Lost Tools]|h|r",EquipLoc="",Type="Quest"},["Nixx's Signed Pledge"]={SubType="Quest",Level=0,id=11270,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,Type="Quest",Link="|cffffffff|Hitem:11270::::::::40:::::::|h[Nixx's Signed Pledge]|h|r",EquipLoc=""},["Cuergo's Hidden Treasure"]={SubType="Quest",Level=45,id=9265,StackCount=1,Rarity=2,MinLevel=0,SellPrice=15,Texture=132594,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:9265::::::::40:::::::|h[Cuergo's Hidden Treasure]|h|r"},["Plans: Thick Obsidian Breastplate"]={SubType="Blacksmithing",Level=72,id=22222,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20000,Texture=134941,Link="|cff0070dd|Hitem:22222::::::::40:::::::|h[Plans: Thick Obsidian Breastplate]|h|r",EquipLoc="",Type="Recipe"},["Bubbling Water"]={SubType="Consumable",Level=25,id=9451,StackCount=20,Rarity=1,MinLevel=15,SellPrice=25,Texture=134712,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9451::::::::40:::::::|h[Bubbling Water]|h|r"},["Monster - Axe, Stone Basic"]={SubType="One-Handed Axes",Level=1,id=1904,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=132392,Link="|cff9d9d9d|Hitem:1904::::::::40:::::::|h[Monster - Axe, Stone Basic]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Kilt of the Atal'ai Prophet"]={SubType="Cloth",Level=55,id=10807,StackCount=1,Rarity=3,MinLevel=50,SellPrice=15202,Texture=134591,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:10807::::::::40:::::::|h[Kilt of the Atal'ai Prophet]|h|r",Type="Armor"},["Earthshatter Tunic"]={SubType="Mail",Level=92,id=22464,StackCount=1,Rarity=4,MinLevel=60,SellPrice=184892,Texture=132637,Link="|cffa335ee|Hitem:22464::::::::40:::::::|h[Earthshatter Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Searing Coral"]={SubType="Quest",Level=1,id=6848,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134128,Type="Quest",Link="|cffffffff|Hitem:6848::::::::40:::::::|h[Searing Coral]|h|r",EquipLoc=""},["Bulky Maul"]={SubType="Two-Handed Maces",Level=57,id=13821,StackCount=1,Rarity=0,MinLevel=52,SellPrice=17993,Texture=133053,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13821::::::::40:::::::|h[Bulky Maul]|h|r"},["Regal Cuffs"]={SubType="Cloth",Level=41,id=7475,StackCount=1,Rarity=2,MinLevel=36,SellPrice=2371,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:7475::::::::40:::::::|h[Regal Cuffs]|h|r",Type="Armor"},["Grimoire of Demon Armor II"]={SubType="Book",Level=34,id=3139,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:3139::::::::40:::::::|h[Grimoire of Demon Armor II]|h|r",Type="Recipe"},["Unused Feathered Leggings"]={SubType="Leather",Level=27,id=4191,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1029,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:4191::::::::40:::::::|h[Unused Feathered Leggings]|h|r"},["Abyssal Crest"]={SubType="Junk",Level=1,id=20513,StackCount=20,Rarity=2,MinLevel=1,SellPrice=0,Texture=133438,Type="Miscellaneous",EquipLoc="",Link="|cff1eff00|Hitem:20513::::::::40:::::::|h[Abyssal Crest]|h|r"},["Rustic Belt"]={SubType="Mail",Level=5,id=2172,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=132495,Link="|cffffffff|Hitem:2172::::::::40:::::::|h[Rustic Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Conjured Sweet Roll"]={SubType="Consumable",Level=55,id=8076,StackCount=20,Rarity=1,MinLevel=45,SellPrice=0,Texture=133989,Link="|cffffffff|Hitem:8076::::::::40:::::::|h[Conjured Sweet Roll]|h|r",EquipLoc="",Type="Consumable"},["Tablet of Stoneclaw Totem II"]={SubType="Book",Level=18,id=9055,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9055::::::::40:::::::|h[Tablet of Stoneclaw Totem II]|h|r"},["Curved Basilisk Claw"]={SubType="Junk",Level=1,id=1701,StackCount=5,Rarity=0,MinLevel=0,SellPrice=376,Texture=134295,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:1701::::::::40:::::::|h[Curved Basilisk Claw]|h|r",EquipLoc=""},["Battering Hammer"]={SubType="Two-Handed Maces",Level=23,id=3198,StackCount=1,Rarity=2,MinLevel=18,SellPrice=2741,Texture=133053,Link="|cff1eff00|Hitem:3198::::::::40:::::::|h[Battering Hammer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Maelstrom's Wrath"]={SubType="Miscellaneous",Level=65,id=19621,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=133313,Link="|cffa335ee|Hitem:19621::::::::40:::::::|h[Maelstrom's Wrath]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Grimoire of Phase Shift"]={SubType="Book",Level=12,id=16331,StackCount=1,Rarity=1,MinLevel=12,SellPrice=150,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16331::::::::40:::::::|h[Grimoire of Phase Shift]|h|r",Type="Recipe"},["Homemade Bread"]={SubType="Consumable",Level=1,id=22176,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133989,Link="|cffffffff|Hitem:22176::::::::40:::::::|h[Homemade Bread]|h|r",EquipLoc="",Type="Consumable"},["Copper Modulator"]={SubType="Parts",Level=13,id=4363,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=132997,EquipLoc="",Link="|cffffffff|Hitem:4363::::::::40:::::::|h[Copper Modulator]|h|r",Type="Trade Goods"},["Grimoire of Life Drain III"]={SubType="Book",Level=30,id=4214,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4214::::::::40:::::::|h[Grimoire of Life Drain III]|h|r"},["Brocade Gloves"]={SubType="Cloth",Level=25,id=1775,StackCount=1,Rarity=0,MinLevel=20,SellPrice=212,Texture=132952,EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:1775::::::::40:::::::|h[Brocade Gloves]|h|r",Type="Armor"},["Heavy Obsidian Belt"]={SubType="Plate",Level=68,id=22197,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14282,Texture=132505,Link="|cff0070dd|Hitem:22197::::::::40:::::::|h[Heavy Obsidian Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Tablet of Ethereal Form"]={SubType="Book",Level=24,id=5708,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1250,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5708::::::::40:::::::|h[Tablet of Ethereal Form]|h|r"},["Fizzy Faire Drink"]={SubType="Consumable",Level=25,id=19299,StackCount=20,Rarity=1,MinLevel=15,SellPrice=25,Texture=132792,Link="|cffffffff|Hitem:19299::::::::40:::::::|h[Fizzy Faire Drink]|h|r",EquipLoc="",Type="Consumable"},["Archivist Cape"]={SubType="Cloth",Level=61,id=13386,StackCount=1,Rarity=3,MinLevel=56,SellPrice=15722,Texture=133771,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:13386::::::::40:::::::|h[Archivist Cape]|h|r"},["Obsidian Mail Tunic"]={SubType="Mail",Level=72,id=22191,StackCount=1,Rarity=4,MinLevel=60,SellPrice=73128,Texture=132639,Link="|cffa335ee|Hitem:22191::::::::40:::::::|h[Obsidian Mail Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Freshly Picked Flowers"]={SubType="Consumable",Level=1,id=22177,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133940,Link="|cffffffff|Hitem:22177::::::::40:::::::|h[Freshly Picked Flowers]|h|r",EquipLoc="",Type="Consumable"},["Tunic of the Crescent Moon"]={SubType="Leather",Level=63,id=22409,StackCount=1,Rarity=3,MinLevel=58,SellPrice=27461,Texture=132723,Link="|cff0070dd|Hitem:22409::::::::40:::::::|h[Tunic of the Crescent Moon]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Mantle of the Scarlet Crusade"]={SubType="Cloth",Level=61,id=22405,StackCount=1,Rarity=3,MinLevel=56,SellPrice=14944,Texture=135033,Link="|cff0070dd|Hitem:22405::::::::40:::::::|h[Mantle of the Scarlet Crusade]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Jungle Stew"]={SubType="Consumable",Level=35,id=12212,StackCount=20,Rarity=1,MinLevel=25,SellPrice=300,Texture=132804,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12212::::::::40:::::::|h[Jungle Stew]|h|r"},["Deprecated Orwin's Shovel"]={SubType="Quest",Level=1,id=9464,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134435,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9464::::::::40:::::::|h[Deprecated Orwin's Shovel]|h|r"},["Deprecated Parker's Lunch"]={SubType="Quest",Level=1,id=1324,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133974,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:1324::::::::40:::::::|h[Deprecated Parker's Lunch]|h|r",Type="Quest"},["Thug Shirt"]={SubType="Miscellaneous",Level=1,id=6136,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135018,Link="|cffffffff|Hitem:6136::::::::40:::::::|h[Thug Shirt]|h|r",EquipLoc="INVTYPE_BODY",Type="Armor"},["Noth's Frigid Heart"]={SubType="Miscellaneous",Level=83,id=23029,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72651,Texture=134547,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffa335ee|Hitem:23029::::::::40:::::::|h[Noth's Frigid Heart]|h|r"},["Tome of Frostbolt IV"]={SubType="Book",Level=20,id=4151,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:4151::::::::40:::::::|h[Tome of Frostbolt IV]|h|r",EquipLoc=""},["Mistspray Kilt"]={SubType="Leather",Level=40,id=4976,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5486,Texture=134593,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:4976::::::::40:::::::|h[Mistspray Kilt]|h|r",Type="Armor"},["Pointed Axe"]={SubType="One-Handed Axes",Level=14,id=5344,StackCount=1,Rarity=2,MinLevel=0,SellPrice=562,Texture=135419,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:5344::::::::40:::::::|h[Pointed Axe]|h|r"},["Swampchill Fetish"]={SubType="Miscellaneous",Level=38,id=1992,StackCount=1,Rarity=3,MinLevel=33,SellPrice=5468,Texture=133731,Link="|cff0070dd|Hitem:1992::::::::40:::::::|h[Swampchill Fetish]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["QAEnchant Chest +100 Mana"]={SubType="Consumable",Level=1,id=17883,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17883::::::::40:::::::|h[QAEnchant Chest +100 Mana]|h|r",Type="Consumable"},["Pristine Spider Silk"]={SubType="Quest",Level=1,id=7267,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136113,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7267::::::::40:::::::|h[Pristine Spider Silk]|h|r"},["Copper Mace"]={SubType="One-Handed Maces",Level=9,id=2844,StackCount=1,Rarity=1,MinLevel=4,SellPrice=106,Texture=133476,Link="|cffffffff|Hitem:2844::::::::40:::::::|h[Copper Mace]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Tiger Meat"]={SubType="Trade Goods",Level=30,id=12202,StackCount=10,Rarity=1,MinLevel=0,SellPrice=87,Texture=133970,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12202::::::::40:::::::|h[Tiger Meat]|h|r"},["Quillward Harness"]={SubType="Leather",Level=39,id=10583,StackCount=1,Rarity=3,MinLevel=34,SellPrice=6191,Texture=132723,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:10583::::::::40:::::::|h[Quillward Harness]|h|r",Type="Armor"},["Tome of Dampen Magic"]={SubType="Book",Level=12,id=4157,StackCount=1,Rarity=1,MinLevel=12,SellPrice=125,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4157::::::::40:::::::|h[Tome of Dampen Magic]|h|r"},["Elementals Deck"]={SubType="Junk",Level=1,id=19267,StackCount=1,Rarity=4,MinLevel=0,SellPrice=100000,Texture=134493,Link="|cffa335ee|Hitem:19267::::::::40:::::::|h[Elementals Deck]|h|r",EquipLoc="",Type="Miscellaneous"},["Ice Thistle E'ko"]={SubType="Quest",Level=1,id=12435,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135227,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12435::::::::40:::::::|h[Ice Thistle E'ko]|h|r"},["Embroidered Hat"]={SubType="Cloth",Level=50,id=3892,StackCount=1,Rarity=1,MinLevel=45,SellPrice=4388,Texture=133135,Link="|cffffffff|Hitem:3892::::::::40:::::::|h[Embroidered Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Plate Shoulderpad (Test)"]={SubType="Cloth",Level=1,id=908,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=135033,Type="Armor",Link="|cffffffff|Hitem:908::::::::40:::::::|h[Plate Shoulderpad (Test)]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Gnoll Kindred Bracers"]={SubType="Leather",Level=14,id=1213,StackCount=1,Rarity=1,MinLevel=9,SellPrice=87,Texture=132603,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:1213::::::::40:::::::|h[Gnoll Kindred Bracers]|h|r",Type="Armor"},["Broken Armor of Ana'thek"]={SubType="Quest",Level=1,id=3909,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135032,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3909::::::::40:::::::|h[Broken Armor of Ana'thek]|h|r"},["Branchclaw Gauntlets"]={SubType="Plate",Level=47,id=17770,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3851,Texture=132964,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:17770::::::::40:::::::|h[Branchclaw Gauntlets]|h|r",Type="Armor"},["Ironforge Guard's Card"]={SubType="Consumable",Level=1,id=22141,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135454,Link="|cffffffff|Hitem:22141::::::::40:::::::|h[Ironforge Guard's Card]|h|r",EquipLoc="",Type="Consumable"},["Choker of the Shifting Sands"]={SubType="Miscellaneous",Level=70,id=21505,StackCount=1,Rarity=4,MinLevel=60,SellPrice=111628,Texture=133341,Link="|cffa335ee|Hitem:21505::::::::40:::::::|h[Choker of the Shifting Sands]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Reins of the Swift Dawnsaber"]={SubType="Junk",Level=60,id=18768,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132267,Type="Miscellaneous",Link="|cffa335ee|Hitem:18768::::::::40:::::::|h[Reins of the Swift Dawnsaber]|h|r",EquipLoc=""},["Book of Faerie Fire IV"]={SubType="Book",Level=54,id=8790,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133743,Link="|cffffffff|Hitem:8790::::::::40:::::::|h[Book of Faerie Fire IV]|h|r",EquipLoc="",Type="Recipe"},["Stormpike Training Collar"]={SubType="Quest",Level=1,id=17689,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133676,EquipLoc="",Link="|cffffffff|Hitem:17689::::::::40:::::::|h[Stormpike Training Collar]|h|r",Type="Quest"},["Desecrated Sandals"]={SubType="Junk",Level=60,id=22372,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133805,Link="|cffa335ee|Hitem:22372::::::::40:::::::|h[Desecrated Sandals]|h|r",EquipLoc="",Type="Miscellaneous"},["Burnished Gloves"]={SubType="Mail",Level=20,id=2992,StackCount=1,Rarity=2,MinLevel=15,SellPrice=408,Texture=132944,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:2992::::::::40:::::::|h[Burnished Gloves]|h|r"},["Balnir Snapdragons"]={SubType="Consumable",Level=1,id=7227,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133940,Link="|cffffffff|Hitem:7227::::::::40:::::::|h[Balnir Snapdragons]|h|r",EquipLoc="",Type="Consumable"},["Recipe: Magic Resistance Potion"]={SubType="Alchemy",Level=42,id=9293,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,Link="|cff1eff00|Hitem:9293::::::::40:::::::|h[Recipe: Magic Resistance Potion]|h|r",EquipLoc="",Type="Recipe"},["Brown Horse Bridle"]={SubType="Junk",Level=40,id=5656,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132261,EquipLoc="",Link="|cff0070dd|Hitem:5656::::::::40:::::::|h[Brown Horse Bridle]|h|r",Type="Miscellaneous"},["Mind-numbing Poison III"]={SubType="Consumable",Level=52,id=9186,StackCount=20,Rarity=1,MinLevel=52,SellPrice=175,Texture=136066,Link="|cffffffff|Hitem:9186::::::::40:::::::|h[Mind-numbing Poison III]|h|r",EquipLoc="",Type="Consumable"},["Stonesplinter Blade"]={SubType="One-Handed Swords",Level=10,id=2268,StackCount=1,Rarity=1,MinLevel=5,SellPrice=146,Texture=135357,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2268::::::::40:::::::|h[Stonesplinter Blade]|h|r",Type="Weapon"},["Jazeraint Pauldrons"]={SubType="Mail",Level=41,id=9904,StackCount=1,Rarity=2,MinLevel=36,SellPrice=5420,Texture=135057,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9904::::::::40:::::::|h[Jazeraint Pauldrons]|h|r"},["Ancestral Boots"]={SubType="Cloth",Level=11,id=3289,StackCount=1,Rarity=1,MinLevel=6,SellPrice=57,Texture=132539,Type="Armor",Link="|cffffffff|Hitem:3289::::::::40:::::::|h[Ancestral Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Shadow Protection Potion"]={SubType="Consumable",Level=27,id=6048,StackCount=5,Rarity=1,MinLevel=17,SellPrice=100,Texture=134824,Type="Consumable",Link="|cffffffff|Hitem:6048::::::::40:::::::|h[Shadow Protection Potion]|h|r",EquipLoc=""},["Champion's Dreadweave Hood"]={SubType="Cloth",Level=63,id=17570,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8354,Texture=133076,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:17570::::::::40:::::::|h[Champion's Dreadweave Hood]|h|r",Type="Armor"},["Weathered Belt"]={SubType="Leather",Level=12,id=3583,StackCount=1,Rarity=1,MinLevel=0,SellPrice=57,Texture=132495,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:3583::::::::40:::::::|h[Weathered Belt]|h|r"},["Might of the Scourge"]={SubType="Quest",Level=60,id=23548,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=136146,Link="|cffa335ee|Hitem:23548::::::::40:::::::|h[Might of the Scourge]|h|r",EquipLoc="",Type="Quest"},["Tablet of Shock V"]={SubType="Book",Level=36,id=4174,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4174::::::::40:::::::|h[Tablet of Shock V]|h|r"},["Glorious Sabatons"]={SubType="Plate",Level=56,id=14972,StackCount=1,Rarity=2,MinLevel=51,SellPrice=10486,Texture=132584,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14972::::::::40:::::::|h[Glorious Sabatons]|h|r"},["Feralheart Vest"]={SubType="Leather",Level=60,id=22113,StackCount=1,Rarity=4,MinLevel=0,SellPrice=33313,Texture=132741,Link="|cffa335ee|Hitem:22113::::::::40:::::::|h[Feralheart Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Blue Glittering Axe"]={SubType="One-Handed Axes",Level=44,id=7942,StackCount=1,Rarity=2,MinLevel=39,SellPrice=14659,Texture=132394,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:7942::::::::40:::::::|h[Blue Glittering Axe]|h|r",Type="Weapon"},["Orb of Draconic Energy"]={SubType="Quest",Level=1,id=12300,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134334,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12300::::::::40:::::::|h[Orb of Draconic Energy]|h|r"},["Valorous Pauldrons"]={SubType="Plate",Level=48,id=8281,StackCount=1,Rarity=2,MinLevel=43,SellPrice=5982,Texture=135059,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:8281::::::::40:::::::|h[Valorous Pauldrons]|h|r"},["Warstrike Gauntlets"]={SubType="Mail",Level=62,id=14815,StackCount=1,Rarity=2,MinLevel=57,SellPrice=13760,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14815::::::::40:::::::|h[Warstrike Gauntlets]|h|r"},["Scalemail Pants"]={SubType="Mail",Level=22,id=286,StackCount=1,Rarity=1,MinLevel=17,SellPrice=645,Texture=134583,Link="|cffffffff|Hitem:286::::::::40:::::::|h[Scalemail Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Knight-Lieutenant's Lamellar Sabatons"]={SubType="Plate",Level=63,id=16409,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8413,Texture=132584,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16409::::::::40:::::::|h[Knight-Lieutenant's Lamellar Sabatons]|h|r",Type="Armor"},["Soulforge Legplates"]={SubType="Plate",Level=66,id=22092,StackCount=1,Rarity=3,MinLevel=0,SellPrice=26692,Texture=134584,Link="|cff0070dd|Hitem:22092::::::::40:::::::|h[Soulforge Legplates]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Reins of the Frostsaber"]={SubType="Junk",Level=60,id=12302,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132267,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:12302::::::::40:::::::|h[Reins of the Frostsaber]|h|r"},["Schematic: Catseye Ultra Goggles"]={SubType="Engineering",Level=44,id=10603,StackCount=1,Rarity=2,MinLevel=0,SellPrice=825,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10603::::::::40:::::::|h[Schematic: Catseye Ultra Goggles]|h|r",Type="Recipe"},["Seal of the Gurubashi Berserker"]={SubType="Miscellaneous",Level=65,id=22722,StackCount=1,Rarity=4,MinLevel=60,SellPrice=64030,Texture=133362,Link="|cffa335ee|Hitem:22722::::::::40:::::::|h[Seal of the Gurubashi Berserker]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Demolition Hammer"]={SubType="Two-Handed Maces",Level=26,id=5322,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4016,Texture=133053,Link="|cff1eff00|Hitem:5322::::::::40:::::::|h[Demolition Hammer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Gloves of Spell Mastery"]={SubType="Cloth",Level=62,id=14146,StackCount=1,Rarity=4,MinLevel=57,SellPrice=14084,Texture=132940,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:14146::::::::40:::::::|h[Gloves of Spell Mastery]|h|r"},["Cord of The Five Thunders"]={SubType="Mail",Level=65,id=22098,StackCount=1,Rarity=3,MinLevel=0,SellPrice=19485,Texture=132505,Link="|cff0070dd|Hitem:22098::::::::40:::::::|h[Cord of The Five Thunders]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["General's Mail Gauntlets"]={SubType="Mail",Level=71,id=16574,StackCount=1,Rarity=4,MinLevel=60,SellPrice=16518,Texture=132945,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16574::::::::40:::::::|h[General's Mail Gauntlets]|h|r",Type="Armor"},["Arlokk's Grasp"]={SubType="Fist Weapons",Level=65,id=19910,StackCount=1,Rarity=4,MinLevel=60,SellPrice=84070,Texture=135592,Link="|cffa335ee|Hitem:19910::::::::40:::::::|h[Arlokk's Grasp]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND",Type="Weapon"},["Tome of Arcane Intellect III"]={SubType="Book",Level=28,id=3102,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:3102::::::::40:::::::|h[Tome of Arcane Intellect III]|h|r"},["Green Linen Bracers"]={SubType="Cloth",Level=12,id=4308,StackCount=1,Rarity=1,MinLevel=7,SellPrice=45,Texture=132611,Link="|cffffffff|Hitem:4308::::::::40:::::::|h[Green Linen Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Boots of The Five Thunders"]={SubType="Mail",Level=60,id=22096,StackCount=1,Rarity=4,MinLevel=0,SellPrice=30451,Texture=132592,Link="|cffa335ee|Hitem:22096::::::::40:::::::|h[Boots of The Five Thunders]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Certificate of Thievery"]={SubType="Junk",Level=16,id=7907,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:7907::::::::40:::::::|h[Certificate of Thievery]|h|r"},["Deftkin Belt"]={SubType="Leather",Level=27,id=16659,StackCount=1,Rarity=2,MinLevel=0,SellPrice=856,Texture=132498,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16659::::::::40:::::::|h[Deftkin Belt]|h|r",Type="Armor"},["Fine Leather Cloak"]={SubType="Cloth",Level=15,id=2308,StackCount=1,Rarity=2,MinLevel=10,SellPrice=267,Texture=133762,Type="Armor",Link="|cff1eff00|Hitem:2308::::::::40:::::::|h[Fine Leather Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Skull Wrapping Paper"]={SubType="Consumable",Level=40,id=5047,StackCount=1,Rarity=1,MinLevel=40,SellPrice=1250,Texture=134147,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5047::::::::40:::::::|h[Skull Wrapping Paper]|h|r"},["Armor of Thero-shan"]={SubType="Leather",Level=42,id=7950,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6473,Texture=132718,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7950::::::::40:::::::|h[Armor of Thero-shan]|h|r"},["Bottom of Gelkak's Key"]={SubType="Quest",Level=1,id=7500,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,EquipLoc="",Link="|cffffffff|Hitem:7500::::::::40:::::::|h[Bottom of Gelkak's Key]|h|r",Type="Quest"},["Sterling Chain Gloves"]={SubType="Mail",Level=67,id=4012,StackCount=1,Rarity=0,MinLevel=62,SellPrice=6781,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:4012::::::::40:::::::|h[Sterling Chain Gloves]|h|r"},["Grimoire of Firebolt (Rank 2)"]={SubType="Book",Level=8,id=16302,StackCount=1,Rarity=1,MinLevel=8,SellPrice=25,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16302::::::::40:::::::|h[Grimoire of Firebolt (Rank 2)]|h|r",Type="Recipe"},["Golm Fragment"]={SubType="Quest",Level=1,id=2660,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135236,EquipLoc="",Link="|cffffffff|Hitem:2660::::::::40:::::::|h[Golm Fragment]|h|r",Type="Quest"},["Rune Band of Wizardry"]={SubType="Miscellaneous",Level=63,id=22339,StackCount=1,Rarity=3,MinLevel=58,SellPrice=15282,Texture=133377,Link="|cff0070dd|Hitem:22339::::::::40:::::::|h[Rune Band of Wizardry]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Monster - Axe, One-Handed Double Axe"]={SubType="One-Handed Axes",Level=1,id=5286,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:5286::::::::40:::::::|h[Monster - Axe, One-Handed Double Axe]|h|r",Type="Weapon"},["Virtuous Belt"]={SubType="Cloth",Level=65,id=22078,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12992,Texture=132499,Link="|cff0070dd|Hitem:22078::::::::40:::::::|h[Virtuous Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Knight-Captain's Satin Robes"]={SubType="Cloth",Level=63,id=17600,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11866,Texture=132652,EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:17600::::::::40:::::::|h[Knight-Captain's Satin Robes]|h|r",Type="Armor"},["Canvas Scraps"]={SubType="Quest",Level=1,id=4870,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132905,Type="Quest",Link="|cffffffff|Hitem:4870::::::::40:::::::|h[Canvas Scraps]|h|r",EquipLoc=""},["Sustaining Ring"]={SubType="Miscellaneous",Level=25,id=6743,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1462,Texture=133350,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:6743::::::::40:::::::|h[Sustaining Ring]|h|r"},["Large Blue Sack"]={SubType="Bag",Level=25,id=804,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133641,Type="Container",Link="|cffffffff|Hitem:804::::::::40:::::::|h[Large Blue Sack]|h|r",EquipLoc="INVTYPE_BAG"},["Stomping Boots"]={SubType="Leather",Level=24,id=3741,StackCount=1,Rarity=2,MinLevel=0,SellPrice=922,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:3741::::::::40:::::::|h[Stomping Boots]|h|r"},["Gamemaster's Slippers"]={SubType="Cloth",Level=1,id=11508,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132579,Type="Armor",Link="|cffffffff|Hitem:11508::::::::40:::::::|h[Gamemaster's Slippers]|h|r",EquipLoc="INVTYPE_FEET"},["Shawn's Super Special Swami Hat"]={SubType="Cloth",Level=61,id=12904,StackCount=1,Rarity=2,MinLevel=61,SellPrice=13584,Texture=133133,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:12904::::::::40:::::::|h[Shawn's Super Special Swami Hat]|h|r"},["Iron Pommel"]={SubType="Quest",Level=1,id=5519,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134334,Link="|cffffffff|Hitem:5519::::::::40:::::::|h[Iron Pommel]|h|r",EquipLoc="",Type="Quest"},["Libram: Seal of Sacrifice"]={SubType="Book",Level=36,id=5678,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133740,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5678::::::::40:::::::|h[Libram: Seal of Sacrifice]|h|r"},["Pattern: Satchel of Cenarius"]={SubType="Tailoring",Level=65,id=22312,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:22312::::::::40:::::::|h[Pattern: Satchel of Cenarius]|h|r",EquipLoc="",Type="Recipe"},["AHNQIRAJ TEST ITEM C MAIL CHEST"]={SubType="Miscellaneous",Level=1,id=21421,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21421::::::::40:::::::|h[AHNQIRAJ TEST ITEM C MAIL CHEST]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Moss Agate"]={SubType="Trade Goods",Level=25,id=1206,StackCount=20,Rarity=2,MinLevel=0,SellPrice=400,Texture=134105,Link="|cff1eff00|Hitem:1206::::::::40:::::::|h[Moss Agate]|h|r",EquipLoc="",Type="Trade Goods"},["Monster - Dagger, Tanto Blade"]={SubType="Daggers",Level=1,id=10618,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:10618::::::::40:::::::|h[Monster - Dagger, Tanto Blade]|h|r",Type="Weapon"},["Rod of Channeling"]={SubType="Quest",Level=1,id=6930,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135469,Type="Quest",Link="|cffffffff|Hitem:6930::::::::40:::::::|h[Rod of Channeling]|h|r",EquipLoc=""},["Covert Ops Plans: Alpha & Beta"]={SubType="Quest",Level=1,id=5737,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5737::::::::40:::::::|h[Covert Ops Plans: Alpha & Beta]|h|r"},["Grunt's Handwraps"]={SubType="Mail",Level=21,id=15509,StackCount=1,Rarity=2,MinLevel=16,SellPrice=485,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15509::::::::40:::::::|h[Grunt's Handwraps]|h|r",Type="Armor"},["Test Spear"]={SubType="Spears",Level=25,id=4900,StackCount=1,Rarity=0,MinLevel=20,SellPrice=1335,Texture=135124,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:4900::::::::40:::::::|h[Test Spear]|h|r"},["Fizzle Brassbolts' Letter"]={SubType="Quest",Level=1,id=5827,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,Link="|cffffffff|Hitem:5827::::::::40:::::::|h[Fizzle Brassbolts' Letter]|h|r",EquipLoc="",Type="Quest"},["Icebane Pauldrons"]={SubType="Plate",Level=83,id=22940,StackCount=1,Rarity=4,MinLevel=60,SellPrice=62103,Texture=135047,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:22940::::::::40:::::::|h[Icebane Pauldrons]|h|r"},["Monster - Sword2H, Baron Rivendare"]={SubType="Two-Handed Swords",Level=1,id=2181,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135273,Type="Weapon",Link="|cff9d9d9d|Hitem:2181::::::::40:::::::|h[Monster - Sword2H, Baron Rivendare]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Rose Mantle"]={SubType="Cloth",Level=27,id=5274,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1003,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:5274::::::::40:::::::|h[Rose Mantle]|h|r",Type="Armor"},["Monster - Shield, Horde B04"]={SubType="Shields",Level=1,id=13628,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:13628::::::::40:::::::|h[Monster - Shield, Horde B04]|h|r"},["Thaurissan's Royal Scepter"]={SubType="Miscellaneous",Level=60,id=11928,StackCount=1,Rarity=3,MinLevel=55,SellPrice=22045,Texture=133488,Type="Armor",Link="|cff0070dd|Hitem:11928::::::::40:::::::|h[Thaurissan's Royal Scepter]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Falcon's Hook"]={SubType="Miscellaneous",Level=44,id=7552,StackCount=1,Rarity=2,MinLevel=39,SellPrice=2542,Texture=133352,Link="|cff1eff00|Hitem:7552::::::::40:::::::|h[Falcon's Hook]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Twilight Cultist Robe"]={SubType="Cloth",Level=60,id=20407,StackCount=1,Rarity=2,MinLevel=60,SellPrice=2581,Texture=132658,Link="|cff1eff00|Hitem:20407::::::::40:::::::|h[Twilight Cultist Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Jin'do's Judgement"]={SubType="Staves",Level=66,id=19884,StackCount=1,Rarity=4,MinLevel=60,SellPrice=107909,Texture=135170,Link="|cffa335ee|Hitem:19884::::::::40:::::::|h[Jin'do's Judgement]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Shroud of Infinite Wisdom"]={SubType="Cloth",Level=67,id=21412,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133768,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffa335ee|Hitem:21412::::::::40:::::::|h[Shroud of Infinite Wisdom]|h|r"},["Burnt Leather Bracers"]={SubType="Leather",Level=8,id=3200,StackCount=1,Rarity=1,MinLevel=3,SellPrice=19,Texture=132609,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3200::::::::40:::::::|h[Burnt Leather Bracers]|h|r"},["Daryl's Shortsword"]={SubType="One-Handed Swords",Level=17,id=3572,StackCount=1,Rarity=2,MinLevel=0,SellPrice=972,Texture=135274,Type="Weapon",Link="|cff1eff00|Hitem:3572::::::::40:::::::|h[Daryl's Shortsword]|h|r",EquipLoc="INVTYPE_WEAPON"},["Grimoire of Fear"]={SubType="Book",Level=8,id=1238,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=133738,Type="Recipe",Link="|cffffffff|Hitem:1238::::::::40:::::::|h[Grimoire of Fear]|h|r",EquipLoc=""},["Deep Woodlands Cloak"]={SubType="Cloth",Level=51,id=19121,StackCount=1,Rarity=3,MinLevel=0,SellPrice=8585,Texture=133769,Link="|cff0070dd|Hitem:19121::::::::40:::::::|h[Deep Woodlands Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Dog Whistle"]={SubType="Consumable",Level=30,id=3456,StackCount=1,Rarity=2,MinLevel=25,SellPrice=6375,Texture=132161,EquipLoc="",Link="|cff1eff00|Hitem:3456::::::::40:::::::|h[Dog Whistle]|h|r",Type="Consumable"},["Sack of Gems"]={SubType="Junk",Level=1,id=11938,StackCount=1,Rarity=1,MinLevel=0,SellPrice=213,Texture=133643,Type="Miscellaneous",Link="|cffffffff|Hitem:11938::::::::40:::::::|h[Sack of Gems]|h|r",EquipLoc=""},["Hunting Ammo Sack"]={SubType="Ammo Pouch",Level=15,id=3574,StackCount=1,Rarity=1,MinLevel=0,SellPrice=212,Texture=133581,Link="|cffffffff|Hitem:3574::::::::40:::::::|h[Hunting Ammo Sack]|h|r",EquipLoc="INVTYPE_BAG",Type="Quiver"},["QAEnchant Bracer +24 Healing"]={SubType="Consumable",Level=1,id=22037,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22037::::::::40:::::::|h[QAEnchant Bracer +24 Healing]|h|r",EquipLoc="",Type="Consumable"},["OLDSquire's Belt"]={SubType="Miscellaneous",Level=1,id=42,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132494,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:42::::::::40:::::::|h[OLDSquire's Belt]|h|r",Type="Armor"},["Spicy Beefstick"]={SubType="Consumable",Level=45,id=17408,StackCount=20,Rarity=1,MinLevel=35,SellPrice=100,Texture=134005,EquipLoc="",Link="|cffffffff|Hitem:17408::::::::40:::::::|h[Spicy Beefstick]|h|r",Type="Consumable"},["Bellara's Nutterbar"]={SubType="Consumable",Level=45,id=18635,StackCount=20,Rarity=1,MinLevel=35,SellPrice=100,Texture=133983,Type="Consumable",Link="|cffffffff|Hitem:18635::::::::40:::::::|h[Bellara's Nutterbar]|h|r",EquipLoc=""},["Grand Armguards"]={SubType="Leather",Level=57,id=15188,StackCount=1,Rarity=2,MinLevel=52,SellPrice=8702,Texture=132617,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15188::::::::40:::::::|h[Grand Armguards]|h|r",Type="Armor"},["Lesser Healthstone"]={SubType="Consumable",Level=22,id=5511,StackCount=1,Rarity=1,MinLevel=12,SellPrice=0,Texture=135230,EquipLoc="",Link="|cffffffff|Hitem:5511::::::::40:::::::|h[Lesser Healthstone]|h|r",Type="Consumable"},["QAEnchant Gloves +30 Healing"]={SubType="Consumable",Level=1,id=22032,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22032::::::::40:::::::|h[QAEnchant Gloves +30 Healing]|h|r",EquipLoc="",Type="Consumable"},["Green Hills of Stranglethorn - Page 1"]={SubType="Junk",Level=1,id=2725,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:2725::::::::40:::::::|h[Green Hills of Stranglethorn - Page 1]|h|r",Type="Miscellaneous"},["Platemail Boots"]={SubType="Plate",Level=50,id=8089,StackCount=1,Rarity=1,MinLevel=45,SellPrice=4016,Texture=132589,Link="|cffffffff|Hitem:8089::::::::40:::::::|h[Platemail Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["QAEnchant Gloves +20 Shadow Damage"]={SubType="Consumable",Level=1,id=22031,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22031::::::::40:::::::|h[QAEnchant Gloves +20 Shadow Damage]|h|r",EquipLoc="",Type="Consumable"},["Pattern: Crimson Silk Shoulders"]={SubType="Tailoring",Level=38,id=7084,StackCount=1,Rarity=2,MinLevel=0,SellPrice=350,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7084::::::::40:::::::|h[Pattern: Crimson Silk Shoulders]|h|r",Type="Recipe"},["Schematic: Masterwork Target Dummy"]={SubType="Engineering",Level=55,id=16046,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:16046::::::::40:::::::|h[Schematic: Masterwork Target Dummy]|h|r",Type="Recipe"},["Pattern: Green Dragonscale Leggings"]={SubType="Leatherworking",Level=54,id=15733,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3500,Texture=134939,EquipLoc="",Link="|cff0070dd|Hitem:15733::::::::40:::::::|h[Pattern: Green Dragonscale Leggings]|h|r",Type="Recipe"},["Silver-thread Gloves"]={SubType="Cloth",Level=28,id=6393,StackCount=1,Rarity=2,MinLevel=23,SellPrice=760,Texture=132961,Type="Armor",Link="|cff1eff00|Hitem:6393::::::::40:::::::|h[Silver-thread Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Mithril Head Trout"]={SubType="Consumable",Level=35,id=8364,StackCount=20,Rarity=1,MinLevel=25,SellPrice=6,Texture=133888,Link="|cffffffff|Hitem:8364::::::::40:::::::|h[Mithril Head Trout]|h|r",EquipLoc="",Type="Consumable"},["Dreamwalker Spaulders"]={SubType="Leather",Level=86,id=22491,StackCount=1,Rarity=4,MinLevel=60,SellPrice=90838,Texture=135045,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:22491::::::::40:::::::|h[Dreamwalker Spaulders]|h|r"},["Proof of Deed"]={SubType="Quest",Level=1,id=10022,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,EquipLoc="",Link="|cffffffff|Hitem:10022::::::::40:::::::|h[Proof of Deed]|h|r",Type="Quest"},["Mountain Cougar Pelt"]={SubType="Quest",Level=1,id=4742,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134353,EquipLoc="",Link="|cffffffff|Hitem:4742::::::::40:::::::|h[Mountain Cougar Pelt]|h|r",Type="Quest"},["Merciless Shield"]={SubType="Shields",Level=57,id=15657,StackCount=1,Rarity=2,MinLevel=52,SellPrice=22625,Texture=134948,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15657::::::::40:::::::|h[Merciless Shield]|h|r",Type="Armor"},["Dark Dwarven Lager"]={SubType="Consumable",Level=55,id=12003,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=132792,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12003::::::::40:::::::|h[Dark Dwarven Lager]|h|r"},["Elite Shoulders"]={SubType="Mail",Level=30,id=4835,StackCount=1,Rarity=2,MinLevel=25,SellPrice=2110,Texture=135036,Link="|cff1eff00|Hitem:4835::::::::40:::::::|h[Elite Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Raptor Talon Amulet"]={SubType="Quest",Level=1,id=4526,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136063,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4526::::::::40:::::::|h[Raptor Talon Amulet]|h|r"},["AHNQIRAJ TEST ITEM C MAIL BELT"]={SubType="Miscellaneous",Level=1,id=21451,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:21451::::::::40:::::::|h[AHNQIRAJ TEST ITEM C MAIL BELT]|h|r"},["Monster - Mace2H, Horde Metal Spiked Maul"]={SubType="Two-Handed Maces",Level=1,id=14822,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14822::::::::40:::::::|h[Monster - Mace2H, Horde Metal Spiked Maul]|h|r"},["Staff of Orgrimmar"]={SubType="Staves",Level=18,id=15444,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1404,Texture=135225,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15444::::::::40:::::::|h[Staff of Orgrimmar]|h|r",Type="Weapon"},["Warstrike Chestguard"]={SubType="Mail",Level=64,id=14811,StackCount=1,Rarity=2,MinLevel=59,SellPrice=29898,Texture=132627,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14811::::::::40:::::::|h[Warstrike Chestguard]|h|r"},["Sack of Homemade Bread"]={SubType="Consumable",Level=1,id=22283,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133641,Link="|cffffffff|Hitem:22283::::::::40:::::::|h[Sack of Homemade Bread]|h|r",EquipLoc="",Type="Consumable"},["Ironaya's Bracers"]={SubType="Mail",Level=42,id=9409,StackCount=1,Rarity=3,MinLevel=37,SellPrice=4490,Texture=132618,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:9409::::::::40:::::::|h[Ironaya's Bracers]|h|r"},["Plans: Blood Talon"]={SubType="Blacksmithing",Level=60,id=12831,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12831::::::::40:::::::|h[Plans: Blood Talon]|h|r"},["Pattern: Living Leggings"]={SubType="Leatherworking",Level=57,id=15752,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5000,Texture=134941,EquipLoc="",Link="|cff0070dd|Hitem:15752::::::::40:::::::|h[Pattern: Living Leggings]|h|r",Type="Recipe"},["Neophyte's Robe"]={SubType="Cloth",Level=1,id=6119,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=132662,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff9d9d9d|Hitem:6119::::::::40:::::::|h[Neophyte's Robe]|h|r"},["Forest Leather Mantle"]={SubType="Leather",Level=25,id=4709,StackCount=1,Rarity=2,MinLevel=20,SellPrice=982,Texture=135039,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:4709::::::::40:::::::|h[Forest Leather Mantle]|h|r"},["Darkmantle Pants"]={SubType="Leather",Level=66,id=22007,StackCount=1,Rarity=3,MinLevel=0,SellPrice=31889,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:22007::::::::40:::::::|h[Darkmantle Pants]|h|r"},["Monster - Sword, Horde Broad Pointed"]={SubType="One-Handed Swords",Level=1,id=12304,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12304::::::::40:::::::|h[Monster - Sword, Horde Broad Pointed]|h|r"},["Bloated Firefin"]={SubType="Consumable",Level=25,id=21163,StackCount=1,Rarity=1,MinLevel=15,SellPrice=40,Texture=134299,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:21163::::::::40:::::::|h[Bloated Firefin]|h|r"},["Regal Wizard Hat"]={SubType="Cloth",Level=42,id=7470,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3668,Texture=133090,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7470::::::::40:::::::|h[Regal Wizard Hat]|h|r",Type="Armor"},["Patched Leather Boots"]={SubType="Leather",Level=19,id=1788,StackCount=1,Rarity=0,MinLevel=14,SellPrice=176,Texture=132592,Link="|cff9d9d9d|Hitem:1788::::::::40:::::::|h[Patched Leather Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Bandit Pants"]={SubType="Leather",Level=22,id=9781,StackCount=1,Rarity=2,MinLevel=17,SellPrice=982,Texture=134586,Link="|cff1eff00|Hitem:9781::::::::40:::::::|h[Bandit Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Mithril Scale Pants"]={SubType="Mail",Level=42,id=7920,StackCount=1,Rarity=2,MinLevel=37,SellPrice=8053,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7920::::::::40:::::::|h[Mithril Scale Pants]|h|r",Type="Armor"},["Welldrip Gloves"]={SubType="Cloth",Level=14,id=15401,StackCount=1,Rarity=1,MinLevel=0,SellPrice=72,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:15401::::::::40:::::::|h[Welldrip Gloves]|h|r",Type="Armor"},["Horn of Echeyakee"]={SubType="Quest",Level=1,id=10327,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134227,EquipLoc="",Link="|cffffffff|Hitem:10327::::::::40:::::::|h[Horn of Echeyakee]|h|r",Type="Quest"},["Gypsy Sash"]={SubType="Leather",Level=12,id=9750,StackCount=1,Rarity=1,MinLevel=7,SellPrice=57,Texture=132514,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:9750::::::::40:::::::|h[Gypsy Sash]|h|r"},["Tapered Pants"]={SubType="Cloth",Level=5,id=6076,StackCount=1,Rarity=1,MinLevel=0,SellPrice=9,Texture=134591,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:6076::::::::40:::::::|h[Tapered Pants]|h|r"},["Greater Arcane Protection Potion"]={SubType="Consumable",Level=58,id=13461,StackCount=5,Rarity=1,MinLevel=48,SellPrice=750,Texture=134863,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13461::::::::40:::::::|h[Greater Arcane Protection Potion]|h|r"},["Bard's Boots"]={SubType="Leather",Level=16,id=6557,StackCount=1,Rarity=2,MinLevel=11,SellPrice=302,Texture=132539,Type="Armor",Link="|cff1eff00|Hitem:6557::::::::40:::::::|h[Bard's Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Force of Magma"]={SubType="Two-Handed Maces",Level=56,id=11803,StackCount=1,Rarity=3,MinLevel=51,SellPrice=50177,Texture=133046,Type="Weapon",Link="|cff0070dd|Hitem:11803::::::::40:::::::|h[Force of Magma]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Grand Marshal's Swiftblade"]={SubType="One-Handed Swords",Level=78,id=23456,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45671,Texture=135275,Link="|cffa335ee|Hitem:23456::::::::40:::::::|h[Grand Marshal's Swiftblade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Freshly Baked Bread"]={SubType="Consumable",Level=15,id=4541,StackCount=20,Rarity=1,MinLevel=5,SellPrice=6,Texture=133968,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:4541::::::::40:::::::|h[Freshly Baked Bread]|h|r"},["Beastmaster's Belt"]={SubType="Mail",Level=65,id=22010,StackCount=1,Rarity=3,MinLevel=0,SellPrice=18432,Texture=132517,Link="|cff0070dd|Hitem:22010::::::::40:::::::|h[Beastmaster's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Thun'grim's Axe"]={SubType="One-Handed Axes",Level=15,id=7326,StackCount=1,Rarity=2,MinLevel=0,SellPrice=696,Texture=132392,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:7326::::::::40:::::::|h[Thun'grim's Axe]|h|r",Type="Weapon"},["Tablet of Flametongue Totem"]={SubType="Book",Level=26,id=9072,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=134459,Link="|cffffffff|Hitem:9072::::::::40:::::::|h[Tablet of Flametongue Totem]|h|r",EquipLoc="",Type="Recipe"},["Bracelets of Wrath"]={SubType="Plate",Level=76,id=16959,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29507,Texture=132618,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16959::::::::40:::::::|h[Bracelets of Wrath]|h|r",Type="Armor"},["Barbaric Cloth Cloak"]={SubType="Cloth",Level=12,id=4686,StackCount=1,Rarity=1,MinLevel=7,SellPrice=67,Texture=133754,Type="Armor",Link="|cffffffff|Hitem:4686::::::::40:::::::|h[Barbaric Cloth Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Pattern: Warbear Woolies"]={SubType="Leatherworking",Level=57,id=15754,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15754::::::::40:::::::|h[Pattern: Warbear Woolies]|h|r",Type="Recipe"},["Hero's Band"]={SubType="Mail",Level=60,id=8308,StackCount=1,Rarity=2,MinLevel=55,SellPrice=18703,Texture=132767,Link="|cff1eff00|Hitem:8308::::::::40:::::::|h[Hero's Band]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Ghoul Fingers"]={SubType="Leather",Level=20,id=1314,StackCount=1,Rarity=2,MinLevel=15,SellPrice=362,Texture=132947,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:1314::::::::40:::::::|h[Ghoul Fingers]|h|r"},["Plaguerot Sprig"]={SubType="Wands",Level=40,id=10766,StackCount=1,Rarity=3,MinLevel=35,SellPrice=9660,Texture=135465,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:10766::::::::40:::::::|h[Plaguerot Sprig]|h|r",Type="Weapon"},["Zandalarian Shadow Talisman"]={SubType="Miscellaneous",Level=60,id=19614,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133310,Link="|cff1eff00|Hitem:19614::::::::40:::::::|h[Zandalarian Shadow Talisman]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Stratholme Holy Water"]={SubType="Quest",Level=1,id=13180,StackCount=50,Rarity=1,MinLevel=0,SellPrice=0,Texture=134855,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13180::::::::40:::::::|h[Stratholme Holy Water]|h|r"},["Lower Map Fragment"]={SubType="Quest",Level=1,id=9252,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134327,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9252::::::::40:::::::|h[Lower Map Fragment]|h|r"},["Ashbringer Test 001"]={SubType="Quest",Level=1,id=16024,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135277,EquipLoc="",Link="|cffffffff|Hitem:16024::::::::40:::::::|h[Ashbringer Test 001]|h|r",Type="Quest"},["Theradric Crystal Carving"]={SubType="Quest",Level=1,id=17684,StackCount=30,Rarity=1,MinLevel=0,SellPrice=0,Texture=133440,EquipLoc="",Link="|cffffffff|Hitem:17684::::::::40:::::::|h[Theradric Crystal Carving]|h|r",Type="Quest"},["Huge Brown Sack"]={SubType="Bag",Level=35,id=4499,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25000,Texture=133639,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:4499::::::::40:::::::|h[Huge Brown Sack]|h|r"},["Box of Supplies"]={SubType="Junk",Level=40,id=6827,StackCount=1,Rarity=1,MinLevel=0,SellPrice=150,Texture=132762,Type="Miscellaneous",Link="|cffffffff|Hitem:6827::::::::40:::::::|h[Box of Supplies]|h|r",EquipLoc=""},["Banner of Provocation"]={SubType="Quest",Level=1,id=21986,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132619,Link="|cffffffff|Hitem:21986::::::::40:::::::|h[Banner of Provocation]|h|r",EquipLoc="",Type="Quest"},["Starbreeze Village Relic"]={SubType="Quest",Level=1,id=22227,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136244,Link="|cffffffff|Hitem:22227::::::::40:::::::|h[Starbreeze Village Relic]|h|r",EquipLoc="",Type="Quest"},["Noggenfogger Elixir"]={SubType="Consumable",Level=45,id=8529,StackCount=20,Rarity=1,MinLevel=35,SellPrice=175,Texture=134863,Link="|cffffffff|Hitem:8529::::::::40:::::::|h[Noggenfogger Elixir]|h|r",EquipLoc="",Type="Consumable"},["Creeping Pain"]={SubType="Consumable",Level=22,id=2895,StackCount=10,Rarity=1,MinLevel=0,SellPrice=12,Texture=134799,Link="|cffffffff|Hitem:2895::::::::40:::::::|h[Creeping Pain]|h|r",EquipLoc="",Type="Consumable"},["Arikara Serpent Skin"]={SubType="Quest",Level=1,id=12925,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134318,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12925::::::::40:::::::|h[Arikara Serpent Skin]|h|r"},["90 Epic Frost Staff"]={SubType="Staves",Level=90,id=20334,StackCount=1,Rarity=4,MinLevel=60,SellPrice=345404,Texture=135169,Link="|cffa335ee|Hitem:20334::::::::40:::::::|h[90 Epic Frost Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Test Enchant Chest Mana"]={SubType="Consumable",Level=45,id=16102,StackCount=1,Rarity=1,MinLevel=0,SellPrice=650,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:16102::::::::40:::::::|h[Test Enchant Chest Mana]|h|r",Type="Consumable"},["Plainstrider Feather"]={SubType="Quest",Level=1,id=4740,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132918,Link="|cffffffff|Hitem:4740::::::::40:::::::|h[Plainstrider Feather]|h|r",EquipLoc="",Type="Quest"},["Sandstalker Ankleguards"]={SubType="Leather",Level=47,id=12470,StackCount=1,Rarity=3,MinLevel=42,SellPrice=8784,Texture=132603,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:12470::::::::40:::::::|h[Sandstalker Ankleguards]|h|r"},["Deprecated Inferno Stone"]={SubType="Miscellaneous",Level=40,id=1444,StackCount=1,Rarity=3,MinLevel=35,SellPrice=1131,Texture=135231,EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:1444::::::::40:::::::|h[Deprecated Inferno Stone]|h|r",Type="Armor"},["Archlight Talisman"]={SubType="Miscellaneous",Level=60,id=15856,StackCount=1,Rarity=3,MinLevel=0,SellPrice=8788,Texture=133298,EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:15856::::::::40:::::::|h[Archlight Talisman]|h|r",Type="Armor"},["Deprecated Dwarven Squire's Pants"]={SubType="Cloth",Level=1,id=100,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:100::::::::40:::::::|h[Deprecated Dwarven Squire's Pants]|h|r"},["Monster - Knuckle, B01 Red"]={SubType="Fist Weapons",Level=1,id=22210,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134294,Link="|cff9d9d9d|Hitem:22210::::::::40:::::::|h[Monster - Knuckle, B01 Red]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Gift of Friendship: Orgrimmar"]={SubType="Consumable",Level=1,id=22169,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135449,Link="|cffffffff|Hitem:22169::::::::40:::::::|h[Gift of Friendship: Orgrimmar]|h|r",EquipLoc="",Type="Consumable"},["Haggard's Sword"]={SubType="One-Handed Swords",Level=15,id=6985,StackCount=1,Rarity=2,MinLevel=0,SellPrice=690,Texture=135274,Type="Weapon",Link="|cff1eff00|Hitem:6985::::::::40:::::::|h[Haggard's Sword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Shimmering Gloves"]={SubType="Cloth",Level=22,id=6565,StackCount=1,Rarity=2,MinLevel=17,SellPrice=393,Texture=132950,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:6565::::::::40:::::::|h[Shimmering Gloves]|h|r"},["Swampwalker Boots"]={SubType="Leather",Level=37,id=2276,StackCount=1,Rarity=3,MinLevel=32,SellPrice=4093,Texture=132543,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:2276::::::::40:::::::|h[Swampwalker Boots]|h|r",Type="Armor"},["Lieutenant Commander's Headguard"]={SubType="Cloth",Level=63,id=17566,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8863,Texture=133126,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:17566::::::::40:::::::|h[Lieutenant Commander's Headguard]|h|r",Type="Armor"},["Deprecated Deckhand Gloves"]={SubType="Leather",Level=20,id=5308,StackCount=1,Rarity=0,MinLevel=0,SellPrice=137,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:5308::::::::40:::::::|h[Deprecated Deckhand Gloves]|h|r",Type="Armor"},["Large Red Rocket Cluster"]={SubType="Consumable",Level=1,id=21718,StackCount=20,Rarity=1,MinLevel=0,SellPrice=50,Texture=134279,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:21718::::::::40:::::::|h[Large Red Rocket Cluster]|h|r"},["Hardened Leather Shoulderpads"]={SubType="Leather",Level=37,id=3806,StackCount=1,Rarity=0,MinLevel=32,SellPrice=1271,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3806::::::::40:::::::|h[Hardened Leather Shoulderpads]|h|r",Type="Armor"},["Monster - Mace, Jeweled Club"]={SubType="One-Handed Maces",Level=1,id=5291,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133486,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:5291::::::::40:::::::|h[Monster - Mace, Jeweled Club]|h|r",Type="Weapon"},["Frenzied Dragonflight Molt"]={SubType="Junk",Level=1,id=11228,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134430,Type="Miscellaneous",Link="|cffffffff|Hitem:11228::::::::40:::::::|h[Frenzied Dragonflight Molt]|h|r",EquipLoc=""},["Tome of Frost Ward V"]={SubType="Book",Level=60,id=22890,StackCount=1,Rarity=3,MinLevel=60,SellPrice=10000,Texture=133739,Link="|cff0070dd|Hitem:22890::::::::40:::::::|h[Tome of Frost Ward V]|h|r",EquipLoc="",Type="Recipe"},["Gnome Engineer's Renewal Gift"]={SubType="Junk",Level=0,id=11423,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134144,Type="Miscellaneous",Link="|cffffffff|Hitem:11423::::::::40:::::::|h[Gnome Engineer's Renewal Gift]|h|r",EquipLoc=""},["Monster - Mace, Spiked Club"]={SubType="One-Handed Maces",Level=1,id=2695,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133486,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2695::::::::40:::::::|h[Monster - Mace, Spiked Club]|h|r"},["Cat Carrier (Siamese)"]={SubType="Junk",Level=20,id=8490,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=132599,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:8490::::::::40:::::::|h[Cat Carrier (Siamese)]|h|r"},["Red Woolen Boots"]={SubType="Cloth",Level=20,id=4313,StackCount=1,Rarity=2,MinLevel=15,SellPrice=416,Texture=132543,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:4313::::::::40:::::::|h[Red Woolen Boots]|h|r",Type="Armor"},["[PH] Valentine Lockbox, Quest, Common"]={SubType="Consumable",Level=1,id=21930,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132596,Link="|cffffffff|Hitem:21930::::::::40:::::::|h[[PH] Valentine Lockbox, Quest, Common]|h|r",EquipLoc="",Type="Consumable"},["Headhunter's Armor"]={SubType="Leather",Level=36,id=15356,StackCount=1,Rarity=2,MinLevel=31,SellPrice=3935,Texture=132723,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15356::::::::40:::::::|h[Headhunter's Armor]|h|r",Type="Armor"},["Icemetal Barbute"]={SubType="Plate",Level=44,id=10763,StackCount=1,Rarity=3,MinLevel=40,SellPrice=5197,Texture=133111,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:10763::::::::40:::::::|h[Icemetal Barbute]|h|r",Type="Armor"},["Peerless Belt"]={SubType="Leather",Level=56,id=15428,StackCount=1,Rarity=2,MinLevel=51,SellPrice=8024,Texture=132501,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15428::::::::40:::::::|h[Peerless Belt]|h|r",Type="Armor"},["Polished Scale Boots"]={SubType="Mail",Level=27,id=2149,StackCount=1,Rarity=1,MinLevel=22,SellPrice=879,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:2149::::::::40:::::::|h[Polished Scale Boots]|h|r",Type="Armor"},["Rusted Chain Bracers"]={SubType="Mail",Level=5,id=2390,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=132604,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:2390::::::::40:::::::|h[Rusted Chain Bracers]|h|r",Type="Armor"},["Belamoore's Research Journal"]={SubType="Quest",Level=1,id=3711,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133736,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3711::::::::40:::::::|h[Belamoore's Research Journal]|h|r"},["Jadefinger Baton"]={SubType="Miscellaneous",Level=20,id=15206,StackCount=1,Rarity=2,MinLevel=0,SellPrice=857,Texture=135466,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15206::::::::40:::::::|h[Jadefinger Baton]|h|r",Type="Armor"},["Scaled Leather Headband"]={SubType="Leather",Level=32,id=10406,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1976,Texture=133681,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10406::::::::40:::::::|h[Scaled Leather Headband]|h|r",Type="Armor"},["Short-handled Battle Axe"]={SubType="Two-Handed Axes",Level=17,id=1812,StackCount=1,Rarity=0,MinLevel=12,SellPrice=452,Texture=135423,Type="Weapon",Link="|cff9d9d9d|Hitem:1812::::::::40:::::::|h[Short-handled Battle Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Stormrage Pauldrons"]={SubType="Leather",Level=76,id=16902,StackCount=1,Rarity=4,MinLevel=60,SellPrice=54507,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16902::::::::40:::::::|h[Stormrage Pauldrons]|h|r",Type="Armor"},["Overlord's Spaulders"]={SubType="Plate",Level=50,id=10209,StackCount=1,Rarity=2,MinLevel=45,SellPrice=7216,Texture=135044,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10209::::::::40:::::::|h[Overlord's Spaulders]|h|r",Type="Armor"},["Hot Smoked Bass"]={SubType="Consumable",Level=45,id=13929,StackCount=20,Rarity=1,MinLevel=35,SellPrice=10,Texture=133889,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13929::::::::40:::::::|h[Hot Smoked Bass]|h|r"},["Deathguard's Cloak"]={SubType="Cloth",Level=65,id=20068,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26353,Texture=133754,Link="|cffa335ee|Hitem:20068::::::::40:::::::|h[Deathguard's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Deprecated Runic Cloth Shoulderpads"]={SubType="Cloth",Level=18,id=4685,StackCount=1,Rarity=0,MinLevel=13,SellPrice=122,Texture=135040,Link="|cff9d9d9d|Hitem:4685::::::::40:::::::|h[Deprecated Runic Cloth Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Formula: Enchant 2H Weapon - Major Intellect"]={SubType="Enchanting",Level=60,id=16249,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16249::::::::40:::::::|h[Formula: Enchant 2H Weapon - Major Intellect]|h|r",Type="Recipe"},["Bright Eyeball"]={SubType="Junk",Level=1,id=5137,StackCount=5,Rarity=0,MinLevel=0,SellPrice=217,Texture=133884,Link="|cff9d9d9d|Hitem:5137::::::::40:::::::|h[Bright Eyeball]|h|r",EquipLoc="",Type="Miscellaneous"},["Grimoire of Shadow Bolt III"]={SubType="Book",Level=12,id=1243,StackCount=1,Rarity=1,MinLevel=12,SellPrice=150,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1243::::::::40:::::::|h[Grimoire of Shadow Bolt III]|h|r"},["Goblin Prize Box"]={SubType="Quest",Level=1,id=5858,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37,Texture=134143,EquipLoc="",Link="|cffffffff|Hitem:5858::::::::40:::::::|h[Goblin Prize Box]|h|r",Type="Quest"},["Thurman's Remains"]={SubType="Quest",Level=1,id=2830,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2830::::::::40:::::::|h[Thurman's Remains]|h|r"},["Wirt's Third Leg"]={SubType="One-Handed Maces",Level=45,id=9359,StackCount=1,Rarity=3,MinLevel=40,SellPrice=19577,Texture=133942,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9359::::::::40:::::::|h[Wirt's Third Leg]|h|r"},["Stonecutter Claymore"]={SubType="Two-Handed Swords",Level=35,id=3197,StackCount=1,Rarity=2,MinLevel=30,SellPrice=9295,Texture=135357,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3197::::::::40:::::::|h[Stonecutter Claymore]|h|r"},["Legionnaire's Dragonhide Waistband"]={SubType="Leather",Level=60,id=16495,StackCount=1,Rarity=3,MinLevel=55,SellPrice=6519,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16495::::::::40:::::::|h[Legionnaire's Dragonhide Waistband]|h|r",Type="Armor"},["Sleek Bat Pelt"]={SubType="Junk",Level=1,id=11402,StackCount=10,Rarity=0,MinLevel=0,SellPrice=1205,Texture=134347,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11402::::::::40:::::::|h[Sleek Bat Pelt]|h|r",EquipLoc=""},["Monster - Shield, Alliance PVP"]={SubType="Shields",Level=1,id=21572,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Link="|cff9d9d9d|Hitem:21572::::::::40:::::::|h[Monster - Shield, Alliance PVP]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["QAEnchhelp Cloak +7 Fire Resistance"]={SubType="Consumable",Level=1,id=16104,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:16104::::::::40:::::::|h[QAEnchhelp Cloak +7 Fire Resistance]|h|r",Type="Consumable"},["Blackhand Doomsaw"]={SubType="Polearms",Level=63,id=12583,StackCount=1,Rarity=3,MinLevel=58,SellPrice=74346,Texture=135574,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12583::::::::40:::::::|h[Blackhand Doomsaw]|h|r"},["BKP 2700 \"Enforcer\""]={SubType="Guns",Level=26,id=3024,StackCount=1,Rarity=1,MinLevel=21,SellPrice=1419,Texture=135612,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:3024::::::::40:::::::|h[BKP 2700 \"Enforcer\"]|h|r",Type="Weapon"},["Ysida's Satchel"]={SubType="Junk",Level=1,id=22137,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133653,Link="|cffffffff|Hitem:22137::::::::40:::::::|h[Ysida's Satchel]|h|r",EquipLoc="",Type="Miscellaneous"},["Elixir of Minor Defense"]={SubType="Consumable",Level=5,id=5997,StackCount=5,Rarity=1,MinLevel=1,SellPrice=5,Texture=134843,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5997::::::::40:::::::|h[Elixir of Minor Defense]|h|r"},["Huntsman Malkhor's Bones"]={SubType="Quest",Level=1,id=19070,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133719,Link="|cffffffff|Hitem:19070::::::::40:::::::|h[Huntsman Malkhor's Bones]|h|r",EquipLoc="",Type="Quest"},["Slightly Creased Note"]={SubType="Junk",Level=1,id=21926,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135454,Link="|cffffffff|Hitem:21926::::::::40:::::::|h[Slightly Creased Note]|h|r",EquipLoc="",Type="Miscellaneous"},["Rancor Boots"]={SubType="Cloth",Level=53,id=11865,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8708,Texture=132536,Type="Armor",Link="|cff1eff00|Hitem:11865::::::::40:::::::|h[Rancor Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Pattern: Stormshroud Armor"]={SubType="Leatherworking",Level=57,id=15753,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5000,Texture=134939,EquipLoc="",Link="|cff0070dd|Hitem:15753::::::::40:::::::|h[Pattern: Stormshroud Armor]|h|r",Type="Recipe"},["Magefist Gloves"]={SubType="Cloth",Level=20,id=12977,StackCount=1,Rarity=3,MinLevel=15,SellPrice=355,Texture=132961,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:12977::::::::40:::::::|h[Magefist Gloves]|h|r"},["Hero's Cape"]={SubType="Cloth",Level=57,id=8304,StackCount=1,Rarity=2,MinLevel=52,SellPrice=10513,Texture=133754,Link="|cff1eff00|Hitem:8304::::::::40:::::::|h[Hero's Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Secrecy of Plans"]={SubType="Consumable",Level=0,id=12762,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134943,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12762::::::::40:::::::|h[Secrecy of Plans]|h|r"},["Warlord's Silk Raiment"]={SubType="Cloth",Level=74,id=16535,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27533,Texture=132716,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:16535::::::::40:::::::|h[Warlord's Silk Raiment]|h|r",Type="Armor"},["Senior Sergeant's Insignia"]={SubType="Miscellaneous",Level=35,id=15200,StackCount=1,Rarity=3,MinLevel=30,SellPrice=5000,Texture=134317,EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:15200::::::::40:::::::|h[Senior Sergeant's Insignia]|h|r",Type="Armor"},["Dark Iron Script"]={SubType="Quest",Level=1,id=6847,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133472,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6847::::::::40:::::::|h[Dark Iron Script]|h|r"},["Wingveil Cloak"]={SubType="Cloth",Level=52,id=10802,StackCount=1,Rarity=2,MinLevel=47,SellPrice=7831,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10802::::::::40:::::::|h[Wingveil Cloak]|h|r",Type="Armor"},["Brittle Molting"]={SubType="Junk",Level=1,id=6445,StackCount=5,Rarity=0,MinLevel=0,SellPrice=88,Texture=134304,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:6445::::::::40:::::::|h[Brittle Molting]|h|r",EquipLoc=""},["Taskmaster Axe"]={SubType="Two-Handed Axes",Level=23,id=5194,StackCount=1,Rarity=3,MinLevel=18,SellPrice=3079,Texture=135424,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:5194::::::::40:::::::|h[Taskmaster Axe]|h|r",Type="Weapon"},["Snapbrook Armor"]={SubType="Leather",Level=30,id=5814,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2351,Texture=132725,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:5814::::::::40:::::::|h[Snapbrook Armor]|h|r"},["Simple Tablet"]={SubType="Quest",Level=1,id=6488,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134455,Type="Quest",Link="|cffffffff|Hitem:6488::::::::40:::::::|h[Simple Tablet]|h|r",EquipLoc=""},["Grimoire of Firebolt (Rank 5)"]={SubType="Book",Level=38,id=16318,StackCount=1,Rarity=1,MinLevel=38,SellPrice=2500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16318::::::::40:::::::|h[Grimoire of Firebolt (Rank 5)]|h|r",Type="Recipe"},["Morning Star"]={SubType="One-Handed Maces",Level=46,id=2532,StackCount=1,Rarity=1,MinLevel=41,SellPrice=10521,Texture=133487,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2532::::::::40:::::::|h[Morning Star]|h|r"},["Overlord's Embrace"]={SubType="Cloth",Level=71,id=19888,StackCount=1,Rarity=3,MinLevel=60,SellPrice=25165,Texture=133773,Link="|cff0070dd|Hitem:19888::::::::40:::::::|h[Overlord's Embrace]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Sporid Cape"]={SubType="Cloth",Level=23,id=6629,StackCount=1,Rarity=2,MinLevel=18,SellPrice=630,Texture=133769,Link="|cff1eff00|Hitem:6629::::::::40:::::::|h[Sporid Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Superior Mana Draught"]={SubType="Consumable",Level=45,id=17352,StackCount=10,Rarity=1,MinLevel=35,SellPrice=125,Texture=134861,EquipLoc="",Link="|cffffffff|Hitem:17352::::::::40:::::::|h[Superior Mana Draught]|h|r",Type="Consumable"},["Deprecated Orc Protector"]={SubType="Shields",Level=11,id=4950,StackCount=1,Rarity=1,MinLevel=0,SellPrice=126,Texture=134957,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:4950::::::::40:::::::|h[Deprecated Orc Protector]|h|r"},["Verimonde's Last Resort"]={SubType="Daggers",Level=66,id=22688,StackCount=1,Rarity=3,MinLevel=0,SellPrice=64512,Texture=135639,Link="|cff0070dd|Hitem:22688::::::::40:::::::|h[Verimonde's Last Resort]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Knight-Captain's Dreadweave Legguards"]={SubType="Cloth",Level=68,id=23296,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14771,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:23296::::::::40:::::::|h[Knight-Captain's Dreadweave Legguards]|h|r"},["Codex of Dominate"]={SubType="Book",Level=30,id=1109,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2000,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:1109::::::::40:::::::|h[Codex of Dominate]|h|r",Type="Recipe"},["Scarlet Boots"]={SubType="Mail",Level=35,id=10332,StackCount=1,Rarity=3,MinLevel=30,SellPrice=3790,Texture=132536,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:10332::::::::40:::::::|h[Scarlet Boots]|h|r",Type="Armor"},["Blazing Rapier"]={SubType="One-Handed Swords",Level=56,id=12777,StackCount=1,Rarity=3,MinLevel=51,SellPrice=38648,Texture=135340,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:12777::::::::40:::::::|h[Blazing Rapier]|h|r"},["Treads of the Wandering Nomad"]={SubType="Cloth",Level=71,id=21810,StackCount=1,Rarity=3,MinLevel=60,SellPrice=25259,Texture=132562,Link="|cff0070dd|Hitem:21810::::::::40:::::::|h[Treads of the Wandering Nomad]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Tablet of Lightning Bolt VI"]={SubType="Book",Level=42,id=9123,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9123::::::::40:::::::|h[Tablet of Lightning Bolt VI]|h|r"},["Bone Ring Helm"]={SubType="Leather",Level=62,id=14539,StackCount=1,Rarity=3,MinLevel=57,SellPrice=21404,Texture=133116,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:14539::::::::40:::::::|h[Bone Ring Helm]|h|r"},["Fury of the Forgotten Swarm"]={SubType="Miscellaneous",Level=71,id=21809,StackCount=1,Rarity=3,MinLevel=60,SellPrice=48655,Texture=133301,Link="|cff0070dd|Hitem:21809::::::::40:::::::|h[Fury of the Forgotten Swarm]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Book of Rejuvenation VII"]={SubType="Book",Level=40,id=8778,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133743,Link="|cffffffff|Hitem:8778::::::::40:::::::|h[Book of Rejuvenation VII]|h|r",EquipLoc="",Type="Recipe"},["[PH] Plate Leggings of the Brilliant Dawn"]={SubType="Plate",Level=100,id=13783,StackCount=1,Rarity=1,MinLevel=100,SellPrice=71591,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:13783::::::::40:::::::|h[[PH] Plate Leggings of the Brilliant Dawn]|h|r"},["Parrot Cage (Cockatiel)"]={SubType="Junk",Level=20,id=8496,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=136036,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:8496::::::::40:::::::|h[Parrot Cage (Cockatiel)]|h|r"},["Watcher's Leggings"]={SubType="Cloth",Level=30,id=14183,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1710,Texture=134581,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14183::::::::40:::::::|h[Watcher's Leggings]|h|r"},["Tyrant's Greaves"]={SubType="Plate",Level=44,id=14839,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4701,Texture=132587,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14839::::::::40:::::::|h[Tyrant's Greaves]|h|r"},["Doombringer"]={SubType="Two-Handed Swords",Level=60,id=13053,StackCount=1,Rarity=3,MinLevel=55,SellPrice=59186,Texture=135271,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13053::::::::40:::::::|h[Doombringer]|h|r"},["Big Bronze Knife"]={SubType="Daggers",Level=20,id=3848,StackCount=1,Rarity=2,MinLevel=15,SellPrice=1426,Texture=135640,Type="Weapon",Link="|cff1eff00|Hitem:3848::::::::40:::::::|h[Big Bronze Knife]|h|r",EquipLoc="INVTYPE_WEAPON"},["Durable Tunic"]={SubType="Cloth",Level=34,id=9819,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2726,Texture=132646,Link="|cff1eff00|Hitem:9819::::::::40:::::::|h[Durable Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Huntsman's Leggings"]={SubType="Leather",Level=42,id=9893,StackCount=1,Rarity=2,MinLevel=37,SellPrice=6689,Texture=134594,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9893::::::::40:::::::|h[Huntsman's Leggings]|h|r"},["Pattern: Festival Dress"]={SubType="Tailoring",Level=50,id=21722,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,Link="|cff1eff00|Hitem:21722::::::::40:::::::|h[Pattern: Festival Dress]|h|r",EquipLoc="",Type="Recipe"},["Dustfall Robes"]={SubType="Cloth",Level=37,id=15455,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3541,Texture=132673,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:15455::::::::40:::::::|h[Dustfall Robes]|h|r",Type="Armor"},["Marshal's Silk Leggings"]={SubType="Cloth",Level=71,id=16442,StackCount=1,Rarity=4,MinLevel=60,SellPrice=23780,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16442::::::::40:::::::|h[Marshal's Silk Leggings]|h|r",Type="Armor"},["Malleable Chain Leggings"]={SubType="Mail",Level=26,id=2545,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1796,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:2545::::::::40:::::::|h[Malleable Chain Leggings]|h|r",Type="Armor"},["Durable Belt"]={SubType="Cloth",Level=30,id=10404,StackCount=1,Rarity=2,MinLevel=25,SellPrice=864,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10404::::::::40:::::::|h[Durable Belt]|h|r",Type="Armor"},["Customer Service Package"]={SubType="Junk",Level=1,id=172070,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134142,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:172070::::::::40:::::::|h[Customer Service Package]|h|r"},["Monster - Bow, Gray"]={SubType="Bows",Level=1,id=5261,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135493,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:5261::::::::40:::::::|h[Monster - Bow, Gray]|h|r"},["Ancient Qiraji Artifact"]={SubType="Junk",Level=60,id=21230,StackCount=1,Rarity=1,MinLevel=60,SellPrice=0,Texture=134232,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21230::::::::40:::::::|h[Ancient Qiraji Artifact]|h|r"},["Darkspear"]={SubType="Polearms",Level=60,id=12802,StackCount=1,Rarity=3,MinLevel=55,SellPrice=62625,Texture=135131,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12802::::::::40:::::::|h[Darkspear]|h|r"},["Combat Task Briefing I"]={SubType="Quest",Level=60,id=21749,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21749::::::::40:::::::|h[Combat Task Briefing I]|h|r",EquipLoc="",Type="Quest"},["Tablet of Group Astral Recall"]={SubType="Book",Level=40,id=4185,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4185::::::::40:::::::|h[Tablet of Group Astral Recall]|h|r"},["Leech Pants"]={SubType="Cloth",Level=31,id=6910,StackCount=1,Rarity=3,MinLevel=26,SellPrice=2298,Texture=134594,Link="|cff0070dd|Hitem:6910::::::::40:::::::|h[Leech Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Lambent Scale Girdle"]={SubType="Mail",Level=26,id=4707,StackCount=1,Rarity=2,MinLevel=21,SellPrice=881,Texture=132493,Type="Armor",Link="|cff1eff00|Hitem:4707::::::::40:::::::|h[Lambent Scale Girdle]|h|r",EquipLoc="INVTYPE_WAIST"},["Lucky Rocket Cluster"]={SubType="Consumable",Level=1,id=21744,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134280,Link="|cffffffff|Hitem:21744::::::::40:::::::|h[Lucky Rocket Cluster]|h|r",EquipLoc="",Type="Consumable"},["63 Green Frost Mantle"]={SubType="Cloth",Level=63,id=20357,StackCount=1,Rarity=2,MinLevel=58,SellPrice=14034,Texture=135054,Link="|cff1eff00|Hitem:20357::::::::40:::::::|h[63 Green Frost Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Fist of Cenarius"]={SubType="Two-Handed Maces",Level=66,id=21188,StackCount=1,Rarity=4,MinLevel=60,SellPrice=111220,Texture=133060,Link="|cffa335ee|Hitem:21188::::::::40:::::::|h[Fist of Cenarius]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Ravager's Cloak"]={SubType="Cloth",Level=39,id=14771,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3030,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14771::::::::40:::::::|h[Ravager's Cloak]|h|r"},["Rusted Claymore"]={SubType="Two-Handed Swords",Level=9,id=2497,StackCount=1,Rarity=1,MinLevel=4,SellPrice=142,Texture=135276,Link="|cffffffff|Hitem:2497::::::::40:::::::|h[Rusted Claymore]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Gnoll Casting Gloves"]={SubType="Cloth",Level=22,id=892,StackCount=1,Rarity=2,MinLevel=17,SellPrice=369,Texture=132938,Link="|cff1eff00|Hitem:892::::::::40:::::::|h[Gnoll Casting Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Wild Root"]={SubType="Reagent",Level=50,id=17024,StackCount=20,Rarity=1,MinLevel=0,SellPrice=175,Texture=134413,EquipLoc="",Link="|cffffffff|Hitem:17024::::::::40:::::::|h[Wild Root]|h|r",Type="Reagent"},["Tome of Cone of Cold IV"]={SubType="Book",Level=50,id=8866,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8866::::::::40:::::::|h[Tome of Cone of Cold IV]|h|r"},["Tarnished Elven Ring"]={SubType="Miscellaneous",Level=61,id=18500,StackCount=1,Rarity=3,MinLevel=56,SellPrice=31340,Texture=133355,Type="Armor",Link="|cff0070dd|Hitem:18500::::::::40:::::::|h[Tarnished Elven Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Dress Shoes"]={SubType="Miscellaneous",Level=1,id=6836,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132539,Type="Armor",Link="|cffffffff|Hitem:6836::::::::40:::::::|h[Dress Shoes]|h|r",EquipLoc="INVTYPE_FEET"},["Deprecated Crimson Shoulders"]={SubType="Mail",Level=19,id=4812,StackCount=1,Rarity=0,MinLevel=14,SellPrice=229,Texture=135040,Type="Armor",Link="|cff9d9d9d|Hitem:4812::::::::40:::::::|h[Deprecated Crimson Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["QAEnchant Weapon Lifestealing"]={SubType="Consumable",Level=1,id=22025,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22025::::::::40:::::::|h[QAEnchant Weapon Lifestealing]|h|r",EquipLoc="",Type="Consumable"},["Living Essence"]={SubType="Reagent",Level=55,id=12803,StackCount=10,Rarity=2,MinLevel=0,SellPrice=500,Texture=136006,Type="Reagent",EquipLoc="",Link="|cff1eff00|Hitem:12803::::::::40:::::::|h[Living Essence]|h|r"},["Gritroot Staff"]={SubType="Staves",Level=10,id=9603,StackCount=1,Rarity=2,MinLevel=0,SellPrice=302,Texture=135159,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:9603::::::::40:::::::|h[Gritroot Staff]|h|r"},["Schematic: Green Rocket Cluster"]={SubType="Engineering",Level=45,id=21731,StackCount=1,Rarity=2,MinLevel=0,SellPrice=875,Texture=134942,Link="|cff1eff00|Hitem:21731::::::::40:::::::|h[Schematic: Green Rocket Cluster]|h|r",EquipLoc="",Type="Recipe"},["Monster - Item, Book - Brown"]={SubType="Miscellaneous",Level=1,id=12742,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12742::::::::40:::::::|h[Monster - Item, Book - Brown]|h|r"},["Beastmaster's Gloves"]={SubType="Mail",Level=55,id=22015,StackCount=1,Rarity=4,MinLevel=0,SellPrice=14941,Texture=132944,Link="|cffa335ee|Hitem:22015::::::::40:::::::|h[Beastmaster's Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Scarlet Chestpiece"]={SubType="Mail",Level=39,id=10328,StackCount=1,Rarity=3,MinLevel=34,SellPrice=6992,Texture=132629,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:10328::::::::40:::::::|h[Scarlet Chestpiece]|h|r",Type="Armor"},["QAEnchant Weapon +15 Agility"]={SubType="Consumable",Level=1,id=22020,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22020::::::::40:::::::|h[QAEnchant Weapon +15 Agility]|h|r",EquipLoc="",Type="Consumable"},["Root Sample"]={SubType="Quest",Level=1,id=5056,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134187,EquipLoc="",Link="|cffffffff|Hitem:5056::::::::40:::::::|h[Root Sample]|h|r",Type="Quest"},["Bonecaster's Shroud"]={SubType="Cloth",Level=60,id=14303,StackCount=1,Rarity=2,MinLevel=55,SellPrice=16209,Texture=132679,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14303::::::::40:::::::|h[Bonecaster's Shroud]|h|r"},["Jouster's Chestplate"]={SubType="Plate",Level=42,id=8157,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5197,Texture=132746,Link="|cff1eff00|Hitem:8157::::::::40:::::::|h[Jouster's Chestplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Gelkis Marauder Chain"]={SubType="Mail",Level=42,id=6773,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7366,Texture=132629,Link="|cff1eff00|Hitem:6773::::::::40:::::::|h[Gelkis Marauder Chain]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Level 25 Test Gear Mail - Paladin/Warrior"]={SubType="Junk",Level=1,id=13657,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13657::::::::40:::::::|h[Level 25 Test Gear Mail - Paladin/Warrior]|h|r"},["Deprecated Grim Guzzler Boar"]={SubType="Consumable",Level=0,id=11443,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133969,Type="Consumable",Link="|cffffffff|Hitem:11443::::::::40:::::::|h[Deprecated Grim Guzzler Boar]|h|r",EquipLoc=""},["Deprecated Pattern: Trogg Vest"]={SubType="Leatherworking",Level=9,id=2600,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:2600::::::::40:::::::|h[Deprecated Pattern: Trogg Vest]|h|r",EquipLoc=""},["Eternium Lockbox"]={SubType="Junk",Level=60,id=5760,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=134344,EquipLoc="",Link="|cff1eff00|Hitem:5760::::::::40:::::::|h[Eternium Lockbox]|h|r",Type="Miscellaneous"},["Snellig's Snuffbox"]={SubType="Quest",Level=1,id=3619,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3619::::::::40:::::::|h[Snellig's Snuffbox]|h|r"},["Large Blue Rocket Cluster"]={SubType="Consumable",Level=1,id=21714,StackCount=20,Rarity=1,MinLevel=0,SellPrice=50,Texture=134276,Link="|cffffffff|Hitem:21714::::::::40:::::::|h[Large Blue Rocket Cluster]|h|r",EquipLoc="",Type="Consumable"},["Black Claw Stout"]={SubType="Quest",Level=1,id=2788,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132792,Type="Quest",Link="|cffffffff|Hitem:2788::::::::40:::::::|h[Black Claw Stout]|h|r",EquipLoc=""},["Patched Leather Bracers"]={SubType="Leather",Level=20,id=1789,StackCount=1,Rarity=0,MinLevel=15,SellPrice=136,Texture=132607,EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:1789::::::::40:::::::|h[Patched Leather Bracers]|h|r",Type="Armor"},["Hardened Root Staff"]={SubType="Staves",Level=25,id=1317,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3500,Texture=135153,Type="Weapon",Link="|cff1eff00|Hitem:1317::::::::40:::::::|h[Hardened Root Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Hawkeye's Shoes"]={SubType="Leather",Level=37,id=14589,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3294,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14589::::::::40:::::::|h[Hawkeye's Shoes]|h|r"},["Elemental Shard Sample"]={SubType="Quest",Level=1,id=11267,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135228,Type="Quest",Link="|cffffffff|Hitem:11267::::::::40:::::::|h[Elemental Shard Sample]|h|r",EquipLoc=""},["Darkmantle Belt"]={SubType="Leather",Level=65,id=22002,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16061,Texture=132492,Link="|cff0070dd|Hitem:22002::::::::40:::::::|h[Darkmantle Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Durability Cloak"]={SubType="Cloth",Level=1,id=14385,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=133768,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:14385::::::::40:::::::|h[Durability Cloak]|h|r"},["Sage's Boots"]={SubType="Cloth",Level=28,id=6612,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1112,Texture=132539,Link="|cff1eff00|Hitem:6612::::::::40:::::::|h[Sage's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Durability Staff"]={SubType="Staves",Level=1,id=14392,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:14392::::::::40:::::::|h[Durability Staff]|h|r"},["Dentrium Power Stone"]={SubType="Quest",Level=1,id=8009,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132489,Link="|cffffffff|Hitem:8009::::::::40:::::::|h[Dentrium Power Stone]|h|r",EquipLoc="",Type="Quest"},["General's Satin Boots"]={SubType="Cloth",Level=71,id=17618,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17404,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:17618::::::::40:::::::|h[General's Satin Boots]|h|r",Type="Armor"},["Large River Crocolisk Skin"]={SubType="Quest",Level=1,id=4053,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134304,Type="Quest",Link="|cffffffff|Hitem:4053::::::::40:::::::|h[Large River Crocolisk Skin]|h|r",EquipLoc=""},["Preserved Holly"]={SubType="Consumable",Level=40,id=21213,StackCount=20,Rarity=2,MinLevel=40,SellPrice=0,Texture=133749,Type="Consumable",EquipLoc="",Link="|cff1eff00|Hitem:21213::::::::40:::::::|h[Preserved Holly]|h|r"},["Defiant Orc Head"]={SubType="Quest",Level=1,id=5918,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,EquipLoc="",Link="|cffffffff|Hitem:5918::::::::40:::::::|h[Defiant Orc Head]|h|r",Type="Quest"},["Deprecated Polished Scale Cap"]={SubType="Mail",Level=27,id=3888,StackCount=1,Rarity=1,MinLevel=22,SellPrice=913,Texture=133071,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:3888::::::::40:::::::|h[Deprecated Polished Scale Cap]|h|r"},["Therazane's Touch"]={SubType="Miscellaneous",Level=65,id=19315,StackCount=1,Rarity=4,MinLevel=60,SellPrice=125000,Texture=133749,Link="|cffa335ee|Hitem:19315::::::::40:::::::|h[Therazane's Touch]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Codex of Inner Fire"]={SubType="Book",Level=12,id=1086,StackCount=1,Rarity=1,MinLevel=12,SellPrice=150,Texture=133741,Link="|cffffffff|Hitem:1086::::::::40:::::::|h[Codex of Inner Fire]|h|r",EquipLoc="",Type="Recipe"},["Tactical Task Briefing IV"]={SubType="Quest",Level=60,id=20947,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:20947::::::::40:::::::|h[Tactical Task Briefing IV]|h|r",EquipLoc="",Type="Quest"},["Eternal Eye"]={SubType="Consumable",Level=1,id=6852,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134074,Link="|cffffffff|Hitem:6852::::::::40:::::::|h[Eternal Eye]|h|r",EquipLoc="",Type="Consumable"},["Pattern: Murloc Scale Breastplate"]={SubType="Leatherworking",Level=19,id=5787,StackCount=1,Rarity=1,MinLevel=0,SellPrice=150,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5787::::::::40:::::::|h[Pattern: Murloc Scale Breastplate]|h|r"},["Ebon Hand"]={SubType="One-Handed Maces",Level=70,id=19170,StackCount=1,Rarity=4,MinLevel=60,SellPrice=103689,Texture=133056,Link="|cffa335ee|Hitem:19170::::::::40:::::::|h[Ebon Hand]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Blackforge Pauldrons"]={SubType="Mail",Level=46,id=4733,StackCount=1,Rarity=2,MinLevel=41,SellPrice=7957,Texture=135040,Type="Armor",Link="|cff1eff00|Hitem:4733::::::::40:::::::|h[Blackforge Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Ramaladni's Icy Grasp"]={SubType="Miscellaneous",Level=80,id=22707,StackCount=1,Rarity=4,MinLevel=0,SellPrice=98660,Texture=133377,Link="|cffa335ee|Hitem:22707::::::::40:::::::|h[Ramaladni's Icy Grasp]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Amulet of Foul Warding"]={SubType="Miscellaneous",Level=73,id=21702,StackCount=1,Rarity=4,MinLevel=60,SellPrice=78630,Texture=133299,Link="|cffa335ee|Hitem:21702::::::::40:::::::|h[Amulet of Foul Warding]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Merciless Greaves"]={SubType="Mail",Level=54,id=15694,StackCount=1,Rarity=2,MinLevel=49,SellPrice=13264,Texture=132589,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15694::::::::40:::::::|h[Merciless Greaves]|h|r",Type="Armor"},["Monster - Dagger, Ornate Spikey Base"]={SubType="Daggers",Level=1,id=5283,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135639,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:5283::::::::40:::::::|h[Monster - Dagger, Ornate Spikey Base]|h|r",Type="Weapon"},["Large Ruffled Feather"]={SubType="Junk",Level=1,id=8426,StackCount=20,Rarity=0,MinLevel=0,SellPrice=0,Texture=132925,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:8426::::::::40:::::::|h[Large Ruffled Feather]|h|r"},["Deprecated Pearled Chain Pants"]={SubType="Mail",Level=10,id=4761,StackCount=1,Rarity=0,MinLevel=5,SellPrice=55,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:4761::::::::40:::::::|h[Deprecated Pearled Chain Pants]|h|r",Type="Armor"},["Furen's Notes"]={SubType="Consumable",Level=1,id=6926,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133457,Type="Consumable",Link="|cffffffff|Hitem:6926::::::::40:::::::|h[Furen's Notes]|h|r",EquipLoc=""},["Heavy Recurve Bow"]={SubType="Bows",Level=25,id=3027,StackCount=1,Rarity=1,MinLevel=20,SellPrice=1269,Texture=135489,EquipLoc="INVTYPE_RANGED",Link="|cffffffff|Hitem:3027::::::::40:::::::|h[Heavy Recurve Bow]|h|r",Type="Weapon"},["Grand Cloak"]={SubType="Cloth",Level=55,id=15190,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9614,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15190::::::::40:::::::|h[Grand Cloak]|h|r",Type="Armor"},["Outrunner's Cord"]={SubType="Mail",Level=19,id=15497,StackCount=1,Rarity=2,MinLevel=14,SellPrice=387,Texture=132518,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15497::::::::40:::::::|h[Outrunner's Cord]|h|r",Type="Armor"},["Sealed Crate"]={SubType="Junk",Level=35,id=6357,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132763,Type="Miscellaneous",Link="|cffffffff|Hitem:6357::::::::40:::::::|h[Sealed Crate]|h|r",EquipLoc=""},["Level 40 Test Gear Cloth - Mage/Priest/Warlock"]={SubType="Junk",Level=1,id=13650,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13650::::::::40:::::::|h[Level 40 Test Gear Cloth - Mage/Priest/Warlock]|h|r"},["Gift of Adoration: Stormwind"]={SubType="Consumable",Level=1,id=21981,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135450,Link="|cffffffff|Hitem:21981::::::::40:::::::|h[Gift of Adoration: Stormwind]|h|r",EquipLoc="",Type="Consumable"},["Monster - Dagger, Ornate Spikey Base Red"]={SubType="Daggers",Level=1,id=19980,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135639,Link="|cff9d9d9d|Hitem:19980::::::::40:::::::|h[Monster - Dagger, Ornate Spikey Base Red]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Trouncing Boots"]={SubType="Mail",Level=32,id=4464,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2380,Texture=132535,Link="|cff1eff00|Hitem:4464::::::::40:::::::|h[Trouncing Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Fortified Belt"]={SubType="Mail",Level=24,id=9814,StackCount=1,Rarity=2,MinLevel=19,SellPrice=733,Texture=132493,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9814::::::::40:::::::|h[Fortified Belt]|h|r"},["Panther Hide Sack"]={SubType="Bag",Level=55,id=19914,StackCount=1,Rarity=3,MinLevel=0,SellPrice=8750,Texture=133647,Link="|cff0070dd|Hitem:19914::::::::40:::::::|h[Panther Hide Sack]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["AHNQIRAJ TEST ITEM D PLATE CHEST"]={SubType="Miscellaneous",Level=1,id=21422,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21422::::::::40:::::::|h[AHNQIRAJ TEST ITEM D PLATE CHEST]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Highlander's Lizardhide Boots"]={SubType="Leather",Level=63,id=20053,StackCount=1,Rarity=3,MinLevel=58,SellPrice=20647,Texture=132561,Link="|cff0070dd|Hitem:20053::::::::40:::::::|h[Highlander's Lizardhide Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Mantle of the Desert's Fury"]={SubType="Mail",Level=76,id=21684,StackCount=1,Rarity=4,MinLevel=60,SellPrice=68186,Texture=135059,Link="|cffa335ee|Hitem:21684::::::::40:::::::|h[Mantle of the Desert's Fury]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Feather Charm"]={SubType="Quest",Level=1,id=6753,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135225,Type="Quest",Link="|cffffffff|Hitem:6753::::::::40:::::::|h[Feather Charm]|h|r",EquipLoc=""},["Seal of Ravenholdt"]={SubType="Quest",Level=1,id=17125,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17125::::::::40:::::::|h[Seal of Ravenholdt]|h|r",Type="Quest"},["Mark of Tyranny"]={SubType="Miscellaneous",Level=63,id=13966,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16250,Texture=133442,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:13966::::::::40:::::::|h[Mark of Tyranny]|h|r"},["Broken Dragonmaw Shinbone"]={SubType="Junk",Level=1,id=7135,StackCount=20,Rarity=0,MinLevel=0,SellPrice=0,Texture=133724,EquipLoc="",Link="|cff9d9d9d|Hitem:7135::::::::40:::::::|h[Broken Dragonmaw Shinbone]|h|r",Type="Miscellaneous"},["Pattern: Black Whelp Cloak"]={SubType="Leatherworking",Level=20,id=7289,StackCount=1,Rarity=1,MinLevel=0,SellPrice=162,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:7289::::::::40:::::::|h[Pattern: Black Whelp Cloak]|h|r",Type="Recipe"},["Test Polearm"]={SubType="Polearms",Level=25,id=4901,StackCount=1,Rarity=0,MinLevel=20,SellPrice=1340,Texture=135574,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:4901::::::::40:::::::|h[Test Polearm]|h|r"},["Box of Rations"]={SubType="Junk",Level=0,id=9539,StackCount=1,Rarity=1,MinLevel=0,SellPrice=50,Texture=132594,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:9539::::::::40:::::::|h[Box of Rations]|h|r"},["Tarnished Chain Vest"]={SubType="Mail",Level=5,id=2379,StackCount=1,Rarity=1,MinLevel=1,SellPrice=15,Texture=132624,Type="Armor",Link="|cffffffff|Hitem:2379::::::::40:::::::|h[Tarnished Chain Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Leggings of Polarity"]={SubType="Cloth",Level=85,id=23070,StackCount=1,Rarity=4,MinLevel=60,SellPrice=90286,Texture=134588,Link="|cffa335ee|Hitem:23070::::::::40:::::::|h[Leggings of Polarity]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Kalimdor's Revenge"]={SubType="Two-Handed Swords",Level=81,id=21679,StackCount=1,Rarity=4,MinLevel=60,SellPrice=230318,Texture=135366,Link="|cffa335ee|Hitem:21679::::::::40:::::::|h[Kalimdor's Revenge]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Helm of Endless Rage"]={SubType="Plate",Level=74,id=19372,StackCount=1,Rarity=4,MinLevel=60,SellPrice=41178,Texture=133078,Link="|cffa335ee|Hitem:19372::::::::40:::::::|h[Helm of Endless Rage]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Beaststalker's Gloves"]={SubType="Mail",Level=59,id=16676,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14268,Texture=132944,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16676::::::::40:::::::|h[Beaststalker's Gloves]|h|r",Type="Armor"},["Golden Scale Gauntlets"]={SubType="Mail",Level=41,id=9366,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3689,Texture=132963,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9366::::::::40:::::::|h[Golden Scale Gauntlets]|h|r"},["Unknown Reward"]={SubType="Quest",Level=1,id=1217,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134400,Link="|cffffffff|Hitem:1217::::::::40:::::::|h[Unknown Reward]|h|r",EquipLoc="",Type="Quest"},["Soft Wool Boots"]={SubType="Cloth",Level=5,id=4915,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:4915::::::::40:::::::|h[Soft Wool Boots]|h|r"},["Grimoire of Fear III"]={SubType="Book",Level=40,id=5729,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5729::::::::40:::::::|h[Grimoire of Fear III]|h|r"},["Sword of the Night Sky"]={SubType="One-Handed Swords",Level=24,id=2035,StackCount=1,Rarity=2,MinLevel=19,SellPrice=2300,Texture=135321,Link="|cff1eff00|Hitem:2035::::::::40:::::::|h[Sword of the Night Sky]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Broken Lock"]={SubType="Junk",Level=1,id=16747,StackCount=20,Rarity=0,MinLevel=0,SellPrice=27,Texture=132997,EquipLoc="",Link="|cff9d9d9d|Hitem:16747::::::::40:::::::|h[Broken Lock]|h|r",Type="Miscellaneous"},["Book of Mark of the Wild IV"]={SubType="Book",Level=30,id=5153,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133743,Link="|cffffffff|Hitem:5153::::::::40:::::::|h[Book of Mark of the Wild IV]|h|r",EquipLoc="",Type="Recipe"},["Meat Cleaver"]={SubType="One-Handed Axes",Level=27,id=1827,StackCount=1,Rarity=0,MinLevel=22,SellPrice=1282,Texture=132417,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:1827::::::::40:::::::|h[Meat Cleaver]|h|r",Type="Weapon"},["OLDNovice's Belt"]={SubType="Miscellaneous",Level=1,id=54,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132493,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:54::::::::40:::::::|h[OLDNovice's Belt]|h|r"},["Codex of Fade"]={SubType="Book",Level=8,id=8955,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=133741,Link="|cffffffff|Hitem:8955::::::::40:::::::|h[Codex of Fade]|h|r",EquipLoc="",Type="Recipe"},["Ironweaver"]={SubType="Guns",Level=34,id=13137,StackCount=1,Rarity=3,MinLevel=29,SellPrice=5874,Texture=135617,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13137::::::::40:::::::|h[Ironweaver]|h|r"},["Foreman's Blackjack"]={SubType="Quest",Level=1,id=16114,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133486,EquipLoc="",Link="|cffffffff|Hitem:16114::::::::40:::::::|h[Foreman's Blackjack]|h|r",Type="Quest"},["Jeztor's Beacon"]={SubType="Quest",Level=1,id=17325,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135148,EquipLoc="",Link="|cffffffff|Hitem:17325::::::::40:::::::|h[Jeztor's Beacon]|h|r",Type="Quest"},["Lady Alizabeth's Pendant"]={SubType="Miscellaneous",Level=59,id=13002,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14617,Texture=133278,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:13002::::::::40:::::::|h[Lady Alizabeth's Pendant]|h|r"},["Gordunni Cobalt"]={SubType="Quest",Level=1,id=9463,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135228,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9463::::::::40:::::::|h[Gordunni Cobalt]|h|r"},["Scimitar"]={SubType="One-Handed Swords",Level=19,id=2027,StackCount=1,Rarity=1,MinLevel=14,SellPrice=763,Texture=135343,Type="Weapon",Link="|cffffffff|Hitem:2027::::::::40:::::::|h[Scimitar]|h|r",EquipLoc="INVTYPE_WEAPON"},["Harvester's Pants"]={SubType="Leather",Level=15,id=3578,StackCount=1,Rarity=2,MinLevel=0,SellPrice=339,Texture=134585,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:3578::::::::40:::::::|h[Harvester's Pants]|h|r"},["Singing Crystal Shard"]={SubType="Quest",Level=1,id=3918,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134133,Type="Quest",Link="|cffffffff|Hitem:3918::::::::40:::::::|h[Singing Crystal Shard]|h|r",EquipLoc=""},["Test AQ Resource - Firebloom"]={SubType="Junk",Level=1,id=21661,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21661::::::::40:::::::|h[Test AQ Resource - Firebloom]|h|r",EquipLoc="",Type="Miscellaneous"},["Black Wolf Bracers"]={SubType="Leather",Level=26,id=3230,StackCount=1,Rarity=2,MinLevel=21,SellPrice=768,Texture=132606,Link="|cff1eff00|Hitem:3230::::::::40:::::::|h[Black Wolf Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Alliance Commendation Signet"]={SubType="Junk",Level=1,id=21436,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=132486,Link="|cffffffff|Hitem:21436::::::::40:::::::|h[Alliance Commendation Signet]|h|r",EquipLoc="",Type="Miscellaneous"},["Soulforge Belt"]={SubType="Plate",Level=65,id=22086,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12431,Texture=132500,Link="|cff0070dd|Hitem:22086::::::::40:::::::|h[Soulforge Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Mithril Blunderbuss"]={SubType="Guns",Level=41,id=10508,StackCount=1,Rarity=2,MinLevel=36,SellPrice=8958,Texture=135616,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:10508::::::::40:::::::|h[Mithril Blunderbuss]|h|r",Type="Weapon"},["Girdle of Golem Strength"]={SubType="Mail",Level=33,id=9405,StackCount=1,Rarity=3,MinLevel=28,SellPrice=2055,Texture=132516,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:9405::::::::40:::::::|h[Girdle of Golem Strength]|h|r"},["Darkmist Handguards"]={SubType="Cloth",Level=41,id=14241,StackCount=1,Rarity=2,MinLevel=36,SellPrice=2311,Texture=132966,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14241::::::::40:::::::|h[Darkmist Handguards]|h|r"},["Monster - Wand, Basic"]={SubType="Wands",Level=1,id=6230,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135463,Link="|cff9d9d9d|Hitem:6230::::::::40:::::::|h[Monster - Wand, Basic]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Royal Qiraji Belt"]={SubType="Plate",Level=81,id=21598,StackCount=1,Rarity=4,MinLevel=60,SellPrice=35753,Texture=132520,Link="|cffa335ee|Hitem:21598::::::::40:::::::|h[Royal Qiraji Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Elixir of Water Walking"]={SubType="Consumable",Level=34,id=8827,StackCount=5,Rarity=1,MinLevel=24,SellPrice=125,Texture=134776,Link="|cffffffff|Hitem:8827::::::::40:::::::|h[Elixir of Water Walking]|h|r",EquipLoc="",Type="Consumable"},["Firework Launcher"]={SubType="Consumable",Level=1,id=21569,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134538,Link="|cffffffff|Hitem:21569::::::::40:::::::|h[Firework Launcher]|h|r",EquipLoc="",Type="Consumable"},["Ritual Amice"]={SubType="Cloth",Level=23,id=14126,StackCount=1,Rarity=1,MinLevel=18,SellPrice=396,Texture=135040,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:14126::::::::40:::::::|h[Ritual Amice]|h|r"},["Otto's Head"]={SubType="Quest",Level=1,id=4516,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Link="|cffffffff|Hitem:4516::::::::40:::::::|h[Otto's Head]|h|r",EquipLoc="",Type="Quest"},["Mark of the Syndicate"]={SubType="Junk",Level=1,id=5113,StackCount=5,Rarity=0,MinLevel=0,SellPrice=250,Texture=133438,EquipLoc="",Link="|cff9d9d9d|Hitem:5113::::::::40:::::::|h[Mark of the Syndicate]|h|r",Type="Miscellaneous"},["Book of Abolish Poison"]={SubType="Book",Level=26,id=8760,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133743,Link="|cffffffff|Hitem:8760::::::::40:::::::|h[Book of Abolish Poison]|h|r",EquipLoc="",Type="Recipe"},["Deprecated Tauren Trapper's Pants"]={SubType="Cloth",Level=1,id=128,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:128::::::::40:::::::|h[Deprecated Tauren Trapper's Pants]|h|r",Type="Armor"},["Cured Leather Armor"]={SubType="Leather",Level=22,id=236,StackCount=1,Rarity=1,MinLevel=17,SellPrice=559,Texture=132725,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:236::::::::40:::::::|h[Cured Leather Armor]|h|r",Type="Armor"},["Overlinked Chain Bracers"]={SubType="Mail",Level=48,id=4002,StackCount=1,Rarity=0,MinLevel=43,SellPrice=2463,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:4002::::::::40:::::::|h[Overlinked Chain Bracers]|h|r"},["Worn Hide Cloak"]={SubType="Cloth",Level=10,id=1421,StackCount=1,Rarity=0,MinLevel=5,SellPrice=28,Texture=133766,Link="|cff9d9d9d|Hitem:1421::::::::40:::::::|h[Worn Hide Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Jeweled Amulet of Cainwyn"]={SubType="Miscellaneous",Level=60,id=1443,StackCount=1,Rarity=4,MinLevel=55,SellPrice=21125,Texture=133276,EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:1443::::::::40:::::::|h[Jeweled Amulet of Cainwyn]|h|r",Type="Armor"},["Level 55 Test Gear Mail - Shaman 2"]={SubType="Junk",Level=1,id=17841,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17841::::::::40:::::::|h[Level 55 Test Gear Mail - Shaman 2]|h|r",Type="Miscellaneous"},["Tablet of Strength of Earth Totem III"]={SubType="Book",Level=38,id=9098,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=134459,Link="|cffffffff|Hitem:9098::::::::40:::::::|h[Tablet of Strength of Earth Totem III]|h|r",EquipLoc="",Type="Recipe"},["Bijou's Belongings"]={SubType="Quest",Level=1,id=12345,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133652,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12345::::::::40:::::::|h[Bijou's Belongings]|h|r"},["Heavy Gnoll War Club"]={SubType="Two-Handed Maces",Level=21,id=1218,StackCount=1,Rarity=2,MinLevel=16,SellPrice=2064,Texture=133489,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1218::::::::40:::::::|h[Heavy Gnoll War Club]|h|r"},["Libram: Fist of Justice II"]={SubType="Book",Level=26,id=8916,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133740,Link="|cffffffff|Hitem:8916::::::::40:::::::|h[Libram: Fist of Justice II]|h|r",EquipLoc="",Type="Recipe"},["Spectral Necklace"]={SubType="Miscellaneous",Level=30,id=12047,StackCount=1,Rarity=2,MinLevel=25,SellPrice=4996,Texture=133291,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12047::::::::40:::::::|h[Spectral Necklace]|h|r"},["Cyclopean Band"]={SubType="Miscellaneous",Level=54,id=11824,StackCount=1,Rarity=3,MinLevel=49,SellPrice=13657,Texture=133350,Type="Armor",Link="|cff0070dd|Hitem:11824::::::::40:::::::|h[Cyclopean Band]|h|r",EquipLoc="INVTYPE_FINGER"},["Windweaver Staff"]={SubType="Staves",Level=37,id=7757,StackCount=1,Rarity=3,MinLevel=32,SellPrice=12874,Texture=135469,Link="|cff0070dd|Hitem:7757::::::::40:::::::|h[Windweaver Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Sigil of Strom"]={SubType="Quest",Level=1,id=4440,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134414,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4440::::::::40:::::::|h[Sigil of Strom]|h|r"},["Icy Scale Bracers"]={SubType="Mail",Level=80,id=22665,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50516,Texture=132606,Link="|cffa335ee|Hitem:22665::::::::40:::::::|h[Icy Scale Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Cloak of Untold Secrets"]={SubType="Cloth",Level=77,id=21627,StackCount=1,Rarity=4,MinLevel=60,SellPrice=46830,Texture=133772,Link="|cffa335ee|Hitem:21627::::::::40:::::::|h[Cloak of Untold Secrets]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Shadow Wand"]={SubType="Wands",Level=14,id=5071,StackCount=1,Rarity=2,MinLevel=9,SellPrice=443,Texture=135645,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5071::::::::40:::::::|h[Shadow Wand]|h|r",Type="Weapon"},["Knight's Cloak"]={SubType="Cloth",Level=34,id=7460,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2000,Texture=133768,Link="|cff1eff00|Hitem:7460::::::::40:::::::|h[Knight's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Gnomish Battle Chicken"]={SubType="Devices",Level=46,id=10725,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=135996,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:10725::::::::40:::::::|h[Gnomish Battle Chicken]|h|r",Type="Trade Goods"},["Monster - Axe, Horde Hatchet 01"]={SubType="One-Handed Axes",Level=1,id=12629,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12629::::::::40:::::::|h[Monster - Axe, Horde Hatchet 01]|h|r"},["Harmonious Gauntlets"]={SubType="Mail",Level=63,id=18527,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17988,Texture=132944,Type="Armor",Link="|cff0070dd|Hitem:18527::::::::40:::::::|h[Harmonious Gauntlets]|h|r",EquipLoc="INVTYPE_HAND"},["Pattern: Stylish Blue Shirt"]={SubType="Tailoring",Level=24,id=6390,StackCount=1,Rarity=2,MinLevel=0,SellPrice=150,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:6390::::::::40:::::::|h[Pattern: Stylish Blue Shirt]|h|r",EquipLoc=""},["Laced Mail Gloves"]={SubType="Mail",Level=18,id=1742,StackCount=1,Rarity=0,MinLevel=13,SellPrice=129,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:1742::::::::40:::::::|h[Laced Mail Gloves]|h|r"},["Super Snuff"]={SubType="Consumable",Level=1,id=5878,StackCount=20,Rarity=1,MinLevel=0,SellPrice=92,Texture=133849,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5878::::::::40:::::::|h[Super Snuff]|h|r"},["Chok'sul's Head"]={SubType="Quest",Level=1,id=2561,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,EquipLoc="",Link="|cffffffff|Hitem:2561::::::::40:::::::|h[Chok'sul's Head]|h|r",Type="Quest"},["Laced Mail Boots"]={SubType="Mail",Level=20,id=1739,StackCount=1,Rarity=0,MinLevel=15,SellPrice=255,Texture=132535,Type="Armor",Link="|cff9d9d9d|Hitem:1739::::::::40:::::::|h[Laced Mail Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Whispering Vest"]={SubType="Cloth",Level=20,id=4781,StackCount=1,Rarity=2,MinLevel=15,SellPrice=547,Texture=135014,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:4781::::::::40:::::::|h[Whispering Vest]|h|r",Type="Armor"},["Mantle of Thieves"]={SubType="Leather",Level=30,id=2264,StackCount=1,Rarity=3,MinLevel=25,SellPrice=1957,Texture=135039,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:2264::::::::40:::::::|h[Mantle of Thieves]|h|r"},["Shizzle's Nozzle Wiper"]={SubType="Cloth",Level=55,id=11917,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6334,Texture=132606,Type="Armor",Link="|cff1eff00|Hitem:11917::::::::40:::::::|h[Shizzle's Nozzle Wiper]|h|r",EquipLoc="INVTYPE_WRIST"},["Nocturnal Cap"]={SubType="Leather",Level=43,id=15156,StackCount=1,Rarity=2,MinLevel=38,SellPrice=5266,Texture=133111,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15156::::::::40:::::::|h[Nocturnal Cap]|h|r",Type="Armor"},["Cowardly Flight Potion"]={SubType="Consumable",Level=25,id=5632,StackCount=5,Rarity=1,MinLevel=15,SellPrice=85,Texture=134743,EquipLoc="",Link="|cffffffff|Hitem:5632::::::::40:::::::|h[Cowardly Flight Potion]|h|r",Type="Consumable"},["Monster - Staff of Jordan"]={SubType="Staves",Level=1,id=12182,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12182::::::::40:::::::|h[Monster - Staff of Jordan]|h|r"},["Yellow Rose Firework"]={SubType="Consumable",Level=20,id=9315,StackCount=5,Rarity=1,MinLevel=0,SellPrice=10,Texture=135920,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9315::::::::40:::::::|h[Yellow Rose Firework]|h|r"},["Goblin Jumper Cables"]={SubType="Devices",Level=33,id=7148,StackCount=1,Rarity=1,MinLevel=0,SellPrice=21,Texture=133868,Link="|cffffffff|Hitem:7148::::::::40:::::::|h[Goblin Jumper Cables]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Trade Goods"},["Roamer's Leggings"]={SubType="Mail",Level=5,id=11852,StackCount=1,Rarity=1,MinLevel=0,SellPrice=14,Texture=134583,Type="Armor",Link="|cffffffff|Hitem:11852::::::::40:::::::|h[Roamer's Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Large Yellow Rocket Cluster"]={SubType="Consumable",Level=1,id=21720,StackCount=20,Rarity=1,MinLevel=0,SellPrice=50,Texture=134281,Link="|cffffffff|Hitem:21720::::::::40:::::::|h[Large Yellow Rocket Cluster]|h|r",EquipLoc="",Type="Consumable"},["Phalanx Girdle"]={SubType="Mail",Level=32,id=7422,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1622,Texture=132494,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:7422::::::::40:::::::|h[Phalanx Girdle]|h|r",Type="Armor"},["Monster - Sword2H, Alliance PvP"]={SubType="Two-Handed Swords",Level=1,id=21553,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135280,Link="|cff9d9d9d|Hitem:21553::::::::40:::::::|h[Monster - Sword2H, Alliance PvP]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Brutish Helmet"]={SubType="Plate",Level=48,id=14907,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6123,Texture=133127,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14907::::::::40:::::::|h[Brutish Helmet]|h|r"},["Tome of Blizzard III"]={SubType="Book",Level=36,id=8832,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133739,Link="|cffffffff|Hitem:8832::::::::40:::::::|h[Tome of Blizzard III]|h|r",EquipLoc="",Type="Recipe"},["Monster - Wand, Horde Dark Skull"]={SubType="Wands",Level=1,id=13293,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135463,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:13293::::::::40:::::::|h[Monster - Wand, Horde Dark Skull]|h|r"},["Filled Tourmaline Phial"]={SubType="Quest",Level=1,id=5645,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134765,EquipLoc="",Link="|cffffffff|Hitem:5645::::::::40:::::::|h[Filled Tourmaline Phial]|h|r",Type="Quest"},["Swashbuckler Sash"]={SubType="Cloth",Level=45,id=9636,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3154,Texture=133694,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9636::::::::40:::::::|h[Swashbuckler Sash]|h|r"},["Blue Punch Card"]={SubType="Quest",Level=1,id=9282,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133215,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9282::::::::40:::::::|h[Blue Punch Card]|h|r"},["Splintered Board"]={SubType="One-Handed Maces",Level=3,id=2485,StackCount=1,Rarity=1,MinLevel=1,SellPrice=10,Texture=133485,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2485::::::::40:::::::|h[Splintered Board]|h|r",Type="Weapon"},["Nightsky Sash"]={SubType="Cloth",Level=33,id=4720,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1234,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4720::::::::40:::::::|h[Nightsky Sash]|h|r",Type="Armor"},["Small Egg"]={SubType="Trade Goods",Level=5,id=6889,StackCount=10,Rarity=1,MinLevel=0,SellPrice=4,Texture=132832,Type="Trade Goods",Link="|cffffffff|Hitem:6889::::::::40:::::::|h[Small Egg]|h|r",EquipLoc=""},["Tainted Keg"]={SubType="Quest",Level=1,id=3520,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132621,EquipLoc="",Link="|cffffffff|Hitem:3520::::::::40:::::::|h[Tainted Keg]|h|r",Type="Quest"},["Fine Leather Boots"]={SubType="Leather",Level=18,id=2307,StackCount=1,Rarity=1,MinLevel=13,SellPrice=243,Texture=132540,Type="Armor",Link="|cffffffff|Hitem:2307::::::::40:::::::|h[Fine Leather Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Warlord's Chain Helmet"]={SubType="Mail",Level=74,id=16566,StackCount=1,Rarity=4,MinLevel=60,SellPrice=29991,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16566::::::::40:::::::|h[Warlord's Chain Helmet]|h|r",Type="Armor"},["Gurubashi Coin"]={SubType="Quest",Level=1,id=19701,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=133790,Link="|cff1eff00|Hitem:19701::::::::40:::::::|h[Gurubashi Coin]|h|r",EquipLoc="",Type="Quest"},["Qiraji Blessed Jewel"]={SubType="Quest",Level=1,id=20936,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=132617,Link="|cffa335ee|Hitem:20936::::::::40:::::::|h[Qiraji Blessed Jewel]|h|r",EquipLoc="",Type="Quest"},["Ahn'Qiraj Wand [PH]"]={SubType="Wands",Level=75,id=21124,StackCount=1,Rarity=4,MinLevel=60,SellPrice=99304,Texture=135474,Link="|cffa335ee|Hitem:21124::::::::40:::::::|h[Ahn'Qiraj Wand [PH]]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Stoneraven"]={SubType="Polearms",Level=52,id=13059,StackCount=1,Rarity=3,MinLevel=47,SellPrice=38719,Texture=135130,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13059::::::::40:::::::|h[Stoneraven]|h|r"},["Buccaneer's Cape"]={SubType="Cloth",Level=19,id=14167,StackCount=1,Rarity=2,MinLevel=14,SellPrice=358,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14167::::::::40:::::::|h[Buccaneer's Cape]|h|r"},["Robes of the Royal Crown"]={SubType="Cloth",Level=60,id=11924,StackCount=1,Rarity=3,MinLevel=55,SellPrice=20475,Texture=132657,Type="Armor",Link="|cff0070dd|Hitem:11924::::::::40:::::::|h[Robes of the Royal Crown]|h|r",EquipLoc="INVTYPE_ROBE"},["Nondescript Letter"]={SubType="Quest",Level=0,id=7628,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133472,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7628::::::::40:::::::|h[Nondescript Letter]|h|r"},["Marshal's Chain Girdle"]={SubType="Mail",Level=65,id=16464,StackCount=1,Rarity=4,MinLevel=60,SellPrice=12466,Texture=132517,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16464::::::::40:::::::|h[Marshal's Chain Girdle]|h|r",Type="Armor"},["Test AQ Resource - Tin"]={SubType="Junk",Level=1,id=21649,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21649::::::::40:::::::|h[Test AQ Resource - Tin]|h|r",EquipLoc="",Type="Miscellaneous"},["Flecked Raptor Scale"]={SubType="Junk",Level=1,id=3180,StackCount=5,Rarity=0,MinLevel=0,SellPrice=168,Texture=134303,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:3180::::::::40:::::::|h[Flecked Raptor Scale]|h|r",EquipLoc=""},["Baelog's Shortbow"]={SubType="Bows",Level=41,id=9400,StackCount=1,Rarity=1,MinLevel=36,SellPrice=1624,Texture=135499,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cffffffff|Hitem:9400::::::::40:::::::|h[Baelog's Shortbow]|h|r"},["Gossamer Bracers"]={SubType="Cloth",Level=45,id=7525,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3106,Texture=132608,Link="|cff1eff00|Hitem:7525::::::::40:::::::|h[Gossamer Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Light Magesmith Robe"]={SubType="Cloth",Level=4,id=2110,StackCount=1,Rarity=1,MinLevel=1,SellPrice=6,Texture=132663,Type="Armor",Link="|cffffffff|Hitem:2110::::::::40:::::::|h[Light Magesmith Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Russet Hat"]={SubType="Cloth",Level=37,id=3889,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1584,Texture=133135,EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:3889::::::::40:::::::|h[Russet Hat]|h|r",Type="Armor"},["Recipe: Goblin Rocket Fuel"]={SubType="Alchemy",Level=42,id=10644,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10644::::::::40:::::::|h[Recipe: Goblin Rocket Fuel]|h|r",Type="Recipe"},["Silver-thread Cuffs"]={SubType="Cloth",Level=27,id=4036,StackCount=1,Rarity=2,MinLevel=22,SellPrice=681,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:4036::::::::40:::::::|h[Silver-thread Cuffs]|h|r"},["Ectoplasmic Distiller"]={SubType="Quest",Level=1,id=21946,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133882,Link="|cffffffff|Hitem:21946::::::::40:::::::|h[Ectoplasmic Distiller]|h|r",EquipLoc="",Type="Quest"},["Monster - Sword2H, Basic"]={SubType="Two-Handed Swords",Level=1,id=1983,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1983::::::::40:::::::|h[Monster - Sword2H, Basic]|h|r"},["Carapace of the Old God"]={SubType="Quest",Level=1,id=20929,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=134882,Link="|cffa335ee|Hitem:20929::::::::40:::::::|h[Carapace of the Old God]|h|r",EquipLoc="",Type="Quest"},["Fishing Pole (JEFFTEST)"]={SubType="Guns",Level=19,id=6255,StackCount=1,Rarity=2,MinLevel=14,SellPrice=884,Texture=135614,Type="Weapon",Link="|cff1eff00|Hitem:6255::::::::40:::::::|h[Fishing Pole (JEFFTEST)]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Hildelve's Journal"]={SubType="Quest",Level=1,id=3117,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:3117::::::::40:::::::|h[Hildelve's Journal]|h|r",Type="Quest"},["Monster - Item, Vial Yellow"]={SubType="Miscellaneous",Level=1,id=3696,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134718,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:3696::::::::40:::::::|h[Monster - Item, Vial Yellow]|h|r",Type="Weapon"},["Lambent Scale Legguards"]={SubType="Mail",Level=26,id=3048,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1919,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:3048::::::::40:::::::|h[Lambent Scale Legguards]|h|r",Type="Armor"},["Deprecated Bent Copper Lockpick"]={SubType="Lockpick",Level=5,id=2789,StackCount=10,Rarity=1,MinLevel=1,SellPrice=6,Texture=134065,EquipLoc="",Link="|cffffffff|Hitem:2789::::::::40:::::::|h[Deprecated Bent Copper Lockpick]|h|r",Type="Key"},["Deprecated Dwarven Recruit's Boots"]={SubType="Miscellaneous",Level=1,id=103,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:103::::::::40:::::::|h[Deprecated Dwarven Recruit's Boots]|h|r"},["Monster - Gun, Kaldorei PVP Alliance"]={SubType="Guns",Level=1,id=21564,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135612,Link="|cff9d9d9d|Hitem:21564::::::::40:::::::|h[Monster - Gun, Kaldorei PVP Alliance]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Gypsy Tunic"]={SubType="Leather",Level=15,id=9757,StackCount=1,Rarity=2,MinLevel=10,SellPrice=363,Texture=135010,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9757::::::::40:::::::|h[Gypsy Tunic]|h|r"},["Recipe: Rainbow Fin Albacore"]={SubType="Cooking",Level=15,id=6368,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:6368::::::::40:::::::|h[Recipe: Rainbow Fin Albacore]|h|r"},["Off Hand Test Dagger"]={SubType="Daggers",Level=1,id=3145,StackCount=1,Rarity=1,MinLevel=1,SellPrice=3,Texture=133980,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:3145::::::::40:::::::|h[Off Hand Test Dagger]|h|r",Type="Weapon"},["Large Moneybag (old)"]={SubType="Bag",Level=25,id=1014,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=133639,Type="Container",Link="|cffffffff|Hitem:1014::::::::40:::::::|h[Large Moneybag (old)]|h|r",EquipLoc="INVTYPE_BAG"},["Deprecated Chatter's Rock"]={SubType="Miscellaneous",Level=40,id=3015,StackCount=1,Rarity=1,MinLevel=35,SellPrice=812,Texture=135242,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:3015::::::::40:::::::|h[Deprecated Chatter's Rock]|h|r",Type="Armor"},["Bloodscalp Tusk"]={SubType="Quest",Level=1,id=3901,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3901::::::::40:::::::|h[Bloodscalp Tusk]|h|r"},["Enthralled Sphere"]={SubType="Miscellaneous",Level=53,id=11625,StackCount=1,Rarity=3,MinLevel=48,SellPrice=10452,Texture=134335,Type="Armor",Link="|cff0070dd|Hitem:11625::::::::40:::::::|h[Enthralled Sphere]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Formula: Imbue Cloak - Protection"]={SubType="Enchanting",Level=18,id=6345,StackCount=1,Rarity=2,MinLevel=0,SellPrice=100,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:6345::::::::40:::::::|h[Formula: Imbue Cloak - Protection]|h|r",EquipLoc=""},["Dark Iron Destroyer"]={SubType="One-Handed Axes",Level=65,id=17016,StackCount=1,Rarity=3,MinLevel=60,SellPrice=63973,Texture=132403,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:17016::::::::40:::::::|h[Dark Iron Destroyer]|h|r",Type="Weapon"},["Test Enchantments LockBox (Enchanting Items) 2"]={SubType="Junk",Level=1,id=17910,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17910::::::::40:::::::|h[Test Enchantments LockBox (Enchanting Items) 2]|h|r",Type="Miscellaneous"},["Flimsy Male Orc Mask"]={SubType="Miscellaneous",Level=1,id=20570,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132366,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:20570::::::::40:::::::|h[Flimsy Male Orc Mask]|h|r"},["Engraved Boots"]={SubType="Mail",Level=58,id=10234,StackCount=1,Rarity=2,MinLevel=53,SellPrice=17801,Texture=132589,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10234::::::::40:::::::|h[Engraved Boots]|h|r",Type="Armor"},["Insignia Gloves"]={SubType="Leather",Level=34,id=6408,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1654,Texture=132955,Type="Armor",Link="|cff1eff00|Hitem:6408::::::::40:::::::|h[Insignia Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Thunder Bluff Pledge Collection"]={SubType="Consumable",Level=1,id=22297,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133468,Link="|cffffffff|Hitem:22297::::::::40:::::::|h[Thunder Bluff Pledge Collection]|h|r",EquipLoc="",Type="Consumable"},["Aegis of Preservation"]={SubType="Miscellaneous",Level=76,id=19345,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72039,Texture=135880,Link="|cffa335ee|Hitem:19345::::::::40:::::::|h[Aegis of Preservation]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Grimoire of Consume Shadows (Rank 3)"]={SubType="Book",Level=34,id=16359,StackCount=1,Rarity=1,MinLevel=34,SellPrice=2000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16359::::::::40:::::::|h[Grimoire of Consume Shadows (Rank 3)]|h|r",Type="Recipe"},["Grimoire of Consume Shadows (Rank 1)"]={SubType="Book",Level=18,id=16357,StackCount=1,Rarity=1,MinLevel=18,SellPrice=375,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16357::::::::40:::::::|h[Grimoire of Consume Shadows (Rank 1)]|h|r",Type="Recipe"},["Mystic's Wrap"]={SubType="Cloth",Level=23,id=14369,StackCount=1,Rarity=2,MinLevel=18,SellPrice=809,Texture=135017,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14369::::::::40:::::::|h[Mystic's Wrap]|h|r"},["Sorcerer's Belt"]={SubType="Cloth",Level=65,id=22062,StackCount=1,Rarity=3,MinLevel=0,SellPrice=13180,Texture=132497,Link="|cff0070dd|Hitem:22062::::::::40:::::::|h[Sorcerer's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Grimoire of Consume Shadows (Rank 5)"]={SubType="Book",Level=50,id=16361,StackCount=1,Rarity=1,MinLevel=50,SellPrice=3750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16361::::::::40:::::::|h[Grimoire of Consume Shadows (Rank 5)]|h|r",Type="Recipe"},["Ruffled Feather"]={SubType="Junk",Level=1,id=4776,StackCount=10,Rarity=0,MinLevel=0,SellPrice=41,Texture=132914,EquipLoc="",Link="|cff9d9d9d|Hitem:4776::::::::40:::::::|h[Ruffled Feather]|h|r",Type="Miscellaneous"},["Swift Blue Raptor"]={SubType="Junk",Level=60,id=18788,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132253,Type="Miscellaneous",Link="|cffa335ee|Hitem:18788::::::::40:::::::|h[Swift Blue Raptor]|h|r",EquipLoc=""},["Six of Warlords"]={SubType="Junk",Level=1,id=19263,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134497,Link="|cff0070dd|Hitem:19263::::::::40:::::::|h[Six of Warlords]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Sir Zeliek"]={SubType="One-Handed Maces",Level=1,id=23583,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Link="|cff9d9d9d|Hitem:23583::::::::40:::::::|h[Monster - Sir Zeliek]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Sliverblade"]={SubType="Daggers",Level=37,id=5756,StackCount=1,Rarity=3,MinLevel=32,SellPrice=10026,Texture=135660,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:5756::::::::40:::::::|h[Sliverblade]|h|r"},["Mantle of the Horusath"]={SubType="Plate",Level=72,id=21453,StackCount=1,Rarity=4,MinLevel=60,SellPrice=35631,Texture=135059,Link="|cffa335ee|Hitem:21453::::::::40:::::::|h[Mantle of the Horusath]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Gnomish Tools"]={SubType="Quest",Level=1,id=4863,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134520,EquipLoc="",Link="|cffffffff|Hitem:4863::::::::40:::::::|h[Gnomish Tools]|h|r",Type="Quest"},["Precision Arrow"]={SubType="Arrow",Level=40,id=9399,StackCount=200,Rarity=2,MinLevel=35,SellPrice=3,Texture=132381,Type="Projectile",EquipLoc="INVTYPE_AMMO",Link="|cff1eff00|Hitem:9399::::::::40:::::::|h[Precision Arrow]|h|r"},["OLDFootpad's Belt"]={SubType="Miscellaneous",Level=1,id=46,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132495,Type="Armor",Link="|cffffffff|Hitem:46::::::::40:::::::|h[OLDFootpad's Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["First Sergeant's Mail Wristguards"]={SubType="Mail",Level=63,id=16532,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8960,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16532::::::::40:::::::|h[First Sergeant's Mail Wristguards]|h|r",Type="Armor"},["Imbued Plate Leggings"]={SubType="Plate",Level=61,id=10373,StackCount=1,Rarity=2,MinLevel=56,SellPrice=17336,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10373::::::::40:::::::|h[Imbued Plate Leggings]|h|r",Type="Armor"},["Heavy Blasting Powder"]={SubType="Parts",Level=25,id=4377,StackCount=20,Rarity=1,MinLevel=0,SellPrice=150,Texture=133853,Type="Trade Goods",Link="|cffffffff|Hitem:4377::::::::40:::::::|h[Heavy Blasting Powder]|h|r",EquipLoc=""},["Sorcerous Dagger"]={SubType="Daggers",Level=65,id=18878,StackCount=1,Rarity=4,MinLevel=60,SellPrice=85645,Texture=135643,Type="Weapon",Link="|cffa335ee|Hitem:18878::::::::40:::::::|h[Sorcerous Dagger]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Grunt's Pauldrons"]={SubType="Mail",Level=25,id=15513,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1264,Texture=135037,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15513::::::::40:::::::|h[Grunt's Pauldrons]|h|r",Type="Armor"},["Corrupt Moonwell Water"]={SubType="Quest",Level=1,id=12907,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132788,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12907::::::::40:::::::|h[Corrupt Moonwell Water]|h|r"},["Silithid Carapace Chestguard"]={SubType="Plate",Level=77,id=21652,StackCount=1,Rarity=4,MinLevel=60,SellPrice=59078,Texture=132744,Link="|cffa335ee|Hitem:21652::::::::40:::::::|h[Silithid Carapace Chestguard]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Recipe: Flask of Distilled Wisdom"]={SubType="Alchemy",Level=60,id=13520,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13520::::::::40:::::::|h[Recipe: Flask of Distilled Wisdom]|h|r"},["Schematic: Thorium Rifle"]={SubType="Engineering",Level=52,id=16043,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:16043::::::::40:::::::|h[Schematic: Thorium Rifle]|h|r",Type="Recipe"},["Large Raw Mightfish"]={SubType="Consumable",Level=55,id=13893,StackCount=20,Rarity=1,MinLevel=45,SellPrice=15,Texture=134300,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13893::::::::40:::::::|h[Large Raw Mightfish]|h|r"},["Drake Tooth Necklace"]={SubType="Miscellaneous",Level=77,id=21531,StackCount=1,Rarity=4,MinLevel=60,SellPrice=103030,Texture=133309,Link="|cffa335ee|Hitem:21531::::::::40:::::::|h[Drake Tooth Necklace]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Pattern: Runic Leather Armor"]={SubType="Leatherworking",Level=61,id=15776,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15776::::::::40:::::::|h[Pattern: Runic Leather Armor]|h|r",Type="Recipe"},["Tabetha's Instructions"]={SubType="Consumable",Level=0,id=7516,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134942,Link="|cffffffff|Hitem:7516::::::::40:::::::|h[Tabetha's Instructions]|h|r",EquipLoc="",Type="Consumable"},["Bright Boots"]={SubType="Cloth",Level=23,id=3065,StackCount=1,Rarity=2,MinLevel=18,SellPrice=658,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:3065::::::::40:::::::|h[Bright Boots]|h|r"},["Uther's Strength"]={SubType="Miscellaneous",Level=52,id=11302,StackCount=1,Rarity=3,MinLevel=47,SellPrice=7130,Texture=133439,Type="Armor",Link="|cff0070dd|Hitem:11302::::::::40:::::::|h[Uther's Strength]|h|r",EquipLoc="INVTYPE_TRINKET"},["Grimoire of Fire Shield (Rank 2)"]={SubType="Book",Level=24,id=16327,StackCount=1,Rarity=1,MinLevel=24,SellPrice=750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16327::::::::40:::::::|h[Grimoire of Fire Shield (Rank 2)]|h|r",Type="Recipe"},["Inscribed Buckler"]={SubType="Shields",Level=18,id=6380,StackCount=1,Rarity=2,MinLevel=13,SellPrice=654,Texture=134955,Type="Armor",Link="|cff1eff00|Hitem:6380::::::::40:::::::|h[Inscribed Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Logistics Task Briefing XI"]={SubType="Quest",Level=60,id=21514,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21514::::::::40:::::::|h[Logistics Task Briefing XI]|h|r",EquipLoc="",Type="Quest"},["Warden's Waistband"]={SubType="Leather",Level=40,id=14598,StackCount=1,Rarity=2,MinLevel=35,SellPrice=2655,Texture=132504,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14598::::::::40:::::::|h[Warden's Waistband]|h|r"},["Wing of the Whelpling"]={SubType="Cloth",Level=38,id=13121,StackCount=1,Rarity=3,MinLevel=33,SellPrice=3428,Texture=133756,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:13121::::::::40:::::::|h[Wing of the Whelpling]|h|r"},["Cudgel"]={SubType="One-Handed Maces",Level=7,id=2492,StackCount=1,Rarity=1,MinLevel=2,SellPrice=56,Texture=135434,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:2492::::::::40:::::::|h[Cudgel]|h|r",Type="Weapon"},["Belt of the Inquisition"]={SubType="Cloth",Level=71,id=21500,StackCount=1,Rarity=3,MinLevel=60,SellPrice=17850,Texture=132494,Link="|cff0070dd|Hitem:21500::::::::40:::::::|h[Belt of the Inquisition]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Vestments of the Shifting Sands"]={SubType="Cloth",Level=66,id=21499,StackCount=1,Rarity=4,MinLevel=60,SellPrice=37165,Texture=132658,Link="|cffa335ee|Hitem:21499::::::::40:::::::|h[Vestments of the Shifting Sands]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Traveler's Cloak"]={SubType="Cloth",Level=55,id=8297,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9113,Texture=133770,Link="|cff1eff00|Hitem:8297::::::::40:::::::|h[Traveler's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Combat Mana Potion"]={SubType="Consumable",Level=51,id=18841,StackCount=5,Rarity=1,MinLevel=41,SellPrice=275,Texture=134861,Type="Consumable",Link="|cffffffff|Hitem:18841::::::::40:::::::|h[Combat Mana Potion]|h|r",EquipLoc=""},["Large Fin"]={SubType="Junk",Level=1,id=8508,StackCount=5,Rarity=0,MinLevel=0,SellPrice=178,Texture=134305,Link="|cff9d9d9d|Hitem:8508::::::::40:::::::|h[Large Fin]|h|r",EquipLoc="",Type="Miscellaneous"},["Callous Axe"]={SubType="One-Handed Axes",Level=29,id=4825,StackCount=1,Rarity=2,MinLevel=24,SellPrice=4094,Texture=132415,Link="|cff1eff00|Hitem:4825::::::::40:::::::|h[Callous Axe]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["AHNQIRAJ TEST ITEM B LEATHER PANTS"]={SubType="Miscellaneous",Level=1,id=21423,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21423::::::::40:::::::|h[AHNQIRAJ TEST ITEM B LEATHER PANTS]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Double-barreled Shotgun"]={SubType="Guns",Level=27,id=2098,StackCount=1,Rarity=3,MinLevel=22,SellPrice=3020,Texture=135617,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:2098::::::::40:::::::|h[Double-barreled Shotgun]|h|r"},["Barkshell Tunic"]={SubType="Leather",Level=25,id=5316,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1355,Texture=135009,Link="|cff1eff00|Hitem:5316::::::::40:::::::|h[Barkshell Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Scaled Bracers of the Gorger"]={SubType="Leather",Level=73,id=21491,StackCount=1,Rarity=3,MinLevel=60,SellPrice=23826,Texture=132602,Link="|cff0070dd|Hitem:21491::::::::40:::::::|h[Scaled Bracers of the Gorger]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Test Nature Res Head Cloth"]={SubType="Cloth",Level=35,id=16121,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2070,Texture=133133,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:16121::::::::40:::::::|h[Test Nature Res Head Cloth]|h|r",Type="Armor"},["Gnoam Sprecklesprocket"]={SubType="Quest",Level=1,id=7365,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132995,EquipLoc="",Link="|cffffffff|Hitem:7365::::::::40:::::::|h[Gnoam Sprecklesprocket]|h|r",Type="Quest"},["Etched Note"]={SubType="Quest",Level=1,id=9565,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9565::::::::40:::::::|h[Etched Note]|h|r"},["Plans: Blackguard"]={SubType="Blacksmithing",Level=70,id=19211,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30000,Texture=134939,Link="|cffffffff|Hitem:19211::::::::40:::::::|h[Plans: Blackguard]|h|r",EquipLoc="",Type="Recipe"},["Calor's Note"]={SubType="Quest",Level=1,id=2113,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:2113::::::::40:::::::|h[Calor's Note]|h|r",EquipLoc="",Type="Quest"},["Copper Bracers"]={SubType="Mail",Level=7,id=2853,StackCount=1,Rarity=1,MinLevel=2,SellPrice=17,Texture=132602,Type="Armor",Link="|cffffffff|Hitem:2853::::::::40:::::::|h[Copper Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Silver-thread Armor"]={SubType="Cloth",Level=31,id=7110,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2069,Texture=135022,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7110::::::::40:::::::|h[Silver-thread Armor]|h|r",Type="Armor"},["Shredder Operating Manual - Chapter 3"]={SubType="Quest",Level=1,id=16644,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133677,EquipLoc="",Link="|cffffffff|Hitem:16644::::::::40:::::::|h[Shredder Operating Manual - Chapter 3]|h|r",Type="Quest"},["Gloves of Insight"]={SubType="Leather",Level=33,id=9698,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1504,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9698::::::::40:::::::|h[Gloves of Insight]|h|r"},["18 Pound Salmon"]={SubType="Junk",Level=55,id=13902,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13902::::::::40:::::::|h[18 Pound Salmon]|h|r"},["Peerless Gloves"]={SubType="Leather",Level=58,id=15429,StackCount=1,Rarity=2,MinLevel=53,SellPrice=9049,Texture=132949,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15429::::::::40:::::::|h[Peerless Gloves]|h|r",Type="Armor"},["Mystical Powder"]={SubType="Trade Goods",Level=5,id=6216,StackCount=20,Rarity=1,MinLevel=0,SellPrice=6,Texture=133848,Type="Trade Goods",Link="|cffffffff|Hitem:6216::::::::40:::::::|h[Mystical Powder]|h|r",EquipLoc=""},["Monster - Glaive - 2 Blade Red"]={SubType="Polearms",Level=1,id=5597,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:5597::::::::40:::::::|h[Monster - Glaive - 2 Blade Red]|h|r",Type="Weapon"},["Broken Basilisk Teeth"]={SubType="Junk",Level=1,id=11384,StackCount=20,Rarity=0,MinLevel=0,SellPrice=70,Texture=133724,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11384::::::::40:::::::|h[Broken Basilisk Teeth]|h|r",EquipLoc=""},["Silver Totem of Aquementas"]={SubType="Miscellaneous",Level=0,id=11522,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135467,Type="Armor",Link="|cffffffff|Hitem:11522::::::::40:::::::|h[Silver Totem of Aquementas]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Fallbrush Handgrips"]={SubType="Leather",Level=61,id=13184,StackCount=1,Rarity=3,MinLevel=56,SellPrice=13638,Texture=132947,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13184::::::::40:::::::|h[Fallbrush Handgrips]|h|r"},["Mercenary Blade"]={SubType="One-Handed Swords",Level=36,id=15213,StackCount=1,Rarity=2,MinLevel=31,SellPrice=8165,Texture=135346,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15213::::::::40:::::::|h[Mercenary Blade]|h|r"},["Flame Deflector"]={SubType="Devices",Level=25,id=4376,StackCount=1,Rarity=1,MinLevel=15,SellPrice=200,Texture=132995,Type="Trade Goods",Link="|cffffffff|Hitem:4376::::::::40:::::::|h[Flame Deflector]|h|r",EquipLoc=""},["Samuel's Remains"]={SubType="Quest",Level=1,id=16333,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133728,EquipLoc="",Link="|cffffffff|Hitem:16333::::::::40:::::::|h[Samuel's Remains]|h|r",Type="Quest"},["Formula: Enchant Weapon - Lifestealing"]={SubType="Enchanting",Level=62,id=16254,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7500,Texture=134327,EquipLoc="",Link="|cff0070dd|Hitem:16254::::::::40:::::::|h[Formula: Enchant Weapon - Lifestealing]|h|r",Type="Recipe"},["Deprecated Red Mask"]={SubType="Cloth",Level=15,id=5106,StackCount=5,Rarity=0,MinLevel=10,SellPrice=83,Texture=133694,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:5106::::::::40:::::::|h[Deprecated Red Mask]|h|r"},["Tome of Khadgar's Unlocking IV"]={SubType="Book",Level=54,id=8881,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133739,Link="|cffffffff|Hitem:8881::::::::40:::::::|h[Tome of Khadgar's Unlocking IV]|h|r",EquipLoc="",Type="Recipe"},["Sandstorm Cloak"]={SubType="Cloth",Level=72,id=21456,StackCount=1,Rarity=4,MinLevel=60,SellPrice=36024,Texture=133758,Link="|cffa335ee|Hitem:21456::::::::40:::::::|h[Sandstorm Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Abjurer's Mantle"]={SubType="Cloth",Level=49,id=9941,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6523,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9941::::::::40:::::::|h[Abjurer's Mantle]|h|r"},["Kron's Amulet"]={SubType="Quest",Level=1,id=4891,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133278,Link="|cffffffff|Hitem:4891::::::::40:::::::|h[Kron's Amulet]|h|r",EquipLoc="",Type="Quest"},["Kim'Jael's Compass"]={SubType="Quest",Level=1,id=10717,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134376,EquipLoc="",Link="|cffffffff|Hitem:10717::::::::40:::::::|h[Kim'Jael's Compass]|h|r",Type="Quest"},["Tablet of Cure Disease"]={SubType="Book",Level=22,id=9062,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9062::::::::40:::::::|h[Tablet of Cure Disease]|h|r"},["Mantle of Woe"]={SubType="Cloth",Level=33,id=7750,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1712,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7750::::::::40:::::::|h[Mantle of Woe]|h|r"},["Idol of Longevity"]={SubType="Idols",Level=83,id=23004,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58479,Texture=134913,Link="|cffa335ee|Hitem:23004::::::::40:::::::|h[Idol of Longevity]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Black Grasp of the Destroyer"]={SubType="Mail",Level=70,id=22194,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33521,Texture=132965,Link="|cffa335ee|Hitem:22194::::::::40:::::::|h[Black Grasp of the Destroyer]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Bloodsail Orders"]={SubType="Quest",Level=1,id=3921,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,EquipLoc="",Link="|cffffffff|Hitem:3921::::::::40:::::::|h[Bloodsail Orders]|h|r",Type="Quest"},["Giantstalker's Belt"]={SubType="Mail",Level=66,id=16851,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27663,Texture=132517,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16851::::::::40:::::::|h[Giantstalker's Belt]|h|r",Type="Armor"},["Brocade Pants"]={SubType="Cloth",Level=21,id=1776,StackCount=1,Rarity=0,MinLevel=16,SellPrice=257,Texture=134591,Link="|cff9d9d9d|Hitem:1776::::::::40:::::::|h[Brocade Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["90 Green Frost Gloves"]={SubType="Cloth",Level=90,id=20342,StackCount=1,Rarity=2,MinLevel=60,SellPrice=35593,Texture=132951,Link="|cff1eff00|Hitem:20342::::::::40:::::::|h[90 Green Frost Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Amethyst Runestone"]={SubType="Quest",Level=1,id=4843,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134075,Type="Quest",Link="|cffffffff|Hitem:4843::::::::40:::::::|h[Amethyst Runestone]|h|r",EquipLoc=""},["Mistscape Stave"]={SubType="Miscellaneous",Level=46,id=7611,StackCount=1,Rarity=2,MinLevel=41,SellPrice=7364,Texture=135140,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:7611::::::::40:::::::|h[Mistscape Stave]|h|r"},["AHNQIRAJ TEST ITEM D PLATE SHOULDERS"]={SubType="Miscellaneous",Level=1,id=21443,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21443::::::::40:::::::|h[AHNQIRAJ TEST ITEM D PLATE SHOULDERS]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Sayge's Fortune #27"]={SubType="Junk",Level=10,id=19452,StackCount=1,Rarity=1,MinLevel=10,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19452::::::::40:::::::|h[Sayge's Fortune #27]|h|r",EquipLoc="",Type="Miscellaneous"},["[PH] Cloth Bracers of the Shining Dawn"]={SubType="Cloth",Level=100,id=13740,StackCount=1,Rarity=1,MinLevel=100,SellPrice=34489,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:13740::::::::40:::::::|h[[PH] Cloth Bracers of the Shining Dawn]|h|r"},["Shed Lizard Skin"]={SubType="Junk",Level=1,id=5128,StackCount=5,Rarity=0,MinLevel=0,SellPrice=202,Texture=134305,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5128::::::::40:::::::|h[Shed Lizard Skin]|h|r"},["Tablet of Spirit Armor III"]={SubType="Book",Level=28,id=1589,StackCount=1,Rarity=1,MinLevel=28,SellPrice=1750,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:1589::::::::40:::::::|h[Tablet of Spirit Armor III]|h|r",Type="Recipe"},["High Councillor's Bracers"]={SubType="Cloth",Level=60,id=10136,StackCount=1,Rarity=2,MinLevel=55,SellPrice=8530,Texture=132604,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10136::::::::40:::::::|h[High Councillor's Bracers]|h|r",Type="Armor"},["Wormhide Boots"]={SubType="Leather",Level=81,id=21613,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72691,Texture=132538,Link="|cffa335ee|Hitem:21613::::::::40:::::::|h[Wormhide Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Silver-thread Boots"]={SubType="Cloth",Level=27,id=6394,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1041,Texture=132539,Type="Armor",Link="|cff1eff00|Hitem:6394::::::::40:::::::|h[Silver-thread Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Winterfall Spirit Beads"]={SubType="Quest",Level=1,id=21383,StackCount=250,Rarity=1,MinLevel=0,SellPrice=200,Texture=133280,Link="|cffffffff|Hitem:21383::::::::40:::::::|h[Winterfall Spirit Beads]|h|r",EquipLoc="",Type="Quest"},["Cenarion Boots"]={SubType="Leather",Level=66,id=16829,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34339,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16829::::::::40:::::::|h[Cenarion Boots]|h|r",Type="Armor"},["Woven Boots"]={SubType="Cloth",Level=10,id=2367,StackCount=1,Rarity=1,MinLevel=5,SellPrice=44,Texture=132543,Link="|cffffffff|Hitem:2367::::::::40:::::::|h[Woven Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Decapitating Sword"]={SubType="One-Handed Swords",Level=24,id=3740,StackCount=1,Rarity=2,MinLevel=19,SellPrice=2452,Texture=135662,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:3740::::::::40:::::::|h[Decapitating Sword]|h|r",Type="Weapon"},["The Eye of Divinity"]={SubType="Miscellaneous",Level=71,id=18646,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135933,Type="Armor",Link="|cffa335ee|Hitem:18646::::::::40:::::::|h[The Eye of Divinity]|h|r",EquipLoc="INVTYPE_TRINKET"},["Simple Note"]={SubType="Quest",Level=1,id=9547,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:9547::::::::40:::::::|h[Simple Note]|h|r",EquipLoc="",Type="Quest"},["Aboriginal Robe"]={SubType="Cloth",Level=20,id=14120,StackCount=1,Rarity=2,MinLevel=15,SellPrice=577,Texture=132657,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14120::::::::40:::::::|h[Aboriginal Robe]|h|r"},["Powers of the Void"]={SubType="Quest",Level=1,id=6785,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133743,Type="Quest",Link="|cffffffff|Hitem:6785::::::::40:::::::|h[Powers of the Void]|h|r",EquipLoc=""},["Outrider's Lizardhide Pants"]={SubType="Leather",Level=65,id=22741,StackCount=1,Rarity=4,MinLevel=60,SellPrice=44092,Texture=134586,Link="|cffa335ee|Hitem:22741::::::::40:::::::|h[Outrider's Lizardhide Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Raider's Chestpiece"]={SubType="Mail",Level=20,id=9783,StackCount=1,Rarity=2,MinLevel=15,SellPrice=811,Texture=132629,Link="|cff1eff00|Hitem:9783::::::::40:::::::|h[Raider's Chestpiece]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Bloodforged Legplates"]={SubType="Plate",Level=49,id=14953,StackCount=1,Rarity=2,MinLevel=44,SellPrice=9158,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14953::::::::40:::::::|h[Bloodforged Legplates]|h|r"},["High Councillor's Boots"]={SubType="Cloth",Level=61,id=10137,StackCount=1,Rarity=2,MinLevel=56,SellPrice=13484,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10137::::::::40:::::::|h[High Councillor's Boots]|h|r",Type="Armor"},["Sandstrider's Mark"]={SubType="Bows",Level=59,id=20646,StackCount=1,Rarity=2,MinLevel=0,SellPrice=29963,Texture=135491,Link="|cff1eff00|Hitem:20646::::::::40:::::::|h[Sandstrider's Mark]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["White Rocket Cluster"]={SubType="Consumable",Level=1,id=21577,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=134292,Link="|cffffffff|Hitem:21577::::::::40:::::::|h[White Rocket Cluster]|h|r",EquipLoc="",Type="Consumable"},["Deprecated Silver Totem of Aquementas"]={SubType="Miscellaneous",Level=1,id=11170,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135467,Type="Armor",Link="|cffffffff|Hitem:11170::::::::40:::::::|h[Deprecated Silver Totem of Aquementas]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Lesser Staff of the Spire"]={SubType="Staves",Level=20,id=1300,StackCount=1,Rarity=2,MinLevel=15,SellPrice=1854,Texture=135469,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1300::::::::40:::::::|h[Lesser Staff of the Spire]|h|r"},["Purification Potion"]={SubType="Consumable",Level=57,id=13462,StackCount=5,Rarity=1,MinLevel=47,SellPrice=750,Texture=134811,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13462::::::::40:::::::|h[Purification Potion]|h|r"},["Explosive Rocket"]={SubType="Consumable",Level=8,id=1178,StackCount=20,Rarity=1,MinLevel=0,SellPrice=7,Texture=132383,Type="Consumable",Link="|cffffffff|Hitem:1178::::::::40:::::::|h[Explosive Rocket]|h|r",EquipLoc=""},["Monster - Item, Vial Black Offhand"]={SubType="Miscellaneous",Level=1,id=3694,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134718,EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:3694::::::::40:::::::|h[Monster - Item, Vial Black Offhand]|h|r",Type="Armor"},["Royal Scepter of Vek'lor"]={SubType="Miscellaneous",Level=81,id=21597,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72651,Texture=135472,Link="|cffa335ee|Hitem:21597::::::::40:::::::|h[Royal Scepter of Vek'lor]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Main Gauche"]={SubType="Daggers",Level=34,id=2526,StackCount=1,Rarity=1,MinLevel=29,SellPrice=3867,Texture=135651,Type="Weapon",Link="|cffffffff|Hitem:2526::::::::40:::::::|h[Main Gauche]|h|r",EquipLoc="INVTYPE_WEAPON"},["Pattern: Cindercloth Cloak"]={SubType="Tailoring",Level=55,id=14482,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14482::::::::40:::::::|h[Pattern: Cindercloth Cloak]|h|r"},["Marauder's Tunic"]={SubType="Mail",Level=40,id=15567,StackCount=1,Rarity=2,MinLevel=35,SellPrice=6666,Texture=132739,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15567::::::::40:::::::|h[Marauder's Tunic]|h|r",Type="Armor"},["Neretzek, The Blood Drinker"]={SubType="Two-Handed Axes",Level=71,id=21856,StackCount=1,Rarity=4,MinLevel=60,SellPrice=147180,Texture=132400,Link="|cffa335ee|Hitem:21856::::::::40:::::::|h[Neretzek, The Blood Drinker]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Plans: Silvered Bronze Shoulders"]={SubType="Blacksmithing",Level=25,id=2882,StackCount=1,Rarity=2,MinLevel=0,SellPrice=300,Texture=134942,Link="|cff1eff00|Hitem:2882::::::::40:::::::|h[Plans: Silvered Bronze Shoulders]|h|r",EquipLoc="",Type="Recipe"},["Burning War Axe"]={SubType="Two-Handed Axes",Level=33,id=2299,StackCount=1,Rarity=3,MinLevel=28,SellPrice=8756,Texture=132393,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:2299::::::::40:::::::|h[Burning War Axe]|h|r",Type="Weapon"},["Helm of Regrowth"]={SubType="Leather",Level=73,id=21484,StackCount=1,Rarity=3,MinLevel=60,SellPrice=33900,Texture=133117,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:21484::::::::40:::::::|h[Helm of Regrowth]|h|r"},["Monster - Item, Glass - Purple Wine"]={SubType="Miscellaneous",Level=1,id=13612,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132796,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13612::::::::40:::::::|h[Monster - Item, Glass - Purple Wine]|h|r"},["Plagued Flesh Sample"]={SubType="Quest",Level=1,id=13174,StackCount=30,Rarity=1,MinLevel=0,SellPrice=0,Texture=134358,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13174::::::::40:::::::|h[Plagued Flesh Sample]|h|r"},["Legionnaire's Silk Legguards"]={SubType="Cloth",Level=68,id=22883,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14714,Texture=134591,Link="|cff0070dd|Hitem:22883::::::::40:::::::|h[Legionnaire's Silk Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Linked Chain Gloves"]={SubType="Mail",Level=24,id=1750,StackCount=1,Rarity=0,MinLevel=19,SellPrice=298,Texture=132938,Type="Armor",Link="|cff9d9d9d|Hitem:1750::::::::40:::::::|h[Linked Chain Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Plans: Golden Scale Cuirass"]={SubType="Blacksmithing",Level=39,id=3873,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1100,Texture=134942,Link="|cff1eff00|Hitem:3873::::::::40:::::::|h[Plans: Golden Scale Cuirass]|h|r",EquipLoc="",Type="Recipe"},["Mace of Unending Life"]={SubType="One-Handed Maces",Level=70,id=21407,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133474,Link="|cffa335ee|Hitem:21407::::::::40:::::::|h[Mace of Unending Life]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["General's Plate Armguards"]={SubType="Plate",Level=65,id=16546,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8593,Texture=132618,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16546::::::::40:::::::|h[General's Plate Armguards]|h|r",Type="Armor"},["Watcher's Mantle"]={SubType="Cloth",Level=28,id=14182,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1167,Texture=135040,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14182::::::::40:::::::|h[Watcher's Mantle]|h|r"},["Pattern: Blood Tiger Shoulders"]={SubType="Leatherworking",Level=65,id=19773,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19773::::::::40:::::::|h[Pattern: Blood Tiger Shoulders]|h|r",EquipLoc="",Type="Recipe"},["Hibernal Cowl"]={SubType="Cloth",Level=48,id=8115,StackCount=1,Rarity=2,MinLevel=43,SellPrice=5980,Texture=133134,Link="|cff1eff00|Hitem:8115::::::::40:::::::|h[Hibernal Cowl]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Logistics Task Briefing VI"]={SubType="Quest",Level=60,id=21261,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21261::::::::40:::::::|h[Logistics Task Briefing VI]|h|r",EquipLoc="",Type="Quest"},["Resplendent Guardian"]={SubType="Shields",Level=31,id=7787,StackCount=1,Rarity=3,MinLevel=26,SellPrice=3960,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:7787::::::::40:::::::|h[Resplendent Guardian]|h|r"},["Savage Gladiator Leggings"]={SubType="Mail",Level=57,id=11728,StackCount=1,Rarity=3,MinLevel=52,SellPrice=25336,Texture=134583,Type="Armor",Link="|cff0070dd|Hitem:11728::::::::40:::::::|h[Savage Gladiator Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Wisdom of the Timbermaw"]={SubType="Cloth",Level=58,id=19047,StackCount=1,Rarity=3,MinLevel=53,SellPrice=9232,Texture=132498,Link="|cff0070dd|Hitem:19047::::::::40:::::::|h[Wisdom of the Timbermaw]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Doomcaller's Robes"]={SubType="Cloth",Level=88,id=21334,StackCount=1,Rarity=4,MinLevel=60,SellPrice=101407,Texture=132653,Link="|cffa335ee|Hitem:21334::::::::40:::::::|h[Doomcaller's Robes]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Elegant Mantle"]={SubType="Cloth",Level=60,id=10210,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12845,Texture=135041,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10210::::::::40:::::::|h[Elegant Mantle]|h|r",Type="Armor"},["Scaled Shield"]={SubType="Shields",Level=32,id=9830,StackCount=1,Rarity=2,MinLevel=27,SellPrice=3489,Texture=134956,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9830::::::::40:::::::|h[Scaled Shield]|h|r"},["Lieutenant Commander's Dreadweave Spaulders"]={SubType="Cloth",Level=71,id=23311,StackCount=1,Rarity=3,MinLevel=60,SellPrice=12589,Texture=135032,Link="|cff0070dd|Hitem:23311::::::::40:::::::|h[Lieutenant Commander's Dreadweave Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Green Winter Hat"]={SubType="Miscellaneous",Level=1,id=21525,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1,Texture=133170,Link="|cff1eff00|Hitem:21525::::::::40:::::::|h[Green Winter Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Book of Healing Touch II"]={SubType="Book",Level=8,id=5145,StackCount=1,Rarity=1,MinLevel=8,SellPrice=87,Texture=133743,Link="|cffffffff|Hitem:5145::::::::40:::::::|h[Book of Healing Touch II]|h|r",EquipLoc="",Type="Recipe"},["Direwing Legguards"]={SubType="Plate",Level=63,id=13075,StackCount=1,Rarity=3,MinLevel=58,SellPrice=22090,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:13075::::::::40:::::::|h[Direwing Legguards]|h|r"},["Engraved Wall"]={SubType="Shields",Level=60,id=10363,StackCount=1,Rarity=2,MinLevel=55,SellPrice=27396,Texture=134949,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:10363::::::::40:::::::|h[Engraved Wall]|h|r",Type="Armor"},["Runic Plate Boots"]={SubType="Plate",Level=60,id=12611,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12293,Texture=132582,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:12611::::::::40:::::::|h[Runic Plate Boots]|h|r"},["Atal'ai Gloves"]={SubType="Cloth",Level=52,id=10787,StackCount=1,Rarity=3,MinLevel=47,SellPrice=6382,Texture=132617,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:10787::::::::40:::::::|h[Atal'ai Gloves]|h|r",Type="Armor"},["Zul'Mamwe Trophy"]={SubType="Quest",Level=1,id=3908,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,Type="Quest",Link="|cffffffff|Hitem:3908::::::::40:::::::|h[Zul'Mamwe Trophy]|h|r",EquipLoc=""},["Festive Pink Dress"]={SubType="Miscellaneous",Level=1,id=21538,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132699,Link="|cffffffff|Hitem:21538::::::::40:::::::|h[Festive Pink Dress]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Runesword of the Red"]={SubType="One-Handed Swords",Level=76,id=21521,StackCount=1,Rarity=4,MinLevel=60,SellPrice=137911,Texture=135361,Link="|cffa335ee|Hitem:21521::::::::40:::::::|h[Runesword of the Red]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Greenweave Bracers"]={SubType="Cloth",Level=21,id=9768,StackCount=1,Rarity=2,MinLevel=16,SellPrice=317,Texture=132611,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9768::::::::40:::::::|h[Greenweave Bracers]|h|r"},["Ghoul Skin Leggings"]={SubType="Leather",Level=61,id=18682,StackCount=1,Rarity=3,MinLevel=56,SellPrice=25456,Texture=134582,Type="Armor",Link="|cff0070dd|Hitem:18682::::::::40:::::::|h[Ghoul Skin Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Mithril Coif"]={SubType="Mail",Level=46,id=7931,StackCount=1,Rarity=2,MinLevel=41,SellPrice=7955,Texture=133137,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7931::::::::40:::::::|h[Mithril Coif]|h|r",Type="Armor"},["Logistics Task Briefing VIII"]={SubType="Quest",Level=60,id=21384,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21384::::::::40:::::::|h[Logistics Task Briefing VIII]|h|r",EquipLoc="",Type="Quest"},["Book of Rejuvenation IX"]={SubType="Book",Level=52,id=8785,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8785::::::::40:::::::|h[Book of Rejuvenation IX]|h|r"},["Dagger of Spell Penetration - Frost 150 Resist (TEST)"]={SubType="Daggers",Level=63,id=21518,StackCount=1,Rarity=3,MinLevel=58,SellPrice=59978,Texture=135150,Link="|cff0070dd|Hitem:21518::::::::40:::::::|h[Dagger of Spell Penetration - Frost 150 Resist (TEST)]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Libram: Crusader Strike IV"]={SubType="Book",Level=46,id=8931,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=133740,Link="|cffffffff|Hitem:8931::::::::40:::::::|h[Libram: Crusader Strike IV]|h|r",EquipLoc="",Type="Recipe"},["Explosive Stick of Gann"]={SubType="Quest",Level=1,id=5021,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133714,EquipLoc="",Link="|cffffffff|Hitem:5021::::::::40:::::::|h[Explosive Stick of Gann]|h|r",Type="Quest"},["Fel Cone"]={SubType="Quest",Level=1,id=3418,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133944,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3418::::::::40:::::::|h[Fel Cone]|h|r"},["Manual of Heroic Strike IX"]={SubType="Book",Level=60,id=21297,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133735,Link="|cff0070dd|Hitem:21297::::::::40:::::::|h[Manual of Heroic Strike IX]|h|r",EquipLoc="",Type="Recipe"},["Manual of Battle Shout VII"]={SubType="Book",Level=60,id=21298,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133735,Link="|cff0070dd|Hitem:21298::::::::40:::::::|h[Manual of Battle Shout VII]|h|r",EquipLoc="",Type="Recipe"},["Lord's Crown"]={SubType="Mail",Level=51,id=10083,StackCount=1,Rarity=2,MinLevel=46,SellPrice=10745,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10083::::::::40:::::::|h[Lord's Crown]|h|r",Type="Armor"},["Grimoire of Firebolt (Rank 7)"]={SubType="Book",Level=58,id=16320,StackCount=1,Rarity=1,MinLevel=58,SellPrice=6000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16320::::::::40:::::::|h[Grimoire of Firebolt (Rank 7)]|h|r",Type="Recipe"},["Elven Spirit Claws"]={SubType="Leather",Level=50,id=2564,StackCount=1,Rarity=3,MinLevel=45,SellPrice=6817,Texture=132941,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:2564::::::::40:::::::|h[Elven Spirit Claws]|h|r"},["Pioneer Cloak"]={SubType="Cloth",Level=9,id=6520,StackCount=1,Rarity=1,MinLevel=4,SellPrice=41,Texture=133755,Type="Armor",Link="|cffffffff|Hitem:6520::::::::40:::::::|h[Pioneer Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Crustacean Boots"]={SubType="Mail",Level=17,id=15406,StackCount=1,Rarity=2,MinLevel=0,SellPrice=402,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15406::::::::40:::::::|h[Crustacean Boots]|h|r",Type="Armor"},["Glyphed Belt"]={SubType="Leather",Level=38,id=6421,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2317,Texture=132504,Link="|cff1eff00|Hitem:6421::::::::40:::::::|h[Glyphed Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Jade Bracers"]={SubType="Plate",Level=46,id=14914,StackCount=1,Rarity=2,MinLevel=41,SellPrice=3590,Texture=132611,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14914::::::::40:::::::|h[Jade Bracers]|h|r"},["[PH] Leather Boots of the Shining Dawn"]={SubType="Leather",Level=100,id=13803,StackCount=1,Rarity=1,MinLevel=100,SellPrice=67103,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:13803::::::::40:::::::|h[[PH] Leather Boots of the Shining Dawn]|h|r"},["Stone of Relu"]={SubType="Quest",Level=1,id=5233,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134458,EquipLoc="",Link="|cffffffff|Hitem:5233::::::::40:::::::|h[Stone of Relu]|h|r",Type="Quest"},["Necklace of Harmony"]={SubType="Miscellaneous",Level=34,id=5180,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2777,Texture=133279,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:5180::::::::40:::::::|h[Necklace of Harmony]|h|r",Type="Armor"},["Ribbly's Bandolier"]={SubType="Ammo Pouch",Level=55,id=2663,StackCount=1,Rarity=2,MinLevel=50,SellPrice=8750,Texture=133581,EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:2663::::::::40:::::::|h[Ribbly's Bandolier]|h|r",Type="Quiver"},["Ironhide Greaves"]={SubType="Mail",Level=52,id=15642,StackCount=1,Rarity=2,MinLevel=47,SellPrice=12162,Texture=132536,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15642::::::::40:::::::|h[Ironhide Greaves]|h|r",Type="Armor"},["Tactical Task Briefing III"]={SubType="Quest",Level=60,id=20946,StackCount=1,Rarity=2,MinLevel=58,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:20946::::::::40:::::::|h[Tactical Task Briefing III]|h|r",EquipLoc="",Type="Quest"},["Bloodlust Bracelets"]={SubType="Mail",Level=53,id=14807,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8211,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14807::::::::40:::::::|h[Bloodlust Bracelets]|h|r"},["Tribal Buckler"]={SubType="Shields",Level=11,id=3649,StackCount=1,Rarity=1,MinLevel=6,SellPrice=115,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:3649::::::::40:::::::|h[Tribal Buckler]|h|r",Type="Armor"},["Sprightring Helm"]={SubType="Leather",Level=47,id=17776,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7377,Texture=133137,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:17776::::::::40:::::::|h[Sprightring Helm]|h|r",Type="Armor"},["Charm of the Shifting Sands"]={SubType="Miscellaneous",Level=70,id=21504,StackCount=1,Rarity=4,MinLevel=60,SellPrice=111628,Texture=133341,Link="|cffa335ee|Hitem:21504::::::::40:::::::|h[Charm of the Shifting Sands]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Icebane Helmet"]={SubType="Plate",Level=83,id=23019,StackCount=1,Rarity=4,MinLevel=60,SellPrice=63466,Texture=133074,Link="|cffa335ee|Hitem:23019::::::::40:::::::|h[Icebane Helmet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Dogran's Pendant"]={SubType="Quest",Level=1,id=6626,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133290,Type="Quest",Link="|cffffffff|Hitem:6626::::::::40:::::::|h[Dogran's Pendant]|h|r",EquipLoc=""},["Turtle Egg (Hawksbill)"]={SubType="Junk",Level=20,id=18965,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=132834,Type="Miscellaneous",Link="|cffffffff|Hitem:18965::::::::40:::::::|h[Turtle Egg (Hawksbill)]|h|r",EquipLoc=""},["Myrmidon's Gauntlets"]={SubType="Mail",Level=49,id=8128,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6229,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:8128::::::::40:::::::|h[Myrmidon's Gauntlets]|h|r"},["Pearl-clasped Cloak"]={SubType="Cloth",Level=19,id=5542,StackCount=1,Rarity=2,MinLevel=14,SellPrice=370,Texture=133763,Link="|cff1eff00|Hitem:5542::::::::40:::::::|h[Pearl-clasped Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["63 Green Frost Bindings"]={SubType="Cloth",Level=63,id=20352,StackCount=1,Rarity=2,MinLevel=58,SellPrice=9179,Texture=133365,Link="|cff1eff00|Hitem:20352::::::::40:::::::|h[63 Green Frost Bindings]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Doomcaller's Handwraps [PH]"]={SubType="Cloth",Level=78,id=21339,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31715,Texture=132955,Link="|cffa335ee|Hitem:21339::::::::40:::::::|h[Doomcaller's Handwraps [PH]]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Rough Quartz"]={SubType="Quest",Level=1,id=6656,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134096,Type="Quest",Link="|cffffffff|Hitem:6656::::::::40:::::::|h[Rough Quartz]|h|r",EquipLoc=""},["Elixir of Greater Intellect"]={SubType="Consumable",Level=47,id=9179,StackCount=5,Rarity=1,MinLevel=37,SellPrice=1000,Texture=134721,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9179::::::::40:::::::|h[Elixir of Greater Intellect]|h|r"},["Ogre Pocket Knife"]={SubType="One-Handed Swords",Level=60,id=18463,StackCount=1,Rarity=2,MinLevel=55,SellPrice=41472,Texture=135274,Type="Weapon",Link="|cff1eff00|Hitem:18463::::::::40:::::::|h[Ogre Pocket Knife]|h|r",EquipLoc="INVTYPE_WEAPON"},["Ivory Scarab"]={SubType="Quest",Level=1,id=20865,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=2241756,Link="|cff1eff00|Hitem:20865::::::::40:::::::|h[Ivory Scarab]|h|r",EquipLoc="",Type="Quest"},["Battleforge Gauntlets"]={SubType="Mail",Level=28,id=6595,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1124,Texture=132960,Type="Armor",Link="|cff1eff00|Hitem:6595::::::::40:::::::|h[Battleforge Gauntlets]|h|r",EquipLoc="INVTYPE_HAND"},["Dual Reinforced Leggings"]={SubType="Mail",Level=37,id=9625,StackCount=1,Rarity=3,MinLevel=0,SellPrice=6344,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:9625::::::::40:::::::|h[Dual Reinforced Leggings]|h|r"},["Ring of Protection"]={SubType="Miscellaneous",Level=60,id=15855,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7888,Texture=133368,EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:15855::::::::40:::::::|h[Ring of Protection]|h|r",Type="Armor"},["Large Seaforium Charge"]={SubType="Explosives",Level=40,id=4398,StackCount=10,Rarity=1,MinLevel=0,SellPrice=900,Texture=134514,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4398::::::::40:::::::|h[Large Seaforium Charge]|h|r"},["Enduring Gauntlets"]={SubType="Mail",Level=35,id=14764,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2250,Texture=132943,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14764::::::::40:::::::|h[Enduring Gauntlets]|h|r"},["Brusslehide Leggings"]={SubType="Leather",Level=51,id=17751,StackCount=1,Rarity=2,MinLevel=46,SellPrice=12787,Texture=134585,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:17751::::::::40:::::::|h[Brusslehide Leggings]|h|r",Type="Armor"},["Sealed Research Report"]={SubType="Quest",Level=1,id=23008,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:23008::::::::40:::::::|h[Sealed Research Report]|h|r",EquipLoc="",Type="Quest"},["Phalanx Headguard"]={SubType="Mail",Level=33,id=7420,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2658,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7420::::::::40:::::::|h[Phalanx Headguard]|h|r",Type="Armor"},["Empty Venom Sac"]={SubType="Junk",Level=1,id=19935,StackCount=10,Rarity=0,MinLevel=0,SellPrice=830,Texture=133856,Link="|cff9d9d9d|Hitem:19935::::::::40:::::::|h[Empty Venom Sac]|h|r",EquipLoc="",Type="Miscellaneous"},["Conjurer's Cinch"]={SubType="Cloth",Level=34,id=9853,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1368,Texture=132504,Link="|cff1eff00|Hitem:9853::::::::40:::::::|h[Conjurer's Cinch]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Silvermane Stalker Flank"]={SubType="Quest",Level=1,id=11472,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=133970,Type="Quest",Link="|cffffffff|Hitem:11472::::::::40:::::::|h[Silvermane Stalker Flank]|h|r",EquipLoc=""},["Axe of Rin'ji"]={SubType="One-Handed Axes",Level=53,id=13014,StackCount=1,Rarity=3,MinLevel=48,SellPrice=34705,Texture=132415,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13014::::::::40:::::::|h[Axe of Rin'ji]|h|r"},["Runes of Summoning"]={SubType="Quest",Level=1,id=6284,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134416,Link="|cffffffff|Hitem:6284::::::::40:::::::|h[Runes of Summoning]|h|r",EquipLoc="",Type="Quest"},["Frostsaber Leggings"]={SubType="Leather",Level=57,id=15069,StackCount=1,Rarity=2,MinLevel=52,SellPrice=17012,Texture=134581,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15069::::::::40:::::::|h[Frostsaber Leggings]|h|r",Type="Armor"},["Dawn's Glow"]={SubType="Miscellaneous",Level=50,id=4033,StackCount=1,Rarity=1,MinLevel=45,SellPrice=5000,Texture=134116,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:4033::::::::40:::::::|h[Dawn's Glow]|h|r"},["Thornflinger"]={SubType="Bows",Level=57,id=16622,StackCount=1,Rarity=2,MinLevel=0,SellPrice=27307,Texture=135494,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:16622::::::::40:::::::|h[Thornflinger]|h|r",Type="Weapon"},["Fel Salve"]={SubType="Junk",Level=1,id=11582,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134877,Type="Miscellaneous",Link="|cffffffff|Hitem:11582::::::::40:::::::|h[Fel Salve]|h|r",EquipLoc=""},["Grimoire of Lash of Pain (Rank 3)"]={SubType="Book",Level=36,id=16371,StackCount=1,Rarity=1,MinLevel=36,SellPrice=2250,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16371::::::::40:::::::|h[Grimoire of Lash of Pain (Rank 3)]|h|r",Type="Recipe"},["Mechanical Greench"]={SubType="Consumable",Level=58,id=21325,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=132189,Link="|cff1eff00|Hitem:21325::::::::40:::::::|h[Mechanical Greench]|h|r",EquipLoc="",Type="Consumable"},["Air Sapta"]={SubType="Consumable",Level=1,id=6638,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134754,Type="Consumable",Link="|cffffffff|Hitem:6638::::::::40:::::::|h[Air Sapta]|h|r",EquipLoc=""},["Burrower Bracers"]={SubType="Cloth",Level=81,id=21611,StackCount=1,Rarity=4,MinLevel=60,SellPrice=38499,Texture=132612,Link="|cffa335ee|Hitem:21611::::::::40:::::::|h[Burrower Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Protector Helm"]={SubType="Mail",Level=53,id=14795,StackCount=1,Rarity=2,MinLevel=48,SellPrice=12690,Texture=133078,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14795::::::::40:::::::|h[Protector Helm]|h|r"},["Baron's Scepter"]={SubType="One-Handed Maces",Level=25,id=6323,StackCount=1,Rarity=2,MinLevel=20,SellPrice=2611,Texture=133477,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:6323::::::::40:::::::|h[Baron's Scepter]|h|r"},["Grimoire of Curse of Sargeras III"]={SubType="Book",Level=36,id=5723,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5723::::::::40:::::::|h[Grimoire of Curse of Sargeras III]|h|r"},["Tel'Abim Banana"]={SubType="Consumable",Level=15,id=4537,StackCount=20,Rarity=1,MinLevel=5,SellPrice=6,Texture=133980,Type="Consumable",Link="|cffffffff|Hitem:4537::::::::40:::::::|h[Tel'Abim Banana]|h|r",EquipLoc=""},["Quicksand Waders"]={SubType="Cloth",Level=73,id=21489,StackCount=1,Rarity=3,MinLevel=60,SellPrice=27637,Texture=132562,Link="|cff0070dd|Hitem:21489::::::::40:::::::|h[Quicksand Waders]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Naraxis' Fang"]={SubType="Daggers",Level=27,id=4449,StackCount=1,Rarity=2,MinLevel=22,SellPrice=3332,Texture=134298,Link="|cff1eff00|Hitem:4449::::::::40:::::::|h[Naraxis' Fang]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Rhombeard Protector"]={SubType="Shields",Level=61,id=13205,StackCount=1,Rarity=3,MinLevel=56,SellPrice=35031,Texture=134960,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:13205::::::::40:::::::|h[Rhombeard Protector]|h|r"},["Combat Cloak"]={SubType="Cloth",Level=32,id=4716,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1658,Texture=133766,Link="|cff1eff00|Hitem:4716::::::::40:::::::|h[Combat Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Bundle of Reports"]={SubType="Quest",Level=1,id=16783,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134943,EquipLoc="",Link="|cffffffff|Hitem:16783::::::::40:::::::|h[Bundle of Reports]|h|r",Type="Quest"},["Two of Beasts"]={SubType="Junk",Level=1,id=19230,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134482,Link="|cff0070dd|Hitem:19230::::::::40:::::::|h[Two of Beasts]|h|r",EquipLoc="",Type="Miscellaneous"},["Spire Spider Egg"]={SubType="Quest",Level=1,id=12530,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132833,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12530::::::::40:::::::|h[Spire Spider Egg]|h|r"},["Impenetrable Gauntlets"]={SubType="Mail",Level=57,id=15662,StackCount=1,Rarity=2,MinLevel=52,SellPrice=10801,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15662::::::::40:::::::|h[Impenetrable Gauntlets]|h|r",Type="Armor"},["Chucky's Huge Ring"]={SubType="Quest",Level=1,id=3926,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133344,Link="|cffffffff|Hitem:3926::::::::40:::::::|h[Chucky's Huge Ring]|h|r",EquipLoc="",Type="Quest"},["Truesilver Bar"]={SubType="Trade Goods",Level=50,id=6037,StackCount=20,Rarity=2,MinLevel=0,SellPrice=1250,Texture=133222,Link="|cff1eff00|Hitem:6037::::::::40:::::::|h[Truesilver Bar]|h|r",EquipLoc="",Type="Trade Goods"},["Tablet of Molten Blast VI"]={SubType="Book",Level=46,id=9132,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9132::::::::40:::::::|h[Tablet of Molten Blast VI]|h|r"},["Crocolisk Gumbo"]={SubType="Consumable",Level=25,id=3664,StackCount=20,Rarity=1,MinLevel=15,SellPrice=100,Texture=133748,Link="|cffffffff|Hitem:3664::::::::40:::::::|h[Crocolisk Gumbo]|h|r",EquipLoc="",Type="Consumable"},["Deprecated Oslow's Toolbox"]={SubType="Bag",Level=15,id=3568,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=133628,Link="|cffffffff|Hitem:3568::::::::40:::::::|h[Deprecated Oslow's Toolbox]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Mo'grosh Masher"]={SubType="One-Handed Maces",Level=18,id=2821,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1117,Texture=133052,Link="|cff1eff00|Hitem:2821::::::::40:::::::|h[Mo'grosh Masher]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Mark of Hakkar"]={SubType="Miscellaneous",Level=55,id=10780,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5542,Texture=133347,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:10780::::::::40:::::::|h[Mark of Hakkar]|h|r",Type="Armor"},["Winter Veil Cookie"]={SubType="Consumable",Level=55,id=21254,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134018,Link="|cffffffff|Hitem:21254::::::::40:::::::|h[Winter Veil Cookie]|h|r",EquipLoc="",Type="Consumable"},["Stylish Green Shirt"]={SubType="Miscellaneous",Level=25,id=6385,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=135024,Type="Armor",Link="|cffffffff|Hitem:6385::::::::40:::::::|h[Stylish Green Shirt]|h|r",EquipLoc="INVTYPE_BODY"},["Plans: Darkrune Breastplate"]={SubType="Blacksmithing",Level=63,id=20554,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134941,Link="|cff0070dd|Hitem:20554::::::::40:::::::|h[Plans: Darkrune Breastplate]|h|r",EquipLoc="",Type="Recipe"},["Glimmering Mail Pauldrons"]={SubType="Mail",Level=30,id=6388,StackCount=1,Rarity=2,MinLevel=25,SellPrice=2043,Texture=135051,Type="Armor",Link="|cff1eff00|Hitem:6388::::::::40:::::::|h[Glimmering Mail Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Plans: Golden Scale Shoulders"]={SubType="Blacksmithing",Level=35,id=3871,StackCount=1,Rarity=3,MinLevel=0,SellPrice=850,Texture=134939,Link="|cff0070dd|Hitem:3871::::::::40:::::::|h[Plans: Golden Scale Shoulders]|h|r",EquipLoc="",Type="Recipe"},["Pattern: Chimeric Gloves"]={SubType="Leatherworking",Level=53,id=15729,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15729::::::::40:::::::|h[Pattern: Chimeric Gloves]|h|r",Type="Recipe"},["Bag of Marbles"]={SubType="Consumable",Level=8,id=1191,StackCount=1,Rarity=1,MinLevel=0,SellPrice=82,Texture=133581,Link="|cffffffff|Hitem:1191::::::::40:::::::|h[Bag of Marbles]|h|r",EquipLoc="",Type="Consumable"},["Pledge of Loyalty: Stormwind"]={SubType="Consumable",Level=1,id=22117,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134330,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22117::::::::40:::::::|h[Pledge of Loyalty: Stormwind]|h|r"},["Bundle of Wood"]={SubType="Quest",Level=1,id=13872,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135437,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13872::::::::40:::::::|h[Bundle of Wood]|h|r"},["Cinder Bracers"]={SubType="Consumable",Level=58,id=23379,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=132608,Link="|cff1eff00|Hitem:23379::::::::40:::::::|h[Cinder Bracers]|h|r",EquipLoc="",Type="Consumable"},["Tome of Blizzard VI"]={SubType="Book",Level=60,id=8895,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133739,Link="|cffffffff|Hitem:8895::::::::40:::::::|h[Tome of Blizzard VI]|h|r",EquipLoc="",Type="Recipe"},["90 Epic Rogue Dagger"]={SubType="Daggers",Level=90,id=20279,StackCount=1,Rarity=4,MinLevel=60,SellPrice=274087,Texture=132797,Link="|cffa335ee|Hitem:20279::::::::40:::::::|h[90 Epic Rogue Dagger]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Pattern: Heavy Scorpid Shoulders"]={SubType="Leatherworking",Level=61,id=15774,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134939,EquipLoc="",Link="|cff1eff00|Hitem:15774::::::::40:::::::|h[Pattern: Heavy Scorpid Shoulders]|h|r",Type="Recipe"},["Scouting Belt"]={SubType="Leather",Level=21,id=6581,StackCount=1,Rarity=2,MinLevel=16,SellPrice=422,Texture=132505,Link="|cff1eff00|Hitem:6581::::::::40:::::::|h[Scouting Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Ravager's Woolies"]={SubType="Mail",Level=43,id=14775,StackCount=1,Rarity=2,MinLevel=38,SellPrice=8367,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14775::::::::40:::::::|h[Ravager's Woolies]|h|r"},["Abjurer's Boots"]={SubType="Cloth",Level=49,id=9936,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6403,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9936::::::::40:::::::|h[Abjurer's Boots]|h|r"},["Pattern: Dawn Treaders"]={SubType="Leatherworking",Level=58,id=19328,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5500,Texture=134939,Link="|cffffffff|Hitem:19328::::::::40:::::::|h[Pattern: Dawn Treaders]|h|r",EquipLoc="",Type="Recipe"},["32 Pound Salmon"]={SubType="Junk",Level=55,id=13906,StackCount=1,Rarity=1,MinLevel=0,SellPrice=50,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13906::::::::40:::::::|h[32 Pound Salmon]|h|r"},["22 Pound Salmon"]={SubType="Junk",Level=55,id=13903,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13903::::::::40:::::::|h[22 Pound Salmon]|h|r"},["Monster - Axe, 2H Horde Green War Axe"]={SubType="Two-Handed Axes",Level=1,id=12294,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12294::::::::40:::::::|h[Monster - Axe, 2H Horde Green War Axe]|h|r"},["Kingsblood"]={SubType="Trade Goods",Level=24,id=3356,StackCount=20,Rarity=1,MinLevel=0,SellPrice=30,Texture=134183,EquipLoc="",Link="|cffffffff|Hitem:3356::::::::40:::::::|h[Kingsblood]|h|r",Type="Trade Goods"},["QATest Darkmoon Faire Tickets"]={SubType="Junk",Level=55,id=23271,StackCount=1,Rarity=1,MinLevel=0,SellPrice=20000,Texture=132594,Link="|cffffffff|Hitem:23271::::::::40:::::::|h[QATest Darkmoon Faire Tickets]|h|r",EquipLoc="",Type="Miscellaneous"},["Raven's Claws"]={SubType="Cloth",Level=22,id=6628,StackCount=1,Rarity=2,MinLevel=17,SellPrice=370,Texture=136076,Type="Armor",Link="|cff1eff00|Hitem:6628::::::::40:::::::|h[Raven's Claws]|h|r",EquipLoc="INVTYPE_HAND"},["Verner's Note"]={SubType="Quest",Level=1,id=1283,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:1283::::::::40:::::::|h[Verner's Note]|h|r",EquipLoc="",Type="Quest"},["Highlander's Cloth Girdle"]={SubType="Cloth",Level=53,id=20097,StackCount=1,Rarity=3,MinLevel=48,SellPrice=6723,Texture=132506,Link="|cff0070dd|Hitem:20097::::::::40:::::::|h[Highlander's Cloth Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Green Ribboned Holiday Gift"]={SubType="Consumable",Level=5,id=17305,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133202,EquipLoc="",Link="|cffffffff|Hitem:17305::::::::40:::::::|h[Green Ribboned Holiday Gift]|h|r",Type="Consumable"},["Monster - Mace2H, Maul B02 Silver"]={SubType="Two-Handed Maces",Level=1,id=13925,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133489,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13925::::::::40:::::::|h[Monster - Mace2H, Maul B02 Silver]|h|r"},["Ranger Boots"]={SubType="Leather",Level=42,id=7481,StackCount=1,Rarity=2,MinLevel=37,SellPrice=4908,Texture=132542,Link="|cff1eff00|Hitem:7481::::::::40:::::::|h[Ranger Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Stormshroud Gloves"]={SubType="Leather",Level=62,id=21278,StackCount=1,Rarity=3,MinLevel=57,SellPrice=13212,Texture=132939,Link="|cff0070dd|Hitem:21278::::::::40:::::::|h[Stormshroud Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Blessed Qiraji Musket"]={SubType="Guns",Level=79,id=21272,StackCount=1,Rarity=4,MinLevel=60,SellPrice=130949,Texture=135620,Link="|cffa335ee|Hitem:21272::::::::40:::::::|h[Blessed Qiraji Musket]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Dwarf Captain's Sword"]={SubType="One-Handed Swords",Level=45,id=4987,StackCount=1,Rarity=2,MinLevel=0,SellPrice=15584,Texture=135326,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:4987::::::::40:::::::|h[Dwarf Captain's Sword]|h|r"},["Four of Warlords"]={SubType="Junk",Level=1,id=19261,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134497,Link="|cff0070dd|Hitem:19261::::::::40:::::::|h[Four of Warlords]|h|r",EquipLoc="",Type="Miscellaneous"},["Deprecated End Spawn Ticket"]={SubType="Quest",Level=1,id=2191,StackCount=12,Rarity=1,MinLevel=0,SellPrice=1,Texture=134058,EquipLoc="",Link="|cffffffff|Hitem:2191::::::::40:::::::|h[Deprecated End Spawn Ticket]|h|r",Type="Quest"},["Test Sharpening Stone"]={SubType="Trade Goods",Level=15,id=6213,StackCount=20,Rarity=1,MinLevel=5,SellPrice=10,Texture=135233,Type="Trade Goods",Link="|cffffffff|Hitem:6213::::::::40:::::::|h[Test Sharpening Stone]|h|r",EquipLoc=""},["Test AQ Resource - Runecloth Bandage"]={SubType="Junk",Level=1,id=21637,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21637::::::::40:::::::|h[Test AQ Resource - Runecloth Bandage]|h|r",EquipLoc="",Type="Miscellaneous"},["Deprecated Tauren Trapper's Belt"]={SubType="Miscellaneous",Level=1,id=130,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132494,Link="|cffffffff|Hitem:130::::::::40:::::::|h[Deprecated Tauren Trapper's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Soothsayer's Headdress"]={SubType="Leather",Level=52,id=17740,StackCount=1,Rarity=3,MinLevel=47,SellPrice=11401,Texture=133101,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:17740::::::::40:::::::|h[Soothsayer's Headdress]|h|r",Type="Armor"},["Warlord's Dreadweave Mantle"]={SubType="Cloth",Level=74,id=17590,StackCount=1,Rarity=4,MinLevel=60,SellPrice=19051,Texture=135050,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:17590::::::::40:::::::|h[Warlord's Dreadweave Mantle]|h|r",Type="Armor"},["Barkeeper's Cloak"]={SubType="Cloth",Level=18,id=5343,StackCount=1,Rarity=2,MinLevel=0,SellPrice=462,Texture=133755,Link="|cff1eff00|Hitem:5343::::::::40:::::::|h[Barkeeper's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Crystal Adorned Crown"]={SubType="Cloth",Level=68,id=19132,StackCount=1,Rarity=4,MinLevel=60,SellPrice=28438,Texture=132767,Link="|cffa335ee|Hitem:19132::::::::40:::::::|h[Crystal Adorned Crown]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Boots of the Desert Protector"]={SubType="Plate",Level=73,id=21481,StackCount=1,Rarity=3,MinLevel=60,SellPrice=26810,Texture=132586,Link="|cff0070dd|Hitem:21481::::::::40:::::::|h[Boots of the Desert Protector]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Elixir of Lesser Agility"]={SubType="Consumable",Level=28,id=3390,StackCount=5,Rarity=1,MinLevel=18,SellPrice=35,Texture=134872,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:3390::::::::40:::::::|h[Elixir of Lesser Agility]|h|r"},["Arcane Pads"]={SubType="Cloth",Level=59,id=8288,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11876,Texture=135033,Link="|cff1eff00|Hitem:8288::::::::40:::::::|h[Arcane Pads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Gaea's Scepter"]={SubType="Miscellaneous",Level=52,id=15983,StackCount=1,Rarity=2,MinLevel=47,SellPrice=8387,Texture=135466,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15983::::::::40:::::::|h[Gaea's Scepter]|h|r",Type="Armor"},["Bolt of Silk Cloth"]={SubType="Trade Goods",Level=35,id=4305,StackCount=10,Rarity=1,MinLevel=0,SellPrice=600,Texture=132907,Link="|cffffffff|Hitem:4305::::::::40:::::::|h[Bolt of Silk Cloth]|h|r",EquipLoc="",Type="Trade Goods"},["Tablet of Ghost Wolf"]={SubType="Book",Level=12,id=5699,StackCount=1,Rarity=1,MinLevel=12,SellPrice=250,Texture=134459,Link="|cffffffff|Hitem:5699::::::::40:::::::|h[Tablet of Ghost Wolf]|h|r",EquipLoc="",Type="Recipe"},["Ornate Girdle"]={SubType="Mail",Level=55,id=10122,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9007,Texture=132496,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10122::::::::40:::::::|h[Ornate Girdle]|h|r",Type="Armor"},["Light Chain Belt"]={SubType="Mail",Level=10,id=2399,StackCount=1,Rarity=1,MinLevel=5,SellPrice=43,Texture=132495,Type="Armor",Link="|cffffffff|Hitem:2399::::::::40:::::::|h[Light Chain Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Tough Leather Shoulderpads"]={SubType="Leather",Level=26,id=1809,StackCount=1,Rarity=0,MinLevel=21,SellPrice=440,Texture=135039,Type="Armor",Link="|cff9d9d9d|Hitem:1809::::::::40:::::::|h[Tough Leather Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Head of Bazil Thredd"]={SubType="Quest",Level=1,id=2926,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2926::::::::40:::::::|h[Head of Bazil Thredd]|h|r"},["Tome of Scorch VII"]={SubType="Book",Level=58,id=8887,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=133739,Link="|cffffffff|Hitem:8887::::::::40:::::::|h[Tome of Scorch VII]|h|r",EquipLoc="",Type="Recipe"},["25 Pound Salmon"]={SubType="Junk",Level=55,id=13904,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13904::::::::40:::::::|h[25 Pound Salmon]|h|r"},["Patched Leather Pants"]={SubType="Leather",Level=18,id=1792,StackCount=1,Rarity=0,MinLevel=13,SellPrice=208,Texture=134706,Link="|cff9d9d9d|Hitem:1792::::::::40:::::::|h[Patched Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Sorcerer's Bindings"]={SubType="Cloth",Level=65,id=22063,StackCount=1,Rarity=3,MinLevel=0,SellPrice=13227,Texture=133365,Link="|cff0070dd|Hitem:22063::::::::40:::::::|h[Sorcerer's Bindings]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Dreadforge Retaliator"]={SubType="Two-Handed Axes",Level=59,id=11931,StackCount=1,Rarity=3,MinLevel=54,SellPrice=58103,Texture=132416,Type="Weapon",Link="|cff0070dd|Hitem:11931::::::::40:::::::|h[Dreadforge Retaliator]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Flail"]={SubType="One-Handed Maces",Level=25,id=925,StackCount=1,Rarity=1,MinLevel=20,SellPrice=1559,Texture=133476,Type="Weapon",Link="|cffffffff|Hitem:925::::::::40:::::::|h[Flail]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Deprecated Oslow's Ice Pick"]={SubType="Daggers",Level=18,id=1313,StackCount=1,Rarity=0,MinLevel=0,SellPrice=437,Texture=135128,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:1313::::::::40:::::::|h[Deprecated Oslow's Ice Pick]|h|r"},["Grimoire of Drain Soul III"]={SubType="Book",Level=36,id=9227,StackCount=1,Rarity=1,MinLevel=36,SellPrice=4500,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9227::::::::40:::::::|h[Grimoire of Drain Soul III]|h|r"},["Steel Weapon Chain"]={SubType="Trade Goods",Level=38,id=6041,StackCount=5,Rarity=1,MinLevel=0,SellPrice=1500,Texture=135834,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:6041::::::::40:::::::|h[Steel Weapon Chain]|h|r"},["Sentry's Slippers"]={SubType="Mail",Level=28,id=15525,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1634,Texture=132589,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15525::::::::40:::::::|h[Sentry's Slippers]|h|r",Type="Armor"},["Bright Baubles"]={SubType="Consumable",Level=30,id=6532,StackCount=20,Rarity=1,MinLevel=0,SellPrice=62,Texture=134139,Link="|cffffffff|Hitem:6532::::::::40:::::::|h[Bright Baubles]|h|r",EquipLoc="",Type="Consumable"},["Cloak of Flames"]={SubType="Cloth",Level=65,id=3475,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26018,Texture=133760,Link="|cffa335ee|Hitem:3475::::::::40:::::::|h[Cloak of Flames]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["15 Pound Salmon"]={SubType="Junk",Level=55,id=13901,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13901::::::::40:::::::|h[15 Pound Salmon]|h|r"},["Woven Ivy Necklace"]={SubType="Miscellaneous",Level=51,id=19159,StackCount=1,Rarity=3,MinLevel=0,SellPrice=21141,Texture=134196,Link="|cff0070dd|Hitem:19159::::::::40:::::::|h[Woven Ivy Necklace]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Pattern: Guardian Armor"]={SubType="Leatherworking",Level=35,id=4299,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=134939,Type="Recipe",Link="|cff1eff00|Hitem:4299::::::::40:::::::|h[Pattern: Guardian Armor]|h|r",EquipLoc=""},["Essence of Undeath"]={SubType="Reagent",Level=55,id=12808,StackCount=10,Rarity=2,MinLevel=0,SellPrice=1000,Texture=136195,Type="Reagent",EquipLoc="",Link="|cff1eff00|Hitem:12808::::::::40:::::::|h[Essence of Undeath]|h|r"},["Large Trophy Paw"]={SubType="Junk",Level=1,id=4584,StackCount=5,Rarity=0,MinLevel=0,SellPrice=937,Texture=134297,EquipLoc="",Link="|cff9d9d9d|Hitem:4584::::::::40:::::::|h[Large Trophy Paw]|h|r",Type="Miscellaneous"},["Radiant Silver Bracers"]={SubType="Cloth",Level=40,id=4545,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2202,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:4545::::::::40:::::::|h[Radiant Silver Bracers]|h|r"},["Zandalar Vindicator's Belt"]={SubType="Plate",Level=61,id=19823,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132521,Link="|cffa335ee|Hitem:19823::::::::40:::::::|h[Zandalar Vindicator's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Translated Letter from The Embalmer"]={SubType="Quest",Level=1,id=3248,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:3248::::::::40:::::::|h[Translated Letter from The Embalmer]|h|r",EquipLoc="",Type="Quest"},["Book: The Powers Below"]={SubType="Quest",Level=20,id=5352,StackCount=1,Rarity=1,MinLevel=10,SellPrice=0,Texture=133743,Link="|cffffffff|Hitem:5352::::::::40:::::::|h[Book: The Powers Below]|h|r",EquipLoc="",Type="Quest"},["Commander's Gauntlets"]={SubType="Plate",Level=60,id=10380,StackCount=1,Rarity=2,MinLevel=55,SellPrice=8468,Texture=132966,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10380::::::::40:::::::|h[Commander's Gauntlets]|h|r",Type="Armor"},["Devout Mantle"]={SubType="Cloth",Level=60,id=16695,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14925,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16695::::::::40:::::::|h[Devout Mantle]|h|r",Type="Armor"},["Pattern: Truefaith Vestments"]={SubType="Tailoring",Level=62,id=14512,StackCount=1,Rarity=4,MinLevel=0,SellPrice=15000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffa335ee|Hitem:14512::::::::40:::::::|h[Pattern: Truefaith Vestments]|h|r"},["Stormpike Insignia Rank 1"]={SubType="Miscellaneous",Level=60,id=17691,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133429,EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:17691::::::::40:::::::|h[Stormpike Insignia Rank 1]|h|r",Type="Armor"},["Bloodfang Boots"]={SubType="Leather",Level=76,id=16906,StackCount=1,Rarity=4,MinLevel=60,SellPrice=55305,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16906::::::::40:::::::|h[Bloodfang Boots]|h|r",Type="Armor"},["Enduring Cap"]={SubType="Leather",Level=33,id=3020,StackCount=1,Rarity=3,MinLevel=28,SellPrice=2655,Texture=133117,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:3020::::::::40:::::::|h[Enduring Cap]|h|r"},["Dark Iron Sunderer"]={SubType="Two-Handed Axes",Level=57,id=11607,StackCount=1,Rarity=3,MinLevel=52,SellPrice=51225,Texture=135572,Type="Weapon",Link="|cff0070dd|Hitem:11607::::::::40:::::::|h[Dark Iron Sunderer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Platemail Bracers"]={SubType="Plate",Level=50,id=8090,StackCount=1,Rarity=1,MinLevel=45,SellPrice=2687,Texture=132613,Link="|cffffffff|Hitem:8090::::::::40:::::::|h[Platemail Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Deprecated Malakai's Medallion"]={SubType="Quest",Level=1,id=734,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133278,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:734::::::::40:::::::|h[Deprecated Malakai's Medallion]|h|r"},["High Councillor's Robe"]={SubType="Cloth",Level=64,id=10143,StackCount=1,Rarity=2,MinLevel=59,SellPrice=19772,Texture=132653,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:10143::::::::40:::::::|h[High Councillor's Robe]|h|r",Type="Armor"},["Wolf Rider's Cloak"]={SubType="Cloth",Level=41,id=15371,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3467,Texture=133774,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15371::::::::40:::::::|h[Wolf Rider's Cloak]|h|r",Type="Armor"},["Tough Leather Armor"]={SubType="Leather",Level=27,id=1810,StackCount=1,Rarity=0,MinLevel=22,SellPrice=648,Texture=132725,EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:1810::::::::40:::::::|h[Tough Leather Armor]|h|r",Type="Armor"},["General's Plate Girdle"]={SubType="Plate",Level=65,id=16547,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8624,Texture=132498,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16547::::::::40:::::::|h[General's Plate Girdle]|h|r",Type="Armor"},["Bristly Whisker"]={SubType="Junk",Level=1,id=1686,StackCount=10,Rarity=0,MinLevel=0,SellPrice=733,Texture=134324,Link="|cff9d9d9d|Hitem:1686::::::::40:::::::|h[Bristly Whisker]|h|r",EquipLoc="",Type="Miscellaneous"},["A Carefully-packed Crate"]={SubType="Quest",Level=1,id=9507,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132764,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9507::::::::40:::::::|h[A Carefully-packed Crate]|h|r"},["Hibernal Bracers"]={SubType="Cloth",Level=47,id=8108,StackCount=1,Rarity=2,MinLevel=42,SellPrice=3594,Texture=132605,Link="|cff1eff00|Hitem:8108::::::::40:::::::|h[Hibernal Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Dreamwalker Girdle"]={SubType="Leather",Level=88,id=22494,StackCount=1,Rarity=4,MinLevel=60,SellPrice=67481,Texture=132511,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:22494::::::::40:::::::|h[Dreamwalker Girdle]|h|r"},["Bloodsoul Gauntlets"]={SubType="Mail",Level=65,id=19692,StackCount=1,Rarity=3,MinLevel=60,SellPrice=19980,Texture=132965,Link="|cff0070dd|Hitem:19692::::::::40:::::::|h[Bloodsoul Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["A Mysterious Message"]={SubType="Quest",Level=1,id=1381,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133468,EquipLoc="",Link="|cffffffff|Hitem:1381::::::::40:::::::|h[A Mysterious Message]|h|r",Type="Quest"},["Pattern: Robes of Arcana"]={SubType="Tailoring",Level=30,id=5773,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:5773::::::::40:::::::|h[Pattern: Robes of Arcana]|h|r",Type="Recipe"},["Deprecated Light Winter Boots"]={SubType="Leather",Level=6,id=2306,StackCount=1,Rarity=0,MinLevel=1,SellPrice=9,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:2306::::::::40:::::::|h[Deprecated Light Winter Boots]|h|r",Type="Armor"},["Monster - Crossbow"]={SubType="Crossbows",Level=1,id=2551,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135531,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:2551::::::::40:::::::|h[Monster - Crossbow]|h|r",Type="Weapon"},["Mighty Armsplints"]={SubType="Leather",Level=60,id=10147,StackCount=1,Rarity=2,MinLevel=55,SellPrice=10319,Texture=132617,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10147::::::::40:::::::|h[Mighty Armsplints]|h|r",Type="Armor"},["Hammer of the Vesper"]={SubType="One-Handed Maces",Level=61,id=18683,StackCount=1,Rarity=3,MinLevel=56,SellPrice=51100,Texture=133050,Type="Weapon",Link="|cff0070dd|Hitem:18683::::::::40:::::::|h[Hammer of the Vesper]|h|r",EquipLoc="INVTYPE_WEAPON"},["Archeus"]={SubType="Two-Handed Swords",Level=35,id=2000,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8827,Texture=135278,Type="Weapon",Link="|cff1eff00|Hitem:2000::::::::40:::::::|h[Archeus]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Ornate Blunderbuss"]={SubType="Guns",Level=9,id=2509,StackCount=1,Rarity=1,MinLevel=4,SellPrice=82,Texture=135611,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:2509::::::::40:::::::|h[Ornate Blunderbuss]|h|r",Type="Weapon"},["Wall of the Dead"]={SubType="Shields",Level=50,id=1979,StackCount=1,Rarity=4,MinLevel=45,SellPrice=23273,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffa335ee|Hitem:1979::::::::40:::::::|h[Wall of the Dead]|h|r"},["Heavy Hide"]={SubType="Trade Goods",Level=30,id=4235,StackCount=10,Rarity=1,MinLevel=0,SellPrice=200,Texture=134370,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4235::::::::40:::::::|h[Heavy Hide]|h|r"},["Striker's Pauldrons"]={SubType="Mail",Level=81,id=21367,StackCount=1,Rarity=4,MinLevel=60,SellPrice=87626,Texture=135067,Link="|cffa335ee|Hitem:21367::::::::40:::::::|h[Striker's Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Nail Spitter"]={SubType="Guns",Level=36,id=17042,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5692,Texture=135610,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:17042::::::::40:::::::|h[Nail Spitter]|h|r",Type="Weapon"},["Scratched Claymore"]={SubType="Two-Handed Swords",Level=4,id=2128,StackCount=1,Rarity=1,MinLevel=1,SellPrice=20,Texture=135276,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:2128::::::::40:::::::|h[Scratched Claymore]|h|r"},["Frost Shock and You"]={SubType="Junk",Level=60,id=18363,StackCount=1,Rarity=3,MinLevel=54,SellPrice=0,Texture=133736,Type="Miscellaneous",Link="|cff0070dd|Hitem:18363::::::::40:::::::|h[Frost Shock and You]|h|r",EquipLoc=""},["Tablet of Rockbiter Weapon"]={SubType="Book",Level=1,id=9037,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9037::::::::40:::::::|h[Tablet of Rockbiter Weapon]|h|r"},["Deprecated Jordan's Quiver"]={SubType="Quiver",Level=1,id=2002,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133628,Type="Quiver",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:2002::::::::40:::::::|h[Deprecated Jordan's Quiver]|h|r"},["Corrupted Furbolg Totem"]={SubType="Quest",Level=1,id=5389,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136232,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5389::::::::40:::::::|h[Corrupted Furbolg Totem]|h|r"},["Practice Lock"]={SubType="Junk",Level=20,id=6712,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=132594,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:6712::::::::40:::::::|h[Practice Lock]|h|r"},["Vanguard Gauntlets"]={SubType="Plate",Level=55,id=14855,StackCount=1,Rarity=2,MinLevel=50,SellPrice=6502,Texture=132951,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14855::::::::40:::::::|h[Vanguard Gauntlets]|h|r"},["[PH] Plate Chestguard of the Rising Dawn"]={SubType="Plate",Level=100,id=13772,StackCount=1,Rarity=1,MinLevel=100,SellPrice=66905,Texture=132751,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13772::::::::40:::::::|h[[PH] Plate Chestguard of the Rising Dawn]|h|r"},["Weak Flux"]={SubType="Trade Goods",Level=5,id=2880,StackCount=10,Rarity=1,MinLevel=0,SellPrice=25,Texture=133588,Type="Trade Goods",Link="|cffffffff|Hitem:2880::::::::40:::::::|h[Weak Flux]|h|r",EquipLoc=""},["Chieftain's Shoulders"]={SubType="Leather",Level=50,id=9955,StackCount=1,Rarity=2,MinLevel=45,SellPrice=8530,Texture=135032,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9955::::::::40:::::::|h[Chieftain's Shoulders]|h|r"},["Greater Healing Potion"]={SubType="Consumable",Level=31,id=1710,StackCount=5,Rarity=1,MinLevel=21,SellPrice=125,Texture=134832,Link="|cffffffff|Hitem:1710::::::::40:::::::|h[Greater Healing Potion]|h|r",EquipLoc="",Type="Consumable"},["Bloodfang Spaulders"]={SubType="Leather",Level=76,id=16832,StackCount=1,Rarity=4,MinLevel=60,SellPrice=56532,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16832::::::::40:::::::|h[Bloodfang Spaulders]|h|r",Type="Armor"},["Marsh Ring"]={SubType="Miscellaneous",Level=45,id=12012,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2463,Texture=133350,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:12012::::::::40:::::::|h[Marsh Ring]|h|r"},["Gramma Stonefield's Note"]={SubType="Quest",Level=1,id=1252,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1252::::::::40:::::::|h[Gramma Stonefield's Note]|h|r"},["Deprecated Potion of Lesser Invulnerability (Fix)"]={SubType="Consumable",Level=15,id=2462,StackCount=10,Rarity=1,MinLevel=1,SellPrice=25,Texture=134712,Link="|cffffffff|Hitem:2462::::::::40:::::::|h[Deprecated Potion of Lesser Invulnerability (Fix)]|h|r",EquipLoc="",Type="Consumable"},["Righteous Orb"]={SubType="Trade Goods",Level=60,id=12811,StackCount=20,Rarity=2,MinLevel=0,SellPrice=20000,Texture=134122,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:12811::::::::40:::::::|h[Righteous Orb]|h|r"},["Scarab Bag"]={SubType="Junk",Level=1,id=21156,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133646,Link="|cffffffff|Hitem:21156::::::::40:::::::|h[Scarab Bag]|h|r",EquipLoc="",Type="Miscellaneous"},["Amber Voodoo Feather"]={SubType="Junk",Level=1,id=20606,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=132927,Link="|cffffffff|Hitem:20606::::::::40:::::::|h[Amber Voodoo Feather]|h|r",EquipLoc="",Type="Miscellaneous"},["Skin of Sweet Rum"]={SubType="Quest",Level=1,id=1939,StackCount=1,Rarity=1,MinLevel=0,SellPrice=168,Texture=132794,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1939::::::::40:::::::|h[Skin of Sweet Rum]|h|r"},["Smokywood Pastures Extra-Special Gift"]={SubType="Junk",Level=1,id=21216,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133202,Link="|cffffffff|Hitem:21216::::::::40:::::::|h[Smokywood Pastures Extra-Special Gift]|h|r",EquipLoc="",Type="Miscellaneous"},["Formula: Enchant Weapon - Winter's Might"]={SubType="Enchanting",Level=38,id=17725,StackCount=1,Rarity=2,MinLevel=0,SellPrice=750,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:17725::::::::40:::::::|h[Formula: Enchant Weapon - Winter's Might]|h|r",Type="Recipe"},["Cadet Cloak"]={SubType="Cloth",Level=11,id=9761,StackCount=1,Rarity=1,MinLevel=6,SellPrice=58,Texture=133753,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:9761::::::::40:::::::|h[Cadet Cloak]|h|r"},["90 Epic Frost Crown"]={SubType="Cloth",Level=90,id=20327,StackCount=1,Rarity=4,MinLevel=60,SellPrice=87016,Texture=132768,Link="|cffa335ee|Hitem:20327::::::::40:::::::|h[90 Epic Frost Crown]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Libram: Exorcism"]={SubType="Book",Level=20,id=5672,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:5672::::::::40:::::::|h[Libram: Exorcism]|h|r",Type="Recipe"},["Blue Dye"]={SubType="Trade Goods",Level=10,id=6260,StackCount=10,Rarity=1,MinLevel=0,SellPrice=12,Texture=134776,Link="|cffffffff|Hitem:6260::::::::40:::::::|h[Blue Dye]|h|r",EquipLoc="",Type="Trade Goods"},["Ivy Cuffs"]={SubType="Leather",Level=13,id=5612,StackCount=1,Rarity=1,MinLevel=0,SellPrice=72,Texture=132611,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:5612::::::::40:::::::|h[Ivy Cuffs]|h|r",Type="Armor"},["Avenger's Pauldrons"]={SubType="Plate",Level=78,id=21391,StackCount=1,Rarity=4,MinLevel=60,SellPrice=46145,Texture=135066,Link="|cffa335ee|Hitem:21391::::::::40:::::::|h[Avenger's Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Greenweave Gloves"]={SubType="Cloth",Level=25,id=9771,StackCount=1,Rarity=2,MinLevel=20,SellPrice=532,Texture=132952,Link="|cff1eff00|Hitem:9771::::::::40:::::::|h[Greenweave Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Overlord's Chestplate"]={SubType="Plate",Level=52,id=10203,StackCount=1,Rarity=2,MinLevel=47,SellPrice=10397,Texture=132739,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10203::::::::40:::::::|h[Overlord's Chestplate]|h|r",Type="Armor"},["Deprecated Hands of the Full Moon"]={SubType="Leather",Level=18,id=5298,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132939,Link="|cffffffff|Hitem:5298::::::::40:::::::|h[Deprecated Hands of the Full Moon]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Rock Pulverizer"]={SubType="Two-Handed Maces",Level=42,id=4983,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16837,Texture=133054,Link="|cff1eff00|Hitem:4983::::::::40:::::::|h[Rock Pulverizer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Copper Chain Pants"]={SubType="Mail",Level=9,id=2852,StackCount=1,Rarity=1,MinLevel=4,SellPrice=67,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:2852::::::::40:::::::|h[Copper Chain Pants]|h|r"},["Secret Note #3"]={SubType="Quest",Level=0,id=12768,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134943,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12768::::::::40:::::::|h[Secret Note #3]|h|r"},["Mantis Boots"]={SubType="Cloth",Level=40,id=3764,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3181,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:3764::::::::40:::::::|h[Mantis Boots]|h|r"},["Warlock Orb 35"]={SubType="Miscellaneous",Level=35,id=6899,StackCount=1,Rarity=0,MinLevel=0,SellPrice=5382,Texture=134335,EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:6899::::::::40:::::::|h[Warlock Orb 35]|h|r",Type="Armor"},["Hakkari Breastplate"]={SubType="Leather",Level=55,id=10781,StackCount=1,Rarity=2,MinLevel=0,SellPrice=15072,Texture=132717,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10781::::::::40:::::::|h[Hakkari Breastplate]|h|r",Type="Armor"},["Ambassador Infernus' Bracer"]={SubType="Quest",Level=1,id=4621,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132608,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4621::::::::40:::::::|h[Ambassador Infernus' Bracer]|h|r"},["Conjurer's Breeches"]={SubType="Cloth",Level=37,id=9851,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3524,Texture=134587,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9851::::::::40:::::::|h[Conjurer's Breeches]|h|r"},["Knight-Lieutenant's Satin Gloves"]={SubType="Cloth",Level=63,id=17596,StackCount=1,Rarity=3,MinLevel=58,SellPrice=5696,Texture=132964,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:17596::::::::40:::::::|h[Knight-Lieutenant's Satin Gloves]|h|r",Type="Armor"},["Centaur Bracers"]={SubType="Quest",Level=1,id=5030,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132607,EquipLoc="",Link="|cffffffff|Hitem:5030::::::::40:::::::|h[Centaur Bracers]|h|r",Type="Quest"},["Militia Buckler"]={SubType="Shields",Level=10,id=2249,StackCount=1,Rarity=1,MinLevel=0,SellPrice=91,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:2249::::::::40:::::::|h[Militia Buckler]|h|r"},["Mageroyal"]={SubType="Trade Goods",Level=10,id=785,StackCount=20,Rarity=1,MinLevel=0,SellPrice=20,Texture=133436,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:785::::::::40:::::::|h[Mageroyal]|h|r"},["Light Leather Quiver"]={SubType="Quiver",Level=5,id=7278,StackCount=1,Rarity=1,MinLevel=1,SellPrice=25,Texture=134401,Link="|cffffffff|Hitem:7278::::::::40:::::::|h[Light Leather Quiver]|h|r",EquipLoc="INVTYPE_BAG",Type="Quiver"},["Shattered Necklace Sapphire"]={SubType="Quest",Level=1,id=7670,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134132,EquipLoc="",Link="|cffffffff|Hitem:7670::::::::40:::::::|h[Shattered Necklace Sapphire]|h|r",Type="Quest"},["Wizardweave Robe"]={SubType="Cloth",Level=60,id=14128,StackCount=1,Rarity=2,MinLevel=55,SellPrice=16093,Texture=132687,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14128::::::::40:::::::|h[Wizardweave Robe]|h|r"},["Wendigo Fur Cloak"]={SubType="Cloth",Level=9,id=3008,StackCount=1,Rarity=1,MinLevel=4,SellPrice=43,Texture=133756,Link="|cffffffff|Hitem:3008::::::::40:::::::|h[Wendigo Fur Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["SI:7 Insignia (Rutger)"]={SubType="Quest",Level=1,id=16003,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133599,EquipLoc="",Link="|cffffffff|Hitem:16003::::::::40:::::::|h[SI:7 Insignia (Rutger)]|h|r",Type="Quest"},["Grand Belt"]={SubType="Leather",Level=57,id=15191,StackCount=1,Rarity=2,MinLevel=52,SellPrice=9034,Texture=132501,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15191::::::::40:::::::|h[Grand Belt]|h|r",Type="Armor"},["Band of the Undercity"]={SubType="Miscellaneous",Level=32,id=3760,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1500,Texture=133345,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:3760::::::::40:::::::|h[Band of the Undercity]|h|r"},["High Warlord's Street Sweeper"]={SubType="Guns",Level=78,id=18860,StackCount=1,Rarity=4,MinLevel=60,SellPrice=36602,Texture=135615,Type="Weapon",Link="|cffa335ee|Hitem:18860::::::::40:::::::|h[High Warlord's Street Sweeper]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Scepter of Interminable Focus"]={SubType="Miscellaneous",Level=63,id=22329,StackCount=1,Rarity=3,MinLevel=58,SellPrice=34450,Texture=135469,Link="|cff0070dd|Hitem:22329::::::::40:::::::|h[Scepter of Interminable Focus]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Ranger Gloves"]={SubType="Leather",Level=41,id=7480,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3019,Texture=132959,Link="|cff1eff00|Hitem:7480::::::::40:::::::|h[Ranger Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Chitinous Shoulderguards"]={SubType="Leather",Level=74,id=21474,StackCount=1,Rarity=3,MinLevel=60,SellPrice=37936,Texture=135060,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:21474::::::::40:::::::|h[Chitinous Shoulderguards]|h|r"},["Swashbuckler's Gloves"]={SubType="Leather",Level=53,id=10186,StackCount=1,Rarity=2,MinLevel=48,SellPrice=6966,Texture=132937,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10186::::::::40:::::::|h[Swashbuckler's Gloves]|h|r",Type="Armor"},["Monster - Item, Fish - Orange Offhand"]={SubType="Miscellaneous",Level=1,id=19487,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133888,Link="|cff9d9d9d|Hitem:19487::::::::40:::::::|h[Monster - Item, Fish - Orange Offhand]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND",Type="Weapon"},["Tome of Frost Nova III"]={SubType="Book",Level=40,id=3101,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:3101::::::::40:::::::|h[Tome of Frost Nova III]|h|r",Type="Recipe"},["Flamestrider Robes"]={SubType="Leather",Level=53,id=11747,StackCount=1,Rarity=3,MinLevel=48,SellPrice=16659,Texture=132648,Type="Armor",Link="|cff0070dd|Hitem:11747::::::::40:::::::|h[Flamestrider Robes]|h|r",EquipLoc="INVTYPE_ROBE"},["Deprecated Pinto Summoning (Mount)"]={SubType="Junk",Level=1,id=903,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134937,Link="|cffffffff|Hitem:903::::::::40:::::::|h[Deprecated Pinto Summoning (Mount)]|h|r",EquipLoc="",Type="Miscellaneous"},["Level 40 Test Gear Leather - Druid"]={SubType="Junk",Level=1,id=13668,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13668::::::::40:::::::|h[Level 40 Test Gear Leather - Druid]|h|r"},["General's Chain Wristguards"]={SubType="Mail",Level=65,id=16570,StackCount=1,Rarity=4,MinLevel=60,SellPrice=13073,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16570::::::::40:::::::|h[General's Chain Wristguards]|h|r",Type="Armor"},["Tome of Polymorph: Sheep"]={SubType="Book",Level=40,id=4146,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:4146::::::::40:::::::|h[Tome of Polymorph: Sheep]|h|r",Type="Recipe"},["Coin of Ancestry"]={SubType="Quest",Level=1,id=21100,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=133858,Link="|cffffffff|Hitem:21100::::::::40:::::::|h[Coin of Ancestry]|h|r",EquipLoc="",Type="Quest"},["Hive'Regal Scout Report"]={SubType="Quest",Level=60,id=21160,StackCount=1,Rarity=1,MinLevel=58,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:21160::::::::40:::::::|h[Hive'Regal Scout Report]|h|r",EquipLoc="",Type="Quest"},["Inscribed Cloak"]={SubType="Cloth",Level=16,id=4701,StackCount=1,Rarity=2,MinLevel=11,SellPrice=252,Texture=133763,Link="|cff1eff00|Hitem:4701::::::::40:::::::|h[Inscribed Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Dryweed Belt"]={SubType="Leather",Level=14,id=15399,StackCount=1,Rarity=2,MinLevel=0,SellPrice=151,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15399::::::::40:::::::|h[Dryweed Belt]|h|r",Type="Armor"},["Fluctuating Cloak"]={SubType="Cloth",Level=62,id=18382,StackCount=1,Rarity=3,MinLevel=57,SellPrice=15971,Texture=133766,Type="Armor",Link="|cff0070dd|Hitem:18382::::::::40:::::::|h[Fluctuating Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Cord of Elements"]={SubType="Mail",Level=58,id=16673,StackCount=1,Rarity=3,MinLevel=53,SellPrice=13440,Texture=132505,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16673::::::::40:::::::|h[Cord of Elements]|h|r",Type="Armor"},["Sacred Relic"]={SubType="Miscellaneous",Level=10,id=2920,StackCount=1,Rarity=1,MinLevel=5,SellPrice=50,Texture=133750,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:2920::::::::40:::::::|h[Sacred Relic]|h|r"},["Reinforced Linen Cape"]={SubType="Cloth",Level=12,id=2580,StackCount=1,Rarity=1,MinLevel=7,SellPrice=67,Texture=133759,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:2580::::::::40:::::::|h[Reinforced Linen Cape]|h|r",Type="Armor"},["Commander's Helm"]={SubType="Plate",Level=61,id=10379,StackCount=1,Rarity=2,MinLevel=56,SellPrice=13290,Texture=133069,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10379::::::::40:::::::|h[Commander's Helm]|h|r",Type="Armor"},["Darkwood Fishing Pole"]={SubType="Fishing Pole",Level=20,id=6366,StackCount=1,Rarity=1,MinLevel=15,SellPrice=1066,Texture=132932,Type="Weapon",Link="|cffffffff|Hitem:6366::::::::40:::::::|h[Darkwood Fishing Pole]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Mysterious Envelope"]={SubType="Quest",Level=16,id=21043,StackCount=1,Rarity=1,MinLevel=16,SellPrice=0,Texture=133471,Link="|cffffffff|Hitem:21043::::::::40:::::::|h[Mysterious Envelope]|h|r",EquipLoc="",Type="Quest"},["Native Handwraps"]={SubType="Cloth",Level=13,id=14102,StackCount=1,Rarity=1,MinLevel=8,SellPrice=60,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:14102::::::::40:::::::|h[Native Handwraps]|h|r"},["Grimoire of Fire Shield (Rank 5)"]={SubType="Book",Level=54,id=16330,StackCount=1,Rarity=1,MinLevel=54,SellPrice=5000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16330::::::::40:::::::|h[Grimoire of Fire Shield (Rank 5)]|h|r",Type="Recipe"},["Warosh's Scroll"]={SubType="Quest",Level=1,id=12730,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134944,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12730::::::::40:::::::|h[Warosh's Scroll]|h|r"},["Black Swashbuckler's Shirt"]={SubType="Miscellaneous",Level=40,id=4336,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=135022,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:4336::::::::40:::::::|h[Black Swashbuckler's Shirt]|h|r",Type="Armor"},["Large Bore Blunderbuss"]={SubType="Guns",Level=21,id=3023,StackCount=1,Rarity=1,MinLevel=16,SellPrice=754,Texture=135612,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:3023::::::::40:::::::|h[Large Bore Blunderbuss]|h|r",Type="Weapon"},["Crude Map"]={SubType="Junk",Level=1,id=21037,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132319,Link="|cffffffff|Hitem:21037::::::::40:::::::|h[Crude Map]|h|r",EquipLoc="",Type="Miscellaneous"},["Brocade Vest"]={SubType="Cloth",Level=23,id=1778,StackCount=1,Rarity=0,MinLevel=18,SellPrice=337,Texture=135023,Link="|cff9d9d9d|Hitem:1778::::::::40:::::::|h[Brocade Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Recipe: Flask of the Titans"]={SubType="Alchemy",Level=60,id=13519,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13519::::::::40:::::::|h[Recipe: Flask of the Titans]|h|r"},["First Sergeant's Plate Bracers"]={SubType="Plate",Level=63,id=18429,StackCount=1,Rarity=3,MinLevel=58,SellPrice=5889,Texture=132618,Type="Armor",Link="|cff0070dd|Hitem:18429::::::::40:::::::|h[First Sergeant's Plate Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Dirt-caked Pendant"]={SubType="Quest",Level=1,id=6625,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133290,Type="Quest",Link="|cffffffff|Hitem:6625::::::::40:::::::|h[Dirt-caked Pendant]|h|r",EquipLoc=""},["Phantasmal Cloak"]={SubType="Cloth",Level=62,id=18689,StackCount=1,Rarity=3,MinLevel=57,SellPrice=16460,Texture=133772,Type="Armor",Link="|cff0070dd|Hitem:18689::::::::40:::::::|h[Phantasmal Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Romantic Poem"]={SubType="Consumable",Level=1,id=22174,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22174::::::::40:::::::|h[Romantic Poem]|h|r"},["Fizzule's Whistle"]={SubType="Quest",Level=1,id=8066,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134374,Link="|cffffffff|Hitem:8066::::::::40:::::::|h[Fizzule's Whistle]|h|r",EquipLoc="",Type="Quest"},["Basalt Ring"]={SubType="Miscellaneous",Level=34,id=11996,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1713,Texture=133355,Type="Armor",Link="|cff1eff00|Hitem:11996::::::::40:::::::|h[Basalt Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Grimoire of Consume Shadows (Rank 2)"]={SubType="Book",Level=26,id=16358,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16358::::::::40:::::::|h[Grimoire of Consume Shadows (Rank 2)]|h|r",Type="Recipe"},["Gloves of the Pathfinder"]={SubType="Leather",Level=58,id=21319,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9339,Texture=132955,Link="|cff1eff00|Hitem:21319::::::::40:::::::|h[Gloves of the Pathfinder]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Test Ranged Slot"]={SubType="Leather",Level=65,id=19837,StackCount=1,Rarity=3,MinLevel=0,SellPrice=48542,Texture=135492,Link="|cff0070dd|Hitem:19837::::::::40:::::::|h[Test Ranged Slot]|h|r",EquipLoc="INVTYPE_RANGED",Type="Armor"},["Brownell's Blue Striped Racer"]={SubType="Junk",Level=45,id=19803,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=133896,Link="|cff1eff00|Hitem:19803::::::::40:::::::|h[Brownell's Blue Striped Racer]|h|r",EquipLoc="",Type="Miscellaneous"},["Spinefin Halibut"]={SubType="Consumable",Level=55,id=8957,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=133908,Link="|cffffffff|Hitem:8957::::::::40:::::::|h[Spinefin Halibut]|h|r",EquipLoc="",Type="Consumable"},["Ebonhold Leggings"]={SubType="Mail",Level=56,id=8271,StackCount=1,Rarity=2,MinLevel=51,SellPrice=20358,Texture=134583,Link="|cff1eff00|Hitem:8271::::::::40:::::::|h[Ebonhold Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Deprecated Red Linen Sack"]={SubType="Bag",Level=15,id=965,StackCount=1,Rarity=1,MinLevel=0,SellPrice=75,Texture=133623,Link="|cffffffff|Hitem:965::::::::40:::::::|h[Deprecated Red Linen Sack]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Monster - Staff, Ornate Priest Staff"]={SubType="Staves",Level=1,id=2176,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=135145,Type="Weapon",Link="|cff9d9d9d|Hitem:2176::::::::40:::::::|h[Monster - Staff, Ornate Priest Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Deprecated Codex of Sustenance II"]={SubType="Book",Level=21,id=1099,StackCount=1,Rarity=1,MinLevel=21,SellPrice=850,Texture=133741,Link="|cffffffff|Hitem:1099::::::::40:::::::|h[Deprecated Codex of Sustenance II]|h|r",EquipLoc="",Type="Recipe"},["Elixir of Minor Agility"]={SubType="Consumable",Level=12,id=2457,StackCount=5,Rarity=1,MinLevel=2,SellPrice=15,Texture=134871,EquipLoc="",Link="|cffffffff|Hitem:2457::::::::40:::::::|h[Elixir of Minor Agility]|h|r",Type="Consumable"},["Butcher's Apron"]={SubType="Cloth",Level=58,id=12608,StackCount=1,Rarity=3,MinLevel=53,SellPrice=13232,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:12608::::::::40:::::::|h[Butcher's Apron]|h|r"},["Paw of Sin'Dall"]={SubType="Quest",Level=1,id=3879,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132179,Type="Quest",Link="|cffffffff|Hitem:3879::::::::40:::::::|h[Paw of Sin'Dall]|h|r",EquipLoc=""},["Imposing Pants"]={SubType="Leather",Level=45,id=15168,StackCount=1,Rarity=2,MinLevel=40,SellPrice=7951,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15168::::::::40:::::::|h[Imposing Pants]|h|r",Type="Armor"},["Sparklematic-Wrapped Box"]={SubType="Junk",Level=1,id=9363,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=134140,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:9363::::::::40:::::::|h[Sparklematic-Wrapped Box]|h|r"},["Bloodwoven Jerkin"]={SubType="Cloth",Level=51,id=14267,StackCount=1,Rarity=2,MinLevel=46,SellPrice=9926,Texture=135008,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14267::::::::40:::::::|h[Bloodwoven Jerkin]|h|r"},["Dragonflight Leggings"]={SubType="Cloth",Level=51,id=10742,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9589,Texture=134585,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10742::::::::40:::::::|h[Dragonflight Leggings]|h|r",Type="Armor"},["Bloodcaller"]={SubType="One-Handed Swords",Level=68,id=19864,StackCount=1,Rarity=4,MinLevel=60,SellPrice=102408,Texture=135316,Link="|cffa335ee|Hitem:19864::::::::40:::::::|h[Bloodcaller]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Raider's Cloak"]={SubType="Cloth",Level=16,id=9786,StackCount=1,Rarity=2,MinLevel=11,SellPrice=234,Texture=133770,Link="|cff1eff00|Hitem:9786::::::::40:::::::|h[Raider's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Level 65 Test Gear Leather - Rogue 3"]={SubType="Junk",Level=1,id=17856,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17856::::::::40:::::::|h[Level 65 Test Gear Leather - Rogue 3]|h|r",Type="Miscellaneous"},["Battered Chest"]={SubType="Junk",Level=8,id=6356,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132594,EquipLoc="",Link="|cffffffff|Hitem:6356::::::::40:::::::|h[Battered Chest]|h|r",Type="Miscellaneous"},["Staff of Spell Penetration - Frost (TEST)"]={SubType="Staves",Level=63,id=21102,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=135152,Link="|cff0070dd|Hitem:21102::::::::40:::::::|h[Staff of Spell Penetration - Frost (TEST)]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Azure Silk Cloak"]={SubType="Cloth",Level=35,id=7053,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2240,Texture=132655,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:7053::::::::40:::::::|h[Azure Silk Cloak]|h|r",Type="Armor"},["Ivycloth Robe"]={SubType="Cloth",Level=29,id=9798,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1686,Texture=132683,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:9798::::::::40:::::::|h[Ivycloth Robe]|h|r"},["Renegade Chestguard"]={SubType="Mail",Level=38,id=9866,StackCount=1,Rarity=2,MinLevel=33,SellPrice=5605,Texture=132634,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9866::::::::40:::::::|h[Renegade Chestguard]|h|r"},["Damaged Elemental Bracer"]={SubType="Junk",Level=1,id=5447,StackCount=20,Rarity=0,MinLevel=0,SellPrice=20,Texture=132606,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5447::::::::40:::::::|h[Damaged Elemental Bracer]|h|r"},["Ribbly's Head"]={SubType="Quest",Level=1,id=11313,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Type="Quest",Link="|cffffffff|Hitem:11313::::::::40:::::::|h[Ribbly's Head]|h|r",EquipLoc=""},["Mistmantle Family Ring"]={SubType="Quest",Level=1,id=3629,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133343,Link="|cffffffff|Hitem:3629::::::::40:::::::|h[Mistmantle Family Ring]|h|r",EquipLoc="",Type="Quest"},["Tablet of Fire Nova Totem IV"]={SubType="Book",Level=42,id=9128,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9128::::::::40:::::::|h[Tablet of Fire Nova Totem IV]|h|r"},["Staff of Spell Penetration - Fire (TEST)"]={SubType="Staves",Level=63,id=21101,StackCount=1,Rarity=3,MinLevel=58,SellPrice=73633,Texture=135150,Link="|cff0070dd|Hitem:21101::::::::40:::::::|h[Staff of Spell Penetration - Fire (TEST)]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Phantom Armor"]={SubType="Mail",Level=25,id=6642,StackCount=1,Rarity=3,MinLevel=20,SellPrice=1880,Texture=132627,Type="Armor",Link="|cff0070dd|Hitem:6642::::::::40:::::::|h[Phantom Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Ironweave Boots"]={SubType="Cloth",Level=61,id=22311,StackCount=1,Rarity=3,MinLevel=56,SellPrice=14944,Texture=132562,Link="|cff0070dd|Hitem:22311::::::::40:::::::|h[Ironweave Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Book of Tranquility"]={SubType="Book",Level=30,id=5158,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5158::::::::40:::::::|h[Book of Tranquility]|h|r"},["Phoenix Pants"]={SubType="Cloth",Level=25,id=4317,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1076,Texture=134586,Type="Armor",Link="|cff1eff00|Hitem:4317::::::::40:::::::|h[Phoenix Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Encrusted Crystal Fragment"]={SubType="Quest",Level=54,id=17409,StackCount=1,Rarity=2,MinLevel=54,SellPrice=0,Texture=135841,EquipLoc="",Link="|cff1eff00|Hitem:17409::::::::40:::::::|h[Encrusted Crystal Fragment]|h|r",Type="Quest"},["Pattern: Boots of the Enchanter"]={SubType="Tailoring",Level=35,id=4352,StackCount=1,Rarity=2,MinLevel=0,SellPrice=275,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:4352::::::::40:::::::|h[Pattern: Boots of the Enchanter]|h|r",EquipLoc=""},["Cadet Shield"]={SubType="Shields",Level=13,id=9764,StackCount=1,Rarity=2,MinLevel=8,SellPrice=300,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9764::::::::40:::::::|h[Cadet Shield]|h|r"},["Stonecloth Branch"]={SubType="Miscellaneous",Level=39,id=15963,StackCount=1,Rarity=2,MinLevel=34,SellPrice=4887,Texture=135157,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15963::::::::40:::::::|h[Stonecloth Branch]|h|r",Type="Armor"},["Grimoire of Curse of Mannoroth"]={SubType="Book",Level=4,id=3134,StackCount=1,Rarity=1,MinLevel=4,SellPrice=20,Texture=133738,Link="|cffffffff|Hitem:3134::::::::40:::::::|h[Grimoire of Curse of Mannoroth]|h|r",EquipLoc="",Type="Recipe"},["Silk Headband"]={SubType="Cloth",Level=32,id=7050,StackCount=1,Rarity=1,MinLevel=27,SellPrice=999,Texture=133693,EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:7050::::::::40:::::::|h[Silk Headband]|h|r",Type="Armor"},["QAEnchant Bracer +9 Spirit"]={SubType="Consumable",Level=1,id=17829,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17829::::::::40:::::::|h[QAEnchant Bracer +9 Spirit]|h|r",Type="Consumable"},["Grimoire of Consume Shadows (Rank 6)"]={SubType="Book",Level=58,id=16362,StackCount=1,Rarity=1,MinLevel=58,SellPrice=6000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16362::::::::40:::::::|h[Grimoire of Consume Shadows (Rank 6)]|h|r",Type="Recipe"},["Test Parry Chest"]={SubType="Plate",Level=60,id=13714,StackCount=1,Rarity=1,MinLevel=55,SellPrice=9488,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13714::::::::40:::::::|h[Test Parry Chest]|h|r"},["Runic Cane"]={SubType="Miscellaneous",Level=17,id=7559,StackCount=1,Rarity=2,MinLevel=12,SellPrice=666,Texture=135139,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:7559::::::::40:::::::|h[Runic Cane]|h|r",Type="Armor"},["Firewalker Boots"]={SubType="Cloth",Level=24,id=6482,StackCount=1,Rarity=2,MinLevel=0,SellPrice=728,Texture=132539,Type="Armor",Link="|cff1eff00|Hitem:6482::::::::40:::::::|h[Firewalker Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Ghostloom Leggings"]={SubType="Leather",Level=62,id=14545,StackCount=1,Rarity=3,MinLevel=57,SellPrice=26397,Texture=134591,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:14545::::::::40:::::::|h[Ghostloom Leggings]|h|r"},["Codex of Inner Fire V"]={SubType="Book",Level=50,id=9009,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9009::::::::40:::::::|h[Codex of Inner Fire V]|h|r"},["Twilight Tablet Fragment"]={SubType="Quest",Level=1,id=20378,StackCount=20,Rarity=1,MinLevel=1,SellPrice=0,Texture=134419,Link="|cffffffff|Hitem:20378::::::::40:::::::|h[Twilight Tablet Fragment]|h|r",EquipLoc="",Type="Quest"},["Pattern: Shadoweave Mask"]={SubType="Tailoring",Level=49,id=10463,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1750,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10463::::::::40:::::::|h[Pattern: Shadoweave Mask]|h|r",Type="Recipe"},["Qiraji Spiked Hilt"]={SubType="Quest",Level=1,id=20886,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=134886,Link="|cffa335ee|Hitem:20886::::::::40:::::::|h[Qiraji Spiked Hilt]|h|r",EquipLoc="",Type="Quest"},["Sealed Azure Bag"]={SubType="Junk",Level=1,id=19775,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133649,Link="|cffffffff|Hitem:19775::::::::40:::::::|h[Sealed Azure Bag]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Sword, Horde Sword Centurion"]={SubType="One-Handed Swords",Level=1,id=10898,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:10898::::::::40:::::::|h[Monster - Sword, Horde Sword Centurion]|h|r",Type="Weapon"},["Outlaw Sabre"]={SubType="One-Handed Swords",Level=30,id=16886,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5492,Texture=135343,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:16886::::::::40:::::::|h[Outlaw Sabre]|h|r",Type="Weapon"},["Canvas Cloak"]={SubType="Cloth",Level=18,id=1766,StackCount=1,Rarity=0,MinLevel=13,SellPrice=131,Texture=133767,EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:1766::::::::40:::::::|h[Canvas Cloak]|h|r",Type="Armor"},["Elven Wand"]={SubType="Wands",Level=13,id=5604,StackCount=1,Rarity=2,MinLevel=0,SellPrice=380,Texture=135139,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5604::::::::40:::::::|h[Elven Wand]|h|r",Type="Weapon"},["Essence of the Exile"]={SubType="Consumable",Level=1,id=6851,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135227,Type="Consumable",Link="|cffffffff|Hitem:6851::::::::40:::::::|h[Essence of the Exile]|h|r",EquipLoc=""},["Nightglow Concoction"]={SubType="Miscellaneous",Level=18,id=3451,StackCount=1,Rarity=2,MinLevel=0,SellPrice=607,Texture=134799,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:3451::::::::40:::::::|h[Nightglow Concoction]|h|r"},["Glorious Belt"]={SubType="Plate",Level=55,id=14968,StackCount=1,Rarity=2,MinLevel=50,SellPrice=6502,Texture=132500,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14968::::::::40:::::::|h[Glorious Belt]|h|r"},["Skin of the Great Sandworm"]={SubType="Quest",Level=1,id=20931,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=134895,Link="|cffa335ee|Hitem:20931::::::::40:::::::|h[Skin of the Great Sandworm]|h|r",EquipLoc="",Type="Quest"},["Combat Task Briefing III"]={SubType="Quest",Level=60,id=20942,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:20942::::::::40:::::::|h[Combat Task Briefing III]|h|r",EquipLoc="",Type="Quest"},["Nightbrace Tunic"]={SubType="Leather",Level=61,id=12603,StackCount=1,Rarity=3,MinLevel=56,SellPrice=25048,Texture=132741,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:12603::::::::40:::::::|h[Nightbrace Tunic]|h|r"},["Worn Large Shield"]={SubType="Shields",Level=7,id=2213,StackCount=1,Rarity=0,MinLevel=2,SellPrice=24,Texture=134955,Type="Armor",Link="|cff9d9d9d|Hitem:2213::::::::40:::::::|h[Worn Large Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Plagueland Termites"]={SubType="Quest",Level=1,id=15043,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=134321,EquipLoc="",Link="|cffffffff|Hitem:15043::::::::40:::::::|h[Plagueland Termites]|h|r",Type="Quest"},["Sixth Mosh'aru Tablet"]={SubType="Quest",Level=1,id=12741,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134417,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12741::::::::40:::::::|h[Sixth Mosh'aru Tablet]|h|r"},["Valorous Shield"]={SubType="Shields",Level=51,id=8282,StackCount=1,Rarity=2,MinLevel=46,SellPrice=15695,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:8282::::::::40:::::::|h[Valorous Shield]|h|r"},["Native Sandals"]={SubType="Cloth",Level=13,id=14110,StackCount=1,Rarity=1,MinLevel=8,SellPrice=84,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:14110::::::::40:::::::|h[Native Sandals]|h|r"},["Parrot Cage (Senegal)"]={SubType="Junk",Level=20,id=8495,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=136036,Link="|cffffffff|Hitem:8495::::::::40:::::::|h[Parrot Cage (Senegal)]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Shield, Engineer C01"]={SubType="Shields",Level=1,id=11587,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",Link="|cff9d9d9d|Hitem:11587::::::::40:::::::|h[Monster - Shield, Engineer C01]|h|r",EquipLoc="INVTYPE_SHIELD"},["Master's Throwing Dagger"]={SubType="Thrown",Level=65,id=20814,StackCount=200,Rarity=1,MinLevel=60,SellPrice=3,Texture=135427,Link="|cffffffff|Hitem:20814::::::::40:::::::|h[Master's Throwing Dagger]|h|r",EquipLoc="INVTYPE_THROWN",Type="Weapon"},["Big Voodoo Pants"]={SubType="Leather",Level=47,id=8202,StackCount=1,Rarity=2,MinLevel=42,SellPrice=9022,Texture=134582,Link="|cff1eff00|Hitem:8202::::::::40:::::::|h[Big Voodoo Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Elder's Sash"]={SubType="Cloth",Level=31,id=7370,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1012,Texture=132504,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:7370::::::::40:::::::|h[Elder's Sash]|h|r",Type="Armor"},["Short Bastard Sword"]={SubType="Two-Handed Swords",Level=12,id=3192,StackCount=1,Rarity=2,MinLevel=7,SellPrice=495,Texture=135350,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3192::::::::40:::::::|h[Short Bastard Sword]|h|r"},["Pattern: Black Dragonscale Breastplate"]={SubType="Leatherworking",Level=58,id=15759,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5500,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15759::::::::40:::::::|h[Pattern: Black Dragonscale Breastplate]|h|r",Type="Recipe"},["Monster - Gun, Tauren Feathers Silver"]={SubType="Guns",Level=1,id=14642,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135612,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:14642::::::::40:::::::|h[Monster - Gun, Tauren Feathers Silver]|h|r"},["Apprentice's Shirt"]={SubType="Miscellaneous",Level=1,id=6096,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:6096::::::::40:::::::|h[Apprentice's Shirt]|h|r"},["Recipe: Undermine Clam Chowder"]={SubType="Cooking",Level=45,id=16767,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:16767::::::::40:::::::|h[Recipe: Undermine Clam Chowder]|h|r",Type="Recipe"},["Combat Task Briefing XI"]={SubType="Quest",Level=60,id=21256,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21256::::::::40:::::::|h[Combat Task Briefing XI]|h|r",EquipLoc="",Type="Quest"},["Mar'li's Touch"]={SubType="Wands",Level=65,id=19927,StackCount=1,Rarity=4,MinLevel=60,SellPrice=62348,Texture=135468,Link="|cffa335ee|Hitem:19927::::::::40:::::::|h[Mar'li's Touch]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Friendship Bracelet"]={SubType="Consumable",Level=1,id=22260,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=133345,Link="|cffffffff|Hitem:22260::::::::40:::::::|h[Friendship Bracelet]|h|r",EquipLoc="",Type="Consumable"},["Schematic: Bright-Eye Goggles"]={SubType="Engineering",Level=35,id=10601,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10601::::::::40:::::::|h[Schematic: Bright-Eye Goggles]|h|r",Type="Recipe"},["Idol of Life"]={SubType="Quest",Level=61,id=20879,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134902,Link="|cff0070dd|Hitem:20879::::::::40:::::::|h[Idol of Life]|h|r",EquipLoc="",Type="Quest"},["Warmonger's Bracers"]={SubType="Mail",Level=46,id=9956,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5130,Texture=132600,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9956::::::::40:::::::|h[Warmonger's Bracers]|h|r"},["Smokywood Pastures Special Gift"]={SubType="Junk",Level=1,id=17726,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133202,EquipLoc="",Link="|cffffffff|Hitem:17726::::::::40:::::::|h[Smokywood Pastures Special Gift]|h|r",Type="Miscellaneous"},["Bracers of Ten Storms"]={SubType="Mail",Level=76,id=16943,StackCount=1,Rarity=4,MinLevel=60,SellPrice=44904,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16943::::::::40:::::::|h[Bracers of Ten Storms]|h|r",Type="Armor"},["Simple Rune"]={SubType="Quest",Level=1,id=9543,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134419,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9543::::::::40:::::::|h[Simple Rune]|h|r"},["Staunch Hammer"]={SubType="One-Handed Maces",Level=14,id=4569,StackCount=1,Rarity=2,MinLevel=9,SellPrice=612,Texture=133045,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:4569::::::::40:::::::|h[Staunch Hammer]|h|r",Type="Weapon"},["Riverpaw Mystic Staff"]={SubType="Staves",Level=18,id=1391,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1392,Texture=135473,Type="Weapon",Link="|cff1eff00|Hitem:1391::::::::40:::::::|h[Riverpaw Mystic Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Tiger Hide Boots"]={SubType="Leather",Level=12,id=4942,StackCount=1,Rarity=1,MinLevel=0,SellPrice=89,Texture=132542,Link="|cffffffff|Hitem:4942::::::::40:::::::|h[Tiger Hide Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Goblin Nutcracker"]={SubType="One-Handed Maces",Level=43,id=8194,StackCount=1,Rarity=2,MinLevel=38,SellPrice=13877,Texture=133043,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:8194::::::::40:::::::|h[Goblin Nutcracker]|h|r"},["Featherskin Cape"]={SubType="Cloth",Level=54,id=10843,StackCount=1,Rarity=3,MinLevel=49,SellPrice=10595,Texture=133757,EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:10843::::::::40:::::::|h[Featherskin Cape]|h|r",Type="Armor"},["Combat Task Briefing X"]={SubType="Quest",Level=60,id=21255,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21255::::::::40:::::::|h[Combat Task Briefing X]|h|r",EquipLoc="",Type="Quest"},["QAEnchant Shield +8 Frost Resistance"]={SubType="Consumable",Level=1,id=17892,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17892::::::::40:::::::|h[QAEnchant Shield +8 Frost Resistance]|h|r",Type="Consumable"},["Burning Gem"]={SubType="Quest",Level=1,id=6436,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134095,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6436::::::::40:::::::|h[Burning Gem]|h|r"},["Marksman Bands"]={SubType="Mail",Level=56,id=18296,StackCount=1,Rarity=3,MinLevel=51,SellPrice=12322,Texture=132605,Type="Armor",Link="|cff0070dd|Hitem:18296::::::::40:::::::|h[Marksman Bands]|h|r",EquipLoc="INVTYPE_WRIST"},["Pattern: Flarecore Gloves"]={SubType="Tailoring",Level=62,id=17018,StackCount=1,Rarity=1,MinLevel=0,SellPrice=20000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:17018::::::::40:::::::|h[Pattern: Flarecore Gloves]|h|r",Type="Recipe"},["Lunar Wand"]={SubType="Wands",Level=64,id=15283,StackCount=1,Rarity=2,MinLevel=59,SellPrice=37365,Texture=135143,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15283::::::::40:::::::|h[Lunar Wand]|h|r",Type="Weapon"},["Razzashi Coin"]={SubType="Quest",Level=1,id=19699,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=133793,Link="|cff1eff00|Hitem:19699::::::::40:::::::|h[Razzashi Coin]|h|r",EquipLoc="",Type="Quest"},["Ironband's Progress Report"]={SubType="Quest",Level=1,id=2637,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:2637::::::::40:::::::|h[Ironband's Progress Report]|h|r",Type="Quest"},["Befouled Water Globe"]={SubType="Quest",Level=23,id=16408,StackCount=1,Rarity=2,MinLevel=23,SellPrice=0,Texture=136222,EquipLoc="",Link="|cff1eff00|Hitem:16408::::::::40:::::::|h[Befouled Water Globe]|h|r",Type="Quest"},["Abyssal Cloth Wristbands"]={SubType="Cloth",Level=68,id=20690,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14004,Texture=132611,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:20690::::::::40:::::::|h[Abyssal Cloth Wristbands]|h|r"},["Cuirboulli Bracers"]={SubType="Leather",Level=27,id=2144,StackCount=1,Rarity=1,MinLevel=22,SellPrice=527,Texture=132603,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:2144::::::::40:::::::|h[Cuirboulli Bracers]|h|r",Type="Armor"},["Tan Leather Shoulderpads (Test)"]={SubType="Cloth",Level=1,id=906,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:906::::::::40:::::::|h[Tan Leather Shoulderpads (Test)]|h|r",Type="Armor"},["Incendrites"]={SubType="Quest",Level=1,id=16312,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134117,EquipLoc="",Link="|cffffffff|Hitem:16312::::::::40:::::::|h[Incendrites]|h|r",Type="Quest"},["Idol of Rebirth"]={SubType="Quest",Level=61,id=20878,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134906,Link="|cff0070dd|Hitem:20878::::::::40:::::::|h[Idol of Rebirth]|h|r",EquipLoc="",Type="Quest"},["Idol of Night"]={SubType="Quest",Level=61,id=20875,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134903,Link="|cff0070dd|Hitem:20875::::::::40:::::::|h[Idol of Night]|h|r",EquipLoc="",Type="Quest"},["Monster - Gun, Shotgun"]={SubType="Guns",Level=1,id=15460,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135612,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:15460::::::::40:::::::|h[Monster - Gun, Shotgun]|h|r",Type="Weapon"},["Alabaster Idol"]={SubType="Quest",Level=61,id=20873,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134896,Link="|cff0070dd|Hitem:20873::::::::40:::::::|h[Alabaster Idol]|h|r",EquipLoc="",Type="Quest"},["Grimoire of Demon Breath"]={SubType="Book",Level=16,id=1246,StackCount=1,Rarity=1,MinLevel=16,SellPrice=325,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1246::::::::40:::::::|h[Grimoire of Demon Breath]|h|r"},["Rabbit's Foot"]={SubType="Junk",Level=5,id=3300,StackCount=5,Rarity=0,MinLevel=0,SellPrice=9,Texture=132936,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:3300::::::::40:::::::|h[Rabbit's Foot]|h|r"},["Manual of Taunt"]={SubType="Book",Level=10,id=6621,StackCount=1,Rarity=1,MinLevel=10,SellPrice=0,Texture=133735,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:6621::::::::40:::::::|h[Manual of Taunt]|h|r"},["Lambent Idol"]={SubType="Quest",Level=61,id=20868,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134901,Link="|cff0070dd|Hitem:20868::::::::40:::::::|h[Lambent Idol]|h|r",EquipLoc="",Type="Quest"},["[PH] Mail Bracers of the Brilliant Dawn"]={SubType="Mail",Level=100,id=13742,StackCount=1,Rarity=1,MinLevel=100,SellPrice=52122,Texture=132613,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:13742::::::::40:::::::|h[[PH] Mail Bracers of the Brilliant Dawn]|h|r"},["Heavy Lamellar Boots"]={SubType="Plate",Level=52,id=10238,StackCount=1,Rarity=2,MinLevel=47,SellPrice=7650,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10238::::::::40:::::::|h[Heavy Lamellar Boots]|h|r",Type="Armor"},["Large Soran'ruk Fragment"]={SubType="Quest",Level=1,id=6915,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134333,Link="|cffffffff|Hitem:6915::::::::40:::::::|h[Large Soran'ruk Fragment]|h|r",EquipLoc="",Type="Quest"},["Onyx Idol"]={SubType="Quest",Level=61,id=20867,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134905,Link="|cff0070dd|Hitem:20867::::::::40:::::::|h[Onyx Idol]|h|r",EquipLoc="",Type="Quest"},["Nekrum's Medallion"]={SubType="Quest",Level=1,id=9471,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133276,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9471::::::::40:::::::|h[Nekrum's Medallion]|h|r"},["Shriveled Heart"]={SubType="Miscellaneous",Level=45,id=9243,StackCount=1,Rarity=2,MinLevel=40,SellPrice=8155,Texture=134338,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:9243::::::::40:::::::|h[Shriveled Heart]|h|r"},["Icy Scale Breastplate"]={SubType="Mail",Level=80,id=22664,StackCount=1,Rarity=4,MinLevel=60,SellPrice=100642,Texture=132744,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:22664::::::::40:::::::|h[Icy Scale Breastplate]|h|r"},["Enchanted Thorium Bar"]={SubType="Trade Goods",Level=55,id=12655,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=133229,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12655::::::::40:::::::|h[Enchanted Thorium Bar]|h|r"},["Mild Spices"]={SubType="Trade Goods",Level=5,id=2678,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134059,Link="|cffffffff|Hitem:2678::::::::40:::::::|h[Mild Spices]|h|r",EquipLoc="",Type="Trade Goods"},["Crystal Scarab"]={SubType="Quest",Level=1,id=20862,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=134932,Link="|cff1eff00|Hitem:20862::::::::40:::::::|h[Crystal Scarab]|h|r",EquipLoc="",Type="Quest"},["Stone Scarab"]={SubType="Quest",Level=1,id=20858,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=134936,Link="|cff1eff00|Hitem:20858::::::::40:::::::|h[Stone Scarab]|h|r",EquipLoc="",Type="Quest"},["Sack of Rye"]={SubType="Quest",Level=1,id=740,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134059,Link="|cffffffff|Hitem:740::::::::40:::::::|h[Sack of Rye]|h|r",EquipLoc="",Type="Quest"},["Message in a Bottle"]={SubType="Junk",Level=0,id=6307,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132799,Type="Miscellaneous",Link="|cffffffff|Hitem:6307::::::::40:::::::|h[Message in a Bottle]|h|r",EquipLoc=""},["Dal Bloodclaw's Skull"]={SubType="Quest",Level=1,id=5544,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133731,Link="|cffffffff|Hitem:5544::::::::40:::::::|h[Dal Bloodclaw's Skull]|h|r",EquipLoc="",Type="Quest"},["Merciful Greaves"]={SubType="Mail",Level=59,id=18318,StackCount=1,Rarity=3,MinLevel=54,SellPrice=22057,Texture=132535,Type="Armor",Link="|cff0070dd|Hitem:18318::::::::40:::::::|h[Merciful Greaves]|h|r",EquipLoc="INVTYPE_FEET"},["Royal Mallet"]={SubType="Two-Handed Maces",Level=50,id=15263,StackCount=1,Rarity=2,MinLevel=45,SellPrice=28889,Texture=133048,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15263::::::::40:::::::|h[Royal Mallet]|h|r",Type="Weapon"},["Monster - Sword, Katana"]={SubType="One-Handed Swords",Level=1,id=10613,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:10613::::::::40:::::::|h[Monster - Sword, Katana]|h|r",Type="Weapon"},["Scroll of Intellect"]={SubType="Consumable",Level=15,id=955,StackCount=5,Rarity=1,MinLevel=5,SellPrice=37,Texture=134937,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:955::::::::40:::::::|h[Scroll of Intellect]|h|r"},["Thorium Ore"]={SubType="Trade Goods",Level=40,id=10620,StackCount=10,Rarity=1,MinLevel=0,SellPrice=250,Texture=134578,EquipLoc="",Link="|cffffffff|Hitem:10620::::::::40:::::::|h[Thorium Ore]|h|r",Type="Trade Goods"},["Disgusting Oozeling"]={SubType="Junk",Level=55,id=20769,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=132107,Link="|cffffffff|Hitem:20769::::::::40:::::::|h[Disgusting Oozeling]|h|r",EquipLoc="",Type="Miscellaneous"},["Pattern: Deviate Scale Gloves"]={SubType="Leatherworking",Level=21,id=6475,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:6475::::::::40:::::::|h[Pattern: Deviate Scale Gloves]|h|r",EquipLoc=""},["Slimy Bag"]={SubType="Junk",Level=30,id=20766,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133642,Link="|cffffffff|Hitem:20766::::::::40:::::::|h[Slimy Bag]|h|r",EquipLoc="",Type="Miscellaneous"},["Belnistrasz's Oathstone"]={SubType="Quest",Level=0,id=10682,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134420,EquipLoc="",Link="|cffffffff|Hitem:10682::::::::40:::::::|h[Belnistrasz's Oathstone]|h|r",Type="Quest"},["Gryphon Feather Quill"]={SubType="Junk",Level=1,id=3766,StackCount=10,Rarity=0,MinLevel=0,SellPrice=30,Texture=132921,EquipLoc="",Link="|cff9d9d9d|Hitem:3766::::::::40:::::::|h[Gryphon Feather Quill]|h|r",Type="Miscellaneous"},["Mana Potion"]={SubType="Consumable",Level=32,id=3827,StackCount=5,Rarity=1,MinLevel=22,SellPrice=120,Texture=134852,Link="|cffffffff|Hitem:3827::::::::40:::::::|h[Mana Potion]|h|r",EquipLoc="",Type="Consumable"},["Formula: Lesser Wizard Oil"]={SubType="Enchanting",Level=40,id=20753,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134327,Link="|cffffffff|Hitem:20753::::::::40:::::::|h[Formula: Lesser Wizard Oil]|h|r",EquipLoc="",Type="Recipe"},["Pridelord Halo"]={SubType="Leather",Level=58,id=14676,StackCount=1,Rarity=2,MinLevel=53,SellPrice=13841,Texture=133076,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14676::::::::40:::::::|h[Pridelord Halo]|h|r"},["Hatchet of Sundered Bone"]={SubType="One-Handed Axes",Level=83,id=22816,StackCount=1,Rarity=4,MinLevel=60,SellPrice=213775,Texture=132399,Link="|cffa335ee|Hitem:22816::::::::40:::::::|h[Hatchet of Sundered Bone]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Gaea's Leggings"]={SubType="Cloth",Level=51,id=14274,StackCount=1,Rarity=2,MinLevel=46,SellPrice=10448,Texture=134591,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14274::::::::40:::::::|h[Gaea's Leggings]|h|r"},["Deadwood Ritual Totem"]={SubType="Junk",Level=45,id=20741,StackCount=1,Rarity=1,MinLevel=45,SellPrice=0,Texture=136232,Link="|cffffffff|Hitem:20741::::::::40:::::::|h[Deadwood Ritual Totem]|h|r",EquipLoc="",Type="Miscellaneous"},["Carefully Wrapped Present"]={SubType="Junk",Level=1,id=21191,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133202,Link="|cffffffff|Hitem:21191::::::::40:::::::|h[Carefully Wrapped Present]|h|r",EquipLoc="",Type="Miscellaneous"},["Festive Blue Pant Suit"]={SubType="Miscellaneous",Level=1,id=21544,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132693,Link="|cffffffff|Hitem:21544::::::::40:::::::|h[Festive Blue Pant Suit]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["[PH] Shining Dawn Hat"]={SubType="Cloth",Level=100,id=13788,StackCount=1,Rarity=1,MinLevel=100,SellPrice=50100,Texture=133116,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:13788::::::::40:::::::|h[[PH] Shining Dawn Hat]|h|r"},["Heavy Junkbox"]={SubType="Junk",Level=50,id=16885,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132596,EquipLoc="",Link="|cffffffff|Hitem:16885::::::::40:::::::|h[Heavy Junkbox]|h|r",Type="Miscellaneous"},["Ghost Hair Thread"]={SubType="Quest",Level=1,id=1596,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134324,Type="Quest",Link="|cffffffff|Hitem:1596::::::::40:::::::|h[Ghost Hair Thread]|h|r",EquipLoc=""},["Gri'lek's Charm of Might"]={SubType="Miscellaneous",Level=65,id=19951,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133306,Link="|cffa335ee|Hitem:19951::::::::40:::::::|h[Gri'lek's Charm of Might]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["High Councillor's Mantle"]={SubType="Cloth",Level=62,id=10142,StackCount=1,Rarity=2,MinLevel=57,SellPrice=13401,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10142::::::::40:::::::|h[High Councillor's Mantle]|h|r",Type="Armor"},["Hetaera's Blood"]={SubType="Quest",Level=1,id=10610,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134821,EquipLoc="",Link="|cffffffff|Hitem:10610::::::::40:::::::|h[Hetaera's Blood]|h|r",Type="Quest"},["Canvas Bracers"]={SubType="Cloth",Level=19,id=3377,StackCount=1,Rarity=0,MinLevel=14,SellPrice=99,Texture=132612,Link="|cff9d9d9d|Hitem:3377::::::::40:::::::|h[Canvas Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Formula: Enchant Cloak - Dodge"]={SubType="Enchanting",Level=70,id=20736,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25000,Texture=134327,Link="|cff0070dd|Hitem:20736::::::::40:::::::|h[Formula: Enchant Cloak - Dodge]|h|r",EquipLoc="",Type="Recipe"},["High Warlord's Right Claw"]={SubType="Fist Weapons",Level=78,id=18844,StackCount=1,Rarity=4,MinLevel=60,SellPrice=49516,Texture=134296,Type="Weapon",Link="|cffa335ee|Hitem:18844::::::::40:::::::|h[High Warlord's Right Claw]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Dalaran Mana Gem"]={SubType="Quest",Level=1,id=7293,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134138,EquipLoc="",Link="|cffffffff|Hitem:7293::::::::40:::::::|h[Dalaran Mana Gem]|h|r",Type="Quest"},["Old Blanchy's Blanket"]={SubType="Cloth",Level=10,id=2165,StackCount=1,Rarity=1,MinLevel=0,SellPrice=45,Texture=133762,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:2165::::::::40:::::::|h[Old Blanchy's Blanket]|h|r",Type="Armor"},["Dark Whisper Blade"]={SubType="Daggers",Level=65,id=20720,StackCount=1,Rarity=3,MinLevel=60,SellPrice=60551,Texture=135652,Link="|cff0070dd|Hitem:20720::::::::40:::::::|h[Dark Whisper Blade]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Tactical Task Briefing VIII"]={SubType="Quest",Level=60,id=21167,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21167::::::::40:::::::|h[Tactical Task Briefing VIII]|h|r",EquipLoc="",Type="Quest"},["Deprecated Glade Bear Fang"]={SubType="Quest",Level=1,id=3410,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,Link="|cffffffff|Hitem:3410::::::::40:::::::|h[Deprecated Glade Bear Fang]|h|r",EquipLoc="",Type="Quest"},["Essence of the Firelord"]={SubType="Quest",Level=1,id=19017,StackCount=1,Rarity=5,MinLevel=0,SellPrice=0,Texture=135826,Link="|cffff8000|Hitem:19017::::::::40:::::::|h[Essence of the Firelord]|h|r",EquipLoc="",Type="Quest"},["Plaguebloom"]={SubType="Trade Goods",Level=57,id=13466,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=134219,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:13466::::::::40:::::::|h[Plaguebloom]|h|r"},["Twill Cover"]={SubType="Cloth",Level=56,id=8754,StackCount=1,Rarity=0,MinLevel=51,SellPrice=3937,Texture=133135,Link="|cff9d9d9d|Hitem:8754::::::::40:::::::|h[Twill Cover]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Lord's Girdle"]={SubType="Mail",Level=50,id=10081,StackCount=1,Rarity=2,MinLevel=45,SellPrice=7345,Texture=132524,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10081::::::::40:::::::|h[Lord's Girdle]|h|r",Type="Armor"},["Bloated Rockscale Cod"]={SubType="Consumable",Level=35,id=21164,StackCount=1,Rarity=1,MinLevel=25,SellPrice=100,Texture=133890,Link="|cffffffff|Hitem:21164::::::::40:::::::|h[Bloated Rockscale Cod]|h|r",EquipLoc="",Type="Consumable"},["Pyrestone Orb"]={SubType="Miscellaneous",Level=55,id=10709,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10953,Texture=134337,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:10709::::::::40:::::::|h[Pyrestone Orb]|h|r",Type="Armor"},["Codex of Shadow Word: Befuddle II"]={SubType="Book",Level=36,id=4277,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4277::::::::40:::::::|h[Codex of Shadow Word: Befuddle II]|h|r"},["Lambent Scale Pauldrons"]={SubType="Mail",Level=27,id=4705,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1449,Texture=135039,Link="|cff1eff00|Hitem:4705::::::::40:::::::|h[Lambent Scale Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Lodestone Necklace"]={SubType="Miscellaneous",Level=44,id=12031,StackCount=1,Rarity=2,MinLevel=39,SellPrice=7894,Texture=133294,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12031::::::::40:::::::|h[Lodestone Necklace]|h|r"},["Goretusk Liver"]={SubType="Trade Goods",Level=12,id=723,StackCount=10,Rarity=1,MinLevel=0,SellPrice=15,Texture=134341,Link="|cffffffff|Hitem:723::::::::40:::::::|h[Goretusk Liver]|h|r",EquipLoc="",Type="Trade Goods"},["Cenarion Reservist's Legguards"]={SubType="Mail",Level=63,id=20702,StackCount=1,Rarity=3,MinLevel=0,SellPrice=35358,Texture=134660,Link="|cff0070dd|Hitem:20702::::::::40:::::::|h[Cenarion Reservist's Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Bristlebark Britches"]={SubType="Leather",Level=26,id=14574,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1568,Texture=134587,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14574::::::::40:::::::|h[Bristlebark Britches]|h|r"},["Crystalline Threaded Cape"]={SubType="Cloth",Level=63,id=20697,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16903,Texture=133771,Link="|cff0070dd|Hitem:20697::::::::40:::::::|h[Crystalline Threaded Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Palestrider Gloves"]={SubType="Mail",Level=25,id=15463,StackCount=1,Rarity=2,MinLevel=0,SellPrice=787,Texture=132943,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15463::::::::40:::::::|h[Palestrider Gloves]|h|r",Type="Armor"},["Energized Sparkplug"]={SubType="Consumable",Level=42,id=18209,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1231,Texture=133001,Type="Consumable",Link="|cffffffff|Hitem:18209::::::::40:::::::|h[Energized Sparkplug]|h|r",EquipLoc=""},["Crystal Spiked Maul"]={SubType="Two-Handed Maces",Level=63,id=20696,StackCount=1,Rarity=3,MinLevel=58,SellPrice=70171,Texture=133047,Link="|cff0070dd|Hitem:20696::::::::40:::::::|h[Crystal Spiked Maul]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Buckler of the Seas"]={SubType="Shields",Level=20,id=1557,StackCount=1,Rarity=2,MinLevel=0,SellPrice=918,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:1557::::::::40:::::::|h[Buckler of the Seas]|h|r"},["Zodiac Gloves"]={SubType="Cloth",Level=33,id=7106,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1234,Texture=132954,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7106::::::::40:::::::|h[Zodiac Gloves]|h|r",Type="Armor"},["Ancient Statuette"]={SubType="Quest",Level=1,id=5424,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134230,Link="|cffffffff|Hitem:5424::::::::40:::::::|h[Ancient Statuette]|h|r",EquipLoc="",Type="Quest"},["Rawhide Tunic"]={SubType="Leather",Level=21,id=1802,StackCount=1,Rarity=0,MinLevel=16,SellPrice=337,Texture=132724,EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:1802::::::::40:::::::|h[Rawhide Tunic]|h|r",Type="Armor"},["Icemail Jerkin"]={SubType="Mail",Level=44,id=1981,StackCount=1,Rarity=4,MinLevel=39,SellPrice=14113,Texture=132741,Link="|cffa335ee|Hitem:1981::::::::40:::::::|h[Icemail Jerkin]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Skullforge Reaver"]={SubType="One-Handed Swords",Level=63,id=13361,StackCount=1,Rarity=3,MinLevel=58,SellPrice=56730,Texture=135302,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13361::::::::40:::::::|h[Skullforge Reaver]|h|r"},["Worn Leather Book"]={SubType="Quest",Level=1,id=3659,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133739,Link="|cffffffff|Hitem:3659::::::::40:::::::|h[Worn Leather Book]|h|r",EquipLoc="",Type="Quest"},["Plans: Ironvine Belt"]={SubType="Blacksmithing",Level=70,id=22768,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:22768::::::::40:::::::|h[Plans: Ironvine Belt]|h|r"},["Nissa's Remains"]={SubType="Quest",Level=1,id=2828,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,Link="|cffffffff|Hitem:2828::::::::40:::::::|h[Nissa's Remains]|h|r",EquipLoc="",Type="Quest"},["Jitters' Completed Journal"]={SubType="Quest",Level=1,id=2560,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,Link="|cffffffff|Hitem:2560::::::::40:::::::|h[Jitters' Completed Journal]|h|r",EquipLoc="",Type="Quest"},["Excavator's Utility Belt"]={SubType="Leather",Level=55,id=11909,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8267,Texture=132498,Type="Armor",Link="|cff1eff00|Hitem:11909::::::::40:::::::|h[Excavator's Utility Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Formula: Enchant Shield - Frost Resistance"]={SubType="Enchanting",Level=47,id=11224,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1450,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11224::::::::40:::::::|h[Formula: Enchant Shield - Frost Resistance]|h|r",EquipLoc=""},["Stormstout"]={SubType="Consumable",Level=15,id=4952,StackCount=10,Rarity=1,MinLevel=0,SellPrice=63,Texture=132791,Link="|cffffffff|Hitem:4952::::::::40:::::::|h[Stormstout]|h|r",EquipLoc="",Type="Consumable"},["Rivenspike"]={SubType="One-Handed Axes",Level=58,id=13286,StackCount=1,Rarity=3,MinLevel=53,SellPrice=44106,Texture=134710,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13286::::::::40:::::::|h[Rivenspike]|h|r"},["Deprecated Orc Apprentice Pants"]={SubType="Cloth",Level=1,id=124,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:124::::::::40:::::::|h[Deprecated Orc Apprentice Pants]|h|r",Type="Armor"},["Umi's Mechanical Yeti"]={SubType="Quest",Level=1,id=12928,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133003,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12928::::::::40:::::::|h[Umi's Mechanical Yeti]|h|r"},["Grand Marshal's Left Hand Blade"]={SubType="Fist Weapons",Level=78,id=18847,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50043,Texture=132302,Type="Weapon",Link="|cffa335ee|Hitem:18847::::::::40:::::::|h[Grand Marshal's Left Hand Blade]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND"},["Book of Healing Touch X"]={SubType="Book",Level=56,id=8794,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=133743,Link="|cffffffff|Hitem:8794::::::::40:::::::|h[Book of Healing Touch X]|h|r",EquipLoc="",Type="Recipe"},["Sword of Omen"]={SubType="One-Handed Swords",Level=44,id=6802,StackCount=1,Rarity=3,MinLevel=0,SellPrice=18255,Texture=135317,Type="Weapon",Link="|cff0070dd|Hitem:6802::::::::40:::::::|h[Sword of Omen]|h|r",EquipLoc="INVTYPE_WEAPON"},["Tablet of Frostbrand Weapon"]={SubType="Book",Level=20,id=9057,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9057::::::::40:::::::|h[Tablet of Frostbrand Weapon]|h|r"},["Witch Doctor's Cane"]={SubType="Staves",Level=47,id=9482,StackCount=1,Rarity=3,MinLevel=42,SellPrice=29585,Texture=135168,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9482::::::::40:::::::|h[Witch Doctor's Cane]|h|r"},["Fortified Cloak"]={SubType="Cloth",Level=22,id=9812,StackCount=1,Rarity=2,MinLevel=17,SellPrice=570,Texture=133766,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9812::::::::40:::::::|h[Fortified Cloak]|h|r"},["Iron Shield Spike"]={SubType="Trade Goods",Level=30,id=6042,StackCount=5,Rarity=1,MinLevel=0,SellPrice=250,Texture=133596,Link="|cffffffff|Hitem:6042::::::::40:::::::|h[Iron Shield Spike]|h|r",EquipLoc="",Type="Trade Goods"},["Darkstone Claymore"]={SubType="Two-Handed Swords",Level=62,id=20669,StackCount=1,Rarity=3,MinLevel=57,SellPrice=70120,Texture=135345,Link="|cff0070dd|Hitem:20669::::::::40:::::::|h[Darkstone Claymore]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Kodo Rustler Boots"]={SubType="Cloth",Level=38,id=15697,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2825,Texture=132543,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15697::::::::40:::::::|h[Kodo Rustler Boots]|h|r",Type="Armor"},["Wristguards of Undead Slaying"]={SubType="Mail",Level=63,id=23092,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16476,Texture=132615,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:23092::::::::40:::::::|h[Wristguards of Undead Slaying]|h|r"},["Deprecated Moon Glaive"]={SubType="One-Handed Swords",Level=23,id=3933,StackCount=1,Rarity=3,MinLevel=18,SellPrice=2670,Texture=135131,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:3933::::::::40:::::::|h[Deprecated Moon Glaive]|h|r",Type="Weapon"},["Slimy Ichor"]={SubType="Junk",Level=1,id=3676,StackCount=10,Rarity=0,MinLevel=0,SellPrice=106,Texture=134437,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:3676::::::::40:::::::|h[Slimy Ichor]|h|r",EquipLoc=""},["Rough Blasting Powder"]={SubType="Parts",Level=5,id=4357,StackCount=20,Rarity=1,MinLevel=0,SellPrice=4,Texture=133848,Link="|cffffffff|Hitem:4357::::::::40:::::::|h[Rough Blasting Powder]|h|r",EquipLoc="",Type="Trade Goods"},["Greater Nature Protection Potion"]={SubType="Consumable",Level=58,id=13458,StackCount=5,Rarity=1,MinLevel=48,SellPrice=750,Texture=134802,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13458::::::::40:::::::|h[Greater Nature Protection Potion]|h|r"},["Sentry Buckler"]={SubType="Shields",Level=28,id=3743,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2451,Texture=134955,Type="Armor",Link="|cff1eff00|Hitem:3743::::::::40:::::::|h[Sentry Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Codex of Renew II"]={SubType="Book",Level=14,id=1088,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133741,Type="Recipe",Link="|cffffffff|Hitem:1088::::::::40:::::::|h[Codex of Renew II]|h|r",EquipLoc=""},["Steadfast Shoulders"]={SubType="Mail",Level=42,id=15597,StackCount=1,Rarity=2,MinLevel=37,SellPrice=5642,Texture=135052,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15597::::::::40:::::::|h[Steadfast Shoulders]|h|r",Type="Armor"},["Serpentskin Cloak"]={SubType="Cloth",Level=50,id=8259,StackCount=1,Rarity=2,MinLevel=45,SellPrice=9144,Texture=133769,Link="|cff1eff00|Hitem:8259::::::::40:::::::|h[Serpentskin Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Abyssal Leather Gloves"]={SubType="Leather",Level=60,id=20661,StackCount=1,Rarity=2,MinLevel=55,SellPrice=10295,Texture=132939,Link="|cff1eff00|Hitem:20661::::::::40:::::::|h[Abyssal Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Linked Chain Shoulderpads"]={SubType="Mail",Level=21,id=1752,StackCount=1,Rarity=0,MinLevel=16,SellPrice=286,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:1752::::::::40:::::::|h[Linked Chain Shoulderpads]|h|r",Type="Armor"},["Crystal Tipped Stiletto"]={SubType="Daggers",Level=60,id=20657,StackCount=1,Rarity=3,MinLevel=55,SellPrice=47443,Texture=135663,Link="|cff0070dd|Hitem:20657::::::::40:::::::|h[Crystal Tipped Stiletto]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Twilight Armor"]={SubType="Cloth",Level=40,id=7429,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4620,Texture=135017,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7429::::::::40:::::::|h[Twilight Armor]|h|r",Type="Armor"},["Monster - Sword, Long Ornate"]={SubType="One-Handed Swords",Level=1,id=2178,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135271,Type="Weapon",Link="|cff9d9d9d|Hitem:2178::::::::40:::::::|h[Monster - Sword, Long Ornate]|h|r",EquipLoc="INVTYPE_WEAPON"},["Sheathed Trol'kalar"]={SubType="Quest",Level=1,id=4468,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135272,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4468::::::::40:::::::|h[Sheathed Trol'kalar]|h|r"},["Fiery Gland"]={SubType="Junk",Level=1,id=4557,StackCount=10,Rarity=0,MinLevel=0,SellPrice=225,Texture=135813,EquipLoc="",Link="|cff9d9d9d|Hitem:4557::::::::40:::::::|h[Fiery Gland]|h|r",Type="Miscellaneous"},["Cougar Claws"]={SubType="Quest",Level=1,id=4802,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134297,Link="|cffffffff|Hitem:4802::::::::40:::::::|h[Cougar Claws]|h|r",EquipLoc="",Type="Quest"},["Tazan's Key"]={SubType="Quest",Level=1,id=7208,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134242,EquipLoc="",Link="|cffffffff|Hitem:7208::::::::40:::::::|h[Tazan's Key]|h|r",Type="Quest"},["Yowler's Paw"]={SubType="Quest",Level=1,id=3614,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134297,Type="Quest",Link="|cffffffff|Hitem:3614::::::::40:::::::|h[Yowler's Paw]|h|r",EquipLoc=""},["Grimoire of Rain of Fire II"]={SubType="Book",Level=40,id=5728,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133738,Link="|cffffffff|Hitem:5728::::::::40:::::::|h[Grimoire of Rain of Fire II]|h|r",EquipLoc="",Type="Recipe"},["Woodland Tunic"]={SubType="Leather",Level=5,id=4907,StackCount=1,Rarity=1,MinLevel=0,SellPrice=13,Texture=132724,Link="|cffffffff|Hitem:4907::::::::40:::::::|h[Woodland Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Brightcloth Cloak"]={SubType="Cloth",Level=55,id=14103,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9716,Texture=133763,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14103::::::::40:::::::|h[Brightcloth Cloak]|h|r"},["Webbed Pants"]={SubType="Cloth",Level=3,id=3263,StackCount=1,Rarity=1,MinLevel=1,SellPrice=4,Texture=134582,Link="|cffffffff|Hitem:3263::::::::40:::::::|h[Webbed Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Trapper's Pants"]={SubType="Cloth",Level=1,id=6131,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:6131::::::::40:::::::|h[Trapper's Pants]|h|r"},["Codex of Holy Word: Fortitude V"]={SubType="Book",Level=48,id=9004,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9004::::::::40:::::::|h[Codex of Holy Word: Fortitude V]|h|r"},["Leggings of the Demented Mind"]={SubType="Mail",Level=72,id=20638,StackCount=1,Rarity=4,MinLevel=60,SellPrice=70220,Texture=134667,Link="|cffa335ee|Hitem:20638::::::::40:::::::|h[Leggings of the Demented Mind]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Cadaverous Belt"]={SubType="Leather",Level=61,id=14636,StackCount=1,Rarity=3,MinLevel=56,SellPrice=12476,Texture=132505,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:14636::::::::40:::::::|h[Cadaverous Belt]|h|r"},["War Knife"]={SubType="Daggers",Level=17,id=4571,StackCount=1,Rarity=2,MinLevel=12,SellPrice=979,Texture=135651,Link="|cff1eff00|Hitem:4571::::::::40:::::::|h[War Knife]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Green Whelp Armor"]={SubType="Leather",Level=35,id=7375,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3773,Texture=132631,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7375::::::::40:::::::|h[Green Whelp Armor]|h|r"},["Acid Inscribed Pauldrons"]={SubType="Plate",Level=72,id=20637,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34030,Texture=135042,Link="|cffa335ee|Hitem:20637::::::::40:::::::|h[Acid Inscribed Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Infiltrator Pants"]={SubType="Leather",Level=34,id=7414,StackCount=1,Rarity=2,MinLevel=29,SellPrice=3175,Texture=134587,Link="|cff1eff00|Hitem:7414::::::::40:::::::|h[Infiltrator Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Smoldering Embers"]={SubType="Quest",Level=1,id=5659,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135231,EquipLoc="",Link="|cffffffff|Hitem:5659::::::::40:::::::|h[Smoldering Embers]|h|r",Type="Quest"},["Deprecated Fine Copper Lockpick"]={SubType="Lockpick",Level=15,id=2791,StackCount=10,Rarity=1,MinLevel=1,SellPrice=25,Texture=134065,EquipLoc="",Link="|cffffffff|Hitem:2791::::::::40:::::::|h[Deprecated Fine Copper Lockpick]|h|r",Type="Key"},["Blood Guard's Chain Gauntlets"]={SubType="Mail",Level=63,id=16530,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8896,Texture=132951,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16530::::::::40:::::::|h[Blood Guard's Chain Gauntlets]|h|r",Type="Armor"},["Stiff Recurve Bow"]={SubType="Bows",Level=28,id=2785,StackCount=1,Rarity=0,MinLevel=23,SellPrice=1062,Texture=135493,Link="|cff9d9d9d|Hitem:2785::::::::40:::::::|h[Stiff Recurve Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Grimoire of Curse of Sargeras II"]={SubType="Book",Level=24,id=4206,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1250,Texture=133738,Type="Recipe",Link="|cffffffff|Hitem:4206::::::::40:::::::|h[Grimoire of Curse of Sargeras II]|h|r",EquipLoc=""},["Gauntlets of the Shining Light"]={SubType="Plate",Level=72,id=20630,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24459,Texture=132963,Link="|cffa335ee|Hitem:20630::::::::40:::::::|h[Gauntlets of the Shining Light]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Foror's Eyepatch"]={SubType="Leather",Level=65,id=19945,StackCount=1,Rarity=4,MinLevel=60,SellPrice=30936,Texture=133148,Link="|cffa335ee|Hitem:19945::::::::40:::::::|h[Foror's Eyepatch]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Recipe: Cooked Glossy Mightfish"]={SubType="Cooking",Level=45,id=13940,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13940::::::::40:::::::|h[Recipe: Cooked Glossy Mightfish]|h|r"},["Zandalar Augur's Bracers"]={SubType="Mail",Level=61,id=19830,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132614,Link="|cffa335ee|Hitem:19830::::::::40:::::::|h[Zandalar Augur's Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Stormcloth Pants"]={SubType="Cloth",Level=44,id=10010,StackCount=1,Rarity=2,MinLevel=39,SellPrice=5729,Texture=134593,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10010::::::::40:::::::|h[Stormcloth Pants]|h|r",Type="Armor"},["Superior Boots"]={SubType="Leather",Level=26,id=9802,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1204,Texture=132537,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9802::::::::40:::::::|h[Superior Boots]|h|r"},["Triage Bandage"]={SubType="Quest",Level=1,id=16991,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133682,EquipLoc="",Link="|cffffffff|Hitem:16991::::::::40:::::::|h[Triage Bandage]|h|r",Type="Quest"},["Redemption Headpiece"]={SubType="Plate",Level=88,id=22428,StackCount=1,Rarity=4,MinLevel=60,SellPrice=77225,Texture=133117,Link="|cffa335ee|Hitem:22428::::::::40:::::::|h[Redemption Headpiece]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Feral Leggings"]={SubType="Leather",Level=20,id=15312,StackCount=1,Rarity=2,MinLevel=15,SellPrice=745,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15312::::::::40:::::::|h[Feral Leggings]|h|r",Type="Armor"},["Blood Guard's Dreadweave Walkers"]={SubType="Cloth",Level=66,id=22855,StackCount=1,Rarity=3,MinLevel=60,SellPrice=9536,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:22855::::::::40:::::::|h[Blood Guard's Dreadweave Walkers]|h|r"},["Nightshade Leggings"]={SubType="Leather",Level=62,id=10227,StackCount=1,Rarity=2,MinLevel=57,SellPrice=23348,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10227::::::::40:::::::|h[Nightshade Leggings]|h|r",Type="Armor"},["Fel Tracker Owner's Manual"]={SubType="Quest",Level=1,id=10832,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:10832::::::::40:::::::|h[Fel Tracker Owner's Manual]|h|r",Type="Quest"},["Clasped Belt"]={SubType="Mail",Level=8,id=3437,StackCount=1,Rarity=1,MinLevel=0,SellPrice=23,Texture=132492,Type="Armor",Link="|cffffffff|Hitem:3437::::::::40:::::::|h[Clasped Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Permanent Lung Juice Cocktail"]={SubType="Consumable",Level=1,id=23715,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132799,Link="|cffffffff|Hitem:23715::::::::40:::::::|h[Permanent Lung Juice Cocktail]|h|r",EquipLoc="",Type="Consumable"},["Monster - Staff, Jeweled D01 Green"]={SubType="Staves",Level=1,id=11588,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",Link="|cff9d9d9d|Hitem:11588::::::::40:::::::|h[Monster - Staff, Jeweled D01 Green]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Deadly Throwing Axe"]={SubType="Thrown",Level=27,id=3137,StackCount=200,Rarity=1,MinLevel=22,SellPrice=0,Texture=135423,EquipLoc="INVTYPE_THROWN",Link="|cffffffff|Hitem:3137::::::::40:::::::|h[Deadly Throwing Axe]|h|r",Type="Weapon"},["Carving Knife"]={SubType="Daggers",Level=11,id=2140,StackCount=1,Rarity=2,MinLevel=6,SellPrice=323,Texture=135637,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:2140::::::::40:::::::|h[Carving Knife]|h|r",Type="Weapon"},["Jennea's Flask"]={SubType="Quest",Level=1,id=7207,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132788,EquipLoc="",Link="|cffffffff|Hitem:7207::::::::40:::::::|h[Jennea's Flask]|h|r",Type="Quest"},["Willow Boots"]={SubType="Cloth",Level=15,id=6537,StackCount=1,Rarity=2,MinLevel=10,SellPrice=210,Texture=132537,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:6537::::::::40:::::::|h[Willow Boots]|h|r",Type="Armor"},["Book of Healing Touch"]={SubType="Book",Level=8,id=8745,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8745::::::::40:::::::|h[Book of Healing Touch]|h|r"},["Pattern: Volcanic Shoulders"]={SubType="Leatherworking",Level=61,id=15775,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15775::::::::40:::::::|h[Pattern: Volcanic Shoulders]|h|r",Type="Recipe"},["The Jaw Breaker"]={SubType="One-Handed Maces",Level=61,id=22322,StackCount=1,Rarity=3,MinLevel=56,SellPrice=53054,Texture=133490,Link="|cff0070dd|Hitem:22322::::::::40:::::::|h[The Jaw Breaker]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Demon Guard"]={SubType="Shields",Level=63,id=10366,StackCount=1,Rarity=2,MinLevel=58,SellPrice=32052,Texture=136185,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:10366::::::::40:::::::|h[Demon Guard]|h|r",Type="Armor"},["Plans: Runic Breastplate"]={SubType="Blacksmithing",Level=62,id=12718,StackCount=1,Rarity=2,MinLevel=0,SellPrice=15000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12718::::::::40:::::::|h[Plans: Runic Breastplate]|h|r"},["Pillager's Gloves"]={SubType="Mail",Level=34,id=15560,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1937,Texture=132945,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15560::::::::40:::::::|h[Pillager's Gloves]|h|r",Type="Armor"},["Codex of Holy Word: Shield III"]={SubType="Book",Level=18,id=3122,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:3122::::::::40:::::::|h[Codex of Holy Word: Shield III]|h|r",Type="Recipe"},["Ridgeback Bracers"]={SubType="Leather",Level=18,id=15403,StackCount=1,Rarity=2,MinLevel=0,SellPrice=279,Texture=132609,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15403::::::::40:::::::|h[Ridgeback Bracers]|h|r",Type="Armor"},["Seared Mail Girdle"]={SubType="Mail",Level=49,id=19125,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6652,Texture=132505,Link="|cff1eff00|Hitem:19125::::::::40:::::::|h[Seared Mail Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Saltstone Armsplints"]={SubType="Plate",Level=40,id=14903,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2173,Texture=132603,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14903::::::::40:::::::|h[Saltstone Armsplints]|h|r"},["Peerless Armor"]={SubType="Leather",Level=61,id=15433,StackCount=1,Rarity=2,MinLevel=56,SellPrice=21849,Texture=132717,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15433::::::::40:::::::|h[Peerless Armor]|h|r",Type="Armor"},["Blue Voodoo Feather"]={SubType="Junk",Level=1,id=20607,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=132926,Link="|cffffffff|Hitem:20607::::::::40:::::::|h[Blue Voodoo Feather]|h|r",EquipLoc="",Type="Miscellaneous"},["Morbid Dawn"]={SubType="Two-Handed Swords",Level=35,id=7689,StackCount=1,Rarity=3,MinLevel=30,SellPrice=11124,Texture=135302,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:7689::::::::40:::::::|h[Morbid Dawn]|h|r",Type="Weapon"},["Padded Lamellar Boots"]={SubType="Mail",Level=16,id=5320,StackCount=1,Rarity=2,MinLevel=0,SellPrice=372,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:5320::::::::40:::::::|h[Padded Lamellar Boots]|h|r"},["Bag of Spoils"]={SubType="Junk",Level=1,id=20603,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133654,Link="|cffffffff|Hitem:20603::::::::40:::::::|h[Bag of Spoils]|h|r",EquipLoc="",Type="Miscellaneous"},["Vek'nilash's Circlet"]={SubType="Quest",Level=1,id=20926,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=132617,Link="|cffa335ee|Hitem:20926::::::::40:::::::|h[Vek'nilash's Circlet]|h|r",EquipLoc="",Type="Quest"},["Woodpaw Gnoll Mane"]={SubType="Quest",Level=1,id=9237,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134322,Link="|cffffffff|Hitem:9237::::::::40:::::::|h[Woodpaw Gnoll Mane]|h|r",EquipLoc="",Type="Quest"},["Sturdy Male Dwarf Mask"]={SubType="Miscellaneous",Level=45,id=20591,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5010,Texture=134159,Link="|cff1eff00|Hitem:20591::::::::40:::::::|h[Sturdy Male Dwarf Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Large Club"]={SubType="Two-Handed Maces",Level=3,id=2480,StackCount=1,Rarity=1,MinLevel=1,SellPrice=14,Texture=133481,Link="|cffffffff|Hitem:2480::::::::40:::::::|h[Large Club]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Black Tuxedo"]={SubType="Miscellaneous",Level=1,id=6834,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135022,Type="Armor",Link="|cffffffff|Hitem:6834::::::::40:::::::|h[Black Tuxedo]|h|r",EquipLoc="INVTYPE_CHEST"},["Sturdy Female Undead Mask"]={SubType="Miscellaneous",Level=45,id=20590,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4992,Texture=134180,Link="|cff1eff00|Hitem:20590::::::::40:::::::|h[Sturdy Female Undead Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Ceremonial Knife"]={SubType="Daggers",Level=12,id=3445,StackCount=1,Rarity=1,MinLevel=0,SellPrice=226,Texture=135646,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:3445::::::::40:::::::|h[Ceremonial Knife]|h|r",Type="Weapon"},["Filled Cleansing Bowl"]={SubType="Quest",Level=1,id=12347,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134712,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12347::::::::40:::::::|h[Filled Cleansing Bowl]|h|r"},["Conjurer's Bracers"]={SubType="Cloth",Level=35,id=9846,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1429,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9846::::::::40:::::::|h[Conjurer's Bracers]|h|r"},["Solid Iron Maul"]={SubType="Two-Handed Maces",Level=31,id=3851,StackCount=1,Rarity=2,MinLevel=26,SellPrice=6258,Texture=133044,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3851::::::::40:::::::|h[Solid Iron Maul]|h|r"},["Quicksilver Ring"]={SubType="Miscellaneous",Level=36,id=5008,StackCount=1,Rarity=2,MinLevel=31,SellPrice=1546,Texture=133356,Link="|cff1eff00|Hitem:5008::::::::40:::::::|h[Quicksilver Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Bow of Searing Arrows"]={SubType="Bows",Level=42,id=2825,StackCount=1,Rarity=4,MinLevel=37,SellPrice=14722,Texture=135497,Type="Weapon",Link="|cffa335ee|Hitem:2825::::::::40:::::::|h[Bow of Searing Arrows]|h|r",EquipLoc="INVTYPE_RANGED"},["Reinforced Leather Belt"]={SubType="Leather",Level=50,id=2471,StackCount=1,Rarity=1,MinLevel=45,SellPrice=3408,Texture=132505,Type="Armor",Link="|cffffffff|Hitem:2471::::::::40:::::::|h[Reinforced Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Gauntlets of Kalimdor"]={SubType="Mail",Level=78,id=21624,StackCount=1,Rarity=4,MinLevel=60,SellPrice=48645,Texture=132960,Link="|cffa335ee|Hitem:21624::::::::40:::::::|h[Gauntlets of Kalimdor]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Cloaked Hood TEST"]={SubType="Leather",Level=38,id=19743,StackCount=1,Rarity=2,MinLevel=33,SellPrice=3381,Texture=133132,Link="|cff1eff00|Hitem:19743::::::::40:::::::|h[Cloaked Hood TEST]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Ironweave Mantle"]={SubType="Cloth",Level=61,id=22305,StackCount=1,Rarity=3,MinLevel=56,SellPrice=16090,Texture=135036,Link="|cff0070dd|Hitem:22305::::::::40:::::::|h[Ironweave Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Sturdy Female Nightelf Mask"]={SubType="Miscellaneous",Level=45,id=20586,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4792,Texture=134162,Link="|cff1eff00|Hitem:20586::::::::40:::::::|h[Sturdy Female Nightelf Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Deadly Kris"]={SubType="Daggers",Level=36,id=15243,StackCount=1,Rarity=2,MinLevel=31,SellPrice=7871,Texture=135637,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15243::::::::40:::::::|h[Deadly Kris]|h|r",Type="Weapon"},["Three of Portals"]={SubType="Junk",Level=1,id=19279,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134492,Link="|cff0070dd|Hitem:19279::::::::40:::::::|h[Three of Portals]|h|r",EquipLoc="",Type="Miscellaneous"},["Rod of Order"]={SubType="Quest",Level=1,id=4469,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135463,Type="Quest",Link="|cffffffff|Hitem:4469::::::::40:::::::|h[Rod of Order]|h|r",EquipLoc=""},["Field Marshal's Headdress"]={SubType="Cloth",Level=74,id=17602,StackCount=1,Rarity=4,MinLevel=60,SellPrice=20439,Texture=133126,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:17602::::::::40:::::::|h[Field Marshal's Headdress]|h|r",Type="Armor"},["Mystic's Slippers"]={SubType="Cloth",Level=18,id=14364,StackCount=1,Rarity=2,MinLevel=13,SellPrice=324,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14364::::::::40:::::::|h[Mystic's Slippers]|h|r"},["Imposing Belt"]={SubType="Leather",Level=43,id=15161,StackCount=1,Rarity=2,MinLevel=38,SellPrice=3319,Texture=132501,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15161::::::::40:::::::|h[Imposing Belt]|h|r",Type="Armor"},["Radish Kimchi"]={SubType="Consumable",Level=55,id=21033,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=134020,Link="|cffffffff|Hitem:21033::::::::40:::::::|h[Radish Kimchi]|h|r",EquipLoc="",Type="Consumable"},["Grimoire of Life Tap"]={SubType="Book",Level=6,id=9193,StackCount=1,Rarity=1,MinLevel=6,SellPrice=25,Texture=133738,Link="|cffffffff|Hitem:9193::::::::40:::::::|h[Grimoire of Life Tap]|h|r",EquipLoc="",Type="Recipe"},["Pattern: Black Whelp Tunic"]={SubType="Leatherworking",Level=20,id=20576,StackCount=1,Rarity=1,MinLevel=0,SellPrice=350,Texture=134939,Link="|cffffffff|Hitem:20576::::::::40:::::::|h[Pattern: Black Whelp Tunic]|h|r",EquipLoc="",Type="Recipe"},["Flimsy Female Undead Mask"]={SubType="Miscellaneous",Level=1,id=20574,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134180,Link="|cffffffff|Hitem:20574::::::::40:::::::|h[Flimsy Female Undead Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Commander's Armor"]={SubType="Plate",Level=63,id=10378,StackCount=1,Rarity=2,MinLevel=58,SellPrice=19466,Texture=132741,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10378::::::::40:::::::|h[Commander's Armor]|h|r",Type="Armor"},["Slayer's Skullcap"]={SubType="Mail",Level=33,id=14753,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2610,Texture=133161,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14753::::::::40:::::::|h[Slayer's Skullcap]|h|r"},["Libram: Seal of Wisdom III"]={SubType="Book",Level=36,id=5679,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133740,Link="|cffffffff|Hitem:5679::::::::40:::::::|h[Libram: Seal of Wisdom III]|h|r",EquipLoc="",Type="Recipe"},["Dark Iron Ore"]={SubType="Trade Goods",Level=55,id=11099,StackCount=10,Rarity=1,MinLevel=0,SellPrice=250,Texture=134575,Type="Trade Goods",Link="|cffffffff|Hitem:11099::::::::40:::::::|h[Dark Iron Ore]|h|r",EquipLoc=""},["Zweihander"]={SubType="Two-Handed Swords",Level=46,id=2529,StackCount=1,Rarity=1,MinLevel=41,SellPrice=13006,Texture=135313,Type="Weapon",Link="|cffffffff|Hitem:2529::::::::40:::::::|h[Zweihander]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Divining Scroll"]={SubType="Quest",Level=1,id=5456,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134943,EquipLoc="",Link="|cffffffff|Hitem:5456::::::::40:::::::|h[Divining Scroll]|h|r",Type="Quest"},["Warden's Wizard Hat"]={SubType="Leather",Level=45,id=14604,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5986,Texture=133111,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14604::::::::40:::::::|h[Warden's Wizard Hat]|h|r"},["Burning Key"]={SubType="Key",Level=1,id=4483,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134235,Type="Key",Link="|cffffffff|Hitem:4483::::::::40:::::::|h[Burning Key]|h|r",EquipLoc=""},["Deprecated Old Pants"]={SubType="Cloth",Level=1,id=88,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:88::::::::40:::::::|h[Deprecated Old Pants]|h|r"},["Brocade Belt"]={SubType="Cloth",Level=21,id=3378,StackCount=1,Rarity=0,MinLevel=16,SellPrice=132,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:3378::::::::40:::::::|h[Brocade Belt]|h|r",Type="Armor"},["Impenetrable Belt"]={SubType="Mail",Level=56,id=15663,StackCount=1,Rarity=2,MinLevel=51,SellPrice=10226,Texture=132507,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15663::::::::40:::::::|h[Impenetrable Belt]|h|r",Type="Armor"},["Handstitched Leather Bracers"]={SubType="Leather",Level=9,id=7277,StackCount=1,Rarity=1,MinLevel=4,SellPrice=28,Texture=132607,Link="|cffffffff|Hitem:7277::::::::40:::::::|h[Handstitched Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Goblin Engineer Membership Card"]={SubType="Quest",Level=0,id=10791,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133473,EquipLoc="",Link="|cffffffff|Hitem:10791::::::::40:::::::|h[Goblin Engineer Membership Card]|h|r",Type="Quest"},["Flimsy Male Nightelf Mask"]={SubType="Miscellaneous",Level=1,id=20564,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132089,Link="|cffffffff|Hitem:20564::::::::40:::::::|h[Flimsy Male Nightelf Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Singed Scale"]={SubType="Consumable",Level=1,id=6486,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134305,Type="Consumable",Link="|cffffffff|Hitem:6486::::::::40:::::::|h[Singed Scale]|h|r",EquipLoc=""},["Seal of Jin"]={SubType="Miscellaneous",Level=68,id=19898,StackCount=1,Rarity=3,MinLevel=60,SellPrice=55035,Texture=133386,Link="|cff0070dd|Hitem:19898::::::::40:::::::|h[Seal of Jin]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Grimoire of Soothing Kiss (Rank 4)"]={SubType="Book",Level=58,id=16378,StackCount=1,Rarity=1,MinLevel=58,SellPrice=6000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16378::::::::40:::::::|h[Grimoire of Soothing Kiss (Rank 4)]|h|r",Type="Recipe"},["Warlord's Leather Helm"]={SubType="Leather",Level=74,id=16561,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24540,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16561::::::::40:::::::|h[Warlord's Leather Helm]|h|r",Type="Armor"},["Feathered Arrow"]={SubType="Arrow",Level=35,id=3464,StackCount=200,Rarity=2,MinLevel=0,SellPrice=8,Texture=132382,Link="|cff1eff00|Hitem:3464::::::::40:::::::|h[Feathered Arrow]|h|r",EquipLoc="INVTYPE_AMMO",Type="Projectile"},["General's Leather Girdle"]={SubType="Leather",Level=65,id=16557,StackCount=1,Rarity=4,MinLevel=60,SellPrice=10390,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16557::::::::40:::::::|h[General's Leather Girdle]|h|r",Type="Armor"},["Sparkleshell Sabatons"]={SubType="Mail",Level=39,id=15576,StackCount=1,Rarity=2,MinLevel=34,SellPrice=4462,Texture=132584,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15576::::::::40:::::::|h[Sparkleshell Sabatons]|h|r",Type="Armor"},["Tablet of Strength of Earth Totem V"]={SubType="Book",Level=60,id=21292,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=134465,Link="|cff0070dd|Hitem:21292::::::::40:::::::|h[Tablet of Strength of Earth Totem V]|h|r",EquipLoc="",Type="Recipe"},["Flurry Axe"]={SubType="One-Handed Axes",Level=47,id=871,StackCount=1,Rarity=4,MinLevel=42,SellPrice=29627,Texture=132408,EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:871::::::::40:::::::|h[Flurry Axe]|h|r",Type="Weapon"},["Willow Gloves"]={SubType="Cloth",Level=16,id=6541,StackCount=1,Rarity=2,MinLevel=11,SellPrice=163,Texture=132957,Type="Armor",Link="|cff1eff00|Hitem:6541::::::::40:::::::|h[Willow Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Soft Bushy Tail"]={SubType="Junk",Level=1,id=4582,StackCount=5,Rarity=1,MinLevel=0,SellPrice=745,Texture=134323,Link="|cffffffff|Hitem:4582::::::::40:::::::|h[Soft Bushy Tail]|h|r",EquipLoc="",Type="Miscellaneous"},["Corroded Black Box"]={SubType="Quest",Level=30,id=4613,StackCount=1,Rarity=1,MinLevel=30,SellPrice=0,Texture=134711,EquipLoc="",Link="|cffffffff|Hitem:4613::::::::40:::::::|h[Corroded Black Box]|h|r",Type="Quest"},["Plans: Darkrune Helm"]={SubType="Blacksmithing",Level=63,id=20555,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134941,Link="|cff0070dd|Hitem:20555::::::::40:::::::|h[Plans: Darkrune Helm]|h|r",EquipLoc="",Type="Recipe"},["Citrine"]={SubType="Trade Goods",Level=40,id=3864,StackCount=20,Rarity=2,MinLevel=0,SellPrice=800,Texture=134117,Link="|cff1eff00|Hitem:3864::::::::40:::::::|h[Citrine]|h|r",EquipLoc="",Type="Trade Goods"},["Jouster's Gauntlets"]={SubType="Plate",Level=40,id=8158,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2236,Texture=132951,Link="|cff1eff00|Hitem:8158::::::::40:::::::|h[Jouster's Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Azure Agate"]={SubType="Quest",Level=1,id=4527,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134132,EquipLoc="",Link="|cffffffff|Hitem:4527::::::::40:::::::|h[Azure Agate]|h|r",Type="Quest"},["Inscribed Leather Bracers"]={SubType="Leather",Level=17,id=3205,StackCount=1,Rarity=2,MinLevel=12,SellPrice=229,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:3205::::::::40:::::::|h[Inscribed Leather Bracers]|h|r"},["Dereks Radish Bag"]={SubType="Bag",Level=1,id=13330,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134012,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:13330::::::::40:::::::|h[Dereks Radish Bag]|h|r"},["Knight-Captain's Plate Girdle"]={SubType="Plate",Level=60,id=16407,StackCount=1,Rarity=3,MinLevel=55,SellPrice=4809,Texture=132516,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16407::::::::40:::::::|h[Knight-Captain's Plate Girdle]|h|r",Type="Armor"},["Duskwoven Gloves"]={SubType="Cloth",Level=51,id=10062,StackCount=1,Rarity=2,MinLevel=46,SellPrice=4758,Texture=132957,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10062::::::::40:::::::|h[Duskwoven Gloves]|h|r",Type="Armor"},["Grand Crusader's Helm"]={SubType="Plate",Level=63,id=18718,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16580,Texture=133078,Type="Armor",Link="|cff0070dd|Hitem:18718::::::::40:::::::|h[Grand Crusader's Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Formula: Brilliant Wizard Oil"]={SubType="Enchanting",Level=60,id=20756,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134327,Link="|cffffffff|Hitem:20756::::::::40:::::::|h[Formula: Brilliant Wizard Oil]|h|r",EquipLoc="",Type="Recipe"},["Mok'Morokk's Snuff"]={SubType="Quest",Level=1,id=5834,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132622,EquipLoc="",Link="|cffffffff|Hitem:5834::::::::40:::::::|h[Mok'Morokk's Snuff]|h|r",Type="Quest"},["Argent Shoulders"]={SubType="Cloth",Level=64,id=19059,StackCount=1,Rarity=3,MinLevel=59,SellPrice=17541,Texture=135044,Link="|cff0070dd|Hitem:19059::::::::40:::::::|h[Argent Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Rumsey Rum Light"]={SubType="Consumable",Level=1,id=20709,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=132795,Link="|cffffffff|Hitem:20709::::::::40:::::::|h[Rumsey Rum Light]|h|r",EquipLoc="",Type="Consumable"},["Warbear Leather"]={SubType="Trade Goods",Level=50,id=15419,StackCount=20,Rarity=1,MinLevel=0,SellPrice=600,Texture=134360,EquipLoc="",Link="|cffffffff|Hitem:15419::::::::40:::::::|h[Warbear Leather]|h|r",Type="Trade Goods"},["Horizon Choker"]={SubType="Miscellaneous",Level=51,id=13085,StackCount=1,Rarity=3,MinLevel=46,SellPrice=9137,Texture=133298,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:13085::::::::40:::::::|h[Horizon Choker]|h|r"},["Heraldic Bracers"]={SubType="Leather",Level=46,id=8118,StackCount=1,Rarity=2,MinLevel=41,SellPrice=4436,Texture=132602,Link="|cff1eff00|Hitem:8118::::::::40:::::::|h[Heraldic Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Runed Stygian Leggings"]={SubType="Cloth",Level=63,id=20538,StackCount=1,Rarity=3,MinLevel=58,SellPrice=23733,Texture=134599,Link="|cff0070dd|Hitem:20538::::::::40:::::::|h[Runed Stygian Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Test Dodge Chest"]={SubType="Plate",Level=60,id=13713,StackCount=1,Rarity=1,MinLevel=55,SellPrice=9488,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13713::::::::40:::::::|h[Test Dodge Chest]|h|r"},["Guide: Serpent Sting IX"]={SubType="Book",Level=60,id=21306,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133734,Link="|cff0070dd|Hitem:21306::::::::40:::::::|h[Guide: Serpent Sting IX]|h|r",EquipLoc="",Type="Recipe"},["Royal Cape"]={SubType="Cloth",Level=43,id=9908,StackCount=1,Rarity=2,MinLevel=38,SellPrice=4257,Texture=133754,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9908::::::::40:::::::|h[Royal Cape]|h|r"},["Marshal's Leather Footguards"]={SubType="Leather",Level=71,id=16446,StackCount=1,Rarity=4,MinLevel=60,SellPrice=21041,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16446::::::::40:::::::|h[Marshal's Leather Footguards]|h|r",Type="Armor"},["Half Pendant of Aquatic Endurance"]={SubType="Quest",Level=1,id=15882,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133442,EquipLoc="",Link="|cffffffff|Hitem:15882::::::::40:::::::|h[Half Pendant of Aquatic Endurance]|h|r",Type="Quest"},["Abyss Shard"]={SubType="Miscellaneous",Level=52,id=20534,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=134072,Link="|cff0070dd|Hitem:20534::::::::40:::::::|h[Abyss Shard]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["PVP Plate Breastplate Alliance"]={SubType="Plate",Level=60,id=16027,StackCount=1,Rarity=1,MinLevel=0,SellPrice=9488,Texture=132737,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:16027::::::::40:::::::|h[PVP Plate Breastplate Alliance]|h|r",Type="Armor"},["Deprecated Orc Acolyte's Boots"]={SubType="Miscellaneous",Level=1,id=132,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132536,Link="|cffffffff|Hitem:132::::::::40:::::::|h[Deprecated Orc Acolyte's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Skorn's Rifle"]={SubType="Guns",Level=12,id=3079,StackCount=1,Rarity=2,MinLevel=0,SellPrice=297,Texture=135610,Link="|cff1eff00|Hitem:3079::::::::40:::::::|h[Skorn's Rifle]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Deprecated Summoned Lockpick"]={SubType="Lockpick",Level=8,id=1253,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134065,Link="|cffffffff|Hitem:1253::::::::40:::::::|h[Deprecated Summoned Lockpick]|h|r",EquipLoc="",Type="Key"},["Light Chain Gloves"]={SubType="Mail",Level=10,id=2403,StackCount=1,Rarity=1,MinLevel=5,SellPrice=44,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2403::::::::40:::::::|h[Light Chain Gloves]|h|r"},["Winterfall Spirit Beads DEPRECATED"]={SubType="Quest",Level=1,id=20740,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=133280,Link="|cffffffff|Hitem:20740::::::::40:::::::|h[Winterfall Spirit Beads DEPRECATED]|h|r",EquipLoc="",Type="Quest"},["Plans: Thorium Armor"]={SubType="Blacksmithing",Level=50,id=12682,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12682::::::::40:::::::|h[Plans: Thorium Armor]|h|r"},["Formula: Enchant Cloak - Greater Nature Resistance"]={SubType="Enchanting",Level=70,id=20733,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25000,Texture=134327,Link="|cffffffff|Hitem:20733::::::::40:::::::|h[Formula: Enchant Cloak - Greater Nature Resistance]|h|r",EquipLoc="",Type="Recipe"},["Sea Creature Bones"]={SubType="Quest",Level=0,id=12242,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133719,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12242::::::::40:::::::|h[Sea Creature Bones]|h|r"},["Duke's Seal"]={SubType="Quest",Level=1,id=20485,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135824,Link="|cffffffff|Hitem:20485::::::::40:::::::|h[Duke's Seal]|h|r",EquipLoc="",Type="Quest"},["Cloak of Rot"]={SubType="Cloth",Level=31,id=4462,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1425,Texture=133754,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:4462::::::::40:::::::|h[Cloak of Rot]|h|r"},["Impenetrable Wall"]={SubType="Shields",Level=61,id=15667,StackCount=1,Rarity=2,MinLevel=56,SellPrice=28785,Texture=134949,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15667::::::::40:::::::|h[Impenetrable Wall]|h|r",Type="Armor"},["Iron Lotterybox"]={SubType="Junk",Level=30,id=8504,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=132596,Link="|cff1eff00|Hitem:8504::::::::40:::::::|h[Iron Lotterybox]|h|r",EquipLoc="",Type="Miscellaneous"},["Hive'Zora Rubbing"]={SubType="Quest",Level=1,id=20454,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134946,Link="|cffffffff|Hitem:20454::::::::40:::::::|h[Hive'Zora Rubbing]|h|r",EquipLoc="",Type="Quest"},["Elementium Threaded Cloak"]={SubType="Cloth",Level=77,id=19386,StackCount=1,Rarity=4,MinLevel=60,SellPrice=46661,Texture=133753,Link="|cffa335ee|Hitem:19386::::::::40:::::::|h[Elementium Threaded Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Cloak of Concentrated Hatred"]={SubType="Cloth",Level=73,id=21701,StackCount=1,Rarity=4,MinLevel=60,SellPrice=38677,Texture=133754,Link="|cffa335ee|Hitem:21701::::::::40:::::::|h[Cloak of Concentrated Hatred]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Pattern: Spitfire Bracers"]={SubType="Leatherworking",Level=62,id=20506,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134939,Link="|cffffffff|Hitem:20506::::::::40:::::::|h[Pattern: Spitfire Bracers]|h|r",EquipLoc="",Type="Recipe"},["Rod of the Sleepwalker"]={SubType="Staves",Level=29,id=1155,StackCount=1,Rarity=3,MinLevel=24,SellPrice=5954,Texture=135143,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:1155::::::::40:::::::|h[Rod of the Sleepwalker]|h|r",Type="Weapon"},["Level 55 Test Gear Leather - Rogue"]={SubType="Junk",Level=1,id=13677,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13677::::::::40:::::::|h[Level 55 Test Gear Leather - Rogue]|h|r"},["Grand Marshal's Hand Cannon"]={SubType="Guns",Level=78,id=18855,StackCount=1,Rarity=4,MinLevel=60,SellPrice=35945,Texture=135617,Type="Weapon",Link="|cffa335ee|Hitem:18855::::::::40:::::::|h[Grand Marshal's Hand Cannon]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Codex of Heal IV"]={SubType="Book",Level=34,id=1648,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1648::::::::40:::::::|h[Codex of Heal IV]|h|r"},["Engraved Pauldrons"]={SubType="Mail",Level=58,id=10237,StackCount=1,Rarity=2,MinLevel=53,SellPrice=16287,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10237::::::::40:::::::|h[Engraved Pauldrons]|h|r",Type="Armor"},["Plans: Lionheart Helm"]={SubType="Blacksmithing",Level=61,id=12717,StackCount=1,Rarity=4,MinLevel=0,SellPrice=15000,Texture=134941,Type="Recipe",EquipLoc="",Link="|cffa335ee|Hitem:12717::::::::40:::::::|h[Plans: Lionheart Helm]|h|r"},["Sacred Band"]={SubType="Miscellaneous",Level=25,id=6669,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1378,Texture=133354,Link="|cff1eff00|Hitem:6669::::::::40:::::::|h[Sacred Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Wild Leather Vest"]={SubType="Leather",Level=45,id=8211,StackCount=1,Rarity=2,MinLevel=40,SellPrice=8002,Texture=132647,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:8211::::::::40:::::::|h[Wild Leather Vest]|h|r"},["Marshal's Satin Sandals"]={SubType="Cloth",Level=71,id=17607,StackCount=1,Rarity=4,MinLevel=60,SellPrice=16266,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:17607::::::::40:::::::|h[Marshal's Satin Sandals]|h|r",Type="Armor"},["Scepter of Beckoning: Stone"]={SubType="Junk",Level=1,id=20449,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135473,Link="|cffffffff|Hitem:20449::::::::40:::::::|h[Scepter of Beckoning: Stone]|h|r",EquipLoc="",Type="Miscellaneous"},["Level 50 Test Gear Plate - Paladin/Warrior 2"]={SubType="Junk",Level=1,id=17848,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17848::::::::40:::::::|h[Level 50 Test Gear Plate - Paladin/Warrior 2]|h|r",Type="Miscellaneous"},["Monster - Staff, Yellow Jeweled with Low Purple Glow"]={SubType="Staves",Level=1,id=13705,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13705::::::::40:::::::|h[Monster - Staff, Yellow Jeweled with Low Purple Glow]|h|r"},["Cracked Silithid Carapace"]={SubType="Quest",Level=28,id=5877,StackCount=1,Rarity=1,MinLevel=28,SellPrice=0,Texture=135034,EquipLoc="",Link="|cffffffff|Hitem:5877::::::::40:::::::|h[Cracked Silithid Carapace]|h|r",Type="Quest"},["Gloomshroud Armor"]={SubType="Leather",Level=25,id=1489,StackCount=1,Rarity=3,MinLevel=20,SellPrice=1553,Texture=132723,Link="|cff0070dd|Hitem:1489::::::::40:::::::|h[Gloomshroud Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Grimoire of Life Tap II"]={SubType="Book",Level=18,id=9202,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9202::::::::40:::::::|h[Grimoire of Life Tap II]|h|r"},["Lesser Mystic Wand"]={SubType="Wands",Level=31,id=11289,StackCount=1,Rarity=2,MinLevel=26,SellPrice=3581,Texture=135139,Type="Weapon",Link="|cff1eff00|Hitem:11289::::::::40:::::::|h[Lesser Mystic Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Grimtotem Satchel"]={SubType="Quest",Level=1,id=14381,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133633,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14381::::::::40:::::::|h[Grimtotem Satchel]|h|r"},["Tome of Valor"]={SubType="Quest",Level=20,id=6776,StackCount=1,Rarity=1,MinLevel=20,SellPrice=0,Texture=133739,Link="|cffffffff|Hitem:6776::::::::40:::::::|h[Tome of Valor]|h|r",EquipLoc="",Type="Quest"},["Maul"]={SubType="Two-Handed Maces",Level=26,id=924,StackCount=1,Rarity=1,MinLevel=21,SellPrice=2194,Texture=133044,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:924::::::::40:::::::|h[Maul]|h|r",Type="Weapon"},["Living Cowl"]={SubType="Cloth",Level=40,id=5608,StackCount=1,Rarity=2,MinLevel=35,SellPrice=3463,Texture=133072,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:5608::::::::40:::::::|h[Living Cowl]|h|r",Type="Armor"},["Deprecated Ragged Leather Shoulderpads"]={SubType="Leather",Level=2,id=1371,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:1371::::::::40:::::::|h[Deprecated Ragged Leather Shoulderpads]|h|r",Type="Armor"},["Monster - Bow, Black"]={SubType="Bows",Level=1,id=5258,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135493,EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:5258::::::::40:::::::|h[Monster - Bow, Black]|h|r",Type="Weapon"},["Hunting Tunic"]={SubType="Leather",Level=17,id=2973,StackCount=1,Rarity=2,MinLevel=12,SellPrice=484,Texture=132760,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:2973::::::::40:::::::|h[Hunting Tunic]|h|r"},["Heroic Legplates"]={SubType="Plate",Level=61,id=14936,StackCount=1,Rarity=2,MinLevel=56,SellPrice=16702,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14936::::::::40:::::::|h[Heroic Legplates]|h|r"},["Darnassus Kimchi Pie"]={SubType="Consumable",Level=45,id=21030,StackCount=20,Rarity=1,MinLevel=35,SellPrice=100,Texture=133952,Link="|cffffffff|Hitem:21030::::::::40:::::::|h[Darnassus Kimchi Pie]|h|r",EquipLoc="",Type="Consumable"},["Roasted Kodo Meat"]={SubType="Consumable",Level=10,id=5474,StackCount=20,Rarity=1,MinLevel=1,SellPrice=9,Texture=134016,EquipLoc="",Link="|cffffffff|Hitem:5474::::::::40:::::::|h[Roasted Kodo Meat]|h|r",Type="Consumable"},["Mok'Morokk's Grog"]={SubType="Quest",Level=1,id=5835,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132796,EquipLoc="",Link="|cffffffff|Hitem:5835::::::::40:::::::|h[Mok'Morokk's Grog]|h|r",Type="Quest"},["General's Dreadweave Bracers"]={SubType="Cloth",Level=65,id=17587,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8093,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:17587::::::::40:::::::|h[General's Dreadweave Bracers]|h|r",Type="Armor"},["Sooty Parchment"]={SubType="Quest",Level=1,id=6492,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:6492::::::::40:::::::|h[Sooty Parchment]|h|r",EquipLoc="",Type="Quest"},["Green Firework"]={SubType="Consumable",Level=20,id=9313,StackCount=5,Rarity=1,MinLevel=0,SellPrice=5,Texture=136006,Link="|cffffffff|Hitem:9313::::::::40:::::::|h[Green Firework]|h|r",EquipLoc="",Type="Consumable"},["Fifth Mosh'aru Tablet"]={SubType="Quest",Level=1,id=12740,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134421,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12740::::::::40:::::::|h[Fifth Mosh'aru Tablet]|h|r"},["Oblivion's Touch"]={SubType="Wands",Level=62,id=18761,StackCount=1,Rarity=3,MinLevel=57,SellPrice=41011,Texture=135474,Type="Weapon",Link="|cff0070dd|Hitem:18761::::::::40:::::::|h[Oblivion's Touch]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Grand Marshal's Sunderer"]={SubType="Two-Handed Axes",Level=78,id=18830,StackCount=1,Rarity=4,MinLevel=60,SellPrice=57227,Texture=132401,Type="Weapon",Link="|cffa335ee|Hitem:18830::::::::40:::::::|h[Grand Marshal's Sunderer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Robust Buckler"]={SubType="Shields",Level=28,id=15123,StackCount=1,Rarity=2,MinLevel=23,SellPrice=2463,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15123::::::::40:::::::|h[Robust Buckler]|h|r",Type="Armor"},["Multicolored Band"]={SubType="Miscellaneous",Level=60,id=20692,StackCount=1,Rarity=2,MinLevel=55,SellPrice=13362,Texture=133345,Link="|cff1eff00|Hitem:20692::::::::40:::::::|h[Multicolored Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Grimoire of Fear II"]={SubType="Book",Level=24,id=4202,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4202::::::::40:::::::|h[Grimoire of Fear II]|h|r"},["Buckskin Cape"]={SubType="Cloth",Level=15,id=1355,StackCount=1,Rarity=2,MinLevel=10,SellPrice=251,Texture=134354,Type="Armor",Link="|cff1eff00|Hitem:1355::::::::40:::::::|h[Buckskin Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Ornate Adamantium Breastplate"]={SubType="Plate",Level=63,id=15413,StackCount=1,Rarity=3,MinLevel=0,SellPrice=22519,Texture=132744,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:15413::::::::40:::::::|h[Ornate Adamantium Breastplate]|h|r",Type="Armor"},["Brown Linen Robe"]={SubType="Cloth",Level=10,id=6238,StackCount=1,Rarity=2,MinLevel=5,SellPrice=98,Texture=132662,Type="Armor",Link="|cff1eff00|Hitem:6238::::::::40:::::::|h[Brown Linen Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Torn Bear Pelt"]={SubType="Junk",Level=1,id=11407,StackCount=10,Rarity=1,MinLevel=0,SellPrice=108,Texture=134360,Type="Miscellaneous",Link="|cffffffff|Hitem:11407::::::::40:::::::|h[Torn Bear Pelt]|h|r",EquipLoc=""},["Dead-tooth's Key"]={SubType="Quest",Level=1,id=6783,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134235,Link="|cffffffff|Hitem:6783::::::::40:::::::|h[Dead-tooth's Key]|h|r",EquipLoc="",Type="Quest"},["Dry Pork Ribs"]={SubType="Consumable",Level=15,id=2687,StackCount=20,Rarity=1,MinLevel=5,SellPrice=25,Texture=134004,EquipLoc="",Link="|cffffffff|Hitem:2687::::::::40:::::::|h[Dry Pork Ribs]|h|r",Type="Consumable"},["Emblazoned Cloak"]={SubType="Cloth",Level=27,id=4715,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1026,Texture=133760,Link="|cff1eff00|Hitem:4715::::::::40:::::::|h[Emblazoned Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Bludstone Hammer"]={SubType="One-Handed Maces",Level=61,id=13028,StackCount=1,Rarity=3,MinLevel=56,SellPrice=52605,Texture=133056,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:13028::::::::40:::::::|h[Bludstone Hammer]|h|r"},["Darkstone Tablet"]={SubType="Quest",Level=1,id=12358,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134419,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12358::::::::40:::::::|h[Darkstone Tablet]|h|r"},["Snakeskin Bag"]={SubType="Bag",Level=25,id=6446,StackCount=1,Rarity=1,MinLevel=0,SellPrice=532,Texture=133645,Link="|cffffffff|Hitem:6446::::::::40:::::::|h[Snakeskin Bag]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Battered Buckler"]={SubType="Shields",Level=2,id=2210,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=134955,Link="|cff9d9d9d|Hitem:2210::::::::40:::::::|h[Battered Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Deprecated Rogue's Vest"]={SubType="Miscellaneous",Level=1,id=119,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:119::::::::40:::::::|h[Deprecated Rogue's Vest]|h|r"},["Recipe: Rockscale Cod"]={SubType="Cooking",Level=30,id=6369,StackCount=1,Rarity=1,MinLevel=0,SellPrice=550,Texture=134939,Link="|cffffffff|Hitem:6369::::::::40:::::::|h[Recipe: Rockscale Cod]|h|r",EquipLoc="",Type="Recipe"},["Imbel Essence"]={SubType="Quest",Level=1,id=9256,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135228,Link="|cffffffff|Hitem:9256::::::::40:::::::|h[Imbel Essence]|h|r",EquipLoc="",Type="Quest"},["Covert Ops Pack"]={SubType="Junk",Level=15,id=5738,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133635,EquipLoc="",Link="|cffffffff|Hitem:5738::::::::40:::::::|h[Covert Ops Pack]|h|r",Type="Miscellaneous"},["Deflecting Tower"]={SubType="Shields",Level=53,id=3987,StackCount=1,Rarity=0,MinLevel=48,SellPrice=6837,Texture=134957,Type="Armor",Link="|cff9d9d9d|Hitem:3987::::::::40:::::::|h[Deflecting Tower]|h|r",EquipLoc="INVTYPE_SHIELD"},["Nagmara's Whipping Belt"]={SubType="Leather",Level=55,id=11866,StackCount=1,Rarity=3,MinLevel=0,SellPrice=9819,Texture=132500,Type="Armor",Link="|cff0070dd|Hitem:11866::::::::40:::::::|h[Nagmara's Whipping Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Sulfuron Hammer"]={SubType="Two-Handed Maces",Level=67,id=17193,StackCount=1,Rarity=4,MinLevel=60,SellPrice=122311,Texture=133066,EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:17193::::::::40:::::::|h[Sulfuron Hammer]|h|r",Type="Weapon"},["Test Defense Ring +120"]={SubType="Miscellaneous",Level=60,id=20445,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7888,Texture=133368,Link="|cff0070dd|Hitem:20445::::::::40:::::::|h[Test Defense Ring +120]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Arcanite Dragonling"]={SubType="Devices",Level=60,id=16022,StackCount=1,Rarity=3,MinLevel=50,SellPrice=40000,Texture=134153,EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:16022::::::::40:::::::|h[Arcanite Dragonling]|h|r",Type="Trade Goods"},["Gni'kiv Medallion"]={SubType="Quest",Level=1,id=7740,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133276,Link="|cffffffff|Hitem:7740::::::::40:::::::|h[Gni'kiv Medallion]|h|r",EquipLoc="",Type="Quest"},["Webbed Pterrordax Scale"]={SubType="Quest",Level=1,id=11831,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134314,Type="Quest",Link="|cffffffff|Hitem:11831::::::::40:::::::|h[Webbed Pterrordax Scale]|h|r",EquipLoc=""},["Simple Robe"]={SubType="Cloth",Level=15,id=9748,StackCount=1,Rarity=2,MinLevel=10,SellPrice=274,Texture=132659,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:9748::::::::40:::::::|h[Simple Robe]|h|r"},["90 Epic Warrior Gauntlets"]={SubType="Plate",Level=90,id=20137,StackCount=1,Rarity=4,MinLevel=60,SellPrice=57150,Texture=132944,Link="|cffa335ee|Hitem:20137::::::::40:::::::|h[90 Epic Warrior Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Bat Ear"]={SubType="Junk",Level=1,id=11395,StackCount=10,Rarity=0,MinLevel=0,SellPrice=830,Texture=133856,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11395::::::::40:::::::|h[Bat Ear]|h|r",EquipLoc=""},["Crag Coyote Fang"]={SubType="Quest",Level=1,id=7846,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,EquipLoc="",Link="|cffffffff|Hitem:7846::::::::40:::::::|h[Crag Coyote Fang]|h|r",Type="Quest"},["Pattern: Corehound Belt"]={SubType="Leatherworking",Level=70,id=19332,StackCount=1,Rarity=1,MinLevel=0,SellPrice=22500,Texture=134939,Link="|cffffffff|Hitem:19332::::::::40:::::::|h[Pattern: Corehound Belt]|h|r",EquipLoc="",Type="Recipe"},["Raging Berserker's Helm"]={SubType="Mail",Level=42,id=7719,StackCount=1,Rarity=3,MinLevel=37,SellPrice=6863,Texture=133127,Link="|cff0070dd|Hitem:7719::::::::40:::::::|h[Raging Berserker's Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Sand Skitterer Fang"]={SubType="Quest",Level=0,id=20376,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,Link="|cffffffff|Hitem:20376::::::::40:::::::|h[Sand Skitterer Fang]|h|r",EquipLoc="",Type="Quest"},["Heroic Guard"]={SubType="Shields",Level=62,id=15887,StackCount=1,Rarity=2,MinLevel=57,SellPrice=29581,Texture=134950,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15887::::::::40:::::::|h[Heroic Guard]|h|r",Type="Armor"},["Tainted Vitriol"]={SubType="Quest",Level=1,id=11513,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1,Texture=134120,Type="Quest",Link="|cffffffff|Hitem:11513::::::::40:::::::|h[Tainted Vitriol]|h|r",EquipLoc=""},["Pioneer Bracers"]={SubType="Leather",Level=10,id=6519,StackCount=1,Rarity=1,MinLevel=5,SellPrice=36,Texture=132611,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:6519::::::::40:::::::|h[Pioneer Bracers]|h|r"},["Codex of Greater Heal III"]={SubType="Book",Level=52,id=9013,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9013::::::::40:::::::|h[Codex of Greater Heal III]|h|r"},["Lean Wolf Flank"]={SubType="Trade Goods",Level=19,id=1015,StackCount=10,Rarity=1,MinLevel=0,SellPrice=24,Texture=133970,EquipLoc="",Link="|cffffffff|Hitem:1015::::::::40:::::::|h[Lean Wolf Flank]|h|r",Type="Trade Goods"},["Monster - Item, Potion Green"]={SubType="Miscellaneous",Level=1,id=2200,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134717,Link="|cff9d9d9d|Hitem:2200::::::::40:::::::|h[Monster - Item, Potion Green]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Charger's Redeemed Soul"]={SubType="Quest",Level=1,id=18799,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134335,Type="Quest",Link="|cffffffff|Hitem:18799::::::::40:::::::|h[Charger's Redeemed Soul]|h|r",EquipLoc=""},["Sunscale Feather"]={SubType="Quest",Level=1,id=5165,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132914,Link="|cffffffff|Hitem:5165::::::::40:::::::|h[Sunscale Feather]|h|r",EquipLoc="",Type="Quest"},["Emerald Breastplate"]={SubType="Plate",Level=60,id=10275,StackCount=1,Rarity=2,MinLevel=55,SellPrice=16204,Texture=132647,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10275::::::::40:::::::|h[Emerald Breastplate]|h|r",Type="Armor"},["Sylvan Shortbow"]={SubType="Bows",Level=49,id=11308,StackCount=1,Rarity=2,MinLevel=44,SellPrice=15765,Texture=135495,Type="Weapon",Link="|cff1eff00|Hitem:11308::::::::40:::::::|h[Sylvan Shortbow]|h|r",EquipLoc="INVTYPE_RANGED"},["63 Green Frost Neck"]={SubType="Miscellaneous",Level=63,id=20358,StackCount=1,Rarity=2,MinLevel=58,SellPrice=12157,Texture=133441,Link="|cff1eff00|Hitem:20358::::::::40:::::::|h[63 Green Frost Neck]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Short Spear"]={SubType="Polearms",Level=25,id=15810,StackCount=1,Rarity=1,MinLevel=20,SellPrice=2029,Texture=135128,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:15810::::::::40:::::::|h[Short Spear]|h|r",Type="Weapon"},["Fiendish Machete"]={SubType="One-Handed Swords",Level=59,id=18310,StackCount=1,Rarity=3,MinLevel=54,SellPrice=47406,Texture=135316,Type="Weapon",Link="|cff0070dd|Hitem:18310::::::::40:::::::|h[Fiendish Machete]|h|r",EquipLoc="INVTYPE_WEAPON"},["Swiftstrike Cudgel"]={SubType="One-Handed Maces",Level=55,id=11964,StackCount=1,Rarity=2,MinLevel=0,SellPrice=30156,Texture=133483,Type="Weapon",Link="|cff1eff00|Hitem:11964::::::::40:::::::|h[Swiftstrike Cudgel]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Light Feather"]={SubType="Junk",Level=1,id=17056,StackCount=20,Rarity=1,MinLevel=0,SellPrice=7,Texture=132917,EquipLoc="",Link="|cffffffff|Hitem:17056::::::::40:::::::|h[Light Feather]|h|r",Type="Miscellaneous"},["Iron Pike"]={SubType="Quest",Level=1,id=2856,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135128,Type="Quest",Link="|cffffffff|Hitem:2856::::::::40:::::::|h[Iron Pike]|h|r",EquipLoc=""},["Embossed Leather Boots"]={SubType="Leather",Level=15,id=2309,StackCount=1,Rarity=2,MinLevel=10,SellPrice=268,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:2309::::::::40:::::::|h[Embossed Leather Boots]|h|r"},["Tiger Hunter Gloves"]={SubType="Leather",Level=37,id=4107,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2136,Texture=132938,Type="Armor",Link="|cff1eff00|Hitem:4107::::::::40:::::::|h[Tiger Hunter Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Whitestone Oak Lumber"]={SubType="Quest",Level=1,id=6994,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135435,Type="Quest",Link="|cffffffff|Hitem:6994::::::::40:::::::|h[Whitestone Oak Lumber]|h|r",EquipLoc=""},["Ogreseer Fists"]={SubType="Leather",Level=54,id=11665,StackCount=1,Rarity=3,MinLevel=49,SellPrice=8532,Texture=132949,Type="Armor",Link="|cff0070dd|Hitem:11665::::::::40:::::::|h[Ogreseer Fists]|h|r",EquipLoc="INVTYPE_HAND"},["Agent of Nozdormu"]={SubType="Junk",Level=60,id=20402,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=132093,Link="|cff1eff00|Hitem:20402::::::::40:::::::|h[Agent of Nozdormu]|h|r",EquipLoc="",Type="Miscellaneous"},["Tanned Leather Jerkin"]={SubType="Leather",Level=17,id=846,StackCount=1,Rarity=1,MinLevel=12,SellPrice=290,Texture=132760,Link="|cffffffff|Hitem:846::::::::40:::::::|h[Tanned Leather Jerkin]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Chan's Imperial Robes"]={SubType="Cloth",Level=52,id=17050,StackCount=1,Rarity=3,MinLevel=47,SellPrice=12536,Texture=132645,EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:17050::::::::40:::::::|h[Chan's Imperial Robes]|h|r",Type="Armor"},["Slagplate Gauntlets"]={SubType="Plate",Level=49,id=19126,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4451,Texture=132956,Link="|cff1eff00|Hitem:19126::::::::40:::::::|h[Slagplate Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Grimoire of Corruption VII"]={SubType="Book",Level=60,id=21283,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133738,Link="|cff0070dd|Hitem:21283::::::::40:::::::|h[Grimoire of Corruption VII]|h|r",EquipLoc="",Type="Recipe"},["Savage Mail Shoulders"]={SubType="Mail",Level=63,id=12617,StackCount=1,Rarity=2,MinLevel=58,SellPrice=21919,Texture=135046,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:12617::::::::40:::::::|h[Savage Mail Shoulders]|h|r"},["Red Fireworks Rocket"]={SubType="Consumable",Level=20,id=5740,StackCount=5,Rarity=1,MinLevel=0,SellPrice=25,Texture=135808,EquipLoc="",Link="|cffffffff|Hitem:5740::::::::40:::::::|h[Red Fireworks Rocket]|h|r",Type="Consumable"},["Bramblewood Boots"]={SubType="Leather",Level=70,id=22760,StackCount=1,Rarity=3,MinLevel=60,SellPrice=29302,Texture=132561,Link="|cff0070dd|Hitem:22760::::::::40:::::::|h[Bramblewood Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Twilight Pants"]={SubType="Cloth",Level=39,id=7431,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3899,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7431::::::::40:::::::|h[Twilight Pants]|h|r",Type="Armor"},["Elegant Gloves"]={SubType="Cloth",Level=59,id=10214,StackCount=1,Rarity=2,MinLevel=54,SellPrice=8271,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10214::::::::40:::::::|h[Elegant Gloves]|h|r",Type="Armor"},["Versicolor Treat"]={SubType="Consumable",Level=15,id=16167,StackCount=20,Rarity=1,MinLevel=5,SellPrice=6,Texture=133984,EquipLoc="",Link="|cffffffff|Hitem:16167::::::::40:::::::|h[Versicolor Treat]|h|r",Type="Consumable"},["Grimoire of Paranoia"]={SubType="Book",Level=42,id=16390,StackCount=1,Rarity=1,MinLevel=42,SellPrice=2750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16390::::::::40:::::::|h[Grimoire of Paranoia]|h|r",Type="Recipe"},["Sapphire of Aku'Mai"]={SubType="Quest",Level=1,id=16784,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134133,EquipLoc="",Link="|cffffffff|Hitem:16784::::::::40:::::::|h[Sapphire of Aku'Mai]|h|r",Type="Quest"},["Pattern: Runecloth Cloak"]={SubType="Tailoring",Level=53,id=14472,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:14472::::::::40:::::::|h[Pattern: Runecloth Cloak]|h|r"},["Deprecated Area Trigger Flag - Jasperlode mine"]={SubType="Quest",Level=1,id=956,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135005,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:956::::::::40:::::::|h[Deprecated Area Trigger Flag - Jasperlode mine]|h|r"},["Knight's Legguards"]={SubType="Mail",Level=39,id=7455,StackCount=1,Rarity=2,MinLevel=34,SellPrice=5937,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7455::::::::40:::::::|h[Knight's Legguards]|h|r",Type="Armor"},["Scarlet Insignia Ring"]={SubType="Quest",Level=1,id=2875,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133346,Type="Quest",Link="|cffffffff|Hitem:2875::::::::40:::::::|h[Scarlet Insignia Ring]|h|r",EquipLoc=""},["Dirty Leather Belt"]={SubType="Leather",Level=5,id=1835,StackCount=1,Rarity=1,MinLevel=1,SellPrice=6,Texture=132493,Type="Armor",Link="|cffffffff|Hitem:1835::::::::40:::::::|h[Dirty Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Monster - Mace2H, Horde B01/B01 Orange"]={SubType="Two-Handed Maces",Level=1,id=19623,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,Link="|cff9d9d9d|Hitem:19623::::::::40:::::::|h[Monster - Mace2H, Horde B01/B01 Orange]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Spring/Summer Night"]={SubType="Junk",Level=25,id=13849,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13849::::::::40:::::::|h[Spring/Summer Night]|h|r"},["Perfect Courser Antler"]={SubType="Junk",Level=1,id=20017,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134413,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:20017::::::::40:::::::|h[Perfect Courser Antler]|h|r"},["Small Venom Sac"]={SubType="Trade Goods",Level=1,id=1475,StackCount=5,Rarity=1,MinLevel=0,SellPrice=82,Texture=134339,EquipLoc="",Link="|cffffffff|Hitem:1475::::::::40:::::::|h[Small Venom Sac]|h|r",Type="Trade Goods"},["Goblin Land Mine"]={SubType="Explosives",Level=39,id=4395,StackCount=10,Rarity=1,MinLevel=0,SellPrice=1600,Texture=134954,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4395::::::::40:::::::|h[Goblin Land Mine]|h|r"},["Brigade Gauntlets"]={SubType="Mail",Level=43,id=9930,StackCount=1,Rarity=2,MinLevel=38,SellPrice=4287,Texture=132960,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9930::::::::40:::::::|h[Brigade Gauntlets]|h|r"},["Formula: Enchant Bracer - Lesser Spirit"]={SubType="Enchanting",Level=24,id=6375,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:6375::::::::40:::::::|h[Formula: Enchant Bracer - Lesser Spirit]|h|r",EquipLoc=""},["Feathermoon Headdress"]={SubType="Leather",Level=63,id=13113,StackCount=1,Rarity=3,MinLevel=58,SellPrice=20546,Texture=133072,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:13113::::::::40:::::::|h[Feathermoon Headdress]|h|r"},["Level 25 Test Gear Leather - Hunter/Rogue"]={SubType="Junk",Level=1,id=13665,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13665::::::::40:::::::|h[Level 25 Test Gear Leather - Hunter/Rogue]|h|r"},["[PH] Plate Bracers of the Brilliant Dawn"]={SubType="Plate",Level=100,id=13743,StackCount=1,Rarity=1,MinLevel=100,SellPrice=35802,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:13743::::::::40:::::::|h[[PH] Plate Bracers of the Brilliant Dawn]|h|r"},["63 Green Rogue Pants"]={SubType="Leather",Level=63,id=20320,StackCount=1,Rarity=2,MinLevel=58,SellPrice=23661,Texture=134582,Link="|cff1eff00|Hitem:20320::::::::40:::::::|h[63 Green Rogue Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Smelling Salts"]={SubType="Consumable",Level=8,id=1176,StackCount=1,Rarity=1,MinLevel=0,SellPrice=32,Texture=133588,EquipLoc="",Link="|cffffffff|Hitem:1176::::::::40:::::::|h[Smelling Salts]|h|r",Type="Consumable"},["Duskwoven Bracers"]={SubType="Cloth",Level=50,id=10059,StackCount=1,Rarity=2,MinLevel=45,SellPrice=4739,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10059::::::::40:::::::|h[Duskwoven Bracers]|h|r",Type="Armor"},["Legplates of Carnage"]={SubType="Plate",Level=83,id=23068,StackCount=1,Rarity=4,MinLevel=60,SellPrice=81297,Texture=134696,Link="|cffa335ee|Hitem:23068::::::::40:::::::|h[Legplates of Carnage]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Chocolate Square"]={SubType="Consumable",Level=5,id=7808,StackCount=20,Rarity=1,MinLevel=1,SellPrice=10,Texture=133985,EquipLoc="",Link="|cffffffff|Hitem:7808::::::::40:::::::|h[Chocolate Square]|h|r",Type="Consumable"},["Arachnidian Circlet"]={SubType="Cloth",Level=55,id=14293,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9857,Texture=132767,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14293::::::::40:::::::|h[Arachnidian Circlet]|h|r"},["Hallowed Wand - Wisp"]={SubType="Consumable",Level=1,id=20414,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135474,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20414::::::::40:::::::|h[Hallowed Wand - Wisp]|h|r"},["Ashwood Seed"]={SubType="Reagent",Level=40,id=17036,StackCount=20,Rarity=1,MinLevel=0,SellPrice=200,Texture=133944,EquipLoc="",Link="|cffffffff|Hitem:17036::::::::40:::::::|h[Ashwood Seed]|h|r",Type="Reagent"},["Azure Silk Vest"]={SubType="Cloth",Level=30,id=4324,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1874,Texture=132678,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:4324::::::::40:::::::|h[Azure Silk Vest]|h|r",Type="Armor"},["Malefic Bracers"]={SubType="Leather",Level=58,id=18700,StackCount=1,Rarity=3,MinLevel=53,SellPrice=10910,Texture=132606,Type="Armor",Link="|cff0070dd|Hitem:18700::::::::40:::::::|h[Malefic Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Test Staff 90 epic"]={SubType="Staves",Level=90,id=20370,StackCount=1,Rarity=4,MinLevel=60,SellPrice=375896,Texture=135166,Link="|cffa335ee|Hitem:20370::::::::40:::::::|h[Test Staff 90 epic]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Astor's Letter of Introduction"]={SubType="Quest",Level=1,id=7231,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134331,EquipLoc="",Link="|cffffffff|Hitem:7231::::::::40:::::::|h[Astor's Letter of Introduction]|h|r",Type="Quest"},["Pale Leggings"]={SubType="Cloth",Level=46,id=12255,StackCount=1,Rarity=2,MinLevel=41,SellPrice=6997,Texture=134581,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:12255::::::::40:::::::|h[Pale Leggings]|h|r"},["63 Green Frost Wand"]={SubType="Wands",Level=63,id=20363,StackCount=1,Rarity=2,MinLevel=58,SellPrice=35877,Texture=135467,Link="|cff1eff00|Hitem:20363::::::::40:::::::|h[63 Green Frost Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Dull Elemental Bracer"]={SubType="Junk",Level=1,id=6438,StackCount=5,Rarity=0,MinLevel=0,SellPrice=362,Texture=132609,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:6438::::::::40:::::::|h[Dull Elemental Bracer]|h|r"},["Curmudgeon's Payoff"]={SubType="Junk",Level=1,id=23022,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133640,Link="|cffffffff|Hitem:23022::::::::40:::::::|h[Curmudgeon's Payoff]|h|r",EquipLoc="",Type="Miscellaneous"},["Flimsy Female Orc Mask"]={SubType="Miscellaneous",Level=1,id=20569,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134171,Link="|cffffffff|Hitem:20569::::::::40:::::::|h[Flimsy Female Orc Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Hand Axe"]={SubType="One-Handed Axes",Level=4,id=2134,StackCount=1,Rarity=1,MinLevel=1,SellPrice=16,Texture=132410,Link="|cffffffff|Hitem:2134::::::::40:::::::|h[Hand Axe]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Archery Training Gloves"]={SubType="Leather",Level=5,id=5394,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=132939,Link="|cffffffff|Hitem:5394::::::::40:::::::|h[Archery Training Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["90 Green Frost Mantle"]={SubType="Cloth",Level=90,id=20344,StackCount=1,Rarity=2,MinLevel=60,SellPrice=53783,Texture=135054,Link="|cff1eff00|Hitem:20344::::::::40:::::::|h[90 Green Frost Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Traveler's Gloves"]={SubType="Leather",Level=57,id=8298,StackCount=1,Rarity=2,MinLevel=52,SellPrice=8565,Texture=132949,Link="|cff1eff00|Hitem:8298::::::::40:::::::|h[Traveler's Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Warlords Deck"]={SubType="Junk",Level=1,id=19257,StackCount=1,Rarity=4,MinLevel=0,SellPrice=100000,Texture=134493,Link="|cffa335ee|Hitem:19257::::::::40:::::::|h[Warlords Deck]|h|r",EquipLoc="",Type="Miscellaneous"},["Champion's Dragonhide Helm"]={SubType="Leather",Level=63,id=16503,StackCount=1,Rarity=3,MinLevel=58,SellPrice=10558,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16503::::::::40:::::::|h[Champion's Dragonhide Helm]|h|r",Type="Armor"},["Mesh Armor"]={SubType="Cloth",Level=66,id=3959,StackCount=1,Rarity=0,MinLevel=61,SellPrice=8843,Texture=135009,Type="Armor",Link="|cff9d9d9d|Hitem:3959::::::::40:::::::|h[Mesh Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Eternal Boots"]={SubType="Cloth",Level=62,id=14329,StackCount=1,Rarity=2,MinLevel=57,SellPrice=14066,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14329::::::::40:::::::|h[Eternal Boots]|h|r"},["Tome of Feather Fall"]={SubType="Book",Level=12,id=3096,StackCount=1,Rarity=1,MinLevel=12,SellPrice=150,Texture=133739,Link="|cffffffff|Hitem:3096::::::::40:::::::|h[Tome of Feather Fall]|h|r",EquipLoc="",Type="Recipe"},["Flimsy Male Human Mask"]={SubType="Miscellaneous",Level=1,id=20566,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134173,Link="|cffffffff|Hitem:20566::::::::40:::::::|h[Flimsy Male Human Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["90 Green Frost Belt"]={SubType="Cloth",Level=90,id=20338,StackCount=1,Rarity=2,MinLevel=60,SellPrice=35067,Texture=132497,Link="|cff1eff00|Hitem:20338::::::::40:::::::|h[90 Green Frost Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Targ's Head"]={SubType="Quest",Level=1,id=3550,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Link="|cffffffff|Hitem:3550::::::::40:::::::|h[Targ's Head]|h|r",EquipLoc="",Type="Quest"},["Animated Chain Necklace"]={SubType="Miscellaneous",Level=62,id=18723,StackCount=1,Rarity=3,MinLevel=57,SellPrice=41953,Texture=133288,Type="Armor",Link="|cff0070dd|Hitem:18723::::::::40:::::::|h[Animated Chain Necklace]|h|r",EquipLoc="INVTYPE_NECK"},["Sorcerer Sash"]={SubType="Cloth",Level=39,id=9875,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2139,Texture=132499,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9875::::::::40:::::::|h[Sorcerer Sash]|h|r"},["Verog's Head"]={SubType="Quest",Level=1,id=5023,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134151,EquipLoc="",Link="|cffffffff|Hitem:5023::::::::40:::::::|h[Verog's Head]|h|r",Type="Quest"},["Brigandine Vest"]={SubType="Mail",Level=50,id=2423,StackCount=1,Rarity=1,MinLevel=45,SellPrice=8554,Texture=132748,Link="|cffffffff|Hitem:2423::::::::40:::::::|h[Brigandine Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Juno's Shadow"]={SubType="Cloth",Level=58,id=17061,StackCount=1,Rarity=3,MinLevel=53,SellPrice=12888,Texture=133772,EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:17061::::::::40:::::::|h[Juno's Shadow]|h|r",Type="Armor"},["Hazza'rah's Charm of Destruction"]={SubType="Miscellaneous",Level=65,id=19957,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133306,Link="|cffa335ee|Hitem:19957::::::::40:::::::|h[Hazza'rah's Charm of Destruction]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Heavy Armor Kit"]={SubType="Consumable",Level=30,id=4265,StackCount=10,Rarity=1,MinLevel=20,SellPrice=650,Texture=133610,EquipLoc="",Link="|cffffffff|Hitem:4265::::::::40:::::::|h[Heavy Armor Kit]|h|r",Type="Consumable"},["Mote of Myzrael"]={SubType="Quest",Level=1,id=4435,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134133,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4435::::::::40:::::::|h[Mote of Myzrael]|h|r"},["Codex of Nullify Disease"]={SubType="Book",Level=14,id=1089,StackCount=1,Rarity=1,MinLevel=14,SellPrice=325,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1089::::::::40:::::::|h[Codex of Nullify Disease]|h|r"},["Kilt of Elements"]={SubType="Mail",Level=61,id=16668,StackCount=1,Rarity=3,MinLevel=56,SellPrice=30541,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16668::::::::40:::::::|h[Kilt of Elements]|h|r",Type="Armor"},["90 Epic Rogue Pants"]={SubType="Leather",Level=90,id=20272,StackCount=1,Rarity=4,MinLevel=60,SellPrice=147707,Texture=134582,Link="|cffa335ee|Hitem:20272::::::::40:::::::|h[90 Epic Rogue Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Studded Hat"]={SubType="Leather",Level=37,id=3890,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2040,Texture=133122,Link="|cffffffff|Hitem:3890::::::::40:::::::|h[Studded Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Heroic Gauntlets"]={SubType="Plate",Level=58,id=14933,StackCount=1,Rarity=2,MinLevel=53,SellPrice=7884,Texture=132965,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14933::::::::40:::::::|h[Heroic Gauntlets]|h|r"},["Heavy Lamellar Helm"]={SubType="Plate",Level=53,id=10241,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8425,Texture=133123,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10241::::::::40:::::::|h[Heavy Lamellar Helm]|h|r",Type="Armor"},["Plans: Mithril Spurs"]={SubType="Blacksmithing",Level=47,id=7989,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:7989::::::::40:::::::|h[Plans: Mithril Spurs]|h|r"},["Doomspike"]={SubType="Daggers",Level=25,id=3413,StackCount=1,Rarity=3,MinLevel=20,SellPrice=3229,Texture=135330,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:3413::::::::40:::::::|h[Doomspike]|h|r"},["[PH] Plate Boots of the Brilliant Dawn"]={SubType="Plate",Level=100,id=13807,StackCount=1,Rarity=1,MinLevel=100,SellPrice=50589,Texture=132585,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:13807::::::::40:::::::|h[[PH] Plate Boots of the Brilliant Dawn]|h|r"},["Fel Steed Saddlebags"]={SubType="Bag",Level=25,id=932,StackCount=1,Rarity=1,MinLevel=0,SellPrice=637,Texture=133633,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:932::::::::40:::::::|h[Fel Steed Saddlebags]|h|r"},["Flayed Demon Skin"]={SubType="Quest",Level=25,id=20310,StackCount=1,Rarity=1,MinLevel=25,SellPrice=0,Texture=134253,Link="|cffffffff|Hitem:20310::::::::40:::::::|h[Flayed Demon Skin]|h|r",EquipLoc="",Type="Quest"},["Crate of Horseshoes"]={SubType="Quest",Level=1,id=1284,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Link="|cffffffff|Hitem:1284::::::::40:::::::|h[Crate of Horseshoes]|h|r",EquipLoc="",Type="Quest"},["Neophyte's Boots"]={SubType="Miscellaneous",Level=1,id=51,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132538,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:51::::::::40:::::::|h[Neophyte's Boots]|h|r",Type="Armor"},["Ravager's Armguards"]={SubType="Mail",Level=40,id=14770,StackCount=1,Rarity=2,MinLevel=35,SellPrice=3172,Texture=132601,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14770::::::::40:::::::|h[Ravager's Armguards]|h|r"},["Raw Summer Bass"]={SubType="Consumable",Level=45,id=13756,StackCount=20,Rarity=1,MinLevel=35,SellPrice=9,Texture=133889,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13756::::::::40:::::::|h[Raw Summer Bass]|h|r"},["Recipe: Carrion Surprise"]={SubType="Cooking",Level=35,id=12232,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12232::::::::40:::::::|h[Recipe: Carrion Surprise]|h|r"},["Monster - Item, Bottle - Green Offhand"]={SubType="Miscellaneous",Level=1,id=3757,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134743,Type="Armor",Link="|cff9d9d9d|Hitem:3757::::::::40:::::::|h[Monster - Item, Bottle - Green Offhand]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Earthen Sigil"]={SubType="Miscellaneous",Level=52,id=20525,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=136069,Link="|cff0070dd|Hitem:20525::::::::40:::::::|h[Earthen Sigil]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Pendant of the Fallen Dragon"]={SubType="Miscellaneous",Level=74,id=19371,StackCount=1,Rarity=4,MinLevel=60,SellPrice=88355,Texture=133299,Link="|cffa335ee|Hitem:19371::::::::40:::::::|h[Pendant of the Fallen Dragon]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Grimoire of Enslave Demon"]={SubType="Book",Level=30,id=9218,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133738,Link="|cffffffff|Hitem:9218::::::::40:::::::|h[Grimoire of Enslave Demon]|h|r",EquipLoc="",Type="Recipe"},["Pattern: Flarecore Robe"]={SubType="Tailoring",Level=66,id=19219,StackCount=1,Rarity=1,MinLevel=0,SellPrice=15000,Texture=134939,Link="|cffffffff|Hitem:19219::::::::40:::::::|h[Pattern: Flarecore Robe]|h|r",EquipLoc="",Type="Recipe"},["Monster - Staff, Crooked Green"]={SubType="Staves",Level=1,id=12329,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12329::::::::40:::::::|h[Monster - Staff, Crooked Green]|h|r"},["Death Speaker Scepter"]={SubType="One-Handed Maces",Level=33,id=2816,StackCount=1,Rarity=3,MinLevel=28,SellPrice=7324,Texture=133482,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:2816::::::::40:::::::|h[Death Speaker Scepter]|h|r"},["Tome of Frost Nova IV"]={SubType="Book",Level=54,id=8879,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133739,Link="|cffffffff|Hitem:8879::::::::40:::::::|h[Tome of Frost Nova IV]|h|r",EquipLoc="",Type="Recipe"},["Raider's Legguards"]={SubType="Mail",Level=19,id=9789,StackCount=1,Rarity=2,MinLevel=14,SellPrice=741,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9789::::::::40:::::::|h[Raider's Legguards]|h|r"},["Archaedic Shard"]={SubType="Miscellaneous",Level=47,id=9417,StackCount=1,Rarity=3,MinLevel=42,SellPrice=10795,Texture=134459,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:9417::::::::40:::::::|h[Archaedic Shard]|h|r"},["Knight-Captain's Plate Hauberk"]={SubType="Plate",Level=68,id=23300,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14987,Texture=132751,Link="|cff0070dd|Hitem:23300::::::::40:::::::|h[Knight-Captain's Plate Hauberk]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Curved Dagger"]={SubType="Daggers",Level=14,id=2632,StackCount=1,Rarity=2,MinLevel=9,SellPrice=605,Texture=135637,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:2632::::::::40:::::::|h[Curved Dagger]|h|r",Type="Weapon"},["Schematic: Goblin Land Mine"]={SubType="Engineering",Level=39,id=4416,StackCount=1,Rarity=2,MinLevel=0,SellPrice=600,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:4416::::::::40:::::::|h[Schematic: Goblin Land Mine]|h|r",Type="Recipe"},["Rune-Inscribed Parchment"]={SubType="Quest",Level=1,id=9568,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:9568::::::::40:::::::|h[Rune-Inscribed Parchment]|h|r",EquipLoc="",Type="Quest"},["Tumbled Crystal"]={SubType="Quest",Level=1,id=4106,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134132,Link="|cffffffff|Hitem:4106::::::::40:::::::|h[Tumbled Crystal]|h|r",EquipLoc="",Type="Quest"},["Rage of Mugamba"]={SubType="Miscellaneous",Level=65,id=19577,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=133313,Link="|cffa335ee|Hitem:19577::::::::40:::::::|h[Rage of Mugamba]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Bloodvine Lens"]={SubType="Leather",Level=65,id=19998,StackCount=1,Rarity=3,MinLevel=60,SellPrice=23211,Texture=133146,Link="|cff0070dd|Hitem:19998::::::::40:::::::|h[Bloodvine Lens]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Thermaplugg's Central Core"]={SubType="Shields",Level=37,id=9458,StackCount=1,Rarity=3,MinLevel=32,SellPrice=6917,Texture=134956,Link="|cff0070dd|Hitem:9458::::::::40:::::::|h[Thermaplugg's Central Core]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Banded Girdle"]={SubType="Mail",Level=31,id=9840,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1432,Texture=132495,Link="|cff1eff00|Hitem:9840::::::::40:::::::|h[Banded Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["The 1 Ring"]={SubType="Miscellaneous",Level=15,id=8350,StackCount=1,Rarity=2,MinLevel=10,SellPrice=1130,Texture=133345,Link="|cff1eff00|Hitem:8350::::::::40:::::::|h[The 1 Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Staff of the Purifier"]={SubType="Staves",Level=23,id=5613,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2635,Texture=135160,Link="|cff1eff00|Hitem:5613::::::::40:::::::|h[Staff of the Purifier]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Sturdy Locked Chest"]={SubType="Junk",Level=30,id=6355,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132594,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:6355::::::::40:::::::|h[Sturdy Locked Chest]|h|r"},["Wedding Dress"]={SubType="Miscellaneous",Level=1,id=6837,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132645,Type="Armor",Link="|cffffffff|Hitem:6837::::::::40:::::::|h[Wedding Dress]|h|r",EquipLoc="INVTYPE_ROBE"},["Embersilk Tunic"]={SubType="Cloth",Level=42,id=14230,StackCount=1,Rarity=2,MinLevel=37,SellPrice=5164,Texture=135008,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14230::::::::40:::::::|h[Embersilk Tunic]|h|r"},["Book of Romantic Poems"]={SubType="Consumable",Level=1,id=22298,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,Link="|cffffffff|Hitem:22298::::::::40:::::::|h[Book of Romantic Poems]|h|r",EquipLoc="",Type="Consumable"},["Defiler's Mail Girdle"]={SubType="Mail",Level=63,id=20195,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17545,Texture=132509,Link="|cff0070dd|Hitem:20195::::::::40:::::::|h[Defiler's Mail Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Runecloth Headband"]={SubType="Cloth",Level=59,id=13866,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11358,Texture=133694,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:13866::::::::40:::::::|h[Runecloth Headband]|h|r"},["Plans: Bloodsoul Shoulders"]={SubType="Blacksmithing",Level=65,id=19777,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19777::::::::40:::::::|h[Plans: Bloodsoul Shoulders]|h|r",EquipLoc="",Type="Recipe"},["General's Dreadweave Boots"]={SubType="Cloth",Level=71,id=17586,StackCount=1,Rarity=4,MinLevel=60,SellPrice=16206,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:17586::::::::40:::::::|h[General's Dreadweave Boots]|h|r",Type="Armor"},["Nightmare Engulfed Object"]={SubType="Quest",Level=63,id=20644,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=136163,Link="|cffa335ee|Hitem:20644::::::::40:::::::|h[Nightmare Engulfed Object]|h|r",EquipLoc="",Type="Quest"},["Gryphon Mail Buckler"]={SubType="Shields",Level=51,id=15621,StackCount=1,Rarity=2,MinLevel=46,SellPrice=15766,Texture=134948,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15621::::::::40:::::::|h[Gryphon Mail Buckler]|h|r",Type="Armor"},["Pattern: Green Leather Armor"]={SubType="Leatherworking",Level=31,id=7613,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:7613::::::::40:::::::|h[Pattern: Green Leather Armor]|h|r"},["Monster - Item, Tankard Wooden"]={SubType="Miscellaneous",Level=1,id=2703,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132795,Link="|cff9d9d9d|Hitem:2703::::::::40:::::::|h[Monster - Item, Tankard Wooden]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Mugthol's Helm"]={SubType="Plate",Level=52,id=13073,StackCount=1,Rarity=3,MinLevel=47,SellPrice=9080,Texture=133127,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:13073::::::::40:::::::|h[Mugthol's Helm]|h|r"},["Alex's Test Beatdown Staff"]={SubType="Staves",Level=70,id=19879,StackCount=1,Rarity=4,MinLevel=60,SellPrice=128801,Texture=135168,Link="|cffa335ee|Hitem:19879::::::::40:::::::|h[Alex's Test Beatdown Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Gift of Friendship: Undercity"]={SubType="Consumable",Level=1,id=22172,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135449,Link="|cffffffff|Hitem:22172::::::::40:::::::|h[Gift of Friendship: Undercity]|h|r",EquipLoc="",Type="Consumable"},["Darkspear Gumdrop"]={SubType="Quest",Level=1,id=20495,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134123,Link="|cffffffff|Hitem:20495::::::::40:::::::|h[Darkspear Gumdrop]|h|r",EquipLoc="",Type="Quest"},["Rod of Molten Fire"]={SubType="Miscellaneous",Level=35,id=2565,StackCount=1,Rarity=3,MinLevel=30,SellPrice=3113,Texture=135124,EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:2565::::::::40:::::::|h[Rod of Molten Fire]|h|r",Type="Armor"},["Drakewing Bands"]={SubType="Leather",Level=25,id=12999,StackCount=1,Rarity=3,MinLevel=20,SellPrice=853,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:12999::::::::40:::::::|h[Drakewing Bands]|h|r"},["Zulian Ceremonial Staff"]={SubType="Staves",Level=65,id=20258,StackCount=1,Rarity=3,MinLevel=60,SellPrice=75602,Texture=135171,Link="|cff0070dd|Hitem:20258::::::::40:::::::|h[Zulian Ceremonial Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Gift of Adoration: Ironforge"]={SubType="Consumable",Level=1,id=21980,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135450,Link="|cffffffff|Hitem:21980::::::::40:::::::|h[Gift of Adoration: Ironforge]|h|r",EquipLoc="",Type="Consumable"},["Merciless Crown"]={SubType="Mail",Level=56,id=15651,StackCount=1,Rarity=2,MinLevel=51,SellPrice=15785,Texture=132768,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15651::::::::40:::::::|h[Merciless Crown]|h|r",Type="Armor"},["Pattern: Bloodvine Vest"]={SubType="Tailoring",Level=65,id=19764,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19764::::::::40:::::::|h[Pattern: Bloodvine Vest]|h|r",EquipLoc="",Type="Recipe"},["Fortified Boots"]={SubType="Mail",Level=25,id=9810,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1231,Texture=132535,Link="|cff1eff00|Hitem:9810::::::::40:::::::|h[Fortified Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Jackseed Belt"]={SubType="Cloth",Level=15,id=10820,StackCount=1,Rarity=2,MinLevel=0,SellPrice=138,Texture=132498,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10820::::::::40:::::::|h[Jackseed Belt]|h|r",Type="Armor"},["Engineer's Shield 3"]={SubType="Shields",Level=1,id=11201,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=134954,Type="Armor",Link="|cffffffff|Hitem:11201::::::::40:::::::|h[Engineer's Shield 3]|h|r",EquipLoc="INVTYPE_SHIELD"},["Smoldering Gloves"]={SubType="Cloth",Level=24,id=3074,StackCount=1,Rarity=2,MinLevel=19,SellPrice=476,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:3074::::::::40:::::::|h[Smoldering Gloves]|h|r",Type="Armor"},["Mudsnout Composite"]={SubType="Quest",Level=1,id=3506,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,Link="|cffffffff|Hitem:3506::::::::40:::::::|h[Mudsnout Composite]|h|r",EquipLoc="",Type="Quest"},["Khan's Legguards"]={SubType="Mail",Level=47,id=14786,StackCount=1,Rarity=2,MinLevel=42,SellPrice=11841,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14786::::::::40:::::::|h[Khan's Legguards]|h|r"},["Lord's Cape"]={SubType="Cloth",Level=48,id=10079,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6370,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10079::::::::40:::::::|h[Lord's Cape]|h|r",Type="Armor"},["Tracker's Gloves"]={SubType="Leather",Level=44,id=9920,StackCount=1,Rarity=2,MinLevel=39,SellPrice=3721,Texture=132959,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9920::::::::40:::::::|h[Tracker's Gloves]|h|r",Type="Armor"},["Elixir of Greater Defense"]={SubType="Consumable",Level=39,id=8951,StackCount=5,Rarity=1,MinLevel=29,SellPrice=200,Texture=134845,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8951::::::::40:::::::|h[Elixir of Greater Defense]|h|r"},["Pale Ghoulfish"]={SubType="Junk",Level=45,id=19804,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=133917,Link="|cff1eff00|Hitem:19804::::::::40:::::::|h[Pale Ghoulfish]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Item, Fish - Blue Offhand"]={SubType="Miscellaneous",Level=1,id=19485,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133888,Link="|cff9d9d9d|Hitem:19485::::::::40:::::::|h[Monster - Item, Fish - Blue Offhand]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND",Type="Weapon"},["Tablet of Undying Strength II"]={SubType="Book",Level=36,id=4176,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=134459,Type="Recipe",Link="|cffffffff|Hitem:4176::::::::40:::::::|h[Tablet of Undying Strength II]|h|r",EquipLoc=""},["Massive Mojo"]={SubType="Trade Goods",Level=60,id=19943,StackCount=20,Rarity=1,MinLevel=0,SellPrice=2000,Texture=136101,Link="|cffffffff|Hitem:19943::::::::40:::::::|h[Massive Mojo]|h|r",EquipLoc="",Type="Trade Goods"},["Gressil, Dawn of Ruin"]={SubType="One-Handed Swords",Level=89,id=23054,StackCount=1,Rarity=4,MinLevel=60,SellPrice=278398,Texture=135371,Link="|cffa335ee|Hitem:23054::::::::40:::::::|h[Gressil, Dawn of Ruin]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["90 Green Warrior Pauldrons"]={SubType="Plate",Level=90,id=20249,StackCount=1,Rarity=2,MinLevel=60,SellPrice=53380,Texture=135046,Link="|cff1eff00|Hitem:20249::::::::40:::::::|h[90 Green Warrior Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Huge Venom Sac"]={SubType="Trade Goods",Level=1,id=19441,StackCount=5,Rarity=1,MinLevel=0,SellPrice=1500,Texture=134341,Link="|cffffffff|Hitem:19441::::::::40:::::::|h[Huge Venom Sac]|h|r",EquipLoc="",Type="Trade Goods"},["Monster - Glaive - 4 Blade"]={SubType="One-Handed Axes",Level=1,id=5599,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:5599::::::::40:::::::|h[Monster - Glaive - 4 Blade]|h|r",Type="Weapon"},["Defiler's Iron Ration"]={SubType="Consumable",Level=45,id=20224,StackCount=20,Rarity=1,MinLevel=35,SellPrice=75,Texture=133950,Link="|cffffffff|Hitem:20224::::::::40:::::::|h[Defiler's Iron Ration]|h|r",EquipLoc="",Type="Consumable"},["Dripping Spider Mandible"]={SubType="Junk",Level=1,id=4585,StackCount=5,Rarity=0,MinLevel=0,SellPrice=583,Texture=134321,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:4585::::::::40:::::::|h[Dripping Spider Mandible]|h|r"},["Chained Essence of Eranikus"]={SubType="Miscellaneous",Level=60,id=10455,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6464,Texture=135229,EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:10455::::::::40:::::::|h[Chained Essence of Eranikus]|h|r",Type="Armor"},["Deprecated Deepwood Breastplate"]={SubType="Leather",Level=28,id=3061,StackCount=1,Rarity=0,MinLevel=23,SellPrice=755,Texture=132715,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:3061::::::::40:::::::|h[Deprecated Deepwood Breastplate]|h|r"},["Faded Hakkari Cloak"]={SubType="Cloth",Level=59,id=20218,StackCount=1,Rarity=3,MinLevel=0,SellPrice=14590,Texture=133765,Link="|cff0070dd|Hitem:20218::::::::40:::::::|h[Faded Hakkari Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Ironspine's Ribcage"]={SubType="Mail",Level=35,id=7688,StackCount=1,Rarity=3,MinLevel=30,SellPrice=5320,Texture=132750,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:7688::::::::40:::::::|h[Ironspine's Ribcage]|h|r"},["Deprecated Keg of Chen's Stormstout"]={SubType="Quest",Level=1,id=4927,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132623,EquipLoc="",Link="|cffffffff|Hitem:4927::::::::40:::::::|h[Deprecated Keg of Chen's Stormstout]|h|r",Type="Quest"},["Gnome Head on a Stick"]={SubType="Consumable",Level=0,id=20337,StackCount=1,Rarity=1,MinLevel=0,SellPrice=85357,Texture=135724,Link="|cffffffff|Hitem:20337::::::::40:::::::|h[Gnome Head on a Stick]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND",Type="Consumable"},["Jordan's Ore Shipment"]={SubType="Quest",Level=1,id=6992,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132766,Type="Quest",Link="|cffffffff|Hitem:6992::::::::40:::::::|h[Jordan's Ore Shipment]|h|r",EquipLoc=""},["Boots of the Fiery Sands"]={SubType="Mail",Level=73,id=21482,StackCount=1,Rarity=3,MinLevel=60,SellPrice=40551,Texture=132545,Link="|cff0070dd|Hitem:21482::::::::40:::::::|h[Boots of the Fiery Sands]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Dreadguard's Protector"]={SubType="Shields",Level=62,id=18756,StackCount=1,Rarity=3,MinLevel=57,SellPrice=33420,Texture=134963,Type="Armor",Link="|cff0070dd|Hitem:18756::::::::40:::::::|h[Dreadguard's Protector]|h|r",EquipLoc="INVTYPE_SHIELD"},["Long Bayonet"]={SubType="Daggers",Level=10,id=4840,StackCount=1,Rarity=1,MinLevel=0,SellPrice=142,Texture=135641,Type="Weapon",Link="|cffffffff|Hitem:4840::::::::40:::::::|h[Long Bayonet]|h|r",EquipLoc="INVTYPE_WEAPON"},["Tome of Blizzard"]={SubType="Book",Level=20,id=5649,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133739,Link="|cffffffff|Hitem:5649::::::::40:::::::|h[Tome of Blizzard]|h|r",EquipLoc="",Type="Recipe"},["Archaeologist's Quarry Boots"]={SubType="Cloth",Level=55,id=11908,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9886,Texture=132539,Type="Armor",Link="|cff1eff00|Hitem:11908::::::::40:::::::|h[Archaeologist's Quarry Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Flamewaker Legplates"]={SubType="Plate",Level=61,id=18861,StackCount=1,Rarity=4,MinLevel=56,SellPrice=28493,Texture=134584,Type="Armor",Link="|cffa335ee|Hitem:18861::::::::40:::::::|h[Flamewaker Legplates]|h|r",EquipLoc="INVTYPE_LEGS"},["Squirrel Nut"]={SubType="Consumable",Level=1,id=2688,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133944,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2688::::::::40:::::::|h[Squirrel Nut]|h|r"},["Imperial Leather Belt"]={SubType="Leather",Level=42,id=4738,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3294,Texture=132501,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4738::::::::40:::::::|h[Imperial Leather Belt]|h|r"},["Defiler's Plate Girdle"]={SubType="Plate",Level=63,id=20204,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11229,Texture=132503,Link="|cff0070dd|Hitem:20204::::::::40:::::::|h[Defiler's Plate Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Pendant of the Qiraji Guardian"]={SubType="Miscellaneous",Level=73,id=21700,StackCount=1,Rarity=4,MinLevel=60,SellPrice=90535,Texture=133339,Link="|cffa335ee|Hitem:21700::::::::40:::::::|h[Pendant of the Qiraji Guardian]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Xorothian Glyphs"]={SubType="Quest",Level=1,id=18670,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Type="Quest",Link="|cffffffff|Hitem:18670::::::::40:::::::|h[Xorothian Glyphs]|h|r",EquipLoc=""},["A Gold Tooth"]={SubType="Junk",Level=1,id=1175,StackCount=1,Rarity=0,MinLevel=0,SellPrice=28,Texture=134566,EquipLoc="",Link="|cff9d9d9d|Hitem:1175::::::::40:::::::|h[A Gold Tooth]|h|r",Type="Miscellaneous"},["Defiler's Mail Greaves"]={SubType="Mail",Level=63,id=20199,StackCount=1,Rarity=3,MinLevel=58,SellPrice=26818,Texture=132545,Link="|cff0070dd|Hitem:20199::::::::40:::::::|h[Defiler's Mail Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Bristle Whisker Catfish"]={SubType="Consumable",Level=25,id=4593,StackCount=20,Rarity=1,MinLevel=15,SellPrice=4,Texture=133916,Type="Consumable",Link="|cffffffff|Hitem:4593::::::::40:::::::|h[Bristle Whisker Catfish]|h|r",EquipLoc=""},["Spiked Chain Slippers"]={SubType="Mail",Level=27,id=15516,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1587,Texture=132579,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15516::::::::40:::::::|h[Spiked Chain Slippers]|h|r",Type="Armor"},["Imperial Plate Bracers"]={SubType="Plate",Level=54,id=12425,StackCount=1,Rarity=2,MinLevel=49,SellPrice=6044,Texture=132618,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:12425::::::::40:::::::|h[Imperial Plate Bracers]|h|r"},["[PH] Cloth Leggings of the Shining Dawn"]={SubType="Cloth",Level=100,id=13776,StackCount=1,Rarity=1,MinLevel=100,SellPrice=69791,Texture=134581,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:13776::::::::40:::::::|h[[PH] Cloth Leggings of the Shining Dawn]|h|r"},["Tome of Frostbolt III"]={SubType="Book",Level=14,id=1554,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:1554::::::::40:::::::|h[Tome of Frostbolt III]|h|r",EquipLoc=""},["[PH] Plate Leggings of the Shining Dawn"]={SubType="Plate",Level=100,id=13785,StackCount=1,Rarity=1,MinLevel=100,SellPrice=72102,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:13785::::::::40:::::::|h[[PH] Plate Leggings of the Shining Dawn]|h|r"},["Ancient Tablet"]={SubType="Junk",Level=1,id=9242,StackCount=1,Rarity=0,MinLevel=0,SellPrice=2421,Texture=134457,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:9242::::::::40:::::::|h[Ancient Tablet]|h|r"},["Empty Dalson's Tears Bottle"]={SubType="Quest",Level=1,id=13187,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134870,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13187::::::::40:::::::|h[Empty Dalson's Tears Bottle]|h|r"},["Silver-thread Robe"]={SubType="Cloth",Level=31,id=4035,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1988,Texture=132673,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:4035::::::::40:::::::|h[Silver-thread Robe]|h|r",Type="Armor"},["Ring of Righteous Flame (TEST)"]={SubType="Miscellaneous",Level=2,id=996,StackCount=1,Rarity=1,MinLevel=1,SellPrice=10,Texture=133345,EquipLoc="INVTYPE_FINGER",Link="|cffffffff|Hitem:996::::::::40:::::::|h[Ring of Righteous Flame (TEST)]|h|r",Type="Armor"},["Crest of Beckoning: Water"]={SubType="Junk",Level=1,id=20420,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134458,Link="|cffffffff|Hitem:20420::::::::40:::::::|h[Crest of Beckoning: Water]|h|r",EquipLoc="",Type="Miscellaneous"},["Firebelcher"]={SubType="Wands",Level=20,id=5243,StackCount=1,Rarity=3,MinLevel=15,SellPrice=1312,Texture=135473,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:5243::::::::40:::::::|h[Firebelcher]|h|r"},["Jouster's Visor"]={SubType="Plate",Level=40,id=8161,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3390,Texture=133159,Link="|cff1eff00|Hitem:8161::::::::40:::::::|h[Jouster's Visor]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Fast Test Fist"]={SubType="Fist Weapons",Level=60,id=19226,StackCount=1,Rarity=0,MinLevel=1,SellPrice=12077,Texture=135612,Link="|cff9d9d9d|Hitem:19226::::::::40:::::::|h[Fast Test Fist]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Percussion Shotgun"]={SubType="Guns",Level=50,id=15323,StackCount=1,Rarity=2,MinLevel=45,SellPrice=17791,Texture=135610,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15323::::::::40:::::::|h[Percussion Shotgun]|h|r",Type="Weapon"},["Mithril Insignia"]={SubType="Quest",Level=40,id=8663,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133598,Link="|cff1eff00|Hitem:8663::::::::40:::::::|h[Mithril Insignia]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Quest"},["Fine Aged Cheddar"]={SubType="Consumable",Level=45,id=3927,StackCount=20,Rarity=1,MinLevel=35,SellPrice=150,Texture=133945,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:3927::::::::40:::::::|h[Fine Aged Cheddar]|h|r"},["Arcane Robe"]={SubType="Cloth",Level=61,id=8290,StackCount=1,Rarity=2,MinLevel=56,SellPrice=17585,Texture=132670,Link="|cff1eff00|Hitem:8290::::::::40:::::::|h[Arcane Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Defiler's Lizardhide Boots"]={SubType="Leather",Level=43,id=20168,StackCount=1,Rarity=3,MinLevel=38,SellPrice=6023,Texture=132561,Link="|cff0070dd|Hitem:20168::::::::40:::::::|h[Defiler's Lizardhide Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Satyr's Bow"]={SubType="Bows",Level=58,id=18323,StackCount=1,Rarity=3,MinLevel=53,SellPrice=32988,Texture=135491,Type="Weapon",Link="|cff0070dd|Hitem:18323::::::::40:::::::|h[Satyr's Bow]|h|r",EquipLoc="INVTYPE_RANGED"},["Heavy Spiked Mace"]={SubType="Two-Handed Maces",Level=19,id=4778,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1470,Texture=133476,Type="Weapon",Link="|cff1eff00|Hitem:4778::::::::40:::::::|h[Heavy Spiked Mace]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Elegant Robes"]={SubType="Cloth",Level=62,id=10215,StackCount=1,Rarity=2,MinLevel=57,SellPrice=17387,Texture=132671,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:10215::::::::40:::::::|h[Elegant Robes]|h|r",Type="Armor"},["Elven Gems"]={SubType="Quest",Level=1,id=4493,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134118,EquipLoc="",Link="|cffffffff|Hitem:4493::::::::40:::::::|h[Elven Gems]|h|r",Type="Quest"},["Colossus of Regal's Husk"]={SubType="Quest",Level=1,id=21535,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134317,Link="|cffffffff|Hitem:21535::::::::40:::::::|h[Colossus of Regal's Husk]|h|r",EquipLoc="",Type="Quest"},["Illusion Dust"]={SubType="Trade Goods",Level=55,id=16204,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132856,EquipLoc="",Link="|cffffffff|Hitem:16204::::::::40:::::::|h[Illusion Dust]|h|r",Type="Trade Goods"},["Plans: Gemmed Copper Gauntlets"]={SubType="Blacksmithing",Level=15,id=3610,StackCount=1,Rarity=2,MinLevel=0,SellPrice=50,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:3610::::::::40:::::::|h[Plans: Gemmed Copper Gauntlets]|h|r"},["Gloom Reaper"]={SubType="One-Handed Axes",Level=37,id=863,StackCount=1,Rarity=2,MinLevel=32,SellPrice=8964,Texture=132399,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:863::::::::40:::::::|h[Gloom Reaper]|h|r",Type="Weapon"},["Sash of the Burning Heart"]={SubType="Cloth",Level=58,id=11807,StackCount=1,Rarity=3,MinLevel=53,SellPrice=9153,Texture=132500,Type="Armor",Link="|cff0070dd|Hitem:11807::::::::40:::::::|h[Sash of the Burning Heart]|h|r",EquipLoc="INVTYPE_WAIST"},["Keg of Shindigger Stout"]={SubType="Quest",Level=1,id=3517,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132621,Link="|cffffffff|Hitem:3517::::::::40:::::::|h[Keg of Shindigger Stout]|h|r",EquipLoc="",Type="Quest"},["Cookie's Tenderizer"]={SubType="One-Handed Maces",Level=21,id=5197,StackCount=1,Rarity=2,MinLevel=16,SellPrice=1597,Texture=132906,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:5197::::::::40:::::::|h[Cookie's Tenderizer]|h|r",Type="Weapon"},["Plans: Ornate Mithril Gloves"]={SubType="Blacksmithing",Level=44,id=7984,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7984::::::::40:::::::|h[Plans: Ornate Mithril Gloves]|h|r",Type="Recipe"},["Band of the Wraith"]={SubType="Miscellaneous",Level=62,id=17000,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10314,Texture=133358,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:17000::::::::40:::::::|h[Band of the Wraith]|h|r",Type="Armor"},["Test Nature Res Feet Mail"]={SubType="Mail",Level=35,id=16129,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3118,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:16129::::::::40:::::::|h[Test Nature Res Feet Mail]|h|r",Type="Armor"},["Monster - Glaive - Demonhunter Black Offhand"]={SubType="One-Handed Axes",Level=1,id=12502,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135279,Type="Weapon",EquipLoc="INVTYPE_WEAPONOFFHAND",Link="|cff9d9d9d|Hitem:12502::::::::40:::::::|h[Monster - Glaive - Demonhunter Black Offhand]|h|r"},["Patch of Duskwing's Fur"]={SubType="Quest",Level=1,id=15850,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134349,EquipLoc="",Link="|cffffffff|Hitem:15850::::::::40:::::::|h[Patch of Duskwing's Fur]|h|r",Type="Quest"},["Gloves of Meditation"]={SubType="Cloth",Level=26,id=4318,StackCount=1,Rarity=2,MinLevel=21,SellPrice=610,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:4318::::::::40:::::::|h[Gloves of Meditation]|h|r",Type="Armor"},["Forester's Axe"]={SubType="One-Handed Axes",Level=23,id=790,StackCount=1,Rarity=2,MinLevel=18,SellPrice=2020,Texture=132405,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:790::::::::40:::::::|h[Forester's Axe]|h|r"},["Winterfall Crate"]={SubType="Quest",Level=1,id=12829,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132766,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12829::::::::40:::::::|h[Winterfall Crate]|h|r"},["Fractured Elemental Shard"]={SubType="Quest",Level=1,id=11266,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135228,Type="Quest",Link="|cffffffff|Hitem:11266::::::::40:::::::|h[Fractured Elemental Shard]|h|r",EquipLoc=""},["Unadorned Seal of Ascension"]={SubType="Quest",Level=1,id=12219,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135725,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12219::::::::40:::::::|h[Unadorned Seal of Ascension]|h|r"},["Bone Scarab"]={SubType="Quest",Level=1,id=20864,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=134929,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:20864::::::::40:::::::|h[Bone Scarab]|h|r"},["Coif of Elemental Fury"]={SubType="Mail",Level=68,id=21804,StackCount=1,Rarity=3,MinLevel=60,SellPrice=31999,Texture=133126,Link="|cff0070dd|Hitem:21804::::::::40:::::::|h[Coif of Elemental Fury]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Cloak of the Honor Guard"]={SubType="Cloth",Level=65,id=20073,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24279,Texture=133754,Link="|cffa335ee|Hitem:20073::::::::40:::::::|h[Cloak of the Honor Guard]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Deprecated Seer's Monocle"]={SubType="Cloth",Level=23,id=2994,StackCount=1,Rarity=0,MinLevel=18,SellPrice=246,Texture=134442,EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:2994::::::::40:::::::|h[Deprecated Seer's Monocle]|h|r",Type="Armor"},["Firwillow Wristbands"]={SubType="Cloth",Level=47,id=10705,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3666,Texture=132611,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10705::::::::40:::::::|h[Firwillow Wristbands]|h|r",Type="Armor"},["Worn Leather Pants"]={SubType="Leather",Level=7,id=1423,StackCount=1,Rarity=0,MinLevel=2,SellPrice=18,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:1423::::::::40:::::::|h[Worn Leather Pants]|h|r"},["Small Shield"]={SubType="Shields",Level=5,id=2133,StackCount=1,Rarity=1,MinLevel=1,SellPrice=15,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:2133::::::::40:::::::|h[Small Shield]|h|r"},["Sageclaw"]={SubType="Daggers",Level=65,id=20070,StackCount=1,Rarity=4,MinLevel=60,SellPrice=88472,Texture=135311,Link="|cffa335ee|Hitem:20070::::::::40:::::::|h[Sageclaw]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Recipe: Grilled Squid"]={SubType="Cooking",Level=48,id=13942,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13942::::::::40:::::::|h[Recipe: Grilled Squid]|h|r"},["Tome of Ice Armor IV"]={SubType="Book",Level=60,id=8891,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133739,Link="|cffffffff|Hitem:8891::::::::40:::::::|h[Tome of Ice Armor IV]|h|r",EquipLoc="",Type="Recipe"},["Smoldering Pants"]={SubType="Cloth",Level=26,id=3073,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1211,Texture=134586,Link="|cff1eff00|Hitem:3073::::::::40:::::::|h[Smoldering Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Frostweave Tunic"]={SubType="Cloth",Level=51,id=13869,StackCount=1,Rarity=2,MinLevel=46,SellPrice=9702,Texture=132649,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:13869::::::::40:::::::|h[Frostweave Tunic]|h|r"},["Ornate Gauntlets"]={SubType="Mail",Level=56,id=10121,StackCount=1,Rarity=2,MinLevel=51,SellPrice=10515,Texture=132944,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10121::::::::40:::::::|h[Ornate Gauntlets]|h|r",Type="Armor"},["Iron Ore"]={SubType="Trade Goods",Level=30,id=2772,StackCount=10,Rarity=1,MinLevel=0,SellPrice=150,Texture=134572,Link="|cffffffff|Hitem:2772::::::::40:::::::|h[Iron Ore]|h|r",EquipLoc="",Type="Trade Goods"},["Bone Golem Shoulders"]={SubType="Mail",Level=62,id=18686,StackCount=1,Rarity=3,MinLevel=57,SellPrice=24527,Texture=135034,Type="Armor",Link="|cff0070dd|Hitem:18686::::::::40:::::::|h[Bone Golem Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Codex of Psychic Scream IV"]={SubType="Book",Level=56,id=9020,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9020::::::::40:::::::|h[Codex of Psychic Scream IV]|h|r"},["Nightmare Blade"]={SubType="One-Handed Swords",Level=71,id=20577,StackCount=1,Rarity=4,MinLevel=60,SellPrice=108080,Texture=135354,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:20577::::::::40:::::::|h[Nightmare Blade]|h|r"},["Level 30 Test Gear Leather - Druid/Shaman"]={SubType="Junk",Level=1,id=13662,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13662::::::::40:::::::|h[Level 30 Test Gear Leather - Druid/Shaman]|h|r"},["E.C.A.C."]={SubType="Consumable",Level=1,id=7970,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134059,Link="|cffffffff|Hitem:7970::::::::40:::::::|h[E.C.A.C.]|h|r",EquipLoc="",Type="Consumable"},["Dreamscale Breastplate"]={SubType="Mail",Level=68,id=20380,StackCount=1,Rarity=4,MinLevel=60,SellPrice=57958,Texture=132743,Link="|cffa335ee|Hitem:20380::::::::40:::::::|h[Dreamscale Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Recipe: Spotted Yellowtail"]={SubType="Cooking",Level=45,id=13939,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13939::::::::40:::::::|h[Recipe: Spotted Yellowtail]|h|r"},["Cenarion Logistics Badge"]={SubType="Quest",Level=1,id=20800,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=133303,Link="|cff1eff00|Hitem:20800::::::::40:::::::|h[Cenarion Logistics Badge]|h|r",EquipLoc="",Type="Quest"},["Tome of Flamestrike IV"]={SubType="Book",Level=40,id=8848,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133739,Link="|cffffffff|Hitem:8848::::::::40:::::::|h[Tome of Flamestrike IV]|h|r",EquipLoc="",Type="Recipe"},["General's Chain Boots"]={SubType="Mail",Level=71,id=16569,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26305,Texture=132587,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16569::::::::40:::::::|h[General's Chain Boots]|h|r",Type="Armor"},["Test Stationery"]={SubType="Consumable",Level=0,id=8164,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2,Texture=134937,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8164::::::::40:::::::|h[Test Stationery]|h|r"},["Bundle of Goods"]={SubType="Quest",Level=1,id=20020,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132766,Link="|cffffffff|Hitem:20020::::::::40:::::::|h[Bundle of Goods]|h|r",EquipLoc="",Type="Quest"},["Frightalon"]={SubType="Daggers",Level=61,id=14024,StackCount=1,Rarity=3,MinLevel=56,SellPrice=52422,Texture=135652,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:14024::::::::40:::::::|h[Frightalon]|h|r"},["Gnomish Goggles"]={SubType="Cloth",Level=42,id=10545,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3929,Texture=133149,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10545::::::::40:::::::|h[Gnomish Goggles]|h|r",Type="Armor"},["Samophlange"]={SubType="Quest",Level=1,id=5054,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132995,EquipLoc="",Link="|cffffffff|Hitem:5054::::::::40:::::::|h[Samophlange]|h|r",Type="Quest"},["Lightforge Breastplate"]={SubType="Plate",Level=63,id=16726,StackCount=1,Rarity=3,MinLevel=58,SellPrice=22270,Texture=132738,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16726::::::::40:::::::|h[Lightforge Breastplate]|h|r",Type="Armor"},["Gold Pirate Earring"]={SubType="Quest",Level=1,id=20021,StackCount=40,Rarity=1,MinLevel=0,SellPrice=0,Texture=133348,Link="|cffffffff|Hitem:20021::::::::40:::::::|h[Gold Pirate Earring]|h|r",EquipLoc="",Type="Quest"},["Ring of Swarming Thought"]={SubType="Miscellaneous",Level=73,id=21707,StackCount=1,Rarity=4,MinLevel=60,SellPrice=85399,Texture=133426,Link="|cffa335ee|Hitem:21707::::::::40:::::::|h[Ring of Swarming Thought]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Timberland Cape"]={SubType="Cloth",Level=18,id=7739,StackCount=1,Rarity=2,MinLevel=0,SellPrice=480,Texture=133769,Link="|cff1eff00|Hitem:7739::::::::40:::::::|h[Timberland Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Wound Poison II"]={SubType="Consumable",Level=40,id=10920,StackCount=20,Rarity=1,MinLevel=40,SellPrice=67,Texture=132274,EquipLoc="",Link="|cffffffff|Hitem:10920::::::::40:::::::|h[Wound Poison II]|h|r",Type="Consumable"},["Mor'zul's Instructions"]={SubType="Quest",Level=1,id=18818,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133737,Type="Quest",Link="|cffffffff|Hitem:18818::::::::40:::::::|h[Mor'zul's Instructions]|h|r",EquipLoc=""},["Thistlefur Sandals"]={SubType="Cloth",Level=32,id=14196,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1673,Texture=132538,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14196::::::::40:::::::|h[Thistlefur Sandals]|h|r"},["Fire-toasted Bun"]={SubType="Consumable",Level=1,id=23327,StackCount=20,Rarity=1,MinLevel=1,SellPrice=0,Texture=133964,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:23327::::::::40:::::::|h[Fire-toasted Bun]|h|r"},["Codex of Holy Word: Shield VII"]={SubType="Book",Level=42,id=8995,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133741,Link="|cffffffff|Hitem:8995::::::::40:::::::|h[Codex of Holy Word: Shield VII]|h|r",EquipLoc="",Type="Recipe"},["Primitive Hand Blade"]={SubType="Daggers",Level=5,id=4925,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:4925::::::::40:::::::|h[Primitive Hand Blade]|h|r",Type="Weapon"},["Headspike"]={SubType="Polearms",Level=51,id=10799,StackCount=1,Rarity=3,MinLevel=46,SellPrice=39288,Texture=135129,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:10799::::::::40:::::::|h[Headspike]|h|r",Type="Weapon"},["Overseer's Cloak"]={SubType="Cloth",Level=20,id=1190,StackCount=1,Rarity=2,MinLevel=15,SellPrice=630,Texture=133760,Type="Armor",Link="|cff1eff00|Hitem:1190::::::::40:::::::|h[Overseer's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Agamand Family Sword"]={SubType="Quest",Level=1,id=7566,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135274,EquipLoc="",Link="|cffffffff|Hitem:7566::::::::40:::::::|h[Agamand Family Sword]|h|r",Type="Quest"},["Black Metal Greatsword"]={SubType="Two-Handed Swords",Level=29,id=2014,StackCount=1,Rarity=2,MinLevel=24,SellPrice=4869,Texture=135313,Link="|cff1eff00|Hitem:2014::::::::40:::::::|h[Black Metal Greatsword]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["General's Plate Boots"]={SubType="Plate",Level=71,id=16545,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17210,Texture=132585,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16545::::::::40:::::::|h[General's Plate Boots]|h|r",Type="Armor"},["Warmonger's Pauldrons"]={SubType="Mail",Level=49,id=9965,StackCount=1,Rarity=2,MinLevel=44,SellPrice=9973,Texture=135036,Link="|cff1eff00|Hitem:9965::::::::40:::::::|h[Warmonger's Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Dragonfang Blade"]={SubType="Daggers",Level=74,id=19346,StackCount=1,Rarity=4,MinLevel=60,SellPrice=130907,Texture=135665,Link="|cffa335ee|Hitem:19346::::::::40:::::::|h[Dragonfang Blade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Maury's Loot"]={SubType="Quest",Level=1,id=3929,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134138,Type="Quest",Link="|cffffffff|Hitem:3929::::::::40:::::::|h[Maury's Loot]|h|r",EquipLoc=""},["Shadowcat Hide"]={SubType="Trade Goods",Level=30,id=7428,StackCount=10,Rarity=1,MinLevel=0,SellPrice=250,Texture=134345,EquipLoc="",Link="|cffffffff|Hitem:7428::::::::40:::::::|h[Shadowcat Hide]|h|r",Type="Trade Goods"},["Nimble Buckler"]={SubType="Shields",Level=58,id=18303,StackCount=1,Rarity=2,MinLevel=53,SellPrice=25232,Texture=134956,Type="Armor",Link="|cff1eff00|Hitem:18303::::::::40:::::::|h[Nimble Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Firebloom"]={SubType="Trade Goods",Level=41,id=4625,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=134200,EquipLoc="",Link="|cffffffff|Hitem:4625::::::::40:::::::|h[Firebloom]|h|r",Type="Trade Goods"},["Treshala's Pendant"]={SubType="Quest",Level=1,id=5825,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133288,EquipLoc="",Link="|cffffffff|Hitem:5825::::::::40:::::::|h[Treshala's Pendant]|h|r",Type="Quest"},["Chestplate of Kor"]={SubType="Mail",Level=24,id=6721,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1418,Texture=132720,Type="Armor",Link="|cff1eff00|Hitem:6721::::::::40:::::::|h[Chestplate of Kor]|h|r",EquipLoc="INVTYPE_CHEST"},["Solid Blasting Powder"]={SubType="Parts",Level=35,id=10505,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=134380,EquipLoc="",Link="|cffffffff|Hitem:10505::::::::40:::::::|h[Solid Blasting Powder]|h|r",Type="Trade Goods"},["Dalaran Wizard's Robe"]={SubType="Cloth",Level=18,id=5110,StackCount=1,Rarity=1,MinLevel=13,SellPrice=257,Texture=132677,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:5110::::::::40:::::::|h[Dalaran Wizard's Robe]|h|r"},["Hallowed Wand - Pirate"]={SubType="Consumable",Level=1,id=20397,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135474,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20397::::::::40:::::::|h[Hallowed Wand - Pirate]|h|r"},["Thick Black Claw"]={SubType="Junk",Level=1,id=20611,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,Link="|cffffffff|Hitem:20611::::::::40:::::::|h[Thick Black Claw]|h|r",EquipLoc="",Type="Miscellaneous"},["Green Hills of Stranglethorn - Page 18"]={SubType="Junk",Level=1,id=2742,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:2742::::::::40:::::::|h[Green Hills of Stranglethorn - Page 18]|h|r"},["Eye of Theradras"]={SubType="Cloth",Level=54,id=17715,StackCount=1,Rarity=3,MinLevel=49,SellPrice=10225,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:17715::::::::40:::::::|h[Eye of Theradras]|h|r",Type="Armor"},["Resilient Handgrips"]={SubType="Cloth",Level=31,id=14403,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1017,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14403::::::::40:::::::|h[Resilient Handgrips]|h|r"},["Highborne Relic"]={SubType="Quest",Level=1,id=5360,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134459,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5360::::::::40:::::::|h[Highborne Relic]|h|r"},["Bottom Half of Advanced Armorsmithing: Volume II"]={SubType="Quest",Level=60,id=18781,StackCount=1,Rarity=3,MinLevel=50,SellPrice=0,Texture=134329,Type="Quest",Link="|cff0070dd|Hitem:18781::::::::40:::::::|h[Bottom Half of Advanced Armorsmithing: Volume II]|h|r",EquipLoc=""},["Chainmail Pants"]={SubType="Mail",Level=17,id=848,StackCount=1,Rarity=1,MinLevel=12,SellPrice=351,Texture=134583,Type="Armor",Link="|cffffffff|Hitem:848::::::::40:::::::|h[Chainmail Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Codex of Fade II"]={SubType="Book",Level=20,id=8965,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133741,Link="|cffffffff|Hitem:8965::::::::40:::::::|h[Codex of Fade II]|h|r",EquipLoc="",Type="Recipe"},["Soft Wool Belt"]={SubType="Cloth",Level=5,id=4919,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5,Texture=132492,Type="Armor",Link="|cffffffff|Hitem:4919::::::::40:::::::|h[Soft Wool Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Lava Core"]={SubType="Reagent",Level=60,id=17011,StackCount=10,Rarity=3,MinLevel=0,SellPrice=2000,Texture=136025,EquipLoc="",Link="|cff0070dd|Hitem:17011::::::::40:::::::|h[Lava Core]|h|r",Type="Reagent"},["Standard Scope"]={SubType="Devices",Level=22,id=4406,StackCount=5,Rarity=1,MinLevel=10,SellPrice=600,Texture=134441,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4406::::::::40:::::::|h[Standard Scope]|h|r"},["Knight-Captain's Chain Girdle"]={SubType="Mail",Level=60,id=16400,StackCount=1,Rarity=3,MinLevel=55,SellPrice=7768,Texture=132517,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16400::::::::40:::::::|h[Knight-Captain's Chain Girdle]|h|r",Type="Armor"},["Blackforge Breastplate"]={SubType="Mail",Level=47,id=4082,StackCount=1,Rarity=2,MinLevel=42,SellPrice=11699,Texture=132634,Link="|cff1eff00|Hitem:4082::::::::40:::::::|h[Blackforge Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Shadowshard Fragment"]={SubType="Quest",Level=1,id=17756,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134076,EquipLoc="",Link="|cffffffff|Hitem:17756::::::::40:::::::|h[Shadowshard Fragment]|h|r",Type="Quest"},["Ring of Redemption"]={SubType="Miscellaneous",Level=92,id=23066,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133393,Link="|cffa335ee|Hitem:23066::::::::40:::::::|h[Ring of Redemption]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Recipe: Lesser Stoneshield Potion"]={SubType="Alchemy",Level=43,id=4624,StackCount=1,Rarity=1,MinLevel=0,SellPrice=550,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:4624::::::::40:::::::|h[Recipe: Lesser Stoneshield Potion]|h|r",Type="Recipe"},["Mystic's Robe"]={SubType="Cloth",Level=23,id=14371,StackCount=1,Rarity=2,MinLevel=18,SellPrice=815,Texture=132655,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14371::::::::40:::::::|h[Mystic's Robe]|h|r"},["Weak Troll's Blood Potion"]={SubType="Consumable",Level=8,id=3382,StackCount=5,Rarity=1,MinLevel=1,SellPrice=10,Texture=134857,Link="|cffffffff|Hitem:3382::::::::40:::::::|h[Weak Troll's Blood Potion]|h|r",EquipLoc="",Type="Consumable"},["Dracorian Gauntlets"]={SubType="Mail",Level=63,id=13344,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17210,Texture=132965,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13344::::::::40:::::::|h[Dracorian Gauntlets]|h|r"},["Cranial Thumper"]={SubType="One-Handed Maces",Level=12,id=4303,StackCount=1,Rarity=2,MinLevel=7,SellPrice=398,Texture=133054,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:4303::::::::40:::::::|h[Cranial Thumper]|h|r",Type="Weapon"},["Inert Scourgestone"]={SubType="Junk",Level=1,id=20612,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=135257,Link="|cffffffff|Hitem:20612::::::::40:::::::|h[Inert Scourgestone]|h|r",EquipLoc="",Type="Miscellaneous"},["Foreman's Boots"]={SubType="Cloth",Level=21,id=2168,StackCount=1,Rarity=2,MinLevel=16,SellPrice=469,Texture=132537,Link="|cff1eff00|Hitem:2168::::::::40:::::::|h[Foreman's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Hallowed Tablet"]={SubType="Quest",Level=1,id=9561,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134455,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9561::::::::40:::::::|h[Hallowed Tablet]|h|r"},["Monster - Item, Book - B02 Black Glowing Offhand"]={SubType="Miscellaneous",Level=1,id=12867,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12867::::::::40:::::::|h[Monster - Item, Book - B02 Black Glowing Offhand]|h|r"},["Recipe: Westfall Stew"]={SubType="Cooking",Level=15,id=728,StackCount=1,Rarity=1,MinLevel=0,SellPrice=50,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:728::::::::40:::::::|h[Recipe: Westfall Stew]|h|r",EquipLoc=""},["Dalaran Status Report"]={SubType="Quest",Level=1,id=7309,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134329,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7309::::::::40:::::::|h[Dalaran Status Report]|h|r"},["Runed Copper Belt"]={SubType="Mail",Level=18,id=2857,StackCount=1,Rarity=1,MinLevel=13,SellPrice=198,Texture=132492,Type="Armor",Link="|cffffffff|Hitem:2857::::::::40:::::::|h[Runed Copper Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Shroud of Pure Thought"]={SubType="Cloth",Level=75,id=19430,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42919,Texture=133768,Link="|cffa335ee|Hitem:19430::::::::40:::::::|h[Shroud of Pure Thought]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["90 Green Frost Bindings"]={SubType="Cloth",Level=90,id=20339,StackCount=1,Rarity=2,MinLevel=60,SellPrice=35199,Texture=133365,Link="|cff1eff00|Hitem:20339::::::::40:::::::|h[90 Green Frost Bindings]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Lead Surveyor's Mantle"]={SubType="Mail",Level=55,id=11842,StackCount=1,Rarity=3,MinLevel=50,SellPrice=17050,Texture=135046,Type="Armor",Link="|cff0070dd|Hitem:11842::::::::40:::::::|h[Lead Surveyor's Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Pattern: Truefaith Gloves"]={SubType="Tailoring",Level=30,id=7091,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7091::::::::40:::::::|h[Pattern: Truefaith Gloves]|h|r",Type="Recipe"},["Book of Thorns III"]={SubType="Book",Level=24,id=5154,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:5154::::::::40:::::::|h[Book of Thorns III]|h|r",Type="Recipe"},["Insignia Belt"]={SubType="Leather",Level=34,id=6409,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1660,Texture=132498,Type="Armor",Link="|cff1eff00|Hitem:6409::::::::40:::::::|h[Insignia Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Sanguine Trousers"]={SubType="Cloth",Level=29,id=14379,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1615,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14379::::::::40:::::::|h[Sanguine Trousers]|h|r"},["Gyromatic Icemaker"]={SubType="Wands",Level=31,id=9489,StackCount=1,Rarity=2,MinLevel=26,SellPrice=3690,Texture=135467,Link="|cff1eff00|Hitem:9489::::::::40:::::::|h[Gyromatic Icemaker]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Field Marshal's Silk Spaulders"]={SubType="Cloth",Level=74,id=16444,StackCount=1,Rarity=4,MinLevel=60,SellPrice=19342,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16444::::::::40:::::::|h[Field Marshal's Silk Spaulders]|h|r",Type="Armor"},["Headhunter's Headdress"]={SubType="Leather",Level=38,id=15353,StackCount=1,Rarity=2,MinLevel=33,SellPrice=3467,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15353::::::::40:::::::|h[Headhunter's Headdress]|h|r",Type="Armor"},["An Old History Book"]={SubType="Quest",Level=20,id=2794,StackCount=1,Rarity=1,MinLevel=20,SellPrice=0,Texture=133741,Link="|cffffffff|Hitem:2794::::::::40:::::::|h[An Old History Book]|h|r",EquipLoc="",Type="Quest"},["Hoop Earring"]={SubType="Junk",Level=1,id=9355,StackCount=20,Rarity=0,MinLevel=0,SellPrice=376,Texture=133349,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:9355::::::::40:::::::|h[Hoop Earring]|h|r"},["Tablet of Frostbrand Weapon II"]={SubType="Book",Level=34,id=9090,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9090::::::::40:::::::|h[Tablet of Frostbrand Weapon II]|h|r"},["63 Green Warrior Helm"]={SubType="Plate",Level=63,id=20286,StackCount=1,Rarity=2,MinLevel=58,SellPrice=14518,Texture=133077,Link="|cff1eff00|Hitem:20286::::::::40:::::::|h[63 Green Warrior Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Dark Iron Reaver"]={SubType="One-Handed Swords",Level=65,id=17015,StackCount=1,Rarity=3,MinLevel=60,SellPrice=63738,Texture=135358,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:17015::::::::40:::::::|h[Dark Iron Reaver]|h|r",Type="Weapon"},["Pattern: Frostweave Pants"]={SubType="Tailoring",Level=56,id=14489,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14489::::::::40:::::::|h[Pattern: Frostweave Pants]|h|r"},["63 Green Warrior Waistband"]={SubType="Plate",Level=63,id=20292,StackCount=1,Rarity=2,MinLevel=58,SellPrice=9889,Texture=132498,Link="|cff1eff00|Hitem:20292::::::::40:::::::|h[63 Green Warrior Waistband]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Infernal Headcage"]={SubType="Mail",Level=69,id=18546,StackCount=1,Rarity=4,MinLevel=60,SellPrice=48035,Texture=133120,Type="Armor",Link="|cffa335ee|Hitem:18546::::::::40:::::::|h[Infernal Headcage]|h|r",EquipLoc="INVTYPE_HEAD"},["Speedy Racer Goggles"]={SubType="Cloth",Level=50,id=9653,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6745,Texture=133149,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9653::::::::40:::::::|h[Speedy Racer Goggles]|h|r"},["Lucky Fishing Hat"]={SubType="Cloth",Level=40,id=19972,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3396,Texture=133133,Link="|cff1eff00|Hitem:19972::::::::40:::::::|h[Lucky Fishing Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Imperial Red Pants"]={SubType="Cloth",Level=54,id=8251,StackCount=1,Rarity=2,MinLevel=49,SellPrice=12080,Texture=134586,Link="|cff1eff00|Hitem:8251::::::::40:::::::|h[Imperial Red Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Turtle Egg (Leatherback)"]={SubType="Junk",Level=20,id=18966,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=132834,Type="Miscellaneous",Link="|cffffffff|Hitem:18966::::::::40:::::::|h[Turtle Egg (Leatherback)]|h|r",EquipLoc=""},["Mystic's Cape"]={SubType="Cloth",Level=15,id=14365,StackCount=1,Rarity=2,MinLevel=10,SellPrice=214,Texture=133768,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14365::::::::40:::::::|h[Mystic's Cape]|h|r"},["Ceremonial Elven Blade"]={SubType="Daggers",Level=45,id=11856,StackCount=1,Rarity=2,MinLevel=0,SellPrice=15775,Texture=135311,Type="Weapon",Link="|cff1eff00|Hitem:11856::::::::40:::::::|h[Ceremonial Elven Blade]|h|r",EquipLoc="INVTYPE_WEAPON"},["Grimoire of Devour Magic (Rank 3)"]={SubType="Book",Level=46,id=16382,StackCount=1,Rarity=1,MinLevel=46,SellPrice=3250,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16382::::::::40:::::::|h[Grimoire of Devour Magic (Rank 3)]|h|r",Type="Recipe"},["Nocturnal Wristbands"]={SubType="Leather",Level=39,id=15160,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2430,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15160::::::::40:::::::|h[Nocturnal Wristbands]|h|r",Type="Armor"},["Ocean's Breeze"]={SubType="Miscellaneous",Level=63,id=18399,StackCount=1,Rarity=3,MinLevel=0,SellPrice=27103,Texture=133370,Type="Armor",Link="|cff0070dd|Hitem:18399::::::::40:::::::|h[Ocean's Breeze]|h|r",EquipLoc="INVTYPE_FINGER"},["Silverleaf"]={SubType="Trade Goods",Level=5,id=765,StackCount=20,Rarity=1,MinLevel=0,SellPrice=10,Texture=134190,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:765::::::::40:::::::|h[Silverleaf]|h|r"},["Belt of Arugal"]={SubType="Cloth",Level=29,id=6392,StackCount=1,Rarity=3,MinLevel=24,SellPrice=1000,Texture=132499,Type="Armor",Link="|cff0070dd|Hitem:6392::::::::40:::::::|h[Belt of Arugal]|h|r",EquipLoc="INVTYPE_WAIST"},["Wolf Rider's Gloves"]={SubType="Leather",Level=43,id=15372,StackCount=1,Rarity=2,MinLevel=38,SellPrice=3383,Texture=132959,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15372::::::::40:::::::|h[Wolf Rider's Gloves]|h|r",Type="Armor"},["Spirit of Aquementas"]={SubType="Miscellaneous",Level=56,id=11904,StackCount=1,Rarity=2,MinLevel=0,SellPrice=13815,Texture=134564,Type="Armor",Link="|cff1eff00|Hitem:11904::::::::40:::::::|h[Spirit of Aquementas]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["90 Epic Rogue Gloves"]={SubType="Leather",Level=90,id=20271,StackCount=1,Rarity=4,MinLevel=60,SellPrice=73595,Texture=132958,Link="|cffa335ee|Hitem:20271::::::::40:::::::|h[90 Epic Rogue Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Small Green Pouch"]={SubType="Bag",Level=5,id=5572,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=133637,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:5572::::::::40:::::::|h[Small Green Pouch]|h|r",Type="Container"},["Hunting Buckler"]={SubType="Shields",Level=14,id=3652,StackCount=1,Rarity=2,MinLevel=9,SellPrice=364,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:3652::::::::40:::::::|h[Hunting Buckler]|h|r"},["Sleeveless T-Shirt"]={SubType="Junk",Level=1,id=18231,StackCount=1,Rarity=0,MinLevel=0,SellPrice=361,Texture=135016,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18231::::::::40:::::::|h[Sleeveless T-Shirt]|h|r",EquipLoc="INVTYPE_BODY"},["Bobbing Apple"]={SubType="Consumable",Level=55,id=20516,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=133975,Link="|cffffffff|Hitem:20516::::::::40:::::::|h[Bobbing Apple]|h|r",EquipLoc="",Type="Consumable"},["Gurubashi Mojo Madness"]={SubType="Quest",Level=1,id=19931,StackCount=20,Rarity=3,MinLevel=0,SellPrice=0,Texture=134711,Link="|cff0070dd|Hitem:19931::::::::40:::::::|h[Gurubashi Mojo Madness]|h|r",EquipLoc="",Type="Quest"},["Ring of Emperor Vek'lor"]={SubType="Miscellaneous",Level=81,id=21601,StackCount=1,Rarity=4,MinLevel=60,SellPrice=79025,Texture=133423,Link="|cffa335ee|Hitem:21601::::::::40:::::::|h[Ring of Emperor Vek'lor]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Powdered Azurite"]={SubType="Consumable",Level=1,id=7127,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,Link="|cffffffff|Hitem:7127::::::::40:::::::|h[Powdered Azurite]|h|r",EquipLoc="",Type="Consumable"},["Pattern: Spider Belt"]={SubType="Tailoring",Level=36,id=4353,StackCount=1,Rarity=2,MinLevel=0,SellPrice=300,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:4353::::::::40:::::::|h[Pattern: Spider Belt]|h|r",Type="Recipe"},["Quicksilver Pendant"]={SubType="Miscellaneous",Level=59,id=12026,StackCount=1,Rarity=2,MinLevel=54,SellPrice=7757,Texture=133298,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12026::::::::40:::::::|h[Quicksilver Pendant]|h|r"},["Explosive Sheep"]={SubType="Explosives",Level=30,id=4384,StackCount=5,Rarity=1,MinLevel=0,SellPrice=1000,Texture=136071,Type="Trade Goods",Link="|cffffffff|Hitem:4384::::::::40:::::::|h[Explosive Sheep]|h|r",EquipLoc=""},["Raw Whitescale Salmon"]={SubType="Consumable",Level=55,id=13889,StackCount=20,Rarity=1,MinLevel=45,SellPrice=5,Texture=133906,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13889::::::::40:::::::|h[Raw Whitescale Salmon]|h|r"},["Reins of the Striped Frostsaber"]={SubType="Junk",Level=40,id=8631,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132267,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:8631::::::::40:::::::|h[Reins of the Striped Frostsaber]|h|r"},["Engineer's Hammer"]={SubType="One-Handed Maces",Level=16,id=5324,StackCount=1,Rarity=2,MinLevel=0,SellPrice=776,Texture=133057,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:5324::::::::40:::::::|h[Engineer's Hammer]|h|r"},["Call of the Raptor"]={SubType="Consumable",Level=37,id=4546,StackCount=1,Rarity=1,MinLevel=0,SellPrice=533,Texture=134229,Type="Consumable",Link="|cffffffff|Hitem:4546::::::::40:::::::|h[Call of the Raptor]|h|r",EquipLoc=""},["63 Green Rogue Cap"]={SubType="Leather",Level=63,id=20315,StackCount=1,Rarity=2,MinLevel=58,SellPrice=18739,Texture=133143,Link="|cff1eff00|Hitem:20315::::::::40:::::::|h[63 Green Rogue Cap]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Grimoire of Immolate"]={SubType="Book",Level=1,id=9190,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=133738,Link="|cffffffff|Hitem:9190::::::::40:::::::|h[Grimoire of Immolate]|h|r",EquipLoc="",Type="Recipe"},["Ornate Pauldrons"]={SubType="Mail",Level=56,id=10125,StackCount=1,Rarity=2,MinLevel=51,SellPrice=14551,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10125::::::::40:::::::|h[Ornate Pauldrons]|h|r",Type="Armor"},["Book from Sven's Farm"]={SubType="Quest",Level=1,id=2161,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,Type="Quest",Link="|cffffffff|Hitem:2161::::::::40:::::::|h[Book from Sven's Farm]|h|r",EquipLoc=""},["Bloodband Bracers"]={SubType="Cloth",Level=46,id=11469,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3563,Texture=132612,Type="Armor",Link="|cff1eff00|Hitem:11469::::::::40:::::::|h[Bloodband Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Fletcher's Gloves"]={SubType="Leather",Level=25,id=7348,StackCount=1,Rarity=2,MinLevel=20,SellPrice=690,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7348::::::::40:::::::|h[Fletcher's Gloves]|h|r"},["Farren's Report"]={SubType="Quest",Level=1,id=3721,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133461,Link="|cffffffff|Hitem:3721::::::::40:::::::|h[Farren's Report]|h|r",EquipLoc="",Type="Quest"},["Halo of Transcendence"]={SubType="Cloth",Level=76,id=16921,StackCount=1,Rarity=4,MinLevel=60,SellPrice=43440,Texture=133126,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16921::::::::40:::::::|h[Halo of Transcendence]|h|r",Type="Armor"},["Wartorn Leather Scrap"]={SubType="Junk",Level=60,id=22373,StackCount=200,Rarity=3,MinLevel=0,SellPrice=0,Texture=134517,Link="|cff0070dd|Hitem:22373::::::::40:::::::|h[Wartorn Leather Scrap]|h|r",EquipLoc="",Type="Miscellaneous"},["Runecloth Robe"]={SubType="Cloth",Level=52,id=13858,StackCount=1,Rarity=2,MinLevel=47,SellPrice=10917,Texture=132645,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:13858::::::::40:::::::|h[Runecloth Robe]|h|r"},["Shining Armplates"]={SubType="Plate",Level=59,id=15797,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7530,Texture=132617,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15797::::::::40:::::::|h[Shining Armplates]|h|r",Type="Armor"},["Deprecated Jkaplan TEST"]={SubType="Quest",Level=1,id=3686,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132381,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3686::::::::40:::::::|h[Deprecated Jkaplan TEST]|h|r"},["Twill Boots"]={SubType="Cloth",Level=55,id=3945,StackCount=1,Rarity=0,MinLevel=50,SellPrice=3852,Texture=132543,Link="|cff9d9d9d|Hitem:3945::::::::40:::::::|h[Twill Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Masterwork Gauntlets"]={SubType="Mail",Level=63,id=10268,StackCount=1,Rarity=2,MinLevel=58,SellPrice=14758,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10268::::::::40:::::::|h[Masterwork Gauntlets]|h|r",Type="Armor"},["1000 Test dagger 60 blue"]={SubType="Daggers",Level=60,id=19810,StackCount=1,Rarity=3,MinLevel=58,SellPrice=48120,Texture=135637,Link="|cff0070dd|Hitem:19810::::::::40:::::::|h[1000 Test dagger 60 blue]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Pads of the Venom Spider"]={SubType="Cloth",Level=38,id=13103,StackCount=1,Rarity=3,MinLevel=33,SellPrice=3453,Texture=135049,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13103::::::::40:::::::|h[Pads of the Venom Spider]|h|r"},["90 Green Rogue Pants"]={SubType="Leather",Level=90,id=20306,StackCount=1,Rarity=2,MinLevel=60,SellPrice=90319,Texture=134582,Link="|cff1eff00|Hitem:20306::::::::40:::::::|h[90 Green Rogue Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Very Berry Cream"]={SubType="Consumable",Level=1,id=22238,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135458,Link="|cffffffff|Hitem:22238::::::::40:::::::|h[Very Berry Cream]|h|r",EquipLoc="",Type="Consumable"},["Nat Pagle's Broken Reel"]={SubType="Miscellaneous",Level=68,id=19947,StackCount=1,Rarity=3,MinLevel=60,SellPrice=86528,Texture=133003,Link="|cff0070dd|Hitem:19947::::::::40:::::::|h[Nat Pagle's Broken Reel]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Invader's Scourgestone"]={SubType="Quest",Level=1,id=12841,StackCount=250,Rarity=1,MinLevel=0,SellPrice=0,Texture=133446,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12841::::::::40:::::::|h[Invader's Scourgestone]|h|r"},["Manual: The Path of Defense"]={SubType="Book",Level=10,id=6619,StackCount=1,Rarity=1,MinLevel=10,SellPrice=0,Texture=133734,Type="Recipe",Link="|cffffffff|Hitem:6619::::::::40:::::::|h[Manual: The Path of Defense]|h|r",EquipLoc=""},["Black Leather D02 Bracers"]={SubType="Leather",Level=1,id=3545,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132603,Link="|cffffffff|Hitem:3545::::::::40:::::::|h[Black Leather D02 Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Striker's Mark"]={SubType="Bows",Level=69,id=17069,StackCount=1,Rarity=4,MinLevel=60,SellPrice=75746,Texture=135496,EquipLoc="INVTYPE_RANGED",Link="|cffa335ee|Hitem:17069::::::::40:::::::|h[Striker's Mark]|h|r",Type="Weapon"},["Libram: Crusader Strike III"]={SubType="Book",Level=34,id=8920,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133740,Link="|cffffffff|Hitem:8920::::::::40:::::::|h[Libram: Crusader Strike III]|h|r",EquipLoc="",Type="Recipe"},["Silver-linked Footguards"]={SubType="Mail",Level=21,id=12982,StackCount=1,Rarity=3,MinLevel=16,SellPrice=850,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:12982::::::::40:::::::|h[Silver-linked Footguards]|h|r"},["Heavy Lamellar Leggings"]={SubType="Plate",Level=54,id=10244,StackCount=1,Rarity=2,MinLevel=49,SellPrice=12039,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10244::::::::40:::::::|h[Heavy Lamellar Leggings]|h|r",Type="Armor"},["Vessel of Rebirth"]={SubType="Quest",Level=70,id=19016,StackCount=1,Rarity=5,MinLevel=60,SellPrice=0,Texture=132878,Link="|cffff8000|Hitem:19016::::::::40:::::::|h[Vessel of Rebirth]|h|r",EquipLoc="",Type="Quest"},["Abyssal Leather Belt"]={SubType="Leather",Level=65,id=20667,StackCount=1,Rarity=2,MinLevel=60,SellPrice=13431,Texture=132519,Link="|cff1eff00|Hitem:20667::::::::40:::::::|h[Abyssal Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Grimoire of Sacrifice (Rank 5)"]={SubType="Book",Level=48,id=16355,StackCount=1,Rarity=1,MinLevel=48,SellPrice=3500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16355::::::::40:::::::|h[Grimoire of Sacrifice (Rank 5)]|h|r",Type="Recipe"},["Nether Gem"]={SubType="Quest",Level=1,id=3081,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134076,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3081::::::::40:::::::|h[Nether Gem]|h|r"},["Feet of the Lynx"]={SubType="Leather",Level=24,id=1121,StackCount=1,Rarity=3,MinLevel=19,SellPrice=1075,Texture=132592,Type="Armor",Link="|cff0070dd|Hitem:1121::::::::40:::::::|h[Feet of the Lynx]|h|r",EquipLoc="INVTYPE_FEET"},["Revenant Deflector"]={SubType="Shields",Level=54,id=10093,StackCount=1,Rarity=2,MinLevel=49,SellPrice=18903,Texture=134952,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:10093::::::::40:::::::|h[Revenant Deflector]|h|r",Type="Armor"},["Tome of Greater Invisibility"]={SubType="Book",Level=50,id=8870,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133739,Link="|cffffffff|Hitem:8870::::::::40:::::::|h[Tome of Greater Invisibility]|h|r",EquipLoc="",Type="Recipe"},["Ironweave Gloves"]={SubType="Cloth",Level=61,id=22304,StackCount=1,Rarity=3,MinLevel=56,SellPrice=10689,Texture=132961,Link="|cff0070dd|Hitem:22304::::::::40:::::::|h[Ironweave Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Oiled Blunderbuss"]={SubType="Guns",Level=29,id=2786,StackCount=1,Rarity=0,MinLevel=24,SellPrice=1173,Texture=135610,Type="Weapon",Link="|cff9d9d9d|Hitem:2786::::::::40:::::::|h[Oiled Blunderbuss]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Stormpike Assault Orders"]={SubType="Quest",Level=1,id=17353,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134940,EquipLoc="",Link="|cffffffff|Hitem:17353::::::::40:::::::|h[Stormpike Assault Orders]|h|r",Type="Quest"},["Agamand Family Mace"]={SubType="Quest",Level=1,id=7569,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133487,Link="|cffffffff|Hitem:7569::::::::40:::::::|h[Agamand Family Mace]|h|r",EquipLoc="",Type="Quest"},["Dark Rune"]={SubType="Trade Goods",Level=55,id=20520,StackCount=20,Rarity=2,MinLevel=0,SellPrice=2000,Texture=136192,Link="|cff1eff00|Hitem:20520::::::::40:::::::|h[Dark Rune]|h|r",EquipLoc="",Type="Trade Goods"},["Report on the Defias Brotherhood"]={SubType="Quest",Level=1,id=2956,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133461,EquipLoc="",Link="|cffffffff|Hitem:2956::::::::40:::::::|h[Report on the Defias Brotherhood]|h|r",Type="Quest"},["Warbear Woolies"]={SubType="Leather",Level=57,id=15065,StackCount=1,Rarity=3,MinLevel=52,SellPrice=22233,Texture=134706,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:15065::::::::40:::::::|h[Warbear Woolies]|h|r",Type="Armor"},["Whisperwalk Boots"]={SubType="Leather",Level=52,id=20255,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12425,Texture=132562,Link="|cff0070dd|Hitem:20255::::::::40:::::::|h[Whisperwalk Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Dragonspine Key"]={SubType="Key",Level=1,id=12143,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134245,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:12143::::::::40:::::::|h[Dragonspine Key]|h|r"},["Ice Guard"]={SubType="Junk",Level=60,id=22636,StackCount=1,Rarity=3,MinLevel=55,SellPrice=0,Texture=135849,Link="|cff0070dd|Hitem:22636::::::::40:::::::|h[Ice Guard]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Item, Vial Yellow Offhand"]={SubType="Miscellaneous",Level=1,id=13341,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134718,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13341::::::::40:::::::|h[Monster - Item, Vial Yellow Offhand]|h|r"},["Big Bad Pauldrons"]={SubType="Plate",Level=50,id=9476,StackCount=1,Rarity=3,MinLevel=45,SellPrice=8593,Texture=135032,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:9476::::::::40:::::::|h[Big Bad Pauldrons]|h|r"},["Battleforge Boots"]={SubType="Mail",Level=29,id=6590,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1830,Texture=132589,Type="Armor",Link="|cff1eff00|Hitem:6590::::::::40:::::::|h[Battleforge Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Acceptable Hyena Sample"]={SubType="Quest",Level=0,id=9441,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134370,Link="|cffffffff|Hitem:9441::::::::40:::::::|h[Acceptable Hyena Sample]|h|r",EquipLoc="",Type="Quest"},["Gnome Engineer Membership Card"]={SubType="Quest",Level=0,id=10790,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133460,EquipLoc="",Link="|cffffffff|Hitem:10790::::::::40:::::::|h[Gnome Engineer Membership Card]|h|r",Type="Quest"},["Ruthless Shiv"]={SubType="Polearms",Level=39,id=7758,StackCount=1,Rarity=3,MinLevel=34,SellPrice=15074,Texture=135131,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:7758::::::::40:::::::|h[Ruthless Shiv]|h|r",Type="Weapon"},["Good Luck Charm"]={SubType="Quest",Level=1,id=12723,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133444,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12723::::::::40:::::::|h[Good Luck Charm]|h|r"},["Gnoll Paw"]={SubType="Quest",Level=1,id=725,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134297,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:725::::::::40:::::::|h[Gnoll Paw]|h|r"},["OLDMonster - Feet, Plate Silver"]={SubType="Plate",Level=1,id=3244,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=132535,Type="Armor",Link="|cff9d9d9d|Hitem:3244::::::::40:::::::|h[OLDMonster - Feet, Plate Silver]|h|r",EquipLoc="INVTYPE_FEET"},["Tome of Flamestrike"]={SubType="Book",Level=16,id=3089,StackCount=1,Rarity=1,MinLevel=16,SellPrice=325,Texture=133739,Link="|cffffffff|Hitem:3089::::::::40:::::::|h[Tome of Flamestrike]|h|r",EquipLoc="",Type="Recipe"},["Boar Hunter's Cape"]={SubType="Cloth",Level=20,id=5314,StackCount=1,Rarity=2,MinLevel=0,SellPrice=528,Texture=133762,Link="|cff1eff00|Hitem:5314::::::::40:::::::|h[Boar Hunter's Cape]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Glowing Thresher Cape"]={SubType="Cloth",Level=29,id=6901,StackCount=1,Rarity=3,MinLevel=24,SellPrice=1523,Texture=134305,Type="Armor",Link="|cff0070dd|Hitem:6901::::::::40:::::::|h[Glowing Thresher Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Chromatic Robe"]={SubType="Cloth",Level=29,id=2615,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1018,Texture=132679,Type="Armor",Link="|cffffffff|Hitem:2615::::::::40:::::::|h[Chromatic Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Engineer's Shield 2"]={SubType="Shields",Level=1,id=11200,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=134954,Type="Armor",Link="|cffffffff|Hitem:11200::::::::40:::::::|h[Engineer's Shield 2]|h|r",EquipLoc="INVTYPE_SHIELD"},["Fine Pointed Dagger"]={SubType="Daggers",Level=44,id=4023,StackCount=1,Rarity=0,MinLevel=39,SellPrice=6215,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:4023::::::::40:::::::|h[Fine Pointed Dagger]|h|r",Type="Weapon"},["Slimy Scaled Gauntlets"]={SubType="Mail",Level=68,id=21487,StackCount=1,Rarity=4,MinLevel=60,SellPrice=28658,Texture=132946,Link="|cffa335ee|Hitem:21487::::::::40:::::::|h[Slimy Scaled Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["90 Green Warrior Neck"]={SubType="Miscellaneous",Level=90,id=20248,StackCount=1,Rarity=2,MinLevel=60,SellPrice=7108,Texture=133278,Link="|cff1eff00|Hitem:20248::::::::40:::::::|h[90 Green Warrior Neck]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Recipe: Smoked Sagefish"]={SubType="Cooking",Level=15,id=21099,StackCount=1,Rarity=1,MinLevel=0,SellPrice=125,Texture=134939,Link="|cffffffff|Hitem:21099::::::::40:::::::|h[Recipe: Smoked Sagefish]|h|r",EquipLoc="",Type="Recipe"},["Stoneshell Guard"]={SubType="Shields",Level=52,id=11631,StackCount=1,Rarity=3,MinLevel=47,SellPrice=19893,Texture=134948,Type="Armor",Link="|cff0070dd|Hitem:11631::::::::40:::::::|h[Stoneshell Guard]|h|r",EquipLoc="INVTYPE_SHIELD"},["Test AQ Resource - Peacebloom"]={SubType="Junk",Level=1,id=21662,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21662::::::::40:::::::|h[Test AQ Resource - Peacebloom]|h|r"},["Striker's Diadem"]={SubType="Mail",Level=81,id=21366,StackCount=1,Rarity=4,MinLevel=60,SellPrice=86939,Texture=133175,Link="|cffa335ee|Hitem:21366::::::::40:::::::|h[Striker's Diadem]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Avenger's Armor"]={SubType="Mail",Level=31,id=1488,StackCount=1,Rarity=3,MinLevel=26,SellPrice=3379,Texture=132624,Type="Armor",Link="|cff0070dd|Hitem:1488::::::::40:::::::|h[Avenger's Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Zorbin's Mega-Slicer"]={SubType="One-Handed Swords",Level=48,id=19040,StackCount=1,Rarity=2,MinLevel=0,SellPrice=19468,Texture=135346,Link="|cff1eff00|Hitem:19040::::::::40:::::::|h[Zorbin's Mega-Slicer]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Insignia Cloak"]={SubType="Cloth",Level=32,id=4722,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2118,Texture=133767,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:4722::::::::40:::::::|h[Insignia Cloak]|h|r"},["Robe of the Keeper"]={SubType="Cloth",Level=15,id=3161,StackCount=1,Rarity=2,MinLevel=0,SellPrice=294,Texture=132662,Type="Armor",Link="|cff1eff00|Hitem:3161::::::::40:::::::|h[Robe of the Keeper]|h|r",EquipLoc="INVTYPE_ROBE"},["90 Green Warrior Breastplate"]={SubType="Plate",Level=90,id=20240,StackCount=1,Rarity=2,MinLevel=60,SellPrice=68808,Texture=132751,Link="|cff1eff00|Hitem:20240::::::::40:::::::|h[90 Green Warrior Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Ornate Mithril Helm"]={SubType="Plate",Level=49,id=7937,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6763,Texture=133078,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7937::::::::40:::::::|h[Ornate Mithril Helm]|h|r",Type="Armor"},["Unhatched Jubling Egg"]={SubType="Junk",Level=35,id=19462,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132834,Link="|cffffffff|Hitem:19462::::::::40:::::::|h[Unhatched Jubling Egg]|h|r",EquipLoc="",Type="Miscellaneous"},["Miner's Cape"]={SubType="Cloth",Level=19,id=5444,StackCount=1,Rarity=2,MinLevel=14,SellPrice=548,Texture=133763,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:5444::::::::40:::::::|h[Miner's Cape]|h|r",Type="Armor"},["Tribal War Feathers"]={SubType="Leather",Level=60,id=12960,StackCount=1,Rarity=3,MinLevel=55,SellPrice=17752,Texture=133126,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:12960::::::::40:::::::|h[Tribal War Feathers]|h|r"},["Sentinel Cloak"]={SubType="Cloth",Level=36,id=7446,StackCount=1,Rarity=2,MinLevel=31,SellPrice=3092,Texture=133758,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:7446::::::::40:::::::|h[Sentinel Cloak]|h|r"},["Luminary Kilt"]={SubType="Leather",Level=59,id=11823,StackCount=1,Rarity=3,MinLevel=54,SellPrice=23677,Texture=134593,Type="Armor",Link="|cff0070dd|Hitem:11823::::::::40:::::::|h[Luminary Kilt]|h|r",EquipLoc="INVTYPE_LEGS"},["Light Chain Boots"]={SubType="Mail",Level=10,id=2401,StackCount=1,Rarity=1,MinLevel=5,SellPrice=66,Texture=132535,Link="|cffffffff|Hitem:2401::::::::40:::::::|h[Light Chain Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Arcanist Belt"]={SubType="Cloth",Level=66,id=16802,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17388,Texture=132519,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16802::::::::40:::::::|h[Arcanist Belt]|h|r",Type="Armor"},["Deprecated Contract for the Magistrate"]={SubType="Quest",Level=1,id=3513,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134940,Type="Quest",Link="|cffffffff|Hitem:3513::::::::40:::::::|h[Deprecated Contract for the Magistrate]|h|r",EquipLoc=""},["Smoky Torch"]={SubType="Miscellaneous",Level=1,id=2410,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135432,EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:2410::::::::40:::::::|h[Smoky Torch]|h|r",Type="Armor"},["Strapped Boots"]={SubType="Leather",Level=69,id=3978,StackCount=1,Rarity=0,MinLevel=64,SellPrice=9560,Texture=132537,Type="Armor",Link="|cff9d9d9d|Hitem:3978::::::::40:::::::|h[Strapped Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Dull Blade"]={SubType="One-Handed Swords",Level=3,id=1384,StackCount=1,Rarity=1,MinLevel=1,SellPrice=11,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:1384::::::::40:::::::|h[Dull Blade]|h|r"},["Mithril Shield Spike"]={SubType="Trade Goods",Level=43,id=7967,StackCount=5,Rarity=2,MinLevel=0,SellPrice=250,Texture=133597,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:7967::::::::40:::::::|h[Mithril Shield Spike]|h|r"},["Brigade Pauldrons"]={SubType="Mail",Level=44,id=9934,StackCount=1,Rarity=2,MinLevel=39,SellPrice=6577,Texture=135054,Link="|cff1eff00|Hitem:9934::::::::40:::::::|h[Brigade Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Sorcerer Bracelets"]={SubType="Cloth",Level=39,id=9879,StackCount=1,Rarity=2,MinLevel=34,SellPrice=1964,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9879::::::::40:::::::|h[Sorcerer Bracelets]|h|r"},["Deviate Hide Pack"]={SubType="Bag",Level=25,id=918,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=133629,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:918::::::::40:::::::|h[Deviate Hide Pack]|h|r",Type="Container"},["Heart of the Fiend"]={SubType="Miscellaneous",Level=61,id=13960,StackCount=1,Rarity=3,MinLevel=56,SellPrice=12828,Texture=134335,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:13960::::::::40:::::::|h[Heart of the Fiend]|h|r"},["Bland Bow of Steadiness"]={SubType="Bows",Level=60,id=20368,StackCount=1,Rarity=3,MinLevel=60,SellPrice=35582,Texture=135496,Link="|cff0070dd|Hitem:20368::::::::40:::::::|h[Bland Bow of Steadiness]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Crusader's Leggings"]={SubType="Mail",Level=54,id=10199,StackCount=1,Rarity=2,MinLevel=49,SellPrice=17261,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10199::::::::40:::::::|h[Crusader's Leggings]|h|r",Type="Armor"},["Tablet of Healing Wave VIII"]={SubType="Book",Level=48,id=9143,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9143::::::::40:::::::|h[Tablet of Healing Wave VIII]|h|r"},["Natural Alignment Crystal"]={SubType="Miscellaneous",Level=76,id=19344,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72039,Texture=134073,Link="|cffa335ee|Hitem:19344::::::::40:::::::|h[Natural Alignment Crystal]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Test Stamina Chest"]={SubType="Plate",Level=60,id=13710,StackCount=1,Rarity=1,MinLevel=55,SellPrice=9488,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13710::::::::40:::::::|h[Test Stamina Chest]|h|r"},["Wushoolay's Poker"]={SubType="Daggers",Level=68,id=19965,StackCount=1,Rarity=3,MinLevel=60,SellPrice=73565,Texture=135347,Link="|cff0070dd|Hitem:19965::::::::40:::::::|h[Wushoolay's Poker]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Eggscilloscope"]={SubType="Key",Level=1,id=12144,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133003,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:12144::::::::40:::::::|h[Eggscilloscope]|h|r"},["Core Marksman Rifle"]={SubType="Guns",Level=65,id=18282,StackCount=1,Rarity=4,MinLevel=60,SellPrice=66347,Texture=135614,Type="Weapon",Link="|cffa335ee|Hitem:18282::::::::40:::::::|h[Core Marksman Rifle]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Defiler's Lizardhide Shoulders"]={SubType="Leather",Level=65,id=20175,StackCount=1,Rarity=4,MinLevel=60,SellPrice=32243,Texture=135055,Link="|cffa335ee|Hitem:20175::::::::40:::::::|h[Defiler's Lizardhide Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Doomulus Prime"]={SubType="Two-Handed Maces",Level=65,id=22348,StackCount=1,Rarity=3,MinLevel=0,SellPrice=76507,Texture=133047,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:22348::::::::40:::::::|h[Doomulus Prime]|h|r"},["Spark of the People's Militia"]={SubType="Wands",Level=17,id=12296,StackCount=1,Rarity=2,MinLevel=0,SellPrice=722,Texture=135139,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:12296::::::::40:::::::|h[Spark of the People's Militia]|h|r"},["Haunting Blade"]={SubType="Two-Handed Swords",Level=26,id=6641,StackCount=1,Rarity=2,MinLevel=21,SellPrice=3675,Texture=135315,Link="|cff1eff00|Hitem:6641::::::::40:::::::|h[Haunting Blade]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Burning Blade Medallion"]={SubType="Quest",Level=1,id=4859,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:4859::::::::40:::::::|h[Burning Blade Medallion]|h|r",Type="Quest"},["Red Defias Mask"]={SubType="Miscellaneous",Level=15,id=7997,StackCount=1,Rarity=0,MinLevel=0,SellPrice=81,Texture=133694,Link="|cff9d9d9d|Hitem:7997::::::::40:::::::|h[Red Defias Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Elegant Circlet"]={SubType="Cloth",Level=60,id=10219,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12011,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10219::::::::40:::::::|h[Elegant Circlet]|h|r",Type="Armor"},["The Unstoppable Force"]={SubType="Two-Handed Maces",Level=65,id=19323,StackCount=1,Rarity=4,MinLevel=60,SellPrice=312980,Texture=133050,Link="|cffa335ee|Hitem:19323::::::::40:::::::|h[The Unstoppable Force]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Defiler's Chain Girdle"]={SubType="Leather",Level=33,id=20152,StackCount=1,Rarity=3,MinLevel=28,SellPrice=1754,Texture=132509,Link="|cff0070dd|Hitem:20152::::::::40:::::::|h[Defiler's Chain Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Pattern: Golden Mantle of the Dawn"]={SubType="Leatherworking",Level=64,id=19329,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134939,Link="|cffffffff|Hitem:19329::::::::40:::::::|h[Pattern: Golden Mantle of the Dawn]|h|r",EquipLoc="",Type="Recipe"},["Black Mageweave Gloves"]={SubType="Cloth",Level=43,id=10003,StackCount=1,Rarity=2,MinLevel=38,SellPrice=2859,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10003::::::::40:::::::|h[Black Mageweave Gloves]|h|r",Type="Armor"},["Bloodlust Breastplate"]={SubType="Mail",Level=59,id=14798,StackCount=1,Rarity=2,MinLevel=54,SellPrice=24037,Texture=132629,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14798::::::::40:::::::|h[Bloodlust Breastplate]|h|r"},["Arathi Resource Crate"]={SubType="Quest",Level=1,id=19725,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Link="|cffffffff|Hitem:19725::::::::40:::::::|h[Arathi Resource Crate]|h|r",EquipLoc="",Type="Quest"},["Spaulders of Valor"]={SubType="Plate",Level=60,id=16733,StackCount=1,Rarity=3,MinLevel=55,SellPrice=15207,Texture=135061,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16733::::::::40:::::::|h[Spaulders of Valor]|h|r",Type="Armor"},["Libram: Crusader Strike V"]={SubType="Book",Level=58,id=8944,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=133740,Link="|cffffffff|Hitem:8944::::::::40:::::::|h[Libram: Crusader Strike V]|h|r",EquipLoc="",Type="Recipe"},["Azure Silk Gloves"]={SubType="Cloth",Level=29,id=4319,StackCount=1,Rarity=2,MinLevel=24,SellPrice=815,Texture=132951,Link="|cff1eff00|Hitem:4319::::::::40:::::::|h[Azure Silk Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Tablet of Sael'hai"]={SubType="Quest",Level=1,id=10541,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134456,EquipLoc="",Link="|cffffffff|Hitem:10541::::::::40:::::::|h[Tablet of Sael'hai]|h|r",Type="Quest"},["Witching Stave"]={SubType="Staves",Level=22,id=1484,StackCount=1,Rarity=3,MinLevel=17,SellPrice=2922,Texture=135466,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:1484::::::::40:::::::|h[Witching Stave]|h|r",Type="Weapon"},["Grimoire of Lash of Pain (Rank 6)"]={SubType="Book",Level=60,id=16374,StackCount=1,Rarity=1,MinLevel=60,SellPrice=6500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16374::::::::40:::::::|h[Grimoire of Lash of Pain (Rank 6)]|h|r",Type="Recipe"},["Ornate Legguards"]={SubType="Mail",Level=57,id=10124,StackCount=1,Rarity=2,MinLevel=52,SellPrice=20396,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10124::::::::40:::::::|h[Ornate Legguards]|h|r",Type="Armor"},["Zulian Tigerhide Cloak"]={SubType="Cloth",Level=68,id=19907,StackCount=1,Rarity=3,MinLevel=60,SellPrice=21655,Texture=133762,Link="|cff0070dd|Hitem:19907::::::::40:::::::|h[Zulian Tigerhide Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Boots of the Vanguard"]={SubType="Leather",Level=66,id=21493,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34109,Texture=132542,Link="|cffa335ee|Hitem:21493::::::::40:::::::|h[Boots of the Vanguard]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Furen's Favor"]={SubType="Shields",Level=20,id=6970,StackCount=1,Rarity=2,MinLevel=0,SellPrice=906,Texture=134951,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:6970::::::::40:::::::|h[Furen's Favor]|h|r"},["Infantry Gauntlets"]={SubType="Mail",Level=11,id=6510,StackCount=1,Rarity=1,MinLevel=6,SellPrice=54,Texture=132945,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:6510::::::::40:::::::|h[Infantry Gauntlets]|h|r"},["Soldier's Shield"]={SubType="Shields",Level=17,id=6560,StackCount=1,Rarity=2,MinLevel=12,SellPrice=615,Texture=134956,Type="Armor",Link="|cff1eff00|Hitem:6560::::::::40:::::::|h[Soldier's Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Atal'ai Spaulders"]={SubType="Leather",Level=52,id=10783,StackCount=1,Rarity=3,MinLevel=47,SellPrice=11476,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:10783::::::::40:::::::|h[Atal'ai Spaulders]|h|r",Type="Armor"},["Dirty Leather Pants"]={SubType="Leather",Level=5,id=209,StackCount=1,Rarity=1,MinLevel=1,SellPrice=12,Texture=134706,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:209::::::::40:::::::|h[Dirty Leather Pants]|h|r"},["Patched Leather Shoulderpads"]={SubType="Leather",Level=20,id=1793,StackCount=1,Rarity=0,MinLevel=15,SellPrice=207,Texture=135037,Link="|cff9d9d9d|Hitem:1793::::::::40:::::::|h[Patched Leather Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Deprecated Gnoll Taskmaster Whip"]={SubType="Miscellaneous",Level=40,id=1186,StackCount=1,Rarity=0,MinLevel=35,SellPrice=831,Texture=134325,Link="|cff9d9d9d|Hitem:1186::::::::40:::::::|h[Deprecated Gnoll Taskmaster Whip]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Darkspear Shoes"]={SubType="Cloth",Level=42,id=4137,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4010,Texture=132539,Type="Armor",Link="|cff1eff00|Hitem:4137::::::::40:::::::|h[Darkspear Shoes]|h|r",EquipLoc="INVTYPE_FEET"},["Familiar Fang"]={SubType="Junk",Level=1,id=3723,StackCount=5,Rarity=0,MinLevel=0,SellPrice=68,Texture=133725,Link="|cff9d9d9d|Hitem:3723::::::::40:::::::|h[Familiar Fang]|h|r",EquipLoc="",Type="Miscellaneous"},["Level 65 Test Gear Plate - Warrior 2"]={SubType="Junk",Level=1,id=17861,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17861::::::::40:::::::|h[Level 65 Test Gear Plate - Warrior 2]|h|r",Type="Miscellaneous"},["Forest Spider Webbing"]={SubType="Junk",Level=5,id=2590,StackCount=5,Rarity=0,MinLevel=0,SellPrice=5,Texture=136113,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:2590::::::::40:::::::|h[Forest Spider Webbing]|h|r",EquipLoc=""},["Crystal Kelp Frond"]={SubType="Quest",Level=1,id=1256,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134184,Link="|cffffffff|Hitem:1256::::::::40:::::::|h[Crystal Kelp Frond]|h|r",EquipLoc="",Type="Quest"},["Twilight Cowl"]={SubType="Cloth",Level=38,id=7432,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2717,Texture=133131,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7432::::::::40:::::::|h[Twilight Cowl]|h|r",Type="Armor"},["Moonbeam Wand"]={SubType="Wands",Level=30,id=5818,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3239,Texture=135473,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5818::::::::40:::::::|h[Moonbeam Wand]|h|r"},["Eternal Sarong"]={SubType="Cloth",Level=63,id=14334,StackCount=1,Rarity=2,MinLevel=58,SellPrice=20044,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14334::::::::40:::::::|h[Eternal Sarong]|h|r"},["Potent Shoulders"]={SubType="Leather",Level=49,id=15177,StackCount=1,Rarity=2,MinLevel=44,SellPrice=8525,Texture=135044,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15177::::::::40:::::::|h[Potent Shoulders]|h|r",Type="Armor"},["Nightshade Cloak"]={SubType="Cloth",Level=57,id=10224,StackCount=1,Rarity=2,MinLevel=52,SellPrice=10755,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10224::::::::40:::::::|h[Nightshade Cloak]|h|r",Type="Armor"},["Defiler's Talisman"]={SubType="Miscellaneous",Level=63,id=20072,StackCount=1,Rarity=3,MinLevel=58,SellPrice=10307,Texture=133438,Link="|cff0070dd|Hitem:20072::::::::40:::::::|h[Defiler's Talisman]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Combat Task Briefing VI"]={SubType="Quest",Level=60,id=21250,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21250::::::::40:::::::|h[Combat Task Briefing VI]|h|r",EquipLoc="",Type="Quest"},["Level 55 Test Gear Mail - Hunter 2"]={SubType="Junk",Level=1,id=17840,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17840::::::::40:::::::|h[Level 55 Test Gear Mail - Hunter 2]|h|r",Type="Miscellaneous"},["Royal Diplomatic Scepter"]={SubType="One-Handed Maces",Level=35,id=9457,StackCount=1,Rarity=3,MinLevel=30,SellPrice=8902,Texture=133483,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9457::::::::40:::::::|h[Royal Diplomatic Scepter]|h|r"},["Large Cluster Rocket Recipes"]={SubType="Consumable",Level=1,id=21743,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134942,Link="|cffffffff|Hitem:21743::::::::40:::::::|h[Large Cluster Rocket Recipes]|h|r",EquipLoc="",Type="Consumable"},["Digmaster 5000"]={SubType="One-Handed Axes",Level=45,id=9465,StackCount=1,Rarity=3,MinLevel=40,SellPrice=18560,Texture=134707,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9465::::::::40:::::::|h[Digmaster 5000]|h|r"},["Tome of Scorch II"]={SubType="Book",Level=28,id=8819,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8819::::::::40:::::::|h[Tome of Scorch II]|h|r"},["Enchanted Stonecloth Bracers"]={SubType="Cloth",Level=42,id=4979,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2587,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:4979::::::::40:::::::|h[Enchanted Stonecloth Bracers]|h|r",Type="Armor"},["Sentinel's Lamellar Legguards"]={SubType="Plate",Level=65,id=22753,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34271,Texture=134691,Link="|cffa335ee|Hitem:22753::::::::40:::::::|h[Sentinel's Lamellar Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Mountaineer Chestpiece"]={SubType="Mail",Level=7,id=2898,StackCount=1,Rarity=1,MinLevel=2,SellPrice=32,Texture=132624,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:2898::::::::40:::::::|h[Mountaineer Chestpiece]|h|r"},["Smooth Walking Staff"]={SubType="Staves",Level=5,id=5581,StackCount=1,Rarity=1,MinLevel=0,SellPrice=32,Texture=135148,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:5581::::::::40:::::::|h[Smooth Walking Staff]|h|r",Type="Weapon"},["Archaic Defender"]={SubType="Two-Handed Swords",Level=36,id=9385,StackCount=1,Rarity=3,MinLevel=31,SellPrice=12280,Texture=135351,Link="|cff0070dd|Hitem:9385::::::::40:::::::|h[Archaic Defender]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Stonecutting Glaive"]={SubType="Polearms",Level=60,id=20660,StackCount=1,Rarity=3,MinLevel=55,SellPrice=61543,Texture=135129,Link="|cff0070dd|Hitem:20660::::::::40:::::::|h[Stonecutting Glaive]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Sergeant Major's Leather Armsplints"]={SubType="Leather",Level=63,id=18452,StackCount=1,Rarity=3,MinLevel=58,SellPrice=6910,Texture=132606,Type="Armor",Link="|cff0070dd|Hitem:18452::::::::40:::::::|h[Sergeant Major's Leather Armsplints]|h|r",EquipLoc="INVTYPE_WRIST"},["Skull of Burning Shadows"]={SubType="Miscellaneous",Level=62,id=13524,StackCount=1,Rarity=3,MinLevel=57,SellPrice=12458,Texture=133730,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:13524::::::::40:::::::|h[Skull of Burning Shadows]|h|r"},["Blood Guard's Mail Walkers"]={SubType="Mail",Level=63,id=16518,StackCount=1,Rarity=3,MinLevel=58,SellPrice=12485,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16518::::::::40:::::::|h[Blood Guard's Mail Walkers]|h|r",Type="Armor"},["Plans: Bloodsoul Breastplate"]={SubType="Blacksmithing",Level=65,id=19776,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19776::::::::40:::::::|h[Plans: Bloodsoul Breastplate]|h|r",EquipLoc="",Type="Recipe"},["Arathi Basin Enriched Ration"]={SubType="Consumable",Level=55,id=20062,StackCount=20,Rarity=1,MinLevel=45,SellPrice=100,Texture=133989,Link="|cffffffff|Hitem:20062::::::::40:::::::|h[Arathi Basin Enriched Ration]|h|r",EquipLoc="",Type="Consumable"},["Goblin Dragon Gun"]={SubType="Devices",Level=48,id=10727,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2000,Texture=135812,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:10727::::::::40:::::::|h[Goblin Dragon Gun]|h|r",Type="Trade Goods"},["Boar Champion's Belt"]={SubType="Mail",Level=42,id=10768,StackCount=1,Rarity=3,MinLevel=37,SellPrice=4541,Texture=132500,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:10768::::::::40:::::::|h[Boar Champion's Belt]|h|r",Type="Armor"},["Diabolic Skiver"]={SubType="Polearms",Level=49,id=9475,StackCount=1,Rarity=3,MinLevel=44,SellPrice=33346,Texture=135124,Link="|cff0070dd|Hitem:9475::::::::40:::::::|h[Diabolic Skiver]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Smotts' Compass"]={SubType="Miscellaneous",Level=50,id=4130,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2171,Texture=134377,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:4130::::::::40:::::::|h[Smotts' Compass]|h|r"},["Desecrated Gauntlets"]={SubType="Junk",Level=60,id=22357,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133832,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:22357::::::::40:::::::|h[Desecrated Gauntlets]|h|r"},["Monster - Dagger, Curved Bone Bloody"]={SubType="Daggers",Level=1,id=10617,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135640,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:10617::::::::40:::::::|h[Monster - Dagger, Curved Bone Bloody]|h|r",Type="Weapon"},["Level 60 Test Gear Mail - Hunter 2"]={SubType="Junk",Level=1,id=17834,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17834::::::::40:::::::|h[Level 60 Test Gear Mail - Hunter 2]|h|r",Type="Miscellaneous"},["Monster - Dynamite, Unlit"]={SubType="One-Handed Maces",Level=1,id=3774,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133711,Link="|cff9d9d9d|Hitem:3774::::::::40:::::::|h[Monster - Dynamite, Unlit]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Threadbare Trousers"]={SubType="Cloth",Level=60,id=18346,StackCount=1,Rarity=2,MinLevel=55,SellPrice=16345,Texture=134589,Type="Armor",Link="|cff1eff00|Hitem:18346::::::::40:::::::|h[Threadbare Trousers]|h|r",EquipLoc="INVTYPE_LEGS"},["Tanned Leather Pants"]={SubType="Leather",Level=17,id=845,StackCount=1,Rarity=1,MinLevel=12,SellPrice=289,Texture=134706,Link="|cffffffff|Hitem:845::::::::40:::::::|h[Tanned Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Encrusted Tail Fin"]={SubType="Quest",Level=1,id=5796,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134305,EquipLoc="",Link="|cffffffff|Hitem:5796::::::::40:::::::|h[Encrusted Tail Fin]|h|r",Type="Quest"},["Iridescent Sprite Darter Wing"]={SubType="Quest",Level=0,id=9369,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134303,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9369::::::::40:::::::|h[Iridescent Sprite Darter Wing]|h|r"},["Prospector's Buckler"]={SubType="Shields",Level=21,id=15893,StackCount=1,Rarity=2,MinLevel=16,SellPrice=1082,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15893::::::::40:::::::|h[Prospector's Buckler]|h|r",Type="Armor"},["Highlander's Chain Greaves"]={SubType="Mail",Level=63,id=20050,StackCount=1,Rarity=3,MinLevel=58,SellPrice=27206,Texture=132545,Link="|cff0070dd|Hitem:20050::::::::40:::::::|h[Highlander's Chain Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Ranger Cloak"]={SubType="Cloth",Level=40,id=7483,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4238,Texture=133753,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:7483::::::::40:::::::|h[Ranger Cloak]|h|r"},["Staff Head of Atiesh"]={SubType="Quest",Level=1,id=22733,StackCount=1,Rarity=5,MinLevel=0,SellPrice=0,Texture=133573,Type="Quest",EquipLoc="",Link="|cffff8000|Hitem:22733::::::::40:::::::|h[Staff Head of Atiesh]|h|r"},["Grimoire of Firebolt (Rank 3)"]={SubType="Book",Level=18,id=16316,StackCount=1,Rarity=1,MinLevel=18,SellPrice=375,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16316::::::::40:::::::|h[Grimoire of Firebolt (Rank 3)]|h|r",Type="Recipe"},["Final Clue to Sander's Treasure"]={SubType="Quest",Level=1,id=1362,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134252,Type="Quest",Link="|cffffffff|Hitem:1362::::::::40:::::::|h[Final Clue to Sander's Treasure]|h|r",EquipLoc=""},["Reins of the Swift Stormsaber"]={SubType="Junk",Level=60,id=18902,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132267,Type="Miscellaneous",Link="|cffa335ee|Hitem:18902::::::::40:::::::|h[Reins of the Swift Stormsaber]|h|r",EquipLoc=""},["Sage's Mantle"]={SubType="Cloth",Level=30,id=6617,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1371,Texture=135033,Type="Armor",Link="|cff1eff00|Hitem:6617::::::::40:::::::|h[Sage's Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Verdant Footpads"]={SubType="Leather",Level=61,id=13954,StackCount=1,Rarity=3,MinLevel=56,SellPrice=20386,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13954::::::::40:::::::|h[Verdant Footpads]|h|r"},["Imbued Plate Pauldrons"]={SubType="Plate",Level=59,id=10374,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11837,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10374::::::::40:::::::|h[Imbued Plate Pauldrons]|h|r",Type="Armor"},["Banded Pauldrons"]={SubType="Mail",Level=32,id=9842,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2391,Texture=135046,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9842::::::::40:::::::|h[Banded Pauldrons]|h|r"},["Rune of Recall"]={SubType="Quest",Level=60,id=18149,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134418,Type="Quest",Link="|cff1eff00|Hitem:18149::::::::40:::::::|h[Rune of Recall]|h|r",EquipLoc=""},["Glowing Hunk of the Beast's Flesh"]={SubType="Quest",Level=1,id=12710,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133998,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12710::::::::40:::::::|h[Glowing Hunk of the Beast's Flesh]|h|r"},["Encrypted Letter"]={SubType="Quest",Level=1,id=9555,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Link="|cffffffff|Hitem:9555::::::::40:::::::|h[Encrypted Letter]|h|r",EquipLoc="",Type="Quest"},["Plans: Dark Iron Boots"]={SubType="Blacksmithing",Level=70,id=20040,StackCount=1,Rarity=1,MinLevel=0,SellPrice=20000,Texture=134939,Link="|cffffffff|Hitem:20040::::::::40:::::::|h[Plans: Dark Iron Boots]|h|r",EquipLoc="",Type="Recipe"},["Mail Combat Spaulders"]={SubType="Mail",Level=35,id=6404,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3242,Texture=135038,Link="|cff1eff00|Hitem:6404::::::::40:::::::|h[Mail Combat Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Barbaric Iron Helm"]={SubType="Mail",Level=35,id=7915,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3337,Texture=133127,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7915::::::::40:::::::|h[Barbaric Iron Helm]|h|r",Type="Armor"},["Imperfect Draenethyst Fragment"]={SubType="Quest",Level=1,id=10593,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=134089,EquipLoc="",Link="|cff1eff00|Hitem:10593::::::::40:::::::|h[Imperfect Draenethyst Fragment]|h|r",Type="Quest"},["Holy Candle"]={SubType="Reagent",Level=48,id=17028,StackCount=20,Rarity=1,MinLevel=0,SellPrice=175,Texture=133752,EquipLoc="",Link="|cffffffff|Hitem:17028::::::::40:::::::|h[Holy Candle]|h|r",Type="Reagent"},["Deprecated Plain Brown Robe"]={SubType="Cloth",Level=1,id=5053,StackCount=1,Rarity=0,MinLevel=0,SellPrice=1,Texture=132654,EquipLoc="INVTYPE_ROBE",Link="|cff9d9d9d|Hitem:5053::::::::40:::::::|h[Deprecated Plain Brown Robe]|h|r",Type="Armor"},["Bloodsoaked Gauntlets"]={SubType="Plate",Level=71,id=19894,StackCount=1,Rarity=3,MinLevel=60,SellPrice=17152,Texture=132948,Link="|cff0070dd|Hitem:19894::::::::40:::::::|h[Bloodsoaked Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Roland's Mana Gem"]={SubType="Quest",Level=0,id=10478,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134132,EquipLoc="",Link="|cffffffff|Hitem:10478::::::::40:::::::|h[Roland's Mana Gem]|h|r",Type="Quest"},["Elegant Dress"]={SubType="Miscellaneous",Level=30,id=19028,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1078,Texture=132645,Link="|cffffffff|Hitem:19028::::::::40:::::::|h[Elegant Dress]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Shizzle's Muzzle"]={SubType="Leather",Level=55,id=11916,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11834,Texture=135056,Type="Armor",Link="|cff1eff00|Hitem:11916::::::::40:::::::|h[Shizzle's Muzzle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["17 Pound Catfish"]={SubType="Junk",Level=15,id=6309,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=133916,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:6309::::::::40:::::::|h[17 Pound Catfish]|h|r"},["Followup Combat Assignment"]={SubType="Junk",Level=1,id=21131,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133460,Link="|cffffffff|Hitem:21131::::::::40:::::::|h[Followup Combat Assignment]|h|r",EquipLoc="",Type="Miscellaneous"},["Hazza'rah's Charm of Magic"]={SubType="Miscellaneous",Level=65,id=19959,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133306,Link="|cffa335ee|Hitem:19959::::::::40:::::::|h[Hazza'rah's Charm of Magic]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Azerothian Diamond"]={SubType="Trade Goods",Level=60,id=12800,StackCount=20,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134094,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:12800::::::::40:::::::|h[Azerothian Diamond]|h|r"},["Legionnaire's Leggings"]={SubType="Mail",Level=24,id=4816,StackCount=1,Rarity=2,MinLevel=19,SellPrice=1503,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:4816::::::::40:::::::|h[Legionnaire's Leggings]|h|r",Type="Armor"},["Earthstrike"]={SubType="Miscellaneous",Level=66,id=21180,StackCount=1,Rarity=4,MinLevel=0,SellPrice=21612,Texture=136006,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:21180::::::::40:::::::|h[Earthstrike]|h|r"},["Monster - Sword, Horde Sword B04 Black"]={SubType="One-Handed Swords",Level=1,id=13707,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13707::::::::40:::::::|h[Monster - Sword, Horde Sword B04 Black]|h|r"},["Final Message to the Wildhammer"]={SubType="Quest",Level=1,id=19036,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135125,Link="|cffffffff|Hitem:19036::::::::40:::::::|h[Final Message to the Wildhammer]|h|r",EquipLoc="",Type="Quest"},["Jadefire Chestguard"]={SubType="Leather",Level=56,id=15390,StackCount=1,Rarity=2,MinLevel=51,SellPrice=16175,Texture=132742,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15390::::::::40:::::::|h[Jadefire Chestguard]|h|r",Type="Armor"},["Kravel's Parts"]={SubType="Quest",Level=1,id=5800,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132763,Link="|cffffffff|Hitem:5800::::::::40:::::::|h[Kravel's Parts]|h|r",EquipLoc="",Type="Quest"},["Felheart Pants"]={SubType="Cloth",Level=66,id=16810,StackCount=1,Rarity=4,MinLevel=60,SellPrice=35821,Texture=134608,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16810::::::::40:::::::|h[Felheart Pants]|h|r",Type="Armor"},["Stormwind Armor Marker"]={SubType="Quest",Level=1,id=748,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:748::::::::40:::::::|h[Stormwind Armor Marker]|h|r"},["Deprecated Broken Venomweb Fang"]={SubType="Quest",Level=25,id=898,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:898::::::::40:::::::|h[Deprecated Broken Venomweb Fang]|h|r"},["Faerie Dragon Muisek"]={SubType="Quest",Level=1,id=9596,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136011,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9596::::::::40:::::::|h[Faerie Dragon Muisek]|h|r"},["Spellstone"]={SubType="Miscellaneous",Level=36,id=5522,StackCount=1,Rarity=1,MinLevel=31,SellPrice=0,Texture=134131,EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:5522::::::::40:::::::|h[Spellstone]|h|r",Type="Armor"},["Bonelink Bracers"]={SubType="Mail",Level=43,id=15610,StackCount=1,Rarity=2,MinLevel=38,SellPrice=4354,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15610::::::::40:::::::|h[Bonelink Bracers]|h|r",Type="Armor"},["Fast Test Wand"]={SubType="Wands",Level=33,id=5560,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1777,Texture=135139,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:5560::::::::40:::::::|h[Fast Test Wand]|h|r"},["Gryphon Rider's Stormhammer"]={SubType="One-Handed Maces",Level=53,id=9651,StackCount=1,Rarity=2,MinLevel=0,SellPrice=26828,Texture=133038,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:9651::::::::40:::::::|h[Gryphon Rider's Stormhammer]|h|r"},["Serpentine Skuller"]={SubType="Wands",Level=56,id=12605,StackCount=1,Rarity=3,MinLevel=51,SellPrice=29106,Texture=133729,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:12605::::::::40:::::::|h[Serpentine Skuller]|h|r"},["Strapped Armor"]={SubType="Leather",Level=64,id=3984,StackCount=1,Rarity=0,MinLevel=59,SellPrice=10209,Texture=132719,Link="|cff9d9d9d|Hitem:3984::::::::40:::::::|h[Strapped Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Common Brown Shirt"]={SubType="Miscellaneous",Level=20,id=16059,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=135027,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:16059::::::::40:::::::|h[Common Brown Shirt]|h|r",Type="Armor"},["Empty Wallet"]={SubType="Junk",Level=1,id=5368,StackCount=5,Rarity=0,MinLevel=0,SellPrice=48,Texture=133611,Link="|cff9d9d9d|Hitem:5368::::::::40:::::::|h[Empty Wallet]|h|r",EquipLoc="",Type="Miscellaneous"},["Pulsing Blue Shard"]={SubType="Quest",Level=1,id=3911,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134132,EquipLoc="",Link="|cffffffff|Hitem:3911::::::::40:::::::|h[Pulsing Blue Shard]|h|r",Type="Quest"},["Book of Moonfire II"]={SubType="Book",Level=10,id=1886,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1886::::::::40:::::::|h[Book of Moonfire II]|h|r"},["Embroidered Belt"]={SubType="Cloth",Level=50,id=3587,StackCount=1,Rarity=1,MinLevel=45,SellPrice=2862,Texture=132497,Type="Armor",Link="|cffffffff|Hitem:3587::::::::40:::::::|h[Embroidered Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Pet Rock"]={SubType="Junk",Level=1,id=20030,StackCount=1,Rarity=0,MinLevel=0,SellPrice=1580,Texture=135234,Link="|cff9d9d9d|Hitem:20030::::::::40:::::::|h[Pet Rock]|h|r",EquipLoc="",Type="Miscellaneous"},["Enchanted Thorium Platemail"]={SubType="Quest",Level=60,id=18769,StackCount=1,Rarity=3,MinLevel=50,SellPrice=0,Texture=133733,Type="Quest",Link="|cff0070dd|Hitem:18769::::::::40:::::::|h[Enchanted Thorium Platemail]|h|r",EquipLoc=""},["Electrocutioner Lagnut"]={SubType="Miscellaneous",Level=34,id=9447,StackCount=1,Rarity=3,MinLevel=29,SellPrice=3237,Texture=134066,Link="|cff0070dd|Hitem:9447::::::::40:::::::|h[Electrocutioner Lagnut]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Star Ruby"]={SubType="Trade Goods",Level=50,id=7910,StackCount=20,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134129,Link="|cff1eff00|Hitem:7910::::::::40:::::::|h[Star Ruby]|h|r",EquipLoc="",Type="Trade Goods"},["Soothing Spices"]={SubType="Trade Goods",Level=30,id=3713,StackCount=20,Rarity=1,MinLevel=0,SellPrice=40,Texture=134059,Type="Trade Goods",Link="|cffffffff|Hitem:3713::::::::40:::::::|h[Soothing Spices]|h|r",EquipLoc=""},["Warped Leather Boots"]={SubType="Leather",Level=15,id=1503,StackCount=1,Rarity=0,MinLevel=10,SellPrice=109,Texture=132539,Link="|cff9d9d9d|Hitem:1503::::::::40:::::::|h[Warped Leather Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Brigandine Belt"]={SubType="Mail",Level=50,id=2424,StackCount=1,Rarity=1,MinLevel=45,SellPrice=4292,Texture=132492,Link="|cffffffff|Hitem:2424::::::::40:::::::|h[Brigandine Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Stoneflower Staff"]={SubType="Staves",Level=61,id=18353,StackCount=1,Rarity=2,MinLevel=56,SellPrice=55030,Texture=135145,Type="Weapon",Link="|cff1eff00|Hitem:18353::::::::40:::::::|h[Stoneflower Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Level 45 Test Gear Mail - Hunter"]={SubType="Junk",Level=1,id=13687,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13687::::::::40:::::::|h[Level 45 Test Gear Mail - Hunter]|h|r"},["Sturdy Female Tauren Mask"]={SubType="Miscellaneous",Level=45,id=20588,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4827,Texture=134175,Link="|cff1eff00|Hitem:20588::::::::40:::::::|h[Sturdy Female Tauren Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Soul Breaker"]={SubType="One-Handed Axes",Level=57,id=13408,StackCount=1,Rarity=3,MinLevel=52,SellPrice=44142,Texture=135575,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:13408::::::::40:::::::|h[Soul Breaker]|h|r"},["Craftsman's Writ - Lightning Eel"]={SubType="Junk",Level=60,id=22624,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22624::::::::40:::::::|h[Craftsman's Writ - Lightning Eel]|h|r",EquipLoc="",Type="Miscellaneous"},["Rubbing: Rune of Jin'yael"]={SubType="Quest",Level=0,id=10564,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:10564::::::::40:::::::|h[Rubbing: Rune of Jin'yael]|h|r",Type="Quest"},["Dusk Wand"]={SubType="Wands",Level=25,id=5211,StackCount=1,Rarity=1,MinLevel=20,SellPrice=1166,Texture=135469,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:5211::::::::40:::::::|h[Dusk Wand]|h|r",Type="Weapon"},["Fetish of Hakkar"]={SubType="Quest",Level=1,id=6181,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,Link="|cffffffff|Hitem:6181::::::::40:::::::|h[Fetish of Hakkar]|h|r",EquipLoc="",Type="Quest"},["Glimmering Shield"]={SubType="Shields",Level=31,id=6400,StackCount=1,Rarity=2,MinLevel=26,SellPrice=3089,Texture=134951,Type="Armor",Link="|cff1eff00|Hitem:6400::::::::40:::::::|h[Glimmering Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Linked Chain Vest"]={SubType="Mail",Level=22,id=1753,StackCount=1,Rarity=0,MinLevel=17,SellPrice=439,Texture=132624,EquipLoc="INVTYPE_CHEST",Link="|cff9d9d9d|Hitem:1753::::::::40:::::::|h[Linked Chain Vest]|h|r",Type="Armor"},["Waterlogged Envelope"]={SubType="Quest",Level=25,id=4433,StackCount=1,Rarity=1,MinLevel=25,SellPrice=0,Texture=133469,EquipLoc="",Link="|cffffffff|Hitem:4433::::::::40:::::::|h[Waterlogged Envelope]|h|r",Type="Quest"},["QAEnchant Shield +7 Stamina"]={SubType="Consumable",Level=1,id=17891,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17891::::::::40:::::::|h[QAEnchant Shield +7 Stamina]|h|r",Type="Consumable"},["Inscribed Leather Belt"]={SubType="Leather",Level=17,id=6379,StackCount=1,Rarity=2,MinLevel=12,SellPrice=244,Texture=132515,Link="|cff1eff00|Hitem:6379::::::::40:::::::|h[Inscribed Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Book of Entangling Roots III"]={SubType="Book",Level=28,id=4225,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133743,Type="Recipe",Link="|cffffffff|Hitem:4225::::::::40:::::::|h[Book of Entangling Roots III]|h|r",EquipLoc=""},["Drakeclaw Band"]={SubType="Miscellaneous",Level=54,id=10795,StackCount=1,Rarity=3,MinLevel=49,SellPrice=5542,Texture=133346,EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:10795::::::::40:::::::|h[Drakeclaw Band]|h|r",Type="Armor"},["Aurora Boots"]={SubType="Cloth",Level=38,id=6416,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2728,Texture=132539,Type="Armor",Link="|cff1eff00|Hitem:6416::::::::40:::::::|h[Aurora Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Bonescythe Gauntlets"]={SubType="Leather",Level=88,id=22481,StackCount=1,Rarity=4,MinLevel=60,SellPrice=62658,Texture=132962,Link="|cffa335ee|Hitem:22481::::::::40:::::::|h[Bonescythe Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Pattern: Crimson Silk Robe"]={SubType="Tailoring",Level=41,id=7088,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:7088::::::::40:::::::|h[Pattern: Crimson Silk Robe]|h|r",Type="Recipe"},["Black Feather Quill"]={SubType="Quest",Level=1,id=3406,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132914,Link="|cffffffff|Hitem:3406::::::::40:::::::|h[Black Feather Quill]|h|r",EquipLoc="",Type="Quest"},["Doom's Edge"]={SubType="One-Handed Axes",Level=70,id=19362,StackCount=1,Rarity=4,MinLevel=60,SellPrice=106098,Texture=132406,Link="|cffa335ee|Hitem:19362::::::::40:::::::|h[Doom's Edge]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Dented Buckler"]={SubType="Shields",Level=5,id=1166,StackCount=1,Rarity=1,MinLevel=1,SellPrice=16,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:1166::::::::40:::::::|h[Dented Buckler]|h|r",Type="Armor"},["Forgotten Wraps"]={SubType="Cloth",Level=46,id=9433,StackCount=1,Rarity=3,MinLevel=41,SellPrice=4133,Texture=132611,Link="|cff0070dd|Hitem:9433::::::::40:::::::|h[Forgotten Wraps]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Snuff"]={SubType="Quest",Level=1,id=3910,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3910::::::::40:::::::|h[Snuff]|h|r"},["Searing Blade"]={SubType="Two-Handed Swords",Level=23,id=12992,StackCount=1,Rarity=3,MinLevel=18,SellPrice=3260,Texture=135322,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12992::::::::40:::::::|h[Searing Blade]|h|r"},["Noboru's Cudgel"]={SubType="One-Handed Maces",Level=34,id=6196,StackCount=1,Rarity=0,MinLevel=29,SellPrice=0,Texture=133485,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:6196::::::::40:::::::|h[Noboru's Cudgel]|h|r"},["Spirewind Fetter"]={SubType="Leather",Level=35,id=9406,StackCount=1,Rarity=3,MinLevel=30,SellPrice=4161,Texture=132723,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:9406::::::::40:::::::|h[Spirewind Fetter]|h|r"},["ggggfg"]={SubType="Consumable",Level=0,id=6244,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132089,Link="|cffffffff|Hitem:6244::::::::40:::::::|h[ggggfg]|h|r",EquipLoc="INVTYPE_FEET",Type="Consumable"},["Thistle Tea"]={SubType="Consumable",Level=15,id=7676,StackCount=10,Rarity=1,MinLevel=5,SellPrice=30,Texture=132819,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:7676::::::::40:::::::|h[Thistle Tea]|h|r"},["The All-Seeing Eye of Zuldazar"]={SubType="Miscellaneous",Level=65,id=19594,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=133313,Link="|cffa335ee|Hitem:19594::::::::40:::::::|h[The All-Seeing Eye of Zuldazar]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Bloodstained Greaves"]={SubType="Mail",Level=68,id=19919,StackCount=1,Rarity=3,MinLevel=60,SellPrice=31646,Texture=132547,Link="|cff0070dd|Hitem:19919::::::::40:::::::|h[Bloodstained Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Felwood Slime Sample"]={SubType="Quest",Level=1,id=12230,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134817,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12230::::::::40:::::::|h[Felwood Slime Sample]|h|r"},["Plans: Heavy Mithril Pants"]={SubType="Blacksmithing",Level=42,id=7975,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7975::::::::40:::::::|h[Plans: Heavy Mithril Pants]|h|r",Type="Recipe"},["Khazgorm's Journal"]={SubType="Quest",Level=1,id=5006,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5006::::::::40:::::::|h[Khazgorm's Journal]|h|r"},["Plans: Blackfury"]={SubType="Blacksmithing",Level=66,id=19209,StackCount=1,Rarity=1,MinLevel=0,SellPrice=17500,Texture=134939,Link="|cffffffff|Hitem:19209::::::::40:::::::|h[Plans: Blackfury]|h|r",EquipLoc="",Type="Recipe"},["Codex of Heal II"]={SubType="Book",Level=22,id=4268,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4268::::::::40:::::::|h[Codex of Heal II]|h|r"},["Tome of Conjure Food VI"]={SubType="Book",Level=52,id=8871,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=133739,Link="|cffffffff|Hitem:8871::::::::40:::::::|h[Tome of Conjure Food VI]|h|r",EquipLoc="",Type="Recipe"},["Level 40 Test Gear Plate - Paladin/Warrior"]={SubType="Junk",Level=1,id=13680,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13680::::::::40:::::::|h[Level 40 Test Gear Plate - Paladin/Warrior]|h|r"},["Deprecated Shield of the Spider Princess"]={SubType="Shields",Level=20,id=2170,StackCount=1,Rarity=0,MinLevel=15,SellPrice=360,Texture=134321,Link="|cff9d9d9d|Hitem:2170::::::::40:::::::|h[Deprecated Shield of the Spider Princess]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Dread Mage Hat"]={SubType="Cloth",Level=30,id=3556,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1285,Texture=133116,Link="|cff1eff00|Hitem:3556::::::::40:::::::|h[Dread Mage Hat]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Rotting Bear Carcass"]={SubType="Junk",Level=1,id=11406,StackCount=5,Rarity=0,MinLevel=0,SellPrice=168,Texture=134357,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11406::::::::40:::::::|h[Rotting Bear Carcass]|h|r",EquipLoc=""},["Mystical Orb"]={SubType="Miscellaneous",Level=58,id=15938,StackCount=1,Rarity=2,MinLevel=53,SellPrice=9550,Texture=134334,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15938::::::::40:::::::|h[Mystical Orb]|h|r",Type="Armor"},["Horn of the Arctic Wolf"]={SubType="Junk",Level=60,id=12351,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132266,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:12351::::::::40:::::::|h[Horn of the Arctic Wolf]|h|r"},["Archer's Bracers"]={SubType="Leather",Level=34,id=9857,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1570,Texture=132611,Link="|cff1eff00|Hitem:9857::::::::40:::::::|h[Archer's Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Fast Test Crossbow"]={SubType="Crossbows",Level=70,id=5546,StackCount=1,Rarity=0,MinLevel=1,SellPrice=21062,Texture=135530,Link="|cff9d9d9d|Hitem:5546::::::::40:::::::|h[Fast Test Crossbow]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Desecrated Gloves"]={SubType="Junk",Level=60,id=22371,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133808,Link="|cffa335ee|Hitem:22371::::::::40:::::::|h[Desecrated Gloves]|h|r",EquipLoc="",Type="Miscellaneous"},["Test Nature Res Head Mail"]={SubType="Mail",Level=35,id=16141,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3148,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:16141::::::::40:::::::|h[Test Nature Res Head Mail]|h|r",Type="Armor"},["Protector Pads"]={SubType="Mail",Level=51,id=14797,StackCount=1,Rarity=2,MinLevel=46,SellPrice=11427,Texture=135060,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14797::::::::40:::::::|h[Protector Pads]|h|r"},["Knight-Lieutenant's Dreadweave Handwraps"]={SubType="Cloth",Level=66,id=23282,StackCount=1,Rarity=3,MinLevel=60,SellPrice=6847,Texture=132953,Link="|cff0070dd|Hitem:23282::::::::40:::::::|h[Knight-Lieutenant's Dreadweave Handwraps]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Conjured Purified Water"]={SubType="Consumable",Level=25,id=2136,StackCount=20,Rarity=1,MinLevel=15,SellPrice=0,Texture=132816,Link="|cffffffff|Hitem:2136::::::::40:::::::|h[Conjured Purified Water]|h|r",EquipLoc="",Type="Consumable"},["Aurora Cloak"]={SubType="Cloth",Level=37,id=6417,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2536,Texture=133756,Type="Armor",Link="|cff1eff00|Hitem:6417::::::::40:::::::|h[Aurora Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Recurve Long Bow"]={SubType="Bows",Level=55,id=13824,StackCount=1,Rarity=0,MinLevel=45,SellPrice=9015,Texture=135490,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:13824::::::::40:::::::|h[Recurve Long Bow]|h|r"},["Lil Timmy's Peashooter"]={SubType="Guns",Level=21,id=13136,StackCount=1,Rarity=3,MinLevel=16,SellPrice=1456,Texture=135617,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13136::::::::40:::::::|h[Lil Timmy's Peashooter]|h|r"},["Dezian Queenfish"]={SubType="Junk",Level=45,id=19806,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=133895,Link="|cff1eff00|Hitem:19806::::::::40:::::::|h[Dezian Queenfish]|h|r",EquipLoc="",Type="Miscellaneous"},["Six of Elementals"]={SubType="Junk",Level=1,id=19273,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134486,Link="|cff0070dd|Hitem:19273::::::::40:::::::|h[Six of Elementals]|h|r",EquipLoc="",Type="Miscellaneous"},["Tome of Conjure Food VII"]={SubType="Book",Level=60,id=22897,StackCount=1,Rarity=3,MinLevel=60,SellPrice=10000,Texture=133739,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:22897::::::::40:::::::|h[Tome of Conjure Food VII]|h|r"},["Presence of Sight"]={SubType="Junk",Level=60,id=19787,StackCount=1,Rarity=3,MinLevel=60,SellPrice=0,Texture=136153,Link="|cff0070dd|Hitem:19787::::::::40:::::::|h[Presence of Sight]|h|r",EquipLoc="",Type="Miscellaneous"},["Cuely's Elixir"]={SubType="Quest",Level=1,id=10712,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134743,EquipLoc="",Link="|cffffffff|Hitem:10712::::::::40:::::::|h[Cuely's Elixir]|h|r",Type="Quest"},["Crystalpine Stinger"]={SubType="Crossbows",Level=32,id=13037,StackCount=1,Rarity=3,MinLevel=27,SellPrice=4729,Texture=135533,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13037::::::::40:::::::|h[Crystalpine Stinger]|h|r"},["Barbarian War Axe"]={SubType="Two-Handed Axes",Level=28,id=3201,StackCount=1,Rarity=2,MinLevel=23,SellPrice=4496,Texture=132408,Link="|cff1eff00|Hitem:3201::::::::40:::::::|h[Barbarian War Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Deprecated Bag of Teeth"]={SubType="Junk",Level=1,id=1915,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30,Texture=133639,EquipLoc="",Link="|cffffffff|Hitem:1915::::::::40:::::::|h[Deprecated Bag of Teeth]|h|r",Type="Miscellaneous"},["Crescent Axe"]={SubType="One-Handed Axes",Level=35,id=2522,StackCount=1,Rarity=1,MinLevel=30,SellPrice=4509,Texture=135419,Type="Weapon",Link="|cffffffff|Hitem:2522::::::::40:::::::|h[Crescent Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Schematic: Sniper Scope"]={SubType="Engineering",Level=48,id=10608,StackCount=1,Rarity=3,MinLevel=0,SellPrice=950,Texture=134939,EquipLoc="",Link="|cff0070dd|Hitem:10608::::::::40:::::::|h[Schematic: Sniper Scope]|h|r",Type="Recipe"},["Heavy Weave Bracers"]={SubType="Cloth",Level=17,id=3590,StackCount=1,Rarity=1,MinLevel=12,SellPrice=115,Texture=132605,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3590::::::::40:::::::|h[Heavy Weave Bracers]|h|r"},["Level 60 Test Gear Cloth - Mage/Priest/Warlock 2"]={SubType="Junk",Level=1,id=17831,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17831::::::::40:::::::|h[Level 60 Test Gear Cloth - Mage/Priest/Warlock 2]|h|r",Type="Miscellaneous"},["Imbued Plate Armor"]={SubType="Plate",Level=62,id=10368,StackCount=1,Rarity=2,MinLevel=57,SellPrice=17868,Texture=132744,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10368::::::::40:::::::|h[Imbued Plate Armor]|h|r",Type="Armor"},["Bonecaster's Boots"]={SubType="Cloth",Level=54,id=14299,StackCount=1,Rarity=2,MinLevel=49,SellPrice=8602,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14299::::::::40:::::::|h[Bonecaster's Boots]|h|r"},["Razor Arrow"]={SubType="Arrow",Level=30,id=3030,StackCount=200,Rarity=1,MinLevel=25,SellPrice=0,Texture=132382,Type="Projectile",Link="|cffffffff|Hitem:3030::::::::40:::::::|h[Razor Arrow]|h|r",EquipLoc="INVTYPE_AMMO"},["Hardened Iron Shortsword"]={SubType="One-Handed Swords",Level=32,id=3849,StackCount=1,Rarity=2,MinLevel=27,SellPrice=5468,Texture=135321,Link="|cff1eff00|Hitem:3849::::::::40:::::::|h[Hardened Iron Shortsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["General's Chain Gloves"]={SubType="Mail",Level=71,id=16571,StackCount=1,Rarity=4,MinLevel=60,SellPrice=16331,Texture=132945,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16571::::::::40:::::::|h[General's Chain Gloves]|h|r",Type="Armor"},["Bloodspattered Wristbands"]={SubType="Mail",Level=15,id=15495,StackCount=1,Rarity=2,MinLevel=10,SellPrice=220,Texture=132609,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15495::::::::40:::::::|h[Bloodspattered Wristbands]|h|r",Type="Armor"},["Conjurer's Cloak"]={SubType="Cloth",Level=33,id=9847,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1779,Texture=133769,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9847::::::::40:::::::|h[Conjurer's Cloak]|h|r"},["Overspark's Pledge of Secrecy"]={SubType="Quest",Level=0,id=10793,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,EquipLoc="",Link="|cffffffff|Hitem:10793::::::::40:::::::|h[Overspark's Pledge of Secrecy]|h|r",Type="Quest"},["Lupine Handwraps"]={SubType="Leather",Level=16,id=15016,StackCount=1,Rarity=2,MinLevel=11,SellPrice=200,Texture=132949,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15016::::::::40:::::::|h[Lupine Handwraps]|h|r",Type="Armor"},["Monster - Item, Fishing Pole"]={SubType="One-Handed Maces",Level=1,id=1117,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133942,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:1117::::::::40:::::::|h[Monster - Item, Fishing Pole]|h|r"},["Brawnhide Armor"]={SubType="Leather",Level=29,id=15471,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2034,Texture=132716,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15471::::::::40:::::::|h[Brawnhide Armor]|h|r",Type="Armor"},["Festive Black Pant Suit"]={SubType="Miscellaneous",Level=1,id=21541,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132694,Link="|cffffffff|Hitem:21541::::::::40:::::::|h[Festive Black Pant Suit]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Libram: Resurrection"]={SubType="Book",Level=12,id=1146,StackCount=1,Rarity=1,MinLevel=12,SellPrice=0,Texture=133740,Link="|cffffffff|Hitem:1146::::::::40:::::::|h[Libram: Resurrection]|h|r",EquipLoc="",Type="Recipe"},["Libram: Fist of Justice IV"]={SubType="Book",Level=54,id=8940,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133740,Link="|cffffffff|Hitem:8940::::::::40:::::::|h[Libram: Fist of Justice IV]|h|r",EquipLoc="",Type="Recipe"},["Praetorian Gloves"]={SubType="Leather",Level=54,id=15184,StackCount=1,Rarity=2,MinLevel=49,SellPrice=7197,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15184::::::::40:::::::|h[Praetorian Gloves]|h|r",Type="Armor"},["QAEnchant Cloak +8 Stealth"]={SubType="Consumable",Level=1,id=22041,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22041::::::::40:::::::|h[QAEnchant Cloak +8 Stealth]|h|r"},["Felix's Box"]={SubType="Quest",Level=1,id=10438,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,EquipLoc="",Link="|cffffffff|Hitem:10438::::::::40:::::::|h[Felix's Box]|h|r",Type="Quest"},["Knight-Lieutenant's Plate Boots"]={SubType="Plate",Level=63,id=16405,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8286,Texture=132590,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16405::::::::40:::::::|h[Knight-Lieutenant's Plate Boots]|h|r",Type="Armor"},["AHNQIRAJ TEST ITEM D PLATE GLOVES"]={SubType="Miscellaneous",Level=1,id=21444,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21444::::::::40:::::::|h[AHNQIRAJ TEST ITEM D PLATE GLOVES]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Regal Cloak"]={SubType="Cloth",Level=40,id=7474,StackCount=1,Rarity=2,MinLevel=35,SellPrice=3281,Texture=133754,Link="|cff1eff00|Hitem:7474::::::::40:::::::|h[Regal Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Mightfish Steak"]={SubType="Consumable",Level=55,id=13934,StackCount=20,Rarity=1,MinLevel=45,SellPrice=18,Texture=134003,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13934::::::::40:::::::|h[Mightfish Steak]|h|r"},["Recipe: Blood Sausage"]={SubType="Cooking",Level=15,id=3679,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:3679::::::::40:::::::|h[Recipe: Blood Sausage]|h|r",EquipLoc=""},["Empty Vial"]={SubType="Trade Goods",Level=1,id=3371,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1,Texture=132793,EquipLoc="",Link="|cffffffff|Hitem:3371::::::::40:::::::|h[Empty Vial]|h|r",Type="Trade Goods"},["Rohan's Exorcism Censer"]={SubType="Quest",Level=1,id=18819,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135923,Type="Quest",Link="|cffffffff|Hitem:18819::::::::40:::::::|h[Rohan's Exorcism Censer]|h|r",EquipLoc=""},["Deprecated Blood Totem"]={SubType="Consumable",Level=43,id=1700,StackCount=1,Rarity=1,MinLevel=33,SellPrice=3038,Texture=134415,EquipLoc="INVTYPE_NECK",Link="|cffffffff|Hitem:1700::::::::40:::::::|h[Deprecated Blood Totem]|h|r",Type="Consumable"},["Deathstalker Report"]={SubType="Quest",Level=1,id=3252,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,EquipLoc="",Link="|cffffffff|Hitem:3252::::::::40:::::::|h[Deathstalker Report]|h|r",Type="Quest"},["Deprecated Worn Mail Shoulderpads"]={SubType="Mail",Level=13,id=1736,StackCount=1,Rarity=0,MinLevel=8,SellPrice=87,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:1736::::::::40:::::::|h[Deprecated Worn Mail Shoulderpads]|h|r"},["Wanderer's Boots"]={SubType="Leather",Level=56,id=10106,StackCount=1,Rarity=2,MinLevel=51,SellPrice=12120,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10106::::::::40:::::::|h[Wanderer's Boots]|h|r",Type="Armor"},["Conqueror's Legguards"]={SubType="Plate",Level=81,id=21332,StackCount=1,Rarity=4,MinLevel=60,SellPrice=71529,Texture=134679,Link="|cffa335ee|Hitem:21332::::::::40:::::::|h[Conqueror's Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Cold Snap"]={SubType="Wands",Level=70,id=19130,StackCount=1,Rarity=4,MinLevel=60,SellPrice=77791,Texture=135463,Link="|cffa335ee|Hitem:19130::::::::40:::::::|h[Cold Snap]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Kodo Meat"]={SubType="Trade Goods",Level=10,id=5467,StackCount=10,Rarity=1,MinLevel=0,SellPrice=7,Texture=133970,EquipLoc="",Link="|cffffffff|Hitem:5467::::::::40:::::::|h[Kodo Meat]|h|r",Type="Trade Goods"},["Piercing Axe"]={SubType="Two-Handed Axes",Level=18,id=6094,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1278,Texture=135419,Link="|cff1eff00|Hitem:6094::::::::40:::::::|h[Piercing Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Scroll of Messaging"]={SubType="Quest",Level=1,id=5731,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5731::::::::40:::::::|h[Scroll of Messaging]|h|r"},["Shard of Water"]={SubType="Quest",Level=0,id=7813,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134132,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7813::::::::40:::::::|h[Shard of Water]|h|r"},["Mindfang"]={SubType="Daggers",Level=65,id=20214,StackCount=1,Rarity=4,MinLevel=60,SellPrice=85653,Texture=135311,Link="|cffa335ee|Hitem:20214::::::::40:::::::|h[Mindfang]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Jingling Bell"]={SubType="Junk",Level=1,id=21308,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133706,Link="|cffffffff|Hitem:21308::::::::40:::::::|h[Jingling Bell]|h|r",EquipLoc="",Type="Miscellaneous"},["Monstrous Glaive"]={SubType="Polearms",Level=62,id=18502,StackCount=1,Rarity=3,MinLevel=57,SellPrice=70127,Texture=135579,Type="Weapon",Link="|cff0070dd|Hitem:18502::::::::40:::::::|h[Monstrous Glaive]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Primalist's Linked Waistguard"]={SubType="Mail",Level=77,id=19393,StackCount=1,Rarity=4,MinLevel=60,SellPrice=47833,Texture=132510,Link="|cffa335ee|Hitem:19393::::::::40:::::::|h[Primalist's Linked Waistguard]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Nightsaber Fang"]={SubType="Quest",Level=1,id=3409,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133725,Link="|cffffffff|Hitem:3409::::::::40:::::::|h[Nightsaber Fang]|h|r",EquipLoc="",Type="Quest"},["Mail Combat Leggings"]={SubType="Mail",Level=36,id=6402,StackCount=1,Rarity=2,MinLevel=31,SellPrice=4699,Texture=134589,Link="|cff1eff00|Hitem:6402::::::::40:::::::|h[Mail Combat Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Revelosh's Spaulders"]={SubType="Leather",Level=41,id=9389,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4331,Texture=135056,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9389::::::::40:::::::|h[Revelosh's Spaulders]|h|r"},["Rime Covered Mantle"]={SubType="Cloth",Level=83,id=22983,StackCount=1,Rarity=4,MinLevel=60,SellPrice=62757,Texture=135036,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:22983::::::::40:::::::|h[Rime Covered Mantle]|h|r"},["Voone's Vice Grips"]={SubType="Mail",Level=60,id=13963,StackCount=1,Rarity=3,MinLevel=0,SellPrice=14533,Texture=132949,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13963::::::::40:::::::|h[Voone's Vice Grips]|h|r"},["Wildkin Feather"]={SubType="Quest",Level=1,id=10819,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132927,EquipLoc="",Link="|cffffffff|Hitem:10819::::::::40:::::::|h[Wildkin Feather]|h|r",Type="Quest"},["Zandalar Illusionist's Wraps"]={SubType="Cloth",Level=61,id=19846,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132606,Link="|cffa335ee|Hitem:19846::::::::40:::::::|h[Zandalar Illusionist's Wraps]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Sorcerer's Crown"]={SubType="Cloth",Level=60,id=22065,StackCount=1,Rarity=4,MinLevel=0,SellPrice=20873,Texture=132768,Link="|cffa335ee|Hitem:22065::::::::40:::::::|h[Sorcerer's Crown]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Deprecated Orcslayer"]={SubType="Two-Handed Swords",Level=20,id=1266,StackCount=1,Rarity=0,MinLevel=0,SellPrice=686,Texture=135276,Link="|cff9d9d9d|Hitem:1266::::::::40:::::::|h[Deprecated Orcslayer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Whistle of the Violet Raptor"]={SubType="Junk",Level=40,id=8592,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132253,Link="|cff0070dd|Hitem:8592::::::::40:::::::|h[Whistle of the Violet Raptor]|h|r",EquipLoc="",Type="Miscellaneous"},["Alabaster Plate Helmet"]={SubType="Plate",Level=54,id=8317,StackCount=1,Rarity=2,MinLevel=49,SellPrice=8595,Texture=133118,Link="|cff1eff00|Hitem:8317::::::::40:::::::|h[Alabaster Plate Helmet]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Tempered Bracers"]={SubType="Mail",Level=27,id=6675,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1048,Texture=132605,Type="Armor",Link="|cff1eff00|Hitem:6675::::::::40:::::::|h[Tempered Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Embossed Plate Girdle"]={SubType="Plate",Level=42,id=9968,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2695,Texture=132500,Link="|cff1eff00|Hitem:9968::::::::40:::::::|h[Embossed Plate Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Squishy Basilisk Eye"]={SubType="Junk",Level=1,id=11386,StackCount=10,Rarity=0,MinLevel=0,SellPrice=676,Texture=133884,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11386::::::::40:::::::|h[Squishy Basilisk Eye]|h|r",EquipLoc=""},["Sang'thraze the Deflector"]={SubType="One-Handed Swords",Level=49,id=9379,StackCount=1,Rarity=3,MinLevel=44,SellPrice=26383,Texture=135355,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9379::::::::40:::::::|h[Sang'thraze the Deflector]|h|r"},["Diana's Pearl Necklace"]={SubType="Miscellaneous",Level=61,id=22403,StackCount=1,Rarity=3,MinLevel=56,SellPrice=41953,Texture=133297,Link="|cff0070dd|Hitem:22403::::::::40:::::::|h[Diana's Pearl Necklace]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Sash of Whispered Secrets"]={SubType="Cloth",Level=71,id=18809,StackCount=1,Rarity=4,MinLevel=60,SellPrice=21611,Texture=132501,Type="Armor",Link="|cffa335ee|Hitem:18809::::::::40:::::::|h[Sash of Whispered Secrets]|h|r",EquipLoc="INVTYPE_WAIST"},["Legplates of the Qiraji Command"]={SubType="Plate",Level=71,id=21495,StackCount=1,Rarity=3,MinLevel=60,SellPrice=35075,Texture=134691,Link="|cff0070dd|Hitem:21495::::::::40:::::::|h[Legplates of the Qiraji Command]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Tomahawk"]={SubType="One-Handed Axes",Level=9,id=2490,StackCount=1,Rarity=1,MinLevel=4,SellPrice=108,Texture=135421,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:2490::::::::40:::::::|h[Tomahawk]|h|r"},["[PH] Leather Leggings of the Brilliant Dawn"]={SubType="Leather",Level=100,id=13777,StackCount=1,Rarity=1,MinLevel=100,SellPrice=87554,Texture=134585,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:13777::::::::40:::::::|h[[PH] Leather Leggings of the Brilliant Dawn]|h|r"},["Tablet of Searing Totem IV"]={SubType="Book",Level=40,id=9104,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9104::::::::40:::::::|h[Tablet of Searing Totem IV]|h|r"},["Jade Serpentblade"]={SubType="One-Handed Swords",Level=35,id=3850,StackCount=1,Rarity=2,MinLevel=30,SellPrice=7304,Texture=135346,Type="Weapon",Link="|cff1eff00|Hitem:3850::::::::40:::::::|h[Jade Serpentblade]|h|r",EquipLoc="INVTYPE_WEAPON"},["Vibrant Silk Cape"]={SubType="Cloth",Level=33,id=5181,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1778,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:5181::::::::40:::::::|h[Vibrant Silk Cape]|h|r",Type="Armor"},["Conjured Water"]={SubType="Consumable",Level=5,id=5350,StackCount=20,Rarity=1,MinLevel=1,SellPrice=0,Texture=132793,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5350::::::::40:::::::|h[Conjured Water]|h|r"},["Crystal Restore"]={SubType="Quest",Level=55,id=11562,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134095,Type="Quest",Link="|cffffffff|Hitem:11562::::::::40:::::::|h[Crystal Restore]|h|r",EquipLoc=""},["Bingles' Blastencapper"]={SubType="Quest",Level=1,id=7376,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133714,EquipLoc="",Link="|cffffffff|Hitem:7376::::::::40:::::::|h[Bingles' Blastencapper]|h|r",Type="Quest"},["Warleader's Leggings"]={SubType="Plate",Level=62,id=14867,StackCount=1,Rarity=2,MinLevel=57,SellPrice=17802,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14867::::::::40:::::::|h[Warleader's Leggings]|h|r"},["Knight-Lieutenant's Dreadweave Boots"]={SubType="Cloth",Level=63,id=17562,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8736,Texture=132536,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:17562::::::::40:::::::|h[Knight-Lieutenant's Dreadweave Boots]|h|r",Type="Armor"},["Deprecated Bloodstone"]={SubType="Miscellaneous",Level=26,id=5230,StackCount=1,Rarity=1,MinLevel=21,SellPrice=0,Texture=135230,EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:5230::::::::40:::::::|h[Deprecated Bloodstone]|h|r",Type="Armor"},["Staff of Command"]={SubType="Quest",Level=1,id=10464,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135163,EquipLoc="",Link="|cffffffff|Hitem:10464::::::::40:::::::|h[Staff of Command]|h|r",Type="Quest"},["Bloodstone Pendant"]={SubType="Quest",Level=1,id=3744,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133280,Type="Quest",Link="|cffffffff|Hitem:3744::::::::40:::::::|h[Bloodstone Pendant]|h|r",EquipLoc=""},["Shimmering Bracers"]={SubType="Cloth",Level=20,id=6563,StackCount=1,Rarity=2,MinLevel=15,SellPrice=295,Texture=132611,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:6563::::::::40:::::::|h[Shimmering Bracers]|h|r"},["Soulstealer Mantle"]={SubType="Cloth",Level=60,id=13374,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14315,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13374::::::::40:::::::|h[Soulstealer Mantle]|h|r"},["Formula: Enchant Weapon - Spell Power"]={SubType="Enchanting",Level=60,id=18259,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7500,Texture=134327,Type="Recipe",Link="|cff0070dd|Hitem:18259::::::::40:::::::|h[Formula: Enchant Weapon - Spell Power]|h|r",EquipLoc=""},["Legionnaire's Satin Legguards"]={SubType="Cloth",Level=68,id=22882,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14660,Texture=134591,Link="|cff0070dd|Hitem:22882::::::::40:::::::|h[Legionnaire's Satin Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Bloodscalp Ear"]={SubType="Quest",Level=1,id=1519,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134343,EquipLoc="",Link="|cffffffff|Hitem:1519::::::::40:::::::|h[Bloodscalp Ear]|h|r",Type="Quest"},["Plans: Blazing Rapier"]={SubType="Blacksmithing",Level=56,id=12825,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12825::::::::40:::::::|h[Plans: Blazing Rapier]|h|r"},["Interlaced Shoulderpads"]={SubType="Cloth",Level=35,id=3798,StackCount=1,Rarity=0,MinLevel=30,SellPrice=902,Texture=135040,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:3798::::::::40:::::::|h[Interlaced Shoulderpads]|h|r"},["Solid Dynamite"]={SubType="Explosives",Level=35,id=10507,StackCount=20,Rarity=1,MinLevel=0,SellPrice=350,Texture=133714,EquipLoc="",Link="|cffffffff|Hitem:10507::::::::40:::::::|h[Solid Dynamite]|h|r",Type="Trade Goods"},["Rhok'delar, Longbow of the Ancient Keepers"]={SubType="Bows",Level=75,id=18713,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135489,Type="Weapon",Link="|cffa335ee|Hitem:18713::::::::40:::::::|h[Rhok'delar, Longbow of the Ancient Keepers]|h|r",EquipLoc="INVTYPE_RANGED"},["Double-bladed Axe"]={SubType="Two-Handed Axes",Level=9,id=2499,StackCount=1,Rarity=1,MinLevel=4,SellPrice=143,Texture=135424,Type="Weapon",Link="|cffffffff|Hitem:2499::::::::40:::::::|h[Double-bladed Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Rough Bronze Shoulders"]={SubType="Mail",Level=22,id=3480,StackCount=1,Rarity=1,MinLevel=17,SellPrice=532,Texture=135036,Link="|cffffffff|Hitem:3480::::::::40:::::::|h[Rough Bronze Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Astral Knot Blouse"]={SubType="Cloth",Level=31,id=9516,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2071,Texture=135015,Link="|cff1eff00|Hitem:9516::::::::40:::::::|h[Astral Knot Blouse]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Firebreather"]={SubType="One-Handed Swords",Level=53,id=10797,StackCount=1,Rarity=3,MinLevel=48,SellPrice=35069,Texture=135279,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:10797::::::::40:::::::|h[Firebreather]|h|r",Type="Weapon"},["Whistle of the Emerald Raptor"]={SubType="Junk",Level=40,id=8588,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132253,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:8588::::::::40:::::::|h[Whistle of the Emerald Raptor]|h|r"},["Combat Task Briefing IX"]={SubType="Quest",Level=60,id=21253,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:21253::::::::40:::::::|h[Combat Task Briefing IX]|h|r"},["Tyrant's Epaulets"]={SubType="Plate",Level=44,id=14841,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4284,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14841::::::::40:::::::|h[Tyrant's Epaulets]|h|r"},["Flimsy Chain Cloak"]={SubType="Cloth",Level=5,id=2652,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:2652::::::::40:::::::|h[Flimsy Chain Cloak]|h|r",Type="Armor"},["Skullstone Hammer"]={SubType="One-Handed Maces",Level=61,id=17003,StackCount=1,Rarity=2,MinLevel=0,SellPrice=44982,Texture=133731,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:17003::::::::40:::::::|h[Skullstone Hammer]|h|r",Type="Weapon"},["Desert Wind Gauntlets"]={SubType="Plate",Level=60,id=20650,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8511,Texture=132962,Link="|cff1eff00|Hitem:20650::::::::40:::::::|h[Desert Wind Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Grimoire of Curse of Recklessness III"]={SubType="Book",Level=40,id=9230,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9230::::::::40:::::::|h[Grimoire of Curse of Recklessness III]|h|r"},["Monster - Staff, Feathered Gold"]={SubType="Staves",Level=1,id=13337,StackCount=1,Rarity=0,MinLevel=0,SellPrice=2,Texture=135225,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13337::::::::40:::::::|h[Monster - Staff, Feathered Gold]|h|r"},["Onyx Choker"]={SubType="Miscellaneous",Level=46,id=7548,StackCount=1,Rarity=2,MinLevel=41,SellPrice=6507,Texture=133293,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:7548::::::::40:::::::|h[Onyx Choker]|h|r"},["TEST Sulfuras, Hand of Ragnaros"]={SubType="Two-Handed Maces",Level=80,id=19158,StackCount=1,Rarity=5,MinLevel=60,SellPrice=314707,Texture=133066,Link="|cffff8000|Hitem:19158::::::::40:::::::|h[TEST Sulfuras, Hand of Ragnaros]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Outrunner's Legguards"]={SubType="Mail",Level=22,id=15503,StackCount=1,Rarity=2,MinLevel=17,SellPrice=1091,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15503::::::::40:::::::|h[Outrunner's Legguards]|h|r",Type="Armor"},["Desecrated Waistguard"]={SubType="Junk",Level=60,id=22356,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133828,Link="|cffa335ee|Hitem:22356::::::::40:::::::|h[Desecrated Waistguard]|h|r",EquipLoc="",Type="Miscellaneous"},["Level 65 Test Gear Leather - Rogue 2"]={SubType="Junk",Level=1,id=17855,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17855::::::::40:::::::|h[Level 65 Test Gear Leather - Rogue 2]|h|r",Type="Miscellaneous"},["Knight-Lieutenant's Steed"]={SubType="Junk",Level=40,id=16338,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132261,EquipLoc="",Link="|cffffffff|Hitem:16338::::::::40:::::::|h[Knight-Lieutenant's Steed]|h|r",Type="Miscellaneous"},["Manaweave Robe"]={SubType="Cloth",Level=20,id=7509,StackCount=1,Rarity=2,MinLevel=0,SellPrice=553,Texture=132677,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:7509::::::::40:::::::|h[Manaweave Robe]|h|r",Type="Armor"},["Field Marshal's Silk Vestments"]={SubType="Cloth",Level=74,id=16443,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25692,Texture=132653,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:16443::::::::40:::::::|h[Field Marshal's Silk Vestments]|h|r",Type="Armor"},["Solstice Robe"]={SubType="Cloth",Level=18,id=4782,StackCount=1,Rarity=2,MinLevel=13,SellPrice=415,Texture=132658,Type="Armor",Link="|cff1eff00|Hitem:4782::::::::40:::::::|h[Solstice Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Hezrul's Head"]={SubType="Quest",Level=1,id=5025,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134151,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5025::::::::40:::::::|h[Hezrul's Head]|h|r"},["Logistics Task Briefing X"]={SubType="Quest",Level=60,id=21385,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21385::::::::40:::::::|h[Logistics Task Briefing X]|h|r",EquipLoc="",Type="Quest"},["Monster - Item, Orb - Lava Offhand"]={SubType="Miscellaneous",Level=1,id=12747,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135473,Type="Weapon",EquipLoc="INVTYPE_WEAPONOFFHAND",Link="|cff9d9d9d|Hitem:12747::::::::40:::::::|h[Monster - Item, Orb - Lava Offhand]|h|r"},["Band of Earthen Might"]={SubType="Miscellaneous",Level=66,id=21182,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10709,Texture=133361,Link="|cff0070dd|Hitem:21182::::::::40:::::::|h[Band of Earthen Might]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Arcane Powder"]={SubType="Reagent",Level=56,id=17020,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=133848,EquipLoc="",Link="|cffffffff|Hitem:17020::::::::40:::::::|h[Arcane Powder]|h|r",Type="Reagent"},["Monster - Axe, Metal Badass"]={SubType="One-Handed Axes",Level=1,id=2183,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=132392,Link="|cff9d9d9d|Hitem:2183::::::::40:::::::|h[Monster - Axe, Metal Badass]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Schematic: Core Marksman Rifle"]={SubType="Engineering",Level=65,id=18292,StackCount=1,Rarity=3,MinLevel=0,SellPrice=30000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18292::::::::40:::::::|h[Schematic: Core Marksman Rifle]|h|r",EquipLoc=""},["Royal Blouse"]={SubType="Cloth",Level=48,id=9905,StackCount=1,Rarity=2,MinLevel=43,SellPrice=8251,Texture=135017,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9905::::::::40:::::::|h[Royal Blouse]|h|r"},["Field Marshal's Satin Mantle"]={SubType="Cloth",Level=74,id=17604,StackCount=1,Rarity=4,MinLevel=60,SellPrice=20585,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:17604::::::::40:::::::|h[Field Marshal's Satin Mantle]|h|r",Type="Armor"},["Taragaman the Hungerer's Heart"]={SubType="Quest",Level=1,id=14540,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14540::::::::40:::::::|h[Taragaman the Hungerer's Heart]|h|r"},["Pridelord Bands"]={SubType="Leather",Level=53,id=14672,StackCount=1,Rarity=2,MinLevel=48,SellPrice=7309,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14672::::::::40:::::::|h[Pridelord Bands]|h|r"},["Rusty Warhammer"]={SubType="Two-Handed Maces",Level=14,id=1514,StackCount=1,Rarity=0,MinLevel=9,SellPrice=294,Texture=133053,Type="Weapon",Link="|cff9d9d9d|Hitem:1514::::::::40:::::::|h[Rusty Warhammer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Solid Metal Club"]={SubType="One-Handed Maces",Level=10,id=1158,StackCount=1,Rarity=1,MinLevel=0,SellPrice=146,Texture=133476,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:1158::::::::40:::::::|h[Solid Metal Club]|h|r"},["Timeworn Mace"]={SubType="One-Handed Maces",Level=62,id=18376,StackCount=1,Rarity=3,MinLevel=57,SellPrice=52306,Texture=133482,Type="Weapon",Link="|cff0070dd|Hitem:18376::::::::40:::::::|h[Timeworn Mace]|h|r",EquipLoc="INVTYPE_WEAPON"},["Bloodvine Goggles"]={SubType="Cloth",Level=65,id=19999,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18639,Texture=133149,Link="|cff0070dd|Hitem:19999::::::::40:::::::|h[Bloodvine Goggles]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Byltan Essence"]={SubType="Quest",Level=1,id=9258,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134132,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9258::::::::40:::::::|h[Byltan Essence]|h|r"},["Pattern: Black Silk Pack"]={SubType="Tailoring",Level=37,id=5775,StackCount=1,Rarity=2,MinLevel=0,SellPrice=350,Texture=134942,Link="|cff1eff00|Hitem:5775::::::::40:::::::|h[Pattern: Black Silk Pack]|h|r",EquipLoc="",Type="Recipe"},["Monster - Axe, Horde Crystal Blade A03"]={SubType="One-Handed Axes",Level=1,id=14876,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14876::::::::40:::::::|h[Monster - Axe, Horde Crystal Blade A03]|h|r"},["Fire Hardened Leggings"]={SubType="Mail",Level=29,id=6973,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2465,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:6973::::::::40:::::::|h[Fire Hardened Leggings]|h|r"},["Stormwind Chain Gloves"]={SubType="Mail",Level=10,id=1360,StackCount=1,Rarity=1,MinLevel=0,SellPrice=42,Texture=132939,Type="Armor",Link="|cffffffff|Hitem:1360::::::::40:::::::|h[Stormwind Chain Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Crest of Retribution"]={SubType="Shields",Level=60,id=13375,StackCount=1,Rarity=3,MinLevel=55,SellPrice=30656,Texture=134965,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:13375::::::::40:::::::|h[Crest of Retribution]|h|r"},["Champion's Chain Pauldrons"]={SubType="Mail",Level=63,id=16528,StackCount=1,Rarity=3,MinLevel=58,SellPrice=13309,Texture=135032,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16528::::::::40:::::::|h[Champion's Chain Pauldrons]|h|r",Type="Armor"},["Thin Cloth Pants"]={SubType="Cloth",Level=5,id=2120,StackCount=1,Rarity=1,MinLevel=1,SellPrice=10,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:2120::::::::40:::::::|h[Thin Cloth Pants]|h|r"},["Bluegill Breeches"]={SubType="Leather",Level=23,id=3022,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1085,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:3022::::::::40:::::::|h[Bluegill Breeches]|h|r"},["Drillborer Disk"]={SubType="Shields",Level=67,id=17066,StackCount=1,Rarity=4,MinLevel=60,SellPrice=57970,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cffa335ee|Hitem:17066::::::::40:::::::|h[Drillborer Disk]|h|r",Type="Armor"},["Heavy Silk Bandage"]={SubType="Consumable",Level=1,id=6451,StackCount=20,Rarity=1,MinLevel=0,SellPrice=400,Texture=133672,Type="Consumable",Link="|cffffffff|Hitem:6451::::::::40:::::::|h[Heavy Silk Bandage]|h|r",EquipLoc=""},["Chestplate of Tranquility"]={SubType="Leather",Level=62,id=18373,StackCount=1,Rarity=3,MinLevel=57,SellPrice=28459,Texture=132723,Type="Armor",Link="|cff0070dd|Hitem:18373::::::::40:::::::|h[Chestplate of Tranquility]|h|r",EquipLoc="INVTYPE_CHEST"},["Brilliant Chromatic Scale"]={SubType="Junk",Level=1,id=12607,StackCount=20,Rarity=3,MinLevel=0,SellPrice=8048,Texture=134319,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:12607::::::::40:::::::|h[Brilliant Chromatic Scale]|h|r"},["Large Axe"]={SubType="Two-Handed Axes",Level=8,id=2491,StackCount=1,Rarity=1,MinLevel=3,SellPrice=96,Texture=132401,Link="|cffffffff|Hitem:2491::::::::40:::::::|h[Large Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["A Crumpled Missive"]={SubType="Quest",Level=1,id=22944,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,Link="|cffffffff|Hitem:22944::::::::40:::::::|h[A Crumpled Missive]|h|r",EquipLoc="",Type="Quest"},["Monster - Wand, Jeweled - Green"]={SubType="Wands",Level=1,id=6231,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135463,Type="Weapon",Link="|cff9d9d9d|Hitem:6231::::::::40:::::::|h[Monster - Wand, Jeweled - Green]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["[PH] Cloth Boots of the Shining Dawn"]={SubType="Cloth",Level=100,id=13800,StackCount=1,Rarity=1,MinLevel=100,SellPrice=53105,Texture=132579,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:13800::::::::40:::::::|h[[PH] Cloth Boots of the Shining Dawn]|h|r"},["Tome of Conjure Water VII"]={SubType="Book",Level=60,id=8892,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133739,Link="|cffffffff|Hitem:8892::::::::40:::::::|h[Tome of Conjure Water VII]|h|r",EquipLoc="",Type="Recipe"},["Tainted Letter"]={SubType="Quest",Level=1,id=9576,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Link="|cffffffff|Hitem:9576::::::::40:::::::|h[Tainted Letter]|h|r",EquipLoc="",Type="Quest"},["Festival Lane Postbox Key"]={SubType="Key",Level=1,id=13304,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:13304::::::::40:::::::|h[Festival Lane Postbox Key]|h|r"},["Charged Lightning Rod"]={SubType="Wands",Level=46,id=11860,StackCount=1,Rarity=2,MinLevel=0,SellPrice=12970,Texture=135470,Type="Weapon",Link="|cff1eff00|Hitem:11860::::::::40:::::::|h[Charged Lightning Rod]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Sealed Letter to Archmage Malin"]={SubType="Quest",Level=1,id=4533,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4533::::::::40:::::::|h[Sealed Letter to Archmage Malin]|h|r"},["Formula: Enchant Bracer - Greater Intellect"]={SubType="Enchanting",Level=51,id=16214,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16214::::::::40:::::::|h[Formula: Enchant Bracer - Greater Intellect]|h|r",Type="Recipe"},["Elixir of Firepower"]={SubType="Consumable",Level=28,id=6373,StackCount=5,Rarity=1,MinLevel=18,SellPrice=35,Texture=134813,Type="Consumable",Link="|cffffffff|Hitem:6373::::::::40:::::::|h[Elixir of Firepower]|h|r",EquipLoc=""},["Emblazoned Chestpiece"]={SubType="Leather",Level=32,id=6396,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2814,Texture=132723,Link="|cff1eff00|Hitem:6396::::::::40:::::::|h[Emblazoned Chestpiece]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Test Arcane Res Head Leather"]={SubType="Leather",Level=35,id=16156,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2587,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:16156::::::::40:::::::|h[Test Arcane Res Head Leather]|h|r",Type="Armor"},["[PH] Greater Arcane Amalgamation (STA/FR)"]={SubType="Quest",Level=50,id=11670,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=134094,Type="Quest",Link="|cff0070dd|Hitem:11670::::::::40:::::::|h[[PH] Greater Arcane Amalgamation (STA/FR)]|h|r",EquipLoc=""},["Monster - Item, Bottle - Black"]={SubType="Miscellaneous",Level=1,id=2717,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134400,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2717::::::::40:::::::|h[Monster - Item, Bottle - Black]|h|r",Type="Weapon"},["Copper Dagger"]={SubType="Daggers",Level=11,id=7166,StackCount=1,Rarity=1,MinLevel=6,SellPrice=194,Texture=135650,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:7166::::::::40:::::::|h[Copper Dagger]|h|r",Type="Weapon"},["Reinforced Chain Shoulderpads"]={SubType="Mail",Level=27,id=1760,StackCount=1,Rarity=0,MinLevel=22,SellPrice=609,Texture=135038,Type="Armor",Link="|cff9d9d9d|Hitem:1760::::::::40:::::::|h[Reinforced Chain Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Bandit Bracers"]={SubType="Leather",Level=19,id=9777,StackCount=1,Rarity=2,MinLevel=14,SellPrice=318,Texture=132604,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9777::::::::40:::::::|h[Bandit Bracers]|h|r"},["Knight-Lieutenant's Dragonhide Footwraps"]={SubType="Leather",Level=63,id=16393,StackCount=1,Rarity=3,MinLevel=58,SellPrice=10676,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16393::::::::40:::::::|h[Knight-Lieutenant's Dragonhide Footwraps]|h|r",Type="Armor"},["Padre's Trousers"]={SubType="Cloth",Level=61,id=18386,StackCount=1,Rarity=3,MinLevel=56,SellPrice=20588,Texture=134586,Type="Armor",Link="|cff0070dd|Hitem:18386::::::::40:::::::|h[Padre's Trousers]|h|r",EquipLoc="INVTYPE_LEGS"},["Everglowing Robe"]={SubType="Cloth",Level=49,id=19129,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8355,Texture=132657,Link="|cff1eff00|Hitem:19129::::::::40:::::::|h[Everglowing Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Tablet of Ghost Wolf II"]={SubType="Book",Level=30,id=5711,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2000,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:5711::::::::40:::::::|h[Tablet of Ghost Wolf II]|h|r",Type="Recipe"},["Silver-plated Shotgun"]={SubType="Guns",Level=26,id=4379,StackCount=1,Rarity=2,MinLevel=21,SellPrice=2357,Texture=135616,Link="|cff1eff00|Hitem:4379::::::::40:::::::|h[Silver-plated Shotgun]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Logistics Assignment"]={SubType="Junk",Level=1,id=21132,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133460,Link="|cffffffff|Hitem:21132::::::::40:::::::|h[Logistics Assignment]|h|r",EquipLoc="",Type="Miscellaneous"},["Charred Horn"]={SubType="Quest",Level=1,id=6839,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134227,Type="Quest",Link="|cffffffff|Hitem:6839::::::::40:::::::|h[Charred Horn]|h|r",EquipLoc=""},["Recipe: Greater Fire Protection Potion"]={SubType="Alchemy",Level=58,id=13494,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13494::::::::40:::::::|h[Recipe: Greater Fire Protection Potion]|h|r"},["Dense Grinding Stone"]={SubType="Trade Goods",Level=45,id=12644,StackCount=20,Rarity=1,MinLevel=0,SellPrice=200,Texture=135247,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12644::::::::40:::::::|h[Dense Grinding Stone]|h|r"},["Frostwolf Banner"]={SubType="Quest",Level=1,id=17850,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132484,EquipLoc="",Link="|cffffffff|Hitem:17850::::::::40:::::::|h[Frostwolf Banner]|h|r",Type="Quest"},["Test Fire Res Shoulders Cloth"]={SubType="Cloth",Level=35,id=16061,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2259,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16061::::::::40:::::::|h[Test Fire Res Shoulders Cloth]|h|r",Type="Armor"},["Blackrock Champion's Axe"]={SubType="Two-Handed Axes",Level=24,id=1455,StackCount=1,Rarity=2,MinLevel=19,SellPrice=2931,Texture=135562,Type="Weapon",Link="|cff1eff00|Hitem:1455::::::::40:::::::|h[Blackrock Champion's Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Monster - Sword, Horde Jagged Brown"]={SubType="One-Handed Swords",Level=1,id=12297,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12297::::::::40:::::::|h[Monster - Sword, Horde Jagged Brown]|h|r"},["Tome of Frostbolt XI"]={SubType="Book",Level=60,id=21214,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133739,Link="|cff0070dd|Hitem:21214::::::::40:::::::|h[Tome of Frostbolt XI]|h|r",EquipLoc="",Type="Recipe"},["Winter Veil Disguise Kit"]={SubType="Junk",Level=1,id=17712,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135850,EquipLoc="",Link="|cffffffff|Hitem:17712::::::::40:::::::|h[Winter Veil Disguise Kit]|h|r",Type="Miscellaneous"},["Grimoire of Curse of Weakness IV"]={SubType="Book",Level=34,id=9223,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9223::::::::40:::::::|h[Grimoire of Curse of Weakness IV]|h|r"},["Knight-Lieutenant's Silk Gloves"]={SubType="Cloth",Level=63,id=16391,StackCount=1,Rarity=3,MinLevel=58,SellPrice=5652,Texture=132951,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16391::::::::40:::::::|h[Knight-Lieutenant's Silk Gloves]|h|r",Type="Armor"},["Tome of Water Elemental"]={SubType="Book",Level=30,id=1568,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2000,Texture=133739,Link="|cffffffff|Hitem:1568::::::::40:::::::|h[Tome of Water Elemental]|h|r",EquipLoc="",Type="Recipe"},["Shimmering Basilisk Skin"]={SubType="Junk",Level=1,id=11389,StackCount=5,Rarity=0,MinLevel=0,SellPrice=2163,Texture=134308,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11389::::::::40:::::::|h[Shimmering Basilisk Skin]|h|r",EquipLoc=""},["Level 55 Test Gear Cloth - Mage/Priest/Warlock"]={SubType="Junk",Level=1,id=13653,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13653::::::::40:::::::|h[Level 55 Test Gear Cloth - Mage/Priest/Warlock]|h|r"},["Rough Dynamite"]={SubType="Explosives",Level=10,id=4358,StackCount=20,Rarity=1,MinLevel=0,SellPrice=30,Texture=133714,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4358::::::::40:::::::|h[Rough Dynamite]|h|r"},["Lunar Handwraps"]={SubType="Cloth",Level=43,id=14253,StackCount=1,Rarity=2,MinLevel=38,SellPrice=2819,Texture=132954,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14253::::::::40:::::::|h[Lunar Handwraps]|h|r"},["High Chief's Sabatons"]={SubType="Plate",Level=51,id=14957,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7223,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14957::::::::40:::::::|h[High Chief's Sabatons]|h|r"},["Cyclone Spaulders"]={SubType="Leather",Level=61,id=18528,StackCount=1,Rarity=3,MinLevel=56,SellPrice=20465,Texture=135057,Type="Armor",Link="|cff0070dd|Hitem:18528::::::::40:::::::|h[Cyclone Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Test Frost Res Head Leather"]={SubType="Leather",Level=35,id=16139,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2587,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:16139::::::::40:::::::|h[Test Frost Res Head Leather]|h|r",Type="Armor"},["Sunscale Legplates"]={SubType="Plate",Level=52,id=14850,StackCount=1,Rarity=2,MinLevel=47,SellPrice=10442,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14850::::::::40:::::::|h[Sunscale Legplates]|h|r"},["Green Hills of Stranglethorn - Page 27"]={SubType="Junk",Level=1,id=2751,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,Link="|cffffffff|Hitem:2751::::::::40:::::::|h[Green Hills of Stranglethorn - Page 27]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Item, Book - B01 Black Glowing"]={SubType="Miscellaneous",Level=1,id=12864,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12864::::::::40:::::::|h[Monster - Item, Book - B01 Black Glowing]|h|r"},["Chimera Leather"]={SubType="Trade Goods",Level=50,id=15423,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134250,EquipLoc="",Link="|cffffffff|Hitem:15423::::::::40:::::::|h[Chimera Leather]|h|r",Type="Trade Goods"},["Myrmidon's Breastplate"]={SubType="Mail",Level=51,id=8126,StackCount=1,Rarity=2,MinLevel=46,SellPrice=15656,Texture=132628,Link="|cff1eff00|Hitem:8126::::::::40:::::::|h[Myrmidon's Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Stormpike Insignia Rank 6"]={SubType="Miscellaneous",Level=60,id=17904,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=133433,EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:17904::::::::40:::::::|h[Stormpike Insignia Rank 6]|h|r",Type="Armor"},["Chief Brigadier Girdle"]={SubType="Mail",Level=38,id=4727,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2791,Texture=132505,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4727::::::::40:::::::|h[Chief Brigadier Girdle]|h|r"},["Chipped Claw"]={SubType="Junk",Level=1,id=7074,StackCount=5,Rarity=0,MinLevel=0,SellPrice=4,Texture=133723,Link="|cff9d9d9d|Hitem:7074::::::::40:::::::|h[Chipped Claw]|h|r",EquipLoc="",Type="Miscellaneous"},["Sample of Zanzil's Altered Mixture"]={SubType="Junk",Level=1,id=8087,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134711,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:8087::::::::40:::::::|h[Sample of Zanzil's Altered Mixture]|h|r"},["Tome of Fire Blast II"]={SubType="Book",Level=14,id=3094,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:3094::::::::40:::::::|h[Tome of Fire Blast II]|h|r",Type="Recipe"},["Korran's Sealed Note"]={SubType="Quest",Level=1,id=5846,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133458,EquipLoc="",Link="|cffffffff|Hitem:5846::::::::40:::::::|h[Korran's Sealed Note]|h|r",Type="Quest"},["Arcane Quickener"]={SubType="Quest",Level=1,id=13320,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136006,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13320::::::::40:::::::|h[Arcane Quickener]|h|r"},["Disciple's Cloak"]={SubType="Cloth",Level=10,id=6514,StackCount=1,Rarity=1,MinLevel=5,SellPrice=42,Texture=133762,Type="Armor",Link="|cffffffff|Hitem:6514::::::::40:::::::|h[Disciple's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Highborne Crown"]={SubType="Cloth",Level=57,id=14449,StackCount=1,Rarity=2,MinLevel=52,SellPrice=10125,Texture=132767,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14449::::::::40:::::::|h[Highborne Crown]|h|r"},["Formula: Enchant Weapon - Mighty Spirit"]={SubType="Enchanting",Level=66,id=19448,StackCount=1,Rarity=1,MinLevel=0,SellPrice=20000,Texture=134327,Link="|cffffffff|Hitem:19448::::::::40:::::::|h[Formula: Enchant Weapon - Mighty Spirit]|h|r",EquipLoc="",Type="Recipe"},["Plaguehound Leggings"]={SubType="Leather",Level=62,id=18736,StackCount=1,Rarity=3,MinLevel=57,SellPrice=26112,Texture=134592,Type="Armor",Link="|cff0070dd|Hitem:18736::::::::40:::::::|h[Plaguehound Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Hillborne Axe"]={SubType="One-Handed Axes",Level=34,id=2080,StackCount=1,Rarity=2,MinLevel=29,SellPrice=6590,Texture=132402,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:2080::::::::40:::::::|h[Hillborne Axe]|h|r",Type="Weapon"},["Chieftain's Breastplate"]={SubType="Leather",Level=53,id=9950,StackCount=1,Rarity=2,MinLevel=48,SellPrice=13418,Texture=132720,Link="|cff1eff00|Hitem:9950::::::::40:::::::|h[Chieftain's Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Head of Nefarian"]={SubType="Quest",Level=60,id=19002,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=134154,Link="|cffa335ee|Hitem:19002::::::::40:::::::|h[Head of Nefarian]|h|r",EquipLoc="",Type="Quest"},["Hammerfist Gloves"]={SubType="Leather",Level=20,id=5629,StackCount=1,Rarity=2,MinLevel=0,SellPrice=347,Texture=132939,Link="|cff1eff00|Hitem:5629::::::::40:::::::|h[Hammerfist Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Spidertank Oilrag"]={SubType="Cloth",Level=33,id=9448,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1154,Texture=133679,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9448::::::::40:::::::|h[Spidertank Oilrag]|h|r"},["Lean Venison"]={SubType="Consumable",Level=25,id=5480,StackCount=20,Rarity=1,MinLevel=15,SellPrice=95,Texture=134028,EquipLoc="",Link="|cffffffff|Hitem:5480::::::::40:::::::|h[Lean Venison]|h|r",Type="Consumable"},["Elune's Tear"]={SubType="Quest",Level=1,id=5493,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134564,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5493::::::::40:::::::|h[Elune's Tear]|h|r"},["Khan Jehn's Head"]={SubType="Quest",Level=1,id=6072,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134151,Type="Quest",Link="|cffffffff|Hitem:6072::::::::40:::::::|h[Khan Jehn's Head]|h|r",EquipLoc=""},["Sterling Chain Cloak"]={SubType="Cloth",Level=68,id=4011,StackCount=1,Rarity=0,MinLevel=63,SellPrice=10687,Texture=133768,EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:4011::::::::40:::::::|h[Sterling Chain Cloak]|h|r",Type="Armor"},["Totem of Infliction"]={SubType="Miscellaneous",Level=25,id=1131,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1136,Texture=133729,Type="Armor",Link="|cff1eff00|Hitem:1131::::::::40:::::::|h[Totem of Infliction]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Rune of Perfection"]={SubType="Miscellaneous",Level=45,id=21565,StackCount=1,Rarity=3,MinLevel=40,SellPrice=10000,Texture=134418,Link="|cff0070dd|Hitem:21565::::::::40:::::::|h[Rune of Perfection]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Ghoul Fang"]={SubType="Quest",Level=1,id=1129,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1129::::::::40:::::::|h[Ghoul Fang]|h|r"},["Mageweave Cloth"]={SubType="Trade Goods",Level=40,id=4338,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=132892,Link="|cffffffff|Hitem:4338::::::::40:::::::|h[Mageweave Cloth]|h|r",EquipLoc="",Type="Trade Goods"},["Sparkleshell Legguards"]={SubType="Mail",Level=40,id=15582,StackCount=1,Rarity=2,MinLevel=35,SellPrice=6544,Texture=134589,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15582::::::::40:::::::|h[Sparkleshell Legguards]|h|r",Type="Armor"},["Sentinel Standard Care Package"]={SubType="Consumable",Level=1,id=19151,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134144,Link="|cffffffff|Hitem:19151::::::::40:::::::|h[Sentinel Standard Care Package]|h|r",EquipLoc="",Type="Consumable"},["Panther Armor"]={SubType="Leather",Level=27,id=6670,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1672,Texture=132716,Type="Armor",Link="|cff1eff00|Hitem:6670::::::::40:::::::|h[Panther Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Silithus Venom Sample"]={SubType="Quest",Level=1,id=22381,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,Link="|cffffffff|Hitem:22381::::::::40:::::::|h[Silithus Venom Sample]|h|r",EquipLoc="",Type="Quest"},["Sayge's Fortune #29"]={SubType="Junk",Level=1,id=19454,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19454::::::::40:::::::|h[Sayge's Fortune #29]|h|r",EquipLoc="",Type="Miscellaneous"},["Flarethorn"]={SubType="Daggers",Level=57,id=22266,StackCount=1,Rarity=3,MinLevel=52,SellPrice=43878,Texture=135124,Link="|cff0070dd|Hitem:22266::::::::40:::::::|h[Flarethorn]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Wailing Essence"]={SubType="Consumable",Level=1,id=6464,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136016,Type="Consumable",Link="|cffffffff|Hitem:6464::::::::40:::::::|h[Wailing Essence]|h|r",EquipLoc=""},["Clouddrift Mantle"]={SubType="Leather",Level=56,id=11874,StackCount=1,Rarity=2,MinLevel=0,SellPrice=12124,Texture=135061,Type="Armor",Link="|cff1eff00|Hitem:11874::::::::40:::::::|h[Clouddrift Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Sunborne Cape"]={SubType="Cloth",Level=56,id=12113,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10443,Texture=133760,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:12113::::::::40:::::::|h[Sunborne Cape]|h|r"},["Wood Chopper"]={SubType="Two-Handed Axes",Level=8,id=3189,StackCount=1,Rarity=1,MinLevel=3,SellPrice=99,Texture=132402,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:3189::::::::40:::::::|h[Wood Chopper]|h|r",Type="Weapon"},["Skullcrusher Mace"]={SubType="One-Handed Maces",Level=47,id=1608,StackCount=1,Rarity=2,MinLevel=42,SellPrice=18940,Texture=133729,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:1608::::::::40:::::::|h[Skullcrusher Mace]|h|r",Type="Weapon"},["Maexxna's Fang"]={SubType="Daggers",Level=83,id=22804,StackCount=1,Rarity=4,MinLevel=60,SellPrice=199392,Texture=133454,Link="|cffa335ee|Hitem:22804::::::::40:::::::|h[Maexxna's Fang]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Tablet of Nullify Disease"]={SubType="Book",Level=16,id=1036,StackCount=1,Rarity=1,MinLevel=16,SellPrice=450,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1036::::::::40:::::::|h[Tablet of Nullify Disease]|h|r"},["Pauldrons of The Five Thunders"]={SubType="Mail",Level=65,id=22101,StackCount=1,Rarity=3,MinLevel=0,SellPrice=27564,Texture=135060,Link="|cff0070dd|Hitem:22101::::::::40:::::::|h[Pauldrons of The Five Thunders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Orgrimmar Gift Collection"]={SubType="Junk",Level=1,id=22136,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134140,Link="|cffffffff|Hitem:22136::::::::40:::::::|h[Orgrimmar Gift Collection]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Trident, Wicked"]={SubType="Polearms",Level=1,id=12063,StackCount=1,Rarity=0,MinLevel=0,SellPrice=2,Texture=135124,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12063::::::::40:::::::|h[Monster - Trident, Wicked]|h|r"},["Wicked Chain Bracers"]={SubType="Mail",Level=29,id=15535,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1270,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15535::::::::40:::::::|h[Wicked Chain Bracers]|h|r",Type="Armor"},["Mask of Thero-shan"]={SubType="Leather",Level=42,id=7953,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4907,Texture=133143,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7953::::::::40:::::::|h[Mask of Thero-shan]|h|r"},["Flamberge"]={SubType="Two-Handed Swords",Level=36,id=2521,StackCount=1,Rarity=1,MinLevel=31,SellPrice=6179,Texture=135327,Type="Weapon",Link="|cffffffff|Hitem:2521::::::::40:::::::|h[Flamberge]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Light Obsidian Belt"]={SubType="Mail",Level=68,id=22195,StackCount=1,Rarity=3,MinLevel=60,SellPrice=22885,Texture=132505,Link="|cff0070dd|Hitem:22195::::::::40:::::::|h[Light Obsidian Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Mind-numbing Poison"]={SubType="Consumable",Level=24,id=5237,StackCount=20,Rarity=1,MinLevel=24,SellPrice=18,Texture=136066,EquipLoc="",Link="|cffffffff|Hitem:5237::::::::40:::::::|h[Mind-numbing Poison]|h|r",Type="Consumable"},["Earthfury Vestments"]={SubType="Mail",Level=66,id=16841,StackCount=1,Rarity=4,MinLevel=60,SellPrice=51956,Texture=132633,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:16841::::::::40:::::::|h[Earthfury Vestments]|h|r",Type="Armor"},["Monster - Torch, Offhand"]={SubType="Miscellaneous",Level=1,id=2081,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=135126,Link="|cff9d9d9d|Hitem:2081::::::::40:::::::|h[Monster - Torch, Offhand]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Reflective Heater"]={SubType="Shields",Level=36,id=3816,StackCount=1,Rarity=0,MinLevel=31,SellPrice=2102,Texture=134950,Type="Armor",Link="|cff9d9d9d|Hitem:3816::::::::40:::::::|h[Reflective Heater]|h|r",EquipLoc="INVTYPE_SHIELD"},["Gaea's Handwraps"]={SubType="Cloth",Level=47,id=14272,StackCount=1,Rarity=2,MinLevel=42,SellPrice=3820,Texture=132949,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14272::::::::40:::::::|h[Gaea's Handwraps]|h|r"},["Felheart Robes"]={SubType="Cloth",Level=66,id=16809,StackCount=1,Rarity=4,MinLevel=60,SellPrice=35690,Texture=132650,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:16809::::::::40:::::::|h[Felheart Robes]|h|r",Type="Armor"},["Deprecated Lightforge Dagger"]={SubType="Daggers",Level=29,id=2812,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2400,Texture=135639,Link="|cffffffff|Hitem:2812::::::::40:::::::|h[Deprecated Lightforge Dagger]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Blood Talon"]={SubType="Fist Weapons",Level=60,id=12795,StackCount=1,Rarity=3,MinLevel=55,SellPrice=48821,Texture=135663,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:12795::::::::40:::::::|h[Blood Talon]|h|r"},["Ornate Mithril Shoulder"]={SubType="Plate",Level=45,id=7928,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4857,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7928::::::::40:::::::|h[Ornate Mithril Shoulder]|h|r",Type="Armor"},["Wildheart Vest"]={SubType="Leather",Level=63,id=16706,StackCount=1,Rarity=3,MinLevel=58,SellPrice=27841,Texture=132741,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16706::::::::40:::::::|h[Wildheart Vest]|h|r",Type="Armor"},["Blackblade of Shahram"]={SubType="Two-Handed Swords",Level=63,id=12592,StackCount=1,Rarity=4,MinLevel=58,SellPrice=95241,Texture=135330,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:12592::::::::40:::::::|h[Blackblade of Shahram]|h|r"},["Codex of Shadow Word: Pain VI"]={SubType="Book",Level=42,id=8994,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8994::::::::40:::::::|h[Codex of Shadow Word: Pain VI]|h|r"},["Juju Guile"]={SubType="Quest",Level=60,id=12458,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1500,Texture=134315,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12458::::::::40:::::::|h[Juju Guile]|h|r"},["Deprecated Summon Brown Wolf (Mount)"]={SubType="Junk",Level=1,id=1044,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:1044::::::::40:::::::|h[Deprecated Summon Brown Wolf (Mount)]|h|r",Type="Miscellaneous"},["Thick Cloth Bracers"]={SubType="Cloth",Level=22,id=3598,StackCount=1,Rarity=1,MinLevel=17,SellPrice=217,Texture=132610,Link="|cffffffff|Hitem:3598::::::::40:::::::|h[Thick Cloth Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Broken Tooth"]={SubType="Junk",Level=1,id=1222,StackCount=10,Rarity=0,MinLevel=0,SellPrice=14,Texture=133725,EquipLoc="",Link="|cff9d9d9d|Hitem:1222::::::::40:::::::|h[Broken Tooth]|h|r",Type="Miscellaneous"},["Archer's Jerkin"]={SubType="Leather",Level=38,id=9854,StackCount=1,Rarity=2,MinLevel=33,SellPrice=4935,Texture=132723,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9854::::::::40:::::::|h[Archer's Jerkin]|h|r"},["Deprecated Kurzen's Head"]={SubType="Quest",Level=1,id=3881,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,EquipLoc="",Link="|cffffffff|Hitem:3881::::::::40:::::::|h[Deprecated Kurzen's Head]|h|r",Type="Quest"},["Inferior Tomahawk"]={SubType="One-Handed Axes",Level=3,id=2482,StackCount=1,Rarity=1,MinLevel=1,SellPrice=11,Texture=135421,Link="|cffffffff|Hitem:2482::::::::40:::::::|h[Inferior Tomahawk]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["General's Dreadweave Gloves"]={SubType="Cloth",Level=71,id=17588,StackCount=1,Rarity=4,MinLevel=60,SellPrice=10887,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:17588::::::::40:::::::|h[General's Dreadweave Gloves]|h|r",Type="Armor"},["Monster - Mace, Stormhammer"]={SubType="One-Handed Maces",Level=1,id=10591,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:10591::::::::40:::::::|h[Monster - Mace, Stormhammer]|h|r",Type="Weapon"},["Heavy Bronze Lotterybox"]={SubType="Junk",Level=25,id=8503,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=132594,Link="|cff1eff00|Hitem:8503::::::::40:::::::|h[Heavy Bronze Lotterybox]|h|r",EquipLoc="",Type="Miscellaneous"},["Quillshooter"]={SubType="Bows",Level=38,id=10567,StackCount=1,Rarity=3,MinLevel=33,SellPrice=8725,Texture=135489,EquipLoc="INVTYPE_RANGED",Link="|cff0070dd|Hitem:10567::::::::40:::::::|h[Quillshooter]|h|r",Type="Weapon"},["Putrid Claw"]={SubType="Quest",Level=1,id=2855,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134294,Type="Quest",Link="|cffffffff|Hitem:2855::::::::40:::::::|h[Putrid Claw]|h|r",EquipLoc=""},["Bloodmoon Cloak"]={SubType="Cloth",Level=63,id=12967,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16884,Texture=133757,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:12967::::::::40:::::::|h[Bloodmoon Cloak]|h|r"},["Bottled Alterac Spring Water"]={SubType="Consumable",Level=55,id=19318,StackCount=20,Rarity=1,MinLevel=55,SellPrice=250,Texture=132798,Link="|cffffffff|Hitem:19318::::::::40:::::::|h[Bottled Alterac Spring Water]|h|r",EquipLoc="",Type="Consumable"},["Commoner's Sword"]={SubType="One-Handed Swords",Level=13,id=1511,StackCount=1,Rarity=0,MinLevel=8,SellPrice=193,Texture=135274,Type="Weapon",Link="|cff9d9d9d|Hitem:1511::::::::40:::::::|h[Commoner's Sword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Monster - Item, Bag - Red"]={SubType="Miscellaneous",Level=1,id=12856,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133639,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12856::::::::40:::::::|h[Monster - Item, Bag - Red]|h|r"},["Gnome Race Ticket"]={SubType="Quest",Level=1,id=5768,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=134941,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5768::::::::40:::::::|h[Gnome Race Ticket]|h|r"},["Serpentskin Girdle"]={SubType="Leather",Level=50,id=8255,StackCount=1,Rarity=2,MinLevel=45,SellPrice=6010,Texture=132501,Link="|cff1eff00|Hitem:8255::::::::40:::::::|h[Serpentskin Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Tome of Amplify Magic II"]={SubType="Book",Level=30,id=8821,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133739,Link="|cffffffff|Hitem:8821::::::::40:::::::|h[Tome of Amplify Magic II]|h|r",EquipLoc="",Type="Recipe"},["Hazza'rah's Charm of Healing"]={SubType="Miscellaneous",Level=65,id=19958,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133306,Link="|cffa335ee|Hitem:19958::::::::40:::::::|h[Hazza'rah's Charm of Healing]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["[PH] Mail Boots of the Brilliant Dawn"]={SubType="Mail",Level=100,id=13804,StackCount=1,Rarity=1,MinLevel=100,SellPrice=81175,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:13804::::::::40:::::::|h[[PH] Mail Boots of the Brilliant Dawn]|h|r"},["34 Pound Redgill"]={SubType="Junk",Level=45,id=13885,StackCount=1,Rarity=1,MinLevel=0,SellPrice=50,Texture=133892,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13885::::::::40:::::::|h[34 Pound Redgill]|h|r"},["Papal Fez"]={SubType="Cloth",Level=43,id=9431,StackCount=1,Rarity=3,MinLevel=38,SellPrice=4885,Texture=133130,Link="|cff0070dd|Hitem:9431::::::::40:::::::|h[Papal Fez]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["OLDMonster - Chest, Plate Silver"]={SubType="Plate",Level=1,id=3242,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=132736,Link="|cff9d9d9d|Hitem:3242::::::::40:::::::|h[OLDMonster - Chest, Plate Silver]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Red Firework"]={SubType="Consumable",Level=20,id=9318,StackCount=5,Rarity=1,MinLevel=0,SellPrice=5,Texture=135808,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9318::::::::40:::::::|h[Red Firework]|h|r"},["Level 60 Test Gear Mail - Shaman 2"]={SubType="Junk",Level=1,id=17835,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17835::::::::40:::::::|h[Level 60 Test Gear Mail - Shaman 2]|h|r",Type="Miscellaneous"},["Maggot Eye's Paw"]={SubType="Quest",Level=1,id=3635,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134296,Type="Quest",Link="|cffffffff|Hitem:3635::::::::40:::::::|h[Maggot Eye's Paw]|h|r",EquipLoc=""},["Watcher's Robes"]={SubType="Cloth",Level=30,id=14184,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1716,Texture=132663,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14184::::::::40:::::::|h[Watcher's Robes]|h|r"},["Tuxedo Pants"]={SubType="Cloth",Level=35,id=10035,StackCount=1,Rarity=1,MinLevel=30,SellPrice=1735,Texture=134581,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:10035::::::::40:::::::|h[Tuxedo Pants]|h|r",Type="Armor"},["Skullsplitter Coin"]={SubType="Quest",Level=1,id=19705,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=133795,Link="|cff1eff00|Hitem:19705::::::::40:::::::|h[Skullsplitter Coin]|h|r",EquipLoc="",Type="Quest"},["Glorious Breastplate"]={SubType="Plate",Level=61,id=14966,StackCount=1,Rarity=2,MinLevel=56,SellPrice=17801,Texture=132738,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14966::::::::40:::::::|h[Glorious Breastplate]|h|r"},["Elegant Bracers"]={SubType="Cloth",Level=58,id=10213,StackCount=1,Rarity=2,MinLevel=53,SellPrice=7850,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10213::::::::40:::::::|h[Elegant Bracers]|h|r",Type="Armor"},["Belt of Shriveled Heads"]={SubType="Mail",Level=70,id=20215,StackCount=1,Rarity=3,MinLevel=0,SellPrice=24684,Texture=132501,Link="|cff0070dd|Hitem:20215::::::::40:::::::|h[Belt of Shriveled Heads]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Blue Qiraji Resonating Crystal"]={SubType="Junk",Level=60,id=21218,StackCount=1,Rarity=3,MinLevel=60,SellPrice=0,Texture=134398,Link="|cff0070dd|Hitem:21218::::::::40:::::::|h[Blue Qiraji Resonating Crystal]|h|r",EquipLoc="",Type="Miscellaneous"},["Deprecated Empty Lesser Bloodstone"]={SubType="Consumable",Level=14,id=5407,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135230,EquipLoc="",Link="|cffffffff|Hitem:5407::::::::40:::::::|h[Deprecated Empty Lesser Bloodstone]|h|r",Type="Consumable"},["Resilient Poncho"]={SubType="Cloth",Level=26,id=3561,StackCount=1,Rarity=2,MinLevel=0,SellPrice=895,Texture=133756,Type="Armor",Link="|cff1eff00|Hitem:3561::::::::40:::::::|h[Resilient Poncho]|h|r",EquipLoc="INVTYPE_CLOAK"},["Legionnaire's Leather Girdle"]={SubType="Leather",Level=60,id=16500,StackCount=1,Rarity=3,MinLevel=55,SellPrice=6011,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16500::::::::40:::::::|h[Legionnaire's Leather Girdle]|h|r",Type="Armor"},["Demonskin Gloves"]={SubType="Cloth",Level=57,id=13181,StackCount=1,Rarity=3,MinLevel=52,SellPrice=8797,Texture=132949,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13181::::::::40:::::::|h[Demonskin Gloves]|h|r"},["Monster - Mace, Standard Basic"]={SubType="One-Handed Maces",Level=1,id=2813,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133491,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2813::::::::40:::::::|h[Monster - Mace, Standard Basic]|h|r"},["Recipe: Superior Mana Potion"]={SubType="Alchemy",Level=52,id=13477,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13477::::::::40:::::::|h[Recipe: Superior Mana Potion]|h|r"},["Sayge's Fortune #7"]={SubType="Junk",Level=1,id=19242,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19242::::::::40:::::::|h[Sayge's Fortune #7]|h|r",EquipLoc="",Type="Miscellaneous"},["Tiny Emerald Whelpling"]={SubType="Junk",Level=30,id=8498,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134153,Link="|cffffffff|Hitem:8498::::::::40:::::::|h[Tiny Emerald Whelpling]|h|r",EquipLoc="",Type="Miscellaneous"},["Unused White Leather D03 Pants"]={SubType="Leather",Level=1,id=3548,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:3548::::::::40:::::::|h[Unused White Leather D03 Pants]|h|r"},["Codex of Holy Smite V"]={SubType="Book",Level=30,id=4271,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133741,Link="|cffffffff|Hitem:4271::::::::40:::::::|h[Codex of Holy Smite V]|h|r",EquipLoc="",Type="Recipe"},["Phantom Blade"]={SubType="One-Handed Swords",Level=49,id=7961,StackCount=1,Rarity=3,MinLevel=44,SellPrice=25508,Texture=135350,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:7961::::::::40:::::::|h[Phantom Blade]|h|r"},["Abjurer's Sash"]={SubType="Cloth",Level=48,id=9945,StackCount=1,Rarity=2,MinLevel=43,SellPrice=4124,Texture=132511,Link="|cff1eff00|Hitem:9945::::::::40:::::::|h[Abjurer's Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Fiery Retributer"]={SubType="One-Handed Swords",Level=68,id=19968,StackCount=1,Rarity=3,MinLevel=60,SellPrice=74373,Texture=135271,Link="|cff0070dd|Hitem:19968::::::::40:::::::|h[Fiery Retributer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Wingborne Boots"]={SubType="Cloth",Level=39,id=15104,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3188,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15104::::::::40:::::::|h[Wingborne Boots]|h|r",Type="Armor"},["Piece of Krom'zar's Banner"]={SubType="Quest",Level=1,id=11227,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132484,Type="Quest",Link="|cffffffff|Hitem:11227::::::::40:::::::|h[Piece of Krom'zar's Banner]|h|r",EquipLoc=""},["Bloodfist"]={SubType="Fist Weapons",Level=56,id=11744,StackCount=1,Rarity=3,MinLevel=51,SellPrice=39242,Texture=132945,Type="Weapon",Link="|cff0070dd|Hitem:11744::::::::40:::::::|h[Bloodfist]|h|r",EquipLoc="INVTYPE_WEAPON"},["Crate of Inn Supplies"]={SubType="Quest",Level=1,id=7646,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132764,EquipLoc="",Link="|cffffffff|Hitem:7646::::::::40:::::::|h[Crate of Inn Supplies]|h|r",Type="Quest"},["Tablet of Stoneclaw Totem"]={SubType="Book",Level=8,id=9043,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=134459,Link="|cffffffff|Hitem:9043::::::::40:::::::|h[Tablet of Stoneclaw Totem]|h|r",EquipLoc="",Type="Recipe"},["Warsong Battle Tabard"]={SubType="Miscellaneous",Level=20,id=19505,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=135026,Link="|cffffffff|Hitem:19505::::::::40:::::::|h[Warsong Battle Tabard]|h|r",EquipLoc="INVTYPE_TABARD",Type="Armor"},["Longjaw Mud Snapper"]={SubType="Consumable",Level=15,id=4592,StackCount=20,Rarity=1,MinLevel=5,SellPrice=1,Texture=133918,Type="Consumable",Link="|cffffffff|Hitem:4592::::::::40:::::::|h[Longjaw Mud Snapper]|h|r",EquipLoc=""},["Pendulum of Doom"]={SubType="Two-Handed Axes",Level=44,id=9425,StackCount=1,Rarity=3,MinLevel=39,SellPrice=21489,Texture=135578,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9425::::::::40:::::::|h[Pendulum of Doom]|h|r"},["Deprecated Flimsy Chain Shoulderpads"]={SubType="Mail",Level=3,id=2655,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:2655::::::::40:::::::|h[Deprecated Flimsy Chain Shoulderpads]|h|r",Type="Armor"},["Arcanist Crown"]={SubType="Cloth",Level=66,id=16795,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27359,Texture=133155,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16795::::::::40:::::::|h[Arcanist Crown]|h|r",Type="Armor"},["Torn Murloc Fin"]={SubType="Quest",Level=1,id=780,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134304,Type="Quest",Link="|cffffffff|Hitem:780::::::::40:::::::|h[Torn Murloc Fin]|h|r",EquipLoc=""},["Willow Band Hauberk"]={SubType="Mail",Level=59,id=15787,StackCount=1,Rarity=2,MinLevel=0,SellPrice=22592,Texture=132638,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15787::::::::40:::::::|h[Willow Band Hauberk]|h|r",Type="Armor"},["Garneg's War Belt"]={SubType="Mail",Level=29,id=6200,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1223,Texture=132498,Link="|cff1eff00|Hitem:6200::::::::40:::::::|h[Garneg's War Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Level 50 Test Gear Leather - Druid 2"]={SubType="Junk",Level=1,id=17844,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17844::::::::40:::::::|h[Level 50 Test Gear Leather - Druid 2]|h|r",Type="Miscellaneous"},["Level 60 Test Gear Leather - Druid 2"]={SubType="Junk",Level=1,id=17832,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17832::::::::40:::::::|h[Level 60 Test Gear Leather - Druid 2]|h|r",Type="Miscellaneous"},["Pattern: Runecloth Tunic"]={SubType="Tailoring",Level=52,id=14470,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14470::::::::40:::::::|h[Pattern: Runecloth Tunic]|h|r"},["Tablet of Searing Totem II"]={SubType="Book",Level=20,id=9188,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9188::::::::40:::::::|h[Tablet of Searing Totem II]|h|r"},["Eye of the Beast"]={SubType="Miscellaneous",Level=63,id=13968,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16250,Texture=133441,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:13968::::::::40:::::::|h[Eye of the Beast]|h|r"},["Wildstaff"]={SubType="Staves",Level=52,id=20556,StackCount=1,Rarity=3,MinLevel=0,SellPrice=40667,Texture=135225,Link="|cff0070dd|Hitem:20556::::::::40:::::::|h[Wildstaff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Ornate Greaves"]={SubType="Mail",Level=57,id=10119,StackCount=1,Rarity=2,MinLevel=52,SellPrice=16676,Texture=132586,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10119::::::::40:::::::|h[Ornate Greaves]|h|r",Type="Armor"},["Scorpid Stinger"]={SubType="Trade Goods",Level=8,id=5466,StackCount=10,Rarity=1,MinLevel=0,SellPrice=8,Texture=136067,EquipLoc="",Link="|cffffffff|Hitem:5466::::::::40:::::::|h[Scorpid Stinger]|h|r",Type="Trade Goods"},["Devlin's Remains"]={SubType="Quest",Level=1,id=2831,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,EquipLoc="",Link="|cffffffff|Hitem:2831::::::::40:::::::|h[Devlin's Remains]|h|r",Type="Quest"},["Essence of Air"]={SubType="Reagent",Level=55,id=7082,StackCount=10,Rarity=2,MinLevel=0,SellPrice=400,Texture=136022,Type="Reagent",EquipLoc="",Link="|cff1eff00|Hitem:7082::::::::40:::::::|h[Essence of Air]|h|r"},["Tablet of Unyielding Will"]={SubType="Book",Level=10,id=1030,StackCount=1,Rarity=1,MinLevel=10,SellPrice=187,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:1030::::::::40:::::::|h[Tablet of Unyielding Will]|h|r",Type="Recipe"},["Chipped Quarterstaff"]={SubType="Staves",Level=18,id=1813,StackCount=1,Rarity=0,MinLevel=13,SellPrice=522,Texture=135145,Type="Weapon",Link="|cff9d9d9d|Hitem:1813::::::::40:::::::|h[Chipped Quarterstaff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Bloated Albacore"]={SubType="Consumable",Level=15,id=6646,StackCount=20,Rarity=1,MinLevel=5,SellPrice=31,Texture=133913,Type="Consumable",Link="|cffffffff|Hitem:6646::::::::40:::::::|h[Bloated Albacore]|h|r",EquipLoc=""},["Channeler's Staff"]={SubType="Staves",Level=20,id=4437,StackCount=1,Rarity=2,MinLevel=15,SellPrice=1855,Texture=135151,Type="Weapon",Link="|cff1eff00|Hitem:4437::::::::40:::::::|h[Channeler's Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Sentinel's Plate Legguards"]={SubType="Plate",Level=65,id=22672,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33269,Texture=134696,Link="|cffa335ee|Hitem:22672::::::::40:::::::|h[Sentinel's Plate Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Drakesfire Epaulets"]={SubType="Mail",Level=61,id=13133,StackCount=1,Rarity=3,MinLevel=56,SellPrice=23083,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13133::::::::40:::::::|h[Drakesfire Epaulets]|h|r"},["Padded Pants"]={SubType="Cloth",Level=27,id=2159,StackCount=1,Rarity=1,MinLevel=22,SellPrice=829,Texture=134587,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:2159::::::::40:::::::|h[Padded Pants]|h|r"},["Horn of the Dire Wolf"]={SubType="Junk",Level=40,id=5665,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132266,EquipLoc="",Link="|cff0070dd|Hitem:5665::::::::40:::::::|h[Horn of the Dire Wolf]|h|r",Type="Miscellaneous"},["Mud Stained Boots"]={SubType="Leather",Level=60,id=18476,StackCount=1,Rarity=2,MinLevel=55,SellPrice=15149,Texture=132541,Type="Armor",Link="|cff1eff00|Hitem:18476::::::::40:::::::|h[Mud Stained Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Azure Key"]={SubType="Junk",Level=1,id=20022,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134242,Link="|cffffffff|Hitem:20022::::::::40:::::::|h[Azure Key]|h|r",EquipLoc="",Type="Miscellaneous"},["Girdle of Reprisal"]={SubType="Mail",Level=46,id=11861,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5207,Texture=132516,Type="Armor",Link="|cff1eff00|Hitem:11861::::::::40:::::::|h[Girdle of Reprisal]|h|r",EquipLoc="INVTYPE_WAIST"},["Deanship Claymore"]={SubType="Two-Handed Swords",Level=29,id=13049,StackCount=1,Rarity=3,MinLevel=26,SellPrice=6191,Texture=135356,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13049::::::::40:::::::|h[Deanship Claymore]|h|r"},["First Sergeant's Dragonhide Armguards"]={SubType="Leather",Level=63,id=18434,StackCount=1,Rarity=3,MinLevel=58,SellPrice=7493,Texture=132602,Type="Armor",Link="|cff0070dd|Hitem:18434::::::::40:::::::|h[First Sergeant's Dragonhide Armguards]|h|r",EquipLoc="INVTYPE_WRIST"},["Warped Cloak"]={SubType="Cloth",Level=12,id=1505,StackCount=1,Rarity=0,MinLevel=7,SellPrice=48,Texture=133760,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:1505::::::::40:::::::|h[Warped Cloak]|h|r"},["Level 35 Test Gear Cloth - Mage/Priest/Warlock"]={SubType="Junk",Level=1,id=13649,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13649::::::::40:::::::|h[Level 35 Test Gear Cloth - Mage/Priest/Warlock]|h|r"},["Glorious Legplates"]={SubType="Plate",Level=58,id=14970,StackCount=1,Rarity=2,MinLevel=53,SellPrice=15598,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14970::::::::40:::::::|h[Glorious Legplates]|h|r"},["Skull Ring"]={SubType="Miscellaneous",Level=25,id=3739,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=132501,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:3739::::::::40:::::::|h[Skull Ring]|h|r",Type="Armor"},["Schematic: Voice Amplification Modulator"]={SubType="Engineering",Level=58,id=16052,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:16052::::::::40:::::::|h[Schematic: Voice Amplification Modulator]|h|r",Type="Recipe"},["Vessel of Rebirth DEPRECATED"]={SubType="Quest",Level=70,id=18565,StackCount=1,Rarity=5,MinLevel=100,SellPrice=0,Texture=132878,Type="Quest",Link="|cffff8000|Hitem:18565::::::::40:::::::|h[Vessel of Rebirth DEPRECATED]|h|r",EquipLoc=""},["Forked Mudrock Tongue"]={SubType="Quest",Level=1,id=5883,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134343,Link="|cffffffff|Hitem:5883::::::::40:::::::|h[Forked Mudrock Tongue]|h|r",EquipLoc="",Type="Quest"},["Nature Protection Potion"]={SubType="Consumable",Level=38,id=6052,StackCount=5,Rarity=1,MinLevel=28,SellPrice=300,Texture=134717,Type="Consumable",Link="|cffffffff|Hitem:6052::::::::40:::::::|h[Nature Protection Potion]|h|r",EquipLoc=""},["Ironweave Robe"]={SubType="Cloth",Level=63,id=22301,StackCount=1,Rarity=3,MinLevel=58,SellPrice=23314,Texture=132689,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:22301::::::::40:::::::|h[Ironweave Robe]|h|r"},["Monster - Sword2H, Katana"]={SubType="Two-Handed Swords",Level=1,id=3366,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135280,Link="|cff9d9d9d|Hitem:3366::::::::40:::::::|h[Monster - Sword2H, Katana]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Tablet of Fire Nova Totem"]={SubType="Book",Level=12,id=9049,StackCount=1,Rarity=1,MinLevel=12,SellPrice=150,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9049::::::::40:::::::|h[Tablet of Fire Nova Totem]|h|r"},["Libram: Seal of Protection III"]={SubType="Book",Level=30,id=8918,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133740,Link="|cffffffff|Hitem:8918::::::::40:::::::|h[Libram: Seal of Protection III]|h|r",EquipLoc="",Type="Recipe"},["Pathfinder Footpads"]={SubType="Leather",Level=30,id=15341,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1697,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15341::::::::40:::::::|h[Pathfinder Footpads]|h|r",Type="Armor"},["Knight-Captain's Lamellar Leggings"]={SubType="Plate",Level=63,id=16435,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11775,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16435::::::::40:::::::|h[Knight-Captain's Lamellar Leggings]|h|r",Type="Armor"},["Red Mageweave Pants"]={SubType="Cloth",Level=43,id=10009,StackCount=1,Rarity=2,MinLevel=38,SellPrice=5284,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10009::::::::40:::::::|h[Red Mageweave Pants]|h|r",Type="Armor"},["Knight-Captain's Plate Wristguards"]={SubType="Plate",Level=60,id=16404,StackCount=1,Rarity=3,MinLevel=55,SellPrice=4754,Texture=132617,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16404::::::::40:::::::|h[Knight-Captain's Plate Wristguards]|h|r",Type="Armor"},["Glyphic Scroll"]={SubType="Quest",Level=1,id=9574,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:9574::::::::40:::::::|h[Glyphic Scroll]|h|r",EquipLoc="",Type="Quest"},["Conjurer's Sphere"]={SubType="Miscellaneous",Level=38,id=15918,StackCount=1,Rarity=2,MinLevel=33,SellPrice=4848,Texture=134336,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15918::::::::40:::::::|h[Conjurer's Sphere]|h|r",Type="Armor"},["Elixir of Fortitude"]={SubType="Consumable",Level=35,id=3825,StackCount=5,Rarity=1,MinLevel=25,SellPrice=110,Texture=134823,Type="Consumable",Link="|cffffffff|Hitem:3825::::::::40:::::::|h[Elixir of Fortitude]|h|r",EquipLoc=""},["Laminated Scale Belt"]={SubType="Mail",Level=52,id=3992,StackCount=1,Rarity=0,MinLevel=47,SellPrice=3082,Texture=132498,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:3992::::::::40:::::::|h[Laminated Scale Belt]|h|r"},["Hammer"]={SubType="One-Handed Maces",Level=21,id=2028,StackCount=1,Rarity=1,MinLevel=16,SellPrice=1013,Texture=133052,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:2028::::::::40:::::::|h[Hammer]|h|r",Type="Weapon"},["Umbral Axe"]={SubType="One-Handed Axes",Level=15,id=6978,StackCount=1,Rarity=2,MinLevel=0,SellPrice=672,Texture=132408,Link="|cff1eff00|Hitem:6978::::::::40:::::::|h[Umbral Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Black Night Elf Breastplate"]={SubType="Mail",Level=1,id=3522,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=132715,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:3522::::::::40:::::::|h[Black Night Elf Breastplate]|h|r",Type="Armor"},["Tortoise Armor"]={SubType="Mail",Level=25,id=6907,StackCount=1,Rarity=3,MinLevel=20,SellPrice=1872,Texture=135010,Type="Armor",Link="|cff0070dd|Hitem:6907::::::::40:::::::|h[Tortoise Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Boots of Transcendence"]={SubType="Cloth",Level=76,id=16919,StackCount=1,Rarity=4,MinLevel=60,SellPrice=43123,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16919::::::::40:::::::|h[Boots of Transcendence]|h|r",Type="Armor"},["Dragonstalker's Helm"]={SubType="Mail",Level=76,id=16939,StackCount=1,Rarity=4,MinLevel=60,SellPrice=64672,Texture=133073,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16939::::::::40:::::::|h[Dragonstalker's Helm]|h|r",Type="Armor"},["Featherbead Bracers"]={SubType="Cloth",Level=18,id=15452,StackCount=1,Rarity=2,MinLevel=0,SellPrice=215,Texture=132607,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15452::::::::40:::::::|h[Featherbead Bracers]|h|r",Type="Armor"},["Brilliant Gold Ring"]={SubType="Miscellaneous",Level=31,id=9362,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133345,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:9362::::::::40:::::::|h[Brilliant Gold Ring]|h|r"},["Bracers of Brutality"]={SubType="Plate",Level=72,id=21457,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24104,Texture=132618,Link="|cffa335ee|Hitem:21457::::::::40:::::::|h[Bracers of Brutality]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["3000 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19195,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19195::::::::40:::::::|h[3000 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Monster - Shield, Horde C03"]={SubType="Shields",Level=1,id=13630,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:13630::::::::40:::::::|h[Monster - Shield, Horde C03]|h|r"},["Shrine Bauble"]={SubType="Quest",Level=1,id=15877,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134125,EquipLoc="",Link="|cffffffff|Hitem:15877::::::::40:::::::|h[Shrine Bauble]|h|r",Type="Quest"},["Bone Buckler"]={SubType="Shields",Level=12,id=5940,StackCount=1,Rarity=1,MinLevel=0,SellPrice=153,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:5940::::::::40:::::::|h[Bone Buckler]|h|r",Type="Armor"},["Runeblade of Baron Rivendare"]={SubType="Two-Handed Swords",Level=63,id=13505,StackCount=1,Rarity=4,MinLevel=58,SellPrice=91345,Texture=135315,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:13505::::::::40:::::::|h[Runeblade of Baron Rivendare]|h|r"},["Jadefire Gloves"]={SubType="Leather",Level=52,id=15393,StackCount=1,Rarity=2,MinLevel=47,SellPrice=6479,Texture=132945,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15393::::::::40:::::::|h[Jadefire Gloves]|h|r",Type="Armor"},["Ironwood Maul"]={SubType="Two-Handed Maces",Level=18,id=4777,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1408,Texture=133053,Link="|cff1eff00|Hitem:4777::::::::40:::::::|h[Ironwood Maul]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Deprecated Conjured Mana Jewel"]={SubType="Junk",Level=37,id=3878,StackCount=1,Rarity=1,MinLevel=27,SellPrice=0,Texture=134134,EquipLoc="",Link="|cffffffff|Hitem:3878::::::::40:::::::|h[Deprecated Conjured Mana Jewel]|h|r",Type="Miscellaneous"},["Light of Elune"]={SubType="Consumable",Level=25,id=5816,StackCount=1,Rarity=1,MinLevel=0,SellPrice=405,Texture=134754,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5816::::::::40:::::::|h[Light of Elune]|h|r"},["Slimy Bone"]={SubType="Junk",Level=1,id=4875,StackCount=5,Rarity=0,MinLevel=0,SellPrice=13,Texture=133718,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:4875::::::::40:::::::|h[Slimy Bone]|h|r"},["Gloves of the Moon"]={SubType="Leather",Level=20,id=5299,StackCount=1,Rarity=2,MinLevel=0,SellPrice=359,Texture=132952,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:5299::::::::40:::::::|h[Gloves of the Moon]|h|r"},["Pattern: Shadowskin Gloves"]={SubType="Leatherworking",Level=40,id=18239,StackCount=1,Rarity=1,MinLevel=0,SellPrice=875,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:18239::::::::40:::::::|h[Pattern: Shadowskin Gloves]|h|r",EquipLoc=""},["Test Food"]={SubType="Consumable",Level=1,id=1165,StackCount=5,Rarity=1,MinLevel=1,SellPrice=5,Texture=133943,Link="|cffffffff|Hitem:1165::::::::40:::::::|h[Test Food]|h|r",EquipLoc="",Type="Consumable"},["Nifty Stopwatch"]={SubType="Miscellaneous",Level=50,id=2820,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4662,Texture=134376,Type="Armor",Link="|cff1eff00|Hitem:2820::::::::40:::::::|h[Nifty Stopwatch]|h|r",EquipLoc="INVTYPE_TRINKET"},["Stoneslayer"]={SubType="Two-Handed Swords",Level=49,id=9418,StackCount=1,Rarity=3,MinLevel=44,SellPrice=32851,Texture=135357,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9418::::::::40:::::::|h[Stoneslayer]|h|r"},["Tablet of Beth'Amara"]={SubType="Quest",Level=1,id=10538,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134457,EquipLoc="",Link="|cffffffff|Hitem:10538::::::::40:::::::|h[Tablet of Beth'Amara]|h|r",Type="Quest"},["Codex of Greater Heal"]={SubType="Book",Level=40,id=3118,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:3118::::::::40:::::::|h[Codex of Greater Heal]|h|r",Type="Recipe"},["Codex of Inner Fire IV"]={SubType="Book",Level=40,id=8991,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133741,Link="|cffffffff|Hitem:8991::::::::40:::::::|h[Codex of Inner Fire IV]|h|r",EquipLoc="",Type="Recipe"},["Golden Sansam"]={SubType="Trade Goods",Level=52,id=13464,StackCount=20,Rarity=1,MinLevel=0,SellPrice=100,Texture=134221,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:13464::::::::40:::::::|h[Golden Sansam]|h|r"},["Unfinished Skeleton Key"]={SubType="Quest",Level=1,id=14645,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135657,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14645::::::::40:::::::|h[Unfinished Skeleton Key]|h|r"},["AHNQIRAJ TEST ITEM C MAIL LEGS"]={SubType="Miscellaneous",Level=1,id=21448,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21448::::::::40:::::::|h[AHNQIRAJ TEST ITEM C MAIL LEGS]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Aurora Robe"]={SubType="Cloth",Level=41,id=6415,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4565,Texture=132673,Type="Armor",Link="|cff1eff00|Hitem:6415::::::::40:::::::|h[Aurora Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Formula: Enchant Gloves - Herbalism"]={SubType="Enchanting",Level=29,id=11151,StackCount=1,Rarity=2,MinLevel=0,SellPrice=750,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11151::::::::40:::::::|h[Formula: Enchant Gloves - Herbalism]|h|r",EquipLoc=""},["Gemstone of Spirestone"]={SubType="Quest",Level=1,id=12336,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134095,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:12336::::::::40:::::::|h[Gemstone of Spirestone]|h|r"},["Abjurer's Cloak"]={SubType="Cloth",Level=48,id=9938,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6029,Texture=133768,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9938::::::::40:::::::|h[Abjurer's Cloak]|h|r"},["Deprecated Dwarven Squire's Boots"]={SubType="Miscellaneous",Level=1,id=99,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:99::::::::40:::::::|h[Deprecated Dwarven Squire's Boots]|h|r"},["Living Action Potion"]={SubType="Consumable",Level=57,id=20008,StackCount=5,Rarity=1,MinLevel=47,SellPrice=600,Texture=134718,Link="|cffffffff|Hitem:20008::::::::40:::::::|h[Living Action Potion]|h|r",EquipLoc="",Type="Consumable"},["Legionnaire's Leather Leggings"]={SubType="Leather",Level=63,id=16508,StackCount=1,Rarity=3,MinLevel=58,SellPrice=14723,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16508::::::::40:::::::|h[Legionnaire's Leather Leggings]|h|r",Type="Armor"},["Pale Skinner"]={SubType="One-Handed Swords",Level=12,id=5744,StackCount=1,Rarity=2,MinLevel=7,SellPrice=386,Texture=135325,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:5744::::::::40:::::::|h[Pale Skinner]|h|r",Type="Weapon"},["Tinkee's Letter"]={SubType="Quest",Level=1,id=12438,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12438::::::::40:::::::|h[Tinkee's Letter]|h|r"},["Monster - Staff, Ornate Warlock Staff"]={SubType="Staves",Level=1,id=2559,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=135145,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:2559::::::::40:::::::|h[Monster - Staff, Ornate Warlock Staff]|h|r",Type="Weapon"},["Templar Pauldrons"]={SubType="Plate",Level=56,id=10170,StackCount=1,Rarity=2,MinLevel=51,SellPrice=10105,Texture=135061,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10170::::::::40:::::::|h[Templar Pauldrons]|h|r",Type="Armor"},["Witherseed Gloves"]={SubType="Cloth",Level=48,id=16738,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3893,Texture=132949,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:16738::::::::40:::::::|h[Witherseed Gloves]|h|r",Type="Armor"},["Pattern: Felcloth Boots"]={SubType="Tailoring",Level=57,id=14492,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14492::::::::40:::::::|h[Pattern: Felcloth Boots]|h|r"},["Deviate Scale Cloak"]={SubType="Cloth",Level=18,id=6466,StackCount=1,Rarity=2,MinLevel=13,SellPrice=413,Texture=134305,Type="Armor",Link="|cff1eff00|Hitem:6466::::::::40:::::::|h[Deviate Scale Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Incendia Powder"]={SubType="Quest",Level=1,id=12785,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134514,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12785::::::::40:::::::|h[Incendia Powder]|h|r"},["[PH] Greater Arcane Amalgamation (HP/FR)"]={SubType="Quest",Level=50,id=11664,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=134094,Type="Quest",Link="|cff0070dd|Hitem:11664::::::::40:::::::|h[[PH] Greater Arcane Amalgamation (HP/FR)]|h|r",EquipLoc=""},["Soul Corrupter's Necklace"]={SubType="Miscellaneous",Level=68,id=19876,StackCount=1,Rarity=4,MinLevel=60,SellPrice=85311,Texture=133306,Link="|cffa335ee|Hitem:19876::::::::40:::::::|h[Soul Corrupter's Necklace]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Jambiya"]={SubType="Daggers",Level=16,id=2207,StackCount=1,Rarity=1,MinLevel=11,SellPrice=478,Texture=135640,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:2207::::::::40:::::::|h[Jambiya]|h|r"},["Stormpike Plate Girdle"]={SubType="Plate",Level=60,id=19091,StackCount=1,Rarity=3,MinLevel=55,SellPrice=9488,Texture=132524,Link="|cff0070dd|Hitem:19091::::::::40:::::::|h[Stormpike Plate Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Huntsman's Boots"]={SubType="Leather",Level=40,id=9885,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4179,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9885::::::::40:::::::|h[Huntsman's Boots]|h|r"},["Revelosh's Gloves"]={SubType="Cloth",Level=40,id=9390,StackCount=1,Rarity=2,MinLevel=35,SellPrice=2146,Texture=132951,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9390::::::::40:::::::|h[Revelosh's Gloves]|h|r"},["Treat Bag"]={SubType="Junk",Level=1,id=20393,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133644,Link="|cffffffff|Hitem:20393::::::::40:::::::|h[Treat Bag]|h|r",EquipLoc="",Type="Miscellaneous"},["Imbued Shield"]={SubType="Shields",Level=61,id=15943,StackCount=1,Rarity=2,MinLevel=56,SellPrice=27752,Texture=134956,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15943::::::::40:::::::|h[Imbued Shield]|h|r",Type="Armor"},["Chief Brigadier Coif"]={SubType="Mail",Level=39,id=4078,StackCount=1,Rarity=2,MinLevel=34,SellPrice=4672,Texture=133131,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:4078::::::::40:::::::|h[Chief Brigadier Coif]|h|r"},["Fist of Stone"]={SubType="One-Handed Maces",Level=53,id=17733,StackCount=1,Rarity=3,MinLevel=48,SellPrice=34735,Texture=133054,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:17733::::::::40:::::::|h[Fist of Stone]|h|r",Type="Weapon"},["[PH] Mail Chestguard of the Shining Dawn"]={SubType="Mail",Level=100,id=13769,StackCount=1,Rarity=1,MinLevel=100,SellPrice=109708,Texture=132628,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13769::::::::40:::::::|h[[PH] Mail Chestguard of the Shining Dawn]|h|r"},["Wound Poison III"]={SubType="Consumable",Level=48,id=10921,StackCount=20,Rarity=1,MinLevel=48,SellPrice=125,Texture=132274,EquipLoc="",Link="|cffffffff|Hitem:10921::::::::40:::::::|h[Wound Poison III]|h|r",Type="Consumable"},["Cuergo's Gold"]={SubType="Consumable",Level=1,id=9360,StackCount=1,Rarity=1,MinLevel=0,SellPrice=400,Texture=132788,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:9360::::::::40:::::::|h[Cuergo's Gold]|h|r"},["The Immovable Object"]={SubType="Shields",Level=65,id=19321,StackCount=1,Rarity=4,MinLevel=60,SellPrice=159059,Texture=135835,Link="|cffa335ee|Hitem:19321::::::::40:::::::|h[The Immovable Object]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Chipped Bear Tooth"]={SubType="Junk",Level=1,id=3169,StackCount=10,Rarity=0,MinLevel=0,SellPrice=18,Texture=133725,EquipLoc="",Link="|cff9d9d9d|Hitem:3169::::::::40:::::::|h[Chipped Bear Tooth]|h|r",Type="Miscellaneous"},["Thick Armor Kit"]={SubType="Consumable",Level=40,id=8173,StackCount=10,Rarity=1,MinLevel=30,SellPrice=1000,Texture=133602,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8173::::::::40:::::::|h[Thick Armor Kit]|h|r"},["Monster - Mace2H, Large Metal"]={SubType="Two-Handed Maces",Level=1,id=5491,StackCount=1,Rarity=0,MinLevel=1,SellPrice=9,Texture=133038,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5491::::::::40:::::::|h[Monster - Mace2H, Large Metal]|h|r"},["Dervish Leggings"]={SubType="Leather",Level=30,id=6607,StackCount=1,Rarity=2,MinLevel=25,SellPrice=2202,Texture=134587,Type="Armor",Link="|cff1eff00|Hitem:6607::::::::40:::::::|h[Dervish Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Lesser Spellfire Robes"]={SubType="Cloth",Level=20,id=7510,StackCount=1,Rarity=2,MinLevel=0,SellPrice=556,Texture=132659,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:7510::::::::40:::::::|h[Lesser Spellfire Robes]|h|r"},["Blood Tiger Breastplate"]={SubType="Leather",Level=65,id=19688,StackCount=1,Rarity=3,MinLevel=60,SellPrice=31993,Texture=132722,Link="|cff0070dd|Hitem:19688::::::::40:::::::|h[Blood Tiger Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Tablet of Fire Nova Totem II"]={SubType="Book",Level=22,id=9065,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=134459,Link="|cffffffff|Hitem:9065::::::::40:::::::|h[Tablet of Fire Nova Totem II]|h|r",EquipLoc="",Type="Recipe"},["Formula: Enchant Shield - Lesser Block"]={SubType="Enchanting",Level=39,id=11168,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1000,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11168::::::::40:::::::|h[Formula: Enchant Shield - Lesser Block]|h|r",EquipLoc=""},["Cask of Scalder"]={SubType="Quest",Level=1,id=6843,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132620,Type="Quest",Link="|cffffffff|Hitem:6843::::::::40:::::::|h[Cask of Scalder]|h|r",EquipLoc=""},["Stormpike Battle Standard"]={SubType="Consumable",Level=0,id=19045,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=132486,Link="|cff0070dd|Hitem:19045::::::::40:::::::|h[Stormpike Battle Standard]|h|r",EquipLoc="",Type="Consumable"},["Plans: Steel Weapon Chain"]={SubType="Blacksmithing",Level=38,id=6046,StackCount=1,Rarity=2,MinLevel=0,SellPrice=950,Texture=134942,Link="|cff1eff00|Hitem:6046::::::::40:::::::|h[Plans: Steel Weapon Chain]|h|r",EquipLoc="",Type="Recipe"},["Warleader's Shoulders"]={SubType="Plate",Level=61,id=14868,StackCount=1,Rarity=2,MinLevel=56,SellPrice=13109,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14868::::::::40:::::::|h[Warleader's Shoulders]|h|r"},["Pillager's Cloak"]={SubType="Cloth",Level=31,id=15559,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1450,Texture=133757,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15559::::::::40:::::::|h[Pillager's Cloak]|h|r",Type="Armor"},["Six Demon Bag"]={SubType="Miscellaneous",Level=51,id=7734,StackCount=1,Rarity=3,MinLevel=46,SellPrice=15495,Texture=133622,EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:7734::::::::40:::::::|h[Six Demon Bag]|h|r",Type="Armor"},["Slidore's Beacon"]={SubType="Quest",Level=1,id=17507,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135148,EquipLoc="",Link="|cffffffff|Hitem:17507::::::::40:::::::|h[Slidore's Beacon]|h|r",Type="Quest"},["Sharp Axe"]={SubType="One-Handed Axes",Level=8,id=1011,StackCount=1,Rarity=1,MinLevel=0,SellPrice=80,Texture=132395,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:1011::::::::40:::::::|h[Sharp Axe]|h|r",Type="Weapon"},["Pattern: Tough Scorpid Breastplate"]={SubType="Leatherworking",Level=44,id=8395,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1000,Texture=134942,Link="|cff1eff00|Hitem:8395::::::::40:::::::|h[Pattern: Tough Scorpid Breastplate]|h|r",EquipLoc="",Type="Recipe"},["Penelope's Rose"]={SubType="Miscellaneous",Level=61,id=15805,StackCount=1,Rarity=3,MinLevel=0,SellPrice=14662,Texture=133941,EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:15805::::::::40:::::::|h[Penelope's Rose]|h|r",Type="Armor"},["Bijou's Reconnaissance Report"]={SubType="Quest",Level=1,id=12652,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12652::::::::40:::::::|h[Bijou's Reconnaissance Report]|h|r"},["Performer's Wand"]={SubType="Consumable",Level=1,id=23163,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135468,Link="|cffffffff|Hitem:23163::::::::40:::::::|h[Performer's Wand]|h|r",EquipLoc="",Type="Consumable"},["Arcane Cloak"]={SubType="Cloth",Level=55,id=8286,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9427,Texture=133768,Link="|cff1eff00|Hitem:8286::::::::40:::::::|h[Arcane Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Ripsaw"]={SubType="One-Handed Axes",Level=50,id=9478,StackCount=1,Rarity=3,MinLevel=45,SellPrice=28853,Texture=132398,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:9478::::::::40:::::::|h[Ripsaw]|h|r"},["Twain Test"]={SubType="Two-Handed Maces",Level=40,id=7707,StackCount=1,Rarity=0,MinLevel=35,SellPrice=5610,Texture=133476,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:7707::::::::40:::::::|h[Twain Test]|h|r",Type="Weapon"},["Rageclaw Helm"]={SubType="Leather",Level=50,id=15384,StackCount=1,Rarity=2,MinLevel=45,SellPrice=9155,Texture=133126,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15384::::::::40:::::::|h[Rageclaw Helm]|h|r",Type="Armor"},["Deprecated Scribbled Note"]={SubType="Quest",Level=1,id=4620,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1382,Texture=133471,Type="Quest",Link="|cffffffff|Hitem:4620::::::::40:::::::|h[Deprecated Scribbled Note]|h|r",EquipLoc=""},["Prospector's Pads"]={SubType="Leather",Level=25,id=14566,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1010,Texture=135039,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14566::::::::40:::::::|h[Prospector's Pads]|h|r"},["Phasing Boots"]={SubType="Cloth",Level=55,id=18295,StackCount=1,Rarity=3,MinLevel=50,SellPrice=11582,Texture=132540,Type="Armor",Link="|cff0070dd|Hitem:18295::::::::40:::::::|h[Phasing Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Worn Parchment"]={SubType="Quest",Level=1,id=5348,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:5348::::::::40:::::::|h[Worn Parchment]|h|r",Type="Quest"},["Mindburst Medallion"]={SubType="Miscellaneous",Level=57,id=11196,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16875,Texture=133294,Type="Armor",Link="|cff1eff00|Hitem:11196::::::::40:::::::|h[Mindburst Medallion]|h|r",EquipLoc="INVTYPE_NECK"},["Formidable Chestpiece"]={SubType="Mail",Level=52,id=15631,StackCount=1,Rarity=2,MinLevel=47,SellPrice=16672,Texture=132632,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15631::::::::40:::::::|h[Formidable Chestpiece]|h|r",Type="Armor"},["Knight's Girdle"]={SubType="Mail",Level=37,id=7462,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2682,Texture=132515,Link="|cff1eff00|Hitem:7462::::::::40:::::::|h[Knight's Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Book of Remove Curse"]={SubType="Book",Level=22,id=8758,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133743,Link="|cffffffff|Hitem:8758::::::::40:::::::|h[Book of Remove Curse]|h|r",EquipLoc="",Type="Recipe"},["Shadowcraft Gloves"]={SubType="Leather",Level=59,id=16712,StackCount=1,Rarity=3,MinLevel=54,SellPrice=11714,Texture=132958,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16712::::::::40:::::::|h[Shadowcraft Gloves]|h|r",Type="Armor"},["Mass of McGowan"]={SubType="One-Handed Maces",Level=62,id=13006,StackCount=1,Rarity=3,MinLevel=57,SellPrice=54840,Texture=133054,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:13006::::::::40:::::::|h[Mass of McGowan]|h|r"},["Long Bastard Sword"]={SubType="Two-Handed Swords",Level=28,id=1830,StackCount=1,Rarity=0,MinLevel=23,SellPrice=1783,Texture=135276,Link="|cff9d9d9d|Hitem:1830::::::::40:::::::|h[Long Bastard Sword]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Darkmoon Flower"]={SubType="Miscellaneous",Level=20,id=19295,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=134200,Link="|cffffffff|Hitem:19295::::::::40:::::::|h[Darkmoon Flower]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Bloodkelp"]={SubType="Quest",Level=1,id=22094,StackCount=25,Rarity=1,MinLevel=0,SellPrice=0,Texture=134192,Link="|cffffffff|Hitem:22094::::::::40:::::::|h[Bloodkelp]|h|r",EquipLoc="",Type="Quest"},["Dimensional Blade"]={SubType="One-Handed Swords",Level=59,id=15219,StackCount=1,Rarity=2,MinLevel=54,SellPrice=41376,Texture=135324,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15219::::::::40:::::::|h[Dimensional Blade]|h|r",Type="Weapon"},["Lesser Arcanum of Constitution"]={SubType="Quest",Level=50,id=11642,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134073,Type="Quest",Link="|cff1eff00|Hitem:11642::::::::40:::::::|h[Lesser Arcanum of Constitution]|h|r",EquipLoc=""},["Book of Starfire III"]={SubType="Book",Level=34,id=8768,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=133743,Link="|cffffffff|Hitem:8768::::::::40:::::::|h[Book of Starfire III]|h|r",EquipLoc="",Type="Recipe"},["Warrior's Gloves"]={SubType="Mail",Level=9,id=2968,StackCount=1,Rarity=1,MinLevel=4,SellPrice=33,Texture=132962,Link="|cffffffff|Hitem:2968::::::::40:::::::|h[Warrior's Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Azure Feather"]={SubType="Quest",Level=1,id=4752,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132926,Type="Quest",Link="|cffffffff|Hitem:4752::::::::40:::::::|h[Azure Feather]|h|r",EquipLoc=""},["Singed Corestone"]={SubType="Junk",Level=1,id=20737,StackCount=200,Rarity=1,MinLevel=0,SellPrice=0,Texture=134337,Link="|cffffffff|Hitem:20737::::::::40:::::::|h[Singed Corestone]|h|r",EquipLoc="",Type="Miscellaneous"},["Goblin Igniter"]={SubType="Wands",Level=40,id=5253,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7952,Texture=135473,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5253::::::::40:::::::|h[Goblin Igniter]|h|r",Type="Weapon"},["Bonegrip's Note"]={SubType="Quest",Level=1,id=4649,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4649::::::::40:::::::|h[Bonegrip's Note]|h|r"},["Greenleaf Handwraps"]={SubType="Cloth",Level=50,id=19116,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4590,Texture=132950,Link="|cff1eff00|Hitem:19116::::::::40:::::::|h[Greenleaf Handwraps]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Polished Steel Boots"]={SubType="Mail",Level=37,id=3846,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3937,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:3846::::::::40:::::::|h[Polished Steel Boots]|h|r"},["Zandalar Augur's Belt"]={SubType="Mail",Level=61,id=19829,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132508,Link="|cffa335ee|Hitem:19829::::::::40:::::::|h[Zandalar Augur's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Filled Dreadmist Peak Sampler"]={SubType="Quest",Level=1,id=15843,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134743,EquipLoc="",Link="|cffffffff|Hitem:15843::::::::40:::::::|h[Filled Dreadmist Peak Sampler]|h|r",Type="Quest"},["Small Knife"]={SubType="Daggers",Level=4,id=2484,StackCount=1,Rarity=1,MinLevel=1,SellPrice=17,Texture=135641,Link="|cffffffff|Hitem:2484::::::::40:::::::|h[Small Knife]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Battered Mallet"]={SubType="Two-Handed Maces",Level=19,id=1814,StackCount=1,Rarity=0,MinLevel=14,SellPrice=603,Texture=133053,Link="|cff9d9d9d|Hitem:1814::::::::40:::::::|h[Battered Mallet]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Shane Test (DELETE ME)"]={SubType="Consumable",Level=1,id=5378,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133276,Link="|cffffffff|Hitem:5378::::::::40:::::::|h[Shane Test (DELETE ME)]|h|r",EquipLoc="INVTYPE_HEAD",Type="Consumable"},["Runed Stygian Boots"]={SubType="Cloth",Level=63,id=20537,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17736,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:20537::::::::40:::::::|h[Runed Stygian Boots]|h|r"},["Enchanted Black Dragon Sinew"]={SubType="Quest",Level=71,id=18724,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135894,Type="Quest",Link="|cffa335ee|Hitem:18724::::::::40:::::::|h[Enchanted Black Dragon Sinew]|h|r",EquipLoc=""},["Deprecated Book of Nullify Disease"]={SubType="Book",Level=14,id=1335,StackCount=1,Rarity=1,MinLevel=14,SellPrice=325,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:1335::::::::40:::::::|h[Deprecated Book of Nullify Disease]|h|r",Type="Recipe"},["Bubbling Green Ichor"]={SubType="Junk",Level=1,id=20770,StackCount=10,Rarity=0,MinLevel=0,SellPrice=450,Texture=132108,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:20770::::::::40:::::::|h[Bubbling Green Ichor]|h|r"},["Raptor's End"]={SubType="Bows",Level=30,id=3493,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3426,Texture=135491,Link="|cff1eff00|Hitem:3493::::::::40:::::::|h[Raptor's End]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Sharp Kitchen Knife"]={SubType="Daggers",Level=11,id=2225,StackCount=1,Rarity=1,MinLevel=0,SellPrice=183,Texture=135650,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:2225::::::::40:::::::|h[Sharp Kitchen Knife]|h|r",Type="Weapon"},["Peacemaker"]={SubType="Polearms",Level=59,id=18725,StackCount=1,Rarity=3,MinLevel=54,SellPrice=59927,Texture=135130,Type="Weapon",Link="|cff0070dd|Hitem:18725::::::::40:::::::|h[Peacemaker]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Grimoire of Tainted Blood (Rank 3)"]={SubType="Book",Level=48,id=16386,StackCount=1,Rarity=1,MinLevel=48,SellPrice=3500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16386::::::::40:::::::|h[Grimoire of Tainted Blood (Rank 3)]|h|r",Type="Recipe"},["Dented Crate"]={SubType="Junk",Level=15,id=6351,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132765,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:6351::::::::40:::::::|h[Dented Crate]|h|r"},["Wooden Buckler"]={SubType="Shields",Level=15,id=2214,StackCount=1,Rarity=0,MinLevel=10,SellPrice=182,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:2214::::::::40:::::::|h[Wooden Buckler]|h|r"},["Book of Tranquility IV"]={SubType="Book",Level=60,id=8801,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133743,Link="|cffffffff|Hitem:8801::::::::40:::::::|h[Book of Tranquility IV]|h|r",EquipLoc="",Type="Recipe"},["AHNQIRAJ TEST ITEM B LEATHER HELM"]={SubType="Miscellaneous",Level=1,id=21426,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21426::::::::40:::::::|h[AHNQIRAJ TEST ITEM B LEATHER HELM]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Codex of Shackle Undead III"]={SubType="Book",Level=60,id=9031,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9031::::::::40:::::::|h[Codex of Shackle Undead III]|h|r"},["The Embalmer's Heart"]={SubType="Quest",Level=1,id=2382,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Type="Quest",Link="|cffffffff|Hitem:2382::::::::40:::::::|h[The Embalmer's Heart]|h|r",EquipLoc=""},["Tablet of Shock"]={SubType="Book",Level=4,id=5696,StackCount=1,Rarity=1,MinLevel=4,SellPrice=20,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5696::::::::40:::::::|h[Tablet of Shock]|h|r"},["Burnt Out Torch"]={SubType="Junk",Level=1,id=3675,StackCount=5,Rarity=0,MinLevel=0,SellPrice=56,Texture=135434,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:3675::::::::40:::::::|h[Burnt Out Torch]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Barbecued Buzzard Wing"]={SubType="Consumable",Level=35,id=4457,StackCount=20,Rarity=1,MinLevel=25,SellPrice=300,Texture=133974,Link="|cffffffff|Hitem:4457::::::::40:::::::|h[Barbecued Buzzard Wing]|h|r",EquipLoc="",Type="Consumable"},["Powerful Anti-Venom"]={SubType="Reagent",Level=58,id=19440,StackCount=10,Rarity=1,MinLevel=0,SellPrice=500,Texture=132801,Link="|cffffffff|Hitem:19440::::::::40:::::::|h[Powerful Anti-Venom]|h|r",EquipLoc="",Type="Reagent"},["Windreaper"]={SubType="One-Handed Axes",Level=60,id=15853,StackCount=1,Rarity=3,MinLevel=0,SellPrice=51418,Texture=132399,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:15853::::::::40:::::::|h[Windreaper]|h|r",Type="Weapon"},["Deprecated Battle Chain Shield"]={SubType="Shields",Level=11,id=14696,StackCount=1,Rarity=1,MinLevel=6,SellPrice=118,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:14696::::::::40:::::::|h[Deprecated Battle Chain Shield]|h|r"},["Galgann's Fireblaster"]={SubType="Guns",Level=47,id=9412,StackCount=1,Rarity=3,MinLevel=42,SellPrice=16681,Texture=135616,Link="|cff0070dd|Hitem:9412::::::::40:::::::|h[Galgann's Fireblaster]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Book of Healing Touch VIII"]={SubType="Book",Level=44,id=8901,StackCount=1,Rarity=1,MinLevel=44,SellPrice=6250,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8901::::::::40:::::::|h[Book of Healing Touch VIII]|h|r"},["Fresh Holly"]={SubType="Consumable",Level=40,id=21212,StackCount=20,Rarity=1,MinLevel=40,SellPrice=0,Texture=133749,Link="|cffffffff|Hitem:21212::::::::40:::::::|h[Fresh Holly]|h|r",EquipLoc="",Type="Consumable"},["Felstone (Deprecated)"]={SubType="Reagent",Level=30,id=5564,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134334,Link="|cffffffff|Hitem:5564::::::::40:::::::|h[Felstone (Deprecated)]|h|r",EquipLoc="",Type="Reagent"},["Chieftain's Boots"]={SubType="Leather",Level=49,id=9948,StackCount=1,Rarity=2,MinLevel=44,SellPrice=8365,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9948::::::::40:::::::|h[Chieftain's Boots]|h|r"},["Codex of Dispel Magic II"]={SubType="Book",Level=36,id=4282,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133741,Type="Recipe",Link="|cffffffff|Hitem:4282::::::::40:::::::|h[Codex of Dispel Magic II]|h|r",EquipLoc=""},["Rough Bronze Boots"]={SubType="Mail",Level=18,id=6350,StackCount=1,Rarity=1,MinLevel=13,SellPrice=295,Texture=132535,Type="Armor",Link="|cffffffff|Hitem:6350::::::::40:::::::|h[Rough Bronze Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Level 20 Test Gear Mail - Paladin/Warrior"]={SubType="Junk",Level=1,id=13656,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13656::::::::40:::::::|h[Level 20 Test Gear Mail - Paladin/Warrior]|h|r"},["TEST Challenge to Urok"]={SubType="Consumable",Level=1,id=12526,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134151,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12526::::::::40:::::::|h[TEST Challenge to Urok]|h|r"},["Vulture Talon"]={SubType="Junk",Level=1,id=3399,StackCount=5,Rarity=0,MinLevel=0,SellPrice=81,Texture=134294,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:3399::::::::40:::::::|h[Vulture Talon]|h|r",EquipLoc=""},["Gallywix's Head"]={SubType="Quest",Level=1,id=8074,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134166,Link="|cffffffff|Hitem:8074::::::::40:::::::|h[Gallywix's Head]|h|r",EquipLoc="",Type="Quest"},["Shilly Mitts"]={SubType="Cloth",Level=31,id=9609,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1009,Texture=132961,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:9609::::::::40:::::::|h[Shilly Mitts]|h|r"},["Sentinel's Leather Pants"]={SubType="Leather",Level=65,id=22749,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42217,Texture=134637,Link="|cffa335ee|Hitem:22749::::::::40:::::::|h[Sentinel's Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Deprecated Remington's List"]={SubType="Quest",Level=1,id=3677,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3677::::::::40:::::::|h[Deprecated Remington's List]|h|r"},["Fine Light Crossbow"]={SubType="Crossbows",Level=21,id=15808,StackCount=1,Rarity=1,MinLevel=16,SellPrice=728,Texture=135531,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffffffff|Hitem:15808::::::::40:::::::|h[Fine Light Crossbow]|h|r",Type="Weapon"},["Heavy Parchment"]={SubType="Quest",Level=1,id=6491,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",Link="|cffffffff|Hitem:6491::::::::40:::::::|h[Heavy Parchment]|h|r",EquipLoc=""},["Codex of Heal"]={SubType="Book",Level=16,id=4273,StackCount=1,Rarity=1,MinLevel=16,SellPrice=325,Texture=133741,Type="Recipe",Link="|cffffffff|Hitem:4273::::::::40:::::::|h[Codex of Heal]|h|r",EquipLoc=""},["Deprecated Polished Lakestone Charm"]={SubType="Miscellaneous",Level=40,id=1472,StackCount=1,Rarity=0,MinLevel=35,SellPrice=1125,Texture=134431,EquipLoc="INVTYPE_TRINKET",Link="|cff9d9d9d|Hitem:1472::::::::40:::::::|h[Deprecated Polished Lakestone Charm]|h|r",Type="Armor"},["A Simple Compass"]={SubType="Quest",Level=1,id=2998,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134377,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2998::::::::40:::::::|h[A Simple Compass]|h|r"},["Libram: Holy Light III"]={SubType="Book",Level=14,id=1151,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133740,Link="|cffffffff|Hitem:1151::::::::40:::::::|h[Libram: Holy Light III]|h|r",EquipLoc="",Type="Recipe"},["Plain Letter"]={SubType="Junk",Level=0,id=8383,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:8383::::::::40:::::::|h[Plain Letter]|h|r",EquipLoc="",Type="Miscellaneous"},["Deprecated Hunting Spaulders"]={SubType="Leather",Level=15,id=4688,StackCount=1,Rarity=0,MinLevel=10,SellPrice=101,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:4688::::::::40:::::::|h[Deprecated Hunting Spaulders]|h|r",Type="Armor"},["Cenarion Combat Badge"]={SubType="Quest",Level=1,id=20802,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=133439,Link="|cff1eff00|Hitem:20802::::::::40:::::::|h[Cenarion Combat Badge]|h|r",EquipLoc="",Type="Quest"},["Tablet of Agitating Totem II"]={SubType="Book",Level=18,id=5702,StackCount=1,Rarity=1,MinLevel=18,SellPrice=625,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:5702::::::::40:::::::|h[Tablet of Agitating Totem II]|h|r",Type="Recipe"},["Abomination Skin Leggings"]={SubType="Cloth",Level=25,id=23173,StackCount=1,Rarity=3,MinLevel=20,SellPrice=1243,Texture=134586,Link="|cff0070dd|Hitem:23173::::::::40:::::::|h[Abomination Skin Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Wild Leather Cloak"]={SubType="Cloth",Level=50,id=8215,StackCount=1,Rarity=2,MinLevel=45,SellPrice=9017,Texture=133755,Link="|cff1eff00|Hitem:8215::::::::40:::::::|h[Wild Leather Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Narain's Special Kit"]={SubType="Junk",Level=1,id=21042,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133655,Link="|cffffffff|Hitem:21042::::::::40:::::::|h[Narain's Special Kit]|h|r",EquipLoc="",Type="Miscellaneous"},["Eskhandar's Right Claw"]={SubType="Fist Weapons",Level=66,id=18203,StackCount=1,Rarity=4,MinLevel=60,SellPrice=90905,Texture=134297,Type="Weapon",Link="|cffa335ee|Hitem:18203::::::::40:::::::|h[Eskhandar's Right Claw]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Bloodshot Spider Eye"]={SubType="Junk",Level=1,id=20610,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133884,Link="|cffffffff|Hitem:20610::::::::40:::::::|h[Bloodshot Spider Eye]|h|r",EquipLoc="",Type="Miscellaneous"},["Pattern: Ironfeather Breastplate"]={SubType="Leatherworking",Level=58,id=15760,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5500,Texture=134939,EquipLoc="",Link="|cff0070dd|Hitem:15760::::::::40:::::::|h[Pattern: Ironfeather Breastplate]|h|r",Type="Recipe"},["Orb of Mistmantle"]={SubType="Miscellaneous",Level=28,id=13031,StackCount=1,Rarity=3,MinLevel=23,SellPrice=1401,Texture=134333,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:13031::::::::40:::::::|h[Orb of Mistmantle]|h|r"},["Sergeant's Mark"]={SubType="Miscellaneous",Level=40,id=18438,StackCount=1,Rarity=3,MinLevel=35,SellPrice=5000,Texture=134951,Type="Armor",Link="|cff0070dd|Hitem:18438::::::::40:::::::|h[Sergeant's Mark]|h|r",EquipLoc="INVTYPE_TRINKET"},["Amethyst War Staff"]={SubType="Staves",Level=60,id=20654,StackCount=1,Rarity=3,MinLevel=55,SellPrice=60175,Texture=135148,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:20654::::::::40:::::::|h[Amethyst War Staff]|h|r"},["Monster - Item, Fish - Green"]={SubType="Miscellaneous",Level=1,id=6227,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133888,Link="|cff9d9d9d|Hitem:6227::::::::40:::::::|h[Monster - Item, Fish - Green]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Blood Guard's Mail Grips"]={SubType="Mail",Level=63,id=16519,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8318,Texture=132945,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16519::::::::40:::::::|h[Blood Guard's Mail Grips]|h|r",Type="Armor"},["Raider's Bracers"]={SubType="Mail",Level=17,id=9785,StackCount=1,Rarity=2,MinLevel=12,SellPrice=268,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9785::::::::40:::::::|h[Raider's Bracers]|h|r"},["Sunscale Chestguard"]={SubType="Plate",Level=54,id=14844,StackCount=1,Rarity=2,MinLevel=49,SellPrice=11471,Texture=132751,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14844::::::::40:::::::|h[Sunscale Chestguard]|h|r"},["Tome of Dampen Magic IV"]={SubType="Book",Level=48,id=8863,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8863::::::::40:::::::|h[Tome of Dampen Magic IV]|h|r"},["Tiny Fang"]={SubType="Junk",Level=1,id=3177,StackCount=10,Rarity=0,MinLevel=0,SellPrice=50,Texture=133723,Link="|cff9d9d9d|Hitem:3177::::::::40:::::::|h[Tiny Fang]|h|r",EquipLoc="",Type="Miscellaneous"},["Spring/Summer Morning"]={SubType="Junk",Level=25,id=13846,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13846::::::::40:::::::|h[Spring/Summer Morning]|h|r"},["Bathran's Hair"]={SubType="Quest",Level=1,id=5437,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134185,EquipLoc="",Link="|cffffffff|Hitem:5437::::::::40:::::::|h[Bathran's Hair]|h|r",Type="Quest"},["Crimson Hammersmith's Apron"]={SubType="Quest",Level=1,id=13351,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135019,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13351::::::::40:::::::|h[Crimson Hammersmith's Apron]|h|r"},["Sage's Cloak"]={SubType="Cloth",Level=28,id=6614,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1120,Texture=133768,Link="|cff1eff00|Hitem:6614::::::::40:::::::|h[Sage's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Incendic Bracers"]={SubType="Cloth",Level=57,id=11768,StackCount=1,Rarity=2,MinLevel=52,SellPrice=7224,Texture=132609,Type="Armor",Link="|cff1eff00|Hitem:11768::::::::40:::::::|h[Incendic Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Lavishly Jeweled Ring"]={SubType="Miscellaneous",Level=22,id=1156,StackCount=1,Rarity=3,MinLevel=17,SellPrice=812,Texture=133351,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:1156::::::::40:::::::|h[Lavishly Jeweled Ring]|h|r"},["Hand of Sulfuron"]={SubType="Quest",Level=1,id=17330,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132937,EquipLoc="",Link="|cffffffff|Hitem:17330::::::::40:::::::|h[Hand of Sulfuron]|h|r",Type="Quest"},["Small Claw"]={SubType="Junk",Level=1,id=3176,StackCount=10,Rarity=0,MinLevel=0,SellPrice=75,Texture=134294,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:3176::::::::40:::::::|h[Small Claw]|h|r"},["Shaleskin Cape"]={SubType="Cloth",Level=58,id=12066,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11149,Texture=133754,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:12066::::::::40:::::::|h[Shaleskin Cape]|h|r"},["Ankh of Life"]={SubType="Miscellaneous",Level=45,id=1713,StackCount=1,Rarity=3,MinLevel=40,SellPrice=5350,Texture=135943,Link="|cff0070dd|Hitem:1713::::::::40:::::::|h[Ankh of Life]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Formula: Enchant Gloves - Threat"]={SubType="Enchanting",Level=70,id=20726,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25000,Texture=134327,Link="|cff0070dd|Hitem:20726::::::::40:::::::|h[Formula: Enchant Gloves - Threat]|h|r",EquipLoc="",Type="Recipe"},["Acid Inscribed Greaves"]={SubType="Plate",Level=72,id=20619,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34298,Texture=132585,Link="|cffa335ee|Hitem:20619::::::::40:::::::|h[Acid Inscribed Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Common Gray Shirt"]={SubType="Miscellaneous",Level=20,id=3428,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=135025,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:3428::::::::40:::::::|h[Common Gray Shirt]|h|r"},["Monster - 2H Axe, Horde PvP"]={SubType="Two-Handed Axes",Level=1,id=21580,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=132395,Link="|cff9d9d9d|Hitem:21580::::::::40:::::::|h[Monster - 2H Axe, Horde PvP]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Blessed Qiraji Bulwark"]={SubType="Shields",Level=79,id=21269,StackCount=1,Rarity=4,MinLevel=60,SellPrice=110563,Texture=134969,Link="|cffa335ee|Hitem:21269::::::::40:::::::|h[Blessed Qiraji Bulwark]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Primal Bands"]={SubType="Leather",Level=9,id=15005,StackCount=1,Rarity=1,MinLevel=4,SellPrice=28,Texture=132611,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:15005::::::::40:::::::|h[Primal Bands]|h|r",Type="Armor"},["Mooncloth Leggings"]={SubType="Cloth",Level=58,id=14137,StackCount=1,Rarity=3,MinLevel=53,SellPrice=18113,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:14137::::::::40:::::::|h[Mooncloth Leggings]|h|r"},["Forsaken Stink Bomb Cluster"]={SubType="Quest",Level=1,id=20387,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134743,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:20387::::::::40:::::::|h[Forsaken Stink Bomb Cluster]|h|r"},["Protector Breastplate"]={SubType="Mail",Level=54,id=14789,StackCount=1,Rarity=2,MinLevel=49,SellPrice=17541,Texture=132723,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14789::::::::40:::::::|h[Protector Breastplate]|h|r"},["Level 30 Test Gear Cloth - Mage/Priest/Warlock"]={SubType="Junk",Level=1,id=13648,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13648::::::::40:::::::|h[Level 30 Test Gear Cloth - Mage/Priest/Warlock]|h|r"},["Deprecated Overseer's Helm"]={SubType="Mail",Level=20,id=1192,StackCount=1,Rarity=0,MinLevel=15,SellPrice=252,Texture=133070,Type="Armor",Link="|cff9d9d9d|Hitem:1192::::::::40:::::::|h[Deprecated Overseer's Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Relentless Chain"]={SubType="Mail",Level=47,id=17777,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10815,Texture=132629,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:17777::::::::40:::::::|h[Relentless Chain]|h|r",Type="Armor"},["Bent Staff"]={SubType="Staves",Level=2,id=35,StackCount=1,Rarity=1,MinLevel=1,SellPrice=9,Texture=135145,Type="Weapon",Link="|cffffffff|Hitem:35::::::::40:::::::|h[Bent Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Schematic: Cluster Launcher"]={SubType="Engineering",Level=55,id=21737,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Link="|cff1eff00|Hitem:21737::::::::40:::::::|h[Schematic: Cluster Launcher]|h|r",EquipLoc="",Type="Recipe"},["Dokebi Cord"]={SubType="Leather",Level=29,id=14578,StackCount=1,Rarity=2,MinLevel=24,SellPrice=983,Texture=132500,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14578::::::::40:::::::|h[Dokebi Cord]|h|r"},["Cobalt Crusher"]={SubType="Two-Handed Maces",Level=34,id=7730,StackCount=1,Rarity=3,MinLevel=29,SellPrice=10146,Texture=133041,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:7730::::::::40:::::::|h[Cobalt Crusher]|h|r"},["Fiery Chain Shoulders"]={SubType="Mail",Level=62,id=16988,StackCount=1,Rarity=4,MinLevel=57,SellPrice=31460,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16988::::::::40:::::::|h[Fiery Chain Shoulders]|h|r",Type="Armor"},["Tablet of Healing Stream Totem V"]={SubType="Book",Level=60,id=9181,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=134459,Link="|cffffffff|Hitem:9181::::::::40:::::::|h[Tablet of Healing Stream Totem V]|h|r",EquipLoc="",Type="Recipe"},["Scorching Wand"]={SubType="Wands",Level=35,id=5213,StackCount=1,Rarity=2,MinLevel=30,SellPrice=5218,Texture=135468,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5213::::::::40:::::::|h[Scorching Wand]|h|r",Type="Weapon"},["Lorekeeper's Ring"]={SubType="Miscellaneous",Level=63,id=19522,StackCount=1,Rarity=3,MinLevel=58,SellPrice=18750,Texture=133370,Link="|cff0070dd|Hitem:19522::::::::40:::::::|h[Lorekeeper's Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Thick Cloth Belt"]={SubType="Cloth",Level=22,id=3597,StackCount=1,Rarity=1,MinLevel=17,SellPrice=216,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:3597::::::::40:::::::|h[Thick Cloth Belt]|h|r",Type="Armor"},["Eau de Mixilpixil"]={SubType="Consumable",Level=1,id=8432,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134807,Link="|cffffffff|Hitem:8432::::::::40:::::::|h[Eau de Mixilpixil]|h|r",EquipLoc="",Type="Consumable"},["Rumsey Rum Black Label"]={SubType="Consumable",Level=1,id=21151,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=132791,Type="Consumable",Link="|cffffffff|Hitem:21151::::::::40:::::::|h[Rumsey Rum Black Label]|h|r",EquipLoc=""},["Monster - Item, 2H Horde Wood Axe"]={SubType="One-Handed Axes",Level=1,id=19014,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Link="|cff9d9d9d|Hitem:19014::::::::40:::::::|h[Monster - Item, 2H Horde Wood Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Moon Harvest Pumpkin"]={SubType="Consumable",Level=45,id=4602,StackCount=20,Rarity=1,MinLevel=35,SellPrice=100,Texture=133981,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:4602::::::::40:::::::|h[Moon Harvest Pumpkin]|h|r"},["Hulking Belt"]={SubType="Mail",Level=22,id=14746,StackCount=1,Rarity=2,MinLevel=17,SellPrice=589,Texture=132511,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14746::::::::40:::::::|h[Hulking Belt]|h|r"},["Nefarious Buckler"]={SubType="Shields",Level=34,id=4477,StackCount=1,Rarity=2,MinLevel=29,SellPrice=4390,Texture=134948,Type="Armor",Link="|cff1eff00|Hitem:4477::::::::40:::::::|h[Nefarious Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Sharp Arrow"]={SubType="Arrow",Level=15,id=2515,StackCount=200,Rarity=1,MinLevel=10,SellPrice=0,Texture=132382,Type="Projectile",Link="|cffffffff|Hitem:2515::::::::40:::::::|h[Sharp Arrow]|h|r",EquipLoc="INVTYPE_AMMO"},["Bean Soup"]={SubType="Consumable",Level=5,id=16166,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=132804,EquipLoc="",Link="|cffffffff|Hitem:16166::::::::40:::::::|h[Bean Soup]|h|r",Type="Consumable"},["Songstone of Ironforge"]={SubType="Miscellaneous",Level=60,id=12543,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7156,Texture=133347,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:12543::::::::40:::::::|h[Songstone of Ironforge]|h|r"},["Glyphed Epaulets"]={SubType="Leather",Level=39,id=4731,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3824,Texture=135056,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:4731::::::::40:::::::|h[Glyphed Epaulets]|h|r"},["Tablet of Thunderbolt"]={SubType="Book",Level=32,id=5713,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2500,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:5713::::::::40:::::::|h[Tablet of Thunderbolt]|h|r",Type="Recipe"},["Libram: Lay on Hands III"]={SubType="Book",Level=50,id=8937,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133740,Link="|cffffffff|Hitem:8937::::::::40:::::::|h[Libram: Lay on Hands III]|h|r",EquipLoc="",Type="Recipe"},["Curvewood Dagger"]={SubType="Daggers",Level=14,id=15396,StackCount=1,Rarity=2,MinLevel=0,SellPrice=582,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15396::::::::40:::::::|h[Curvewood Dagger]|h|r",Type="Weapon"},["Jet Black Feather"]={SubType="Reagent",Level=45,id=8168,StackCount=20,Rarity=1,MinLevel=0,SellPrice=100,Texture=132915,Link="|cffffffff|Hitem:8168::::::::40:::::::|h[Jet Black Feather]|h|r",EquipLoc="",Type="Reagent"},["Monster - Item, Tankard Dirty"]={SubType="Miscellaneous",Level=1,id=2704,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132791,Type="Weapon",Link="|cff9d9d9d|Hitem:2704::::::::40:::::::|h[Monster - Item, Tankard Dirty]|h|r",EquipLoc="INVTYPE_WEAPON"},["Zamah's Note"]={SubType="Quest",Level=1,id=5628,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133472,EquipLoc="",Link="|cffffffff|Hitem:5628::::::::40:::::::|h[Zamah's Note]|h|r",Type="Quest"},["Conjured Sourdough"]={SubType="Consumable",Level=45,id=8075,StackCount=20,Rarity=1,MinLevel=35,SellPrice=0,Texture=133964,Link="|cffffffff|Hitem:8075::::::::40:::::::|h[Conjured Sourdough]|h|r",EquipLoc="",Type="Consumable"},["Gauntlets of Southwind"]={SubType="Leather",Level=74,id=21469,StackCount=1,Rarity=3,MinLevel=60,SellPrice=24185,Texture=132939,Link="|cff0070dd|Hitem:21469::::::::40:::::::|h[Gauntlets of Southwind]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Serpentskin Gloves"]={SubType="Leather",Level=52,id=8260,StackCount=1,Rarity=2,MinLevel=47,SellPrice=6938,Texture=132949,Link="|cff1eff00|Hitem:8260::::::::40:::::::|h[Serpentskin Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Book of Wrath VI"]={SubType="Book",Level=38,id=4226,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4226::::::::40:::::::|h[Book of Wrath VI]|h|r"},["Ruined Dragonhide"]={SubType="Junk",Level=1,id=3175,StackCount=10,Rarity=0,MinLevel=0,SellPrice=100,Texture=134370,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:3175::::::::40:::::::|h[Ruined Dragonhide]|h|r"},["Frost Tiger Blade"]={SubType="Two-Handed Swords",Level=40,id=3854,StackCount=1,Rarity=2,MinLevel=35,SellPrice=14120,Texture=135275,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3854::::::::40:::::::|h[Frost Tiger Blade]|h|r"},["Ghostweave Pants"]={SubType="Cloth",Level=58,id=14144,StackCount=1,Rarity=2,MinLevel=53,SellPrice=14374,Texture=134581,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14144::::::::40:::::::|h[Ghostweave Pants]|h|r"},["Grimy Metal Boots"]={SubType="Plate",Level=63,id=18521,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17606,Texture=132582,Type="Armor",Link="|cff0070dd|Hitem:18521::::::::40:::::::|h[Grimy Metal Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Formula: Enchant Cloak - Superior Defense"]={SubType="Enchanting",Level=57,id=16224,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134327,EquipLoc="",Link="|cffffffff|Hitem:16224::::::::40:::::::|h[Formula: Enchant Cloak - Superior Defense]|h|r",Type="Recipe"},["Fire Hardened Buckler"]={SubType="Shields",Level=27,id=1276,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2220,Texture=134955,Type="Armor",Link="|cff1eff00|Hitem:1276::::::::40:::::::|h[Fire Hardened Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Hot Spices"]={SubType="Trade Goods",Level=20,id=2692,StackCount=20,Rarity=1,MinLevel=0,SellPrice=10,Texture=134059,Link="|cffffffff|Hitem:2692::::::::40:::::::|h[Hot Spices]|h|r",EquipLoc="",Type="Trade Goods"},["Lesser Arcanum of Rumination"]={SubType="Quest",Level=50,id=11622,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134073,Type="Quest",Link="|cff1eff00|Hitem:11622::::::::40:::::::|h[Lesser Arcanum of Rumination]|h|r",EquipLoc=""},["Gordok Nose Ring"]={SubType="Miscellaneous",Level=60,id=18464,StackCount=1,Rarity=2,MinLevel=55,SellPrice=29135,Texture=133348,Type="Armor",Link="|cff1eff00|Hitem:18464::::::::40:::::::|h[Gordok Nose Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Monster - Sword, Rapier"]={SubType="One-Handed Swords",Level=1,id=3364,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135274,Type="Weapon",Link="|cff9d9d9d|Hitem:3364::::::::40:::::::|h[Monster - Sword, Rapier]|h|r",EquipLoc="INVTYPE_WEAPON"},["Burning Pitch"]={SubType="Junk",Level=1,id=4787,StackCount=5,Rarity=0,MinLevel=0,SellPrice=577,Texture=132386,Link="|cff9d9d9d|Hitem:4787::::::::40:::::::|h[Burning Pitch]|h|r",EquipLoc="",Type="Miscellaneous"},["Deprecated Shadow Hunter Knife"]={SubType="Quest",Level=1,id=4523,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135641,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4523::::::::40:::::::|h[Deprecated Shadow Hunter Knife]|h|r"},["Speedsteel Rapier"]={SubType="One-Handed Swords",Level=41,id=13034,StackCount=1,Rarity=3,MinLevel=36,SellPrice=14710,Texture=135340,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13034::::::::40:::::::|h[Speedsteel Rapier]|h|r"},["Velinde's Journal"]={SubType="Quest",Level=1,id=5520,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:5520::::::::40:::::::|h[Velinde's Journal]|h|r",Type="Quest"},["[PH] Shining Dawn Gauntlets"]={SubType="Plate",Level=100,id=13737,StackCount=1,Rarity=1,MinLevel=100,SellPrice=34104,Texture=132963,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:13737::::::::40:::::::|h[[PH] Shining Dawn Gauntlets]|h|r"},["Ashwood Bow"]={SubType="Bows",Level=11,id=5596,StackCount=1,Rarity=1,MinLevel=0,SellPrice=141,Texture=135489,EquipLoc="INVTYPE_RANGED",Link="|cffffffff|Hitem:5596::::::::40:::::::|h[Ashwood Bow]|h|r",Type="Weapon"},["Deprecated Night Mage Wristguards"]={SubType="Cloth",Level=18,id=1298,StackCount=1,Rarity=0,MinLevel=13,SellPrice=89,Texture=132606,Type="Armor",Link="|cff9d9d9d|Hitem:1298::::::::40:::::::|h[Deprecated Night Mage Wristguards]|h|r",EquipLoc="INVTYPE_WRIST"},["Eyestalk Waist Cord"]={SubType="Cloth",Level=88,id=22730,StackCount=1,Rarity=4,MinLevel=60,SellPrice=49596,Texture=132501,Link="|cffa335ee|Hitem:22730::::::::40:::::::|h[Eyestalk Waist Cord]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Plans: Heartseeker"]={SubType="Blacksmithing",Level=63,id=12839,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12839::::::::40:::::::|h[Plans: Heartseeker]|h|r"},["[PH] Robe of the Rising Dawn"]={SubType="Cloth",Level=100,id=13763,StackCount=1,Rarity=1,MinLevel=100,SellPrice=71598,Texture=132645,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13763::::::::40:::::::|h[[PH] Robe of the Rising Dawn]|h|r"},["Round Buckler"]={SubType="Shields",Level=10,id=2377,StackCount=1,Rarity=1,MinLevel=5,SellPrice=89,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:2377::::::::40:::::::|h[Round Buckler]|h|r",Type="Armor"},["Rod of Corrosion"]={SubType="Wands",Level=56,id=10836,StackCount=1,Rarity=3,MinLevel=51,SellPrice=28989,Texture=135466,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:10836::::::::40:::::::|h[Rod of Corrosion]|h|r",Type="Weapon"},["Potent Pants"]={SubType="Leather",Level=50,id=15176,StackCount=1,Rarity=2,MinLevel=45,SellPrice=12121,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15176::::::::40:::::::|h[Potent Pants]|h|r",Type="Armor"},["Tablet of Lightning Shield VII"]={SubType="Book",Level=56,id=9162,StackCount=1,Rarity=1,MinLevel=56,SellPrice=12000,Texture=134459,Link="|cffffffff|Hitem:9162::::::::40:::::::|h[Tablet of Lightning Shield VII]|h|r",EquipLoc="",Type="Recipe"},["Agamaggan's Clutch"]={SubType="Miscellaneous",Level=36,id=6693,StackCount=1,Rarity=3,MinLevel=31,SellPrice=1816,Texture=133722,Type="Armor",Link="|cff0070dd|Hitem:6693::::::::40:::::::|h[Agamaggan's Clutch]|h|r",EquipLoc="INVTYPE_FINGER"},["Monster - Bow, Red"]={SubType="Bows",Level=1,id=5259,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135493,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:5259::::::::40:::::::|h[Monster - Bow, Red]|h|r"},["Infiltrator Cap"]={SubType="Leather",Level=33,id=7413,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2157,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7413::::::::40:::::::|h[Infiltrator Cap]|h|r",Type="Armor"},["Girdle of the Blindwatcher"]={SubType="Leather",Level=26,id=6319,StackCount=1,Rarity=2,MinLevel=21,SellPrice=803,Texture=132492,Type="Armor",Link="|cff1eff00|Hitem:6319::::::::40:::::::|h[Girdle of the Blindwatcher]|h|r",EquipLoc="INVTYPE_WAIST"},["Necrotic Wand"]={SubType="Wands",Level=35,id=7708,StackCount=1,Rarity=3,MinLevel=30,SellPrice=6649,Texture=135466,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:7708::::::::40:::::::|h[Necrotic Wand]|h|r",Type="Weapon"},["Khadgar's Whisker"]={SubType="Trade Goods",Level=37,id=3358,StackCount=20,Rarity=1,MinLevel=0,SellPrice=175,Texture=134188,EquipLoc="",Link="|cffffffff|Hitem:3358::::::::40:::::::|h[Khadgar's Whisker]|h|r",Type="Trade Goods"},["Battle Staff"]={SubType="Staves",Level=36,id=2527,StackCount=1,Rarity=1,MinLevel=31,SellPrice=5871,Texture=135469,Type="Weapon",Link="|cffffffff|Hitem:2527::::::::40:::::::|h[Battle Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Blue Dragonscale Shoulders"]={SubType="Mail",Level=59,id=15049,StackCount=1,Rarity=3,MinLevel=54,SellPrice=20543,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:15049::::::::40:::::::|h[Blue Dragonscale Shoulders]|h|r",Type="Armor"},["Scrolls of Blinding Light"]={SubType="Miscellaneous",Level=76,id=19343,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72039,Texture=134944,Link="|cffa335ee|Hitem:19343::::::::40:::::::|h[Scrolls of Blinding Light]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Mantle of the Fire Festival"]={SubType="Cloth",Level=1,id=23324,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135054,Link="|cffffffff|Hitem:23324::::::::40:::::::|h[Mantle of the Fire Festival]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Spirit of Silverpine Charts"]={SubType="Quest",Level=1,id=4488,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134269,Type="Quest",Link="|cffffffff|Hitem:4488::::::::40:::::::|h[Spirit of Silverpine Charts]|h|r",EquipLoc=""},["Pirates Patch (Test)"]={SubType="Cloth",Level=10,id=1162,StackCount=1,Rarity=1,MinLevel=5,SellPrice=44,Texture=134955,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:1162::::::::40:::::::|h[Pirates Patch (Test)]|h|r"},["Searing Collar"]={SubType="Quest",Level=1,id=4871,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132519,Type="Quest",Link="|cffffffff|Hitem:4871::::::::40:::::::|h[Searing Collar]|h|r",EquipLoc=""},["Formidable Bracers"]={SubType="Mail",Level=48,id=15629,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6374,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15629::::::::40:::::::|h[Formidable Bracers]|h|r",Type="Armor"},["Coldtooth Supplies"]={SubType="Quest",Level=1,id=17542,StackCount=20,Rarity=1,MinLevel=0,SellPrice=2,Texture=132762,EquipLoc="",Link="|cffffffff|Hitem:17542::::::::40:::::::|h[Coldtooth Supplies]|h|r",Type="Quest"},["The Blackrock Slicer"]={SubType="Two-Handed Axes",Level=58,id=13285,StackCount=1,Rarity=3,MinLevel=53,SellPrice=54924,Texture=135581,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13285::::::::40:::::::|h[The Blackrock Slicer]|h|r"},["Monster - Sword2H, Horde Curved Black"]={SubType="Two-Handed Swords",Level=1,id=12889,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12889::::::::40:::::::|h[Monster - Sword2H, Horde Curved Black]|h|r"},["Pauldrons of the Unrelenting"]={SubType="Plate",Level=77,id=21639,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45485,Texture=135060,Link="|cffa335ee|Hitem:21639::::::::40:::::::|h[Pauldrons of the Unrelenting]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Walking Boots"]={SubType="Cloth",Level=18,id=4660,StackCount=1,Rarity=2,MinLevel=13,SellPrice=324,Texture=132540,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:4660::::::::40:::::::|h[Walking Boots]|h|r"},["Bloodmail Legguards"]={SubType="Mail",Level=61,id=14612,StackCount=1,Rarity=3,MinLevel=56,SellPrice=32622,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:14612::::::::40:::::::|h[Bloodmail Legguards]|h|r"},["Glimmering Mail Breastplate"]={SubType="Mail",Level=31,id=4071,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2939,Texture=132751,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:4071::::::::40:::::::|h[Glimmering Mail Breastplate]|h|r"},["Blocking Targe"]={SubType="Shields",Level=42,id=3989,StackCount=1,Rarity=0,MinLevel=37,SellPrice=3154,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:3989::::::::40:::::::|h[Blocking Targe]|h|r",Type="Armor"},["Monster - Mace, Spiked Basic"]={SubType="One-Handed Maces",Level=1,id=2809,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133476,Link="|cff9d9d9d|Hitem:2809::::::::40:::::::|h[Monster - Mace, Spiked Basic]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Knight's Crest"]={SubType="Shields",Level=39,id=7465,StackCount=1,Rarity=2,MinLevel=34,SellPrice=6747,Texture=134952,Link="|cff1eff00|Hitem:7465::::::::40:::::::|h[Knight's Crest]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Conjurer's Gloves"]={SubType="Cloth",Level=36,id=9848,StackCount=1,Rarity=2,MinLevel=31,SellPrice=1584,Texture=132956,Link="|cff1eff00|Hitem:9848::::::::40:::::::|h[Conjurer's Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Bindings of Transcendence"]={SubType="Cloth",Level=76,id=16926,StackCount=1,Rarity=4,MinLevel=60,SellPrice=30260,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16926::::::::40:::::::|h[Bindings of Transcendence]|h|r",Type="Armor"},["Knight-Captain's Leather Armor"]={SubType="Leather",Level=63,id=16417,StackCount=1,Rarity=3,MinLevel=58,SellPrice=14827,Texture=132722,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16417::::::::40:::::::|h[Knight-Captain's Leather Armor]|h|r",Type="Armor"},["Barbarous Blade"]={SubType="Two-Handed Swords",Level=63,id=18520,StackCount=1,Rarity=3,MinLevel=58,SellPrice=73101,Texture=135291,Type="Weapon",Link="|cff0070dd|Hitem:18520::::::::40:::::::|h[Barbarous Blade]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Kaldorei Spider Kabob"]={SubType="Consumable",Level=7,id=5472,StackCount=20,Rarity=1,MinLevel=1,SellPrice=10,Texture=134024,Link="|cffffffff|Hitem:5472::::::::40:::::::|h[Kaldorei Spider Kabob]|h|r",EquipLoc="",Type="Consumable"},["Scorpok Pincer"]={SubType="Quest",Level=1,id=8393,StackCount=20,Rarity=1,MinLevel=1,SellPrice=0,Texture=133708,Link="|cffffffff|Hitem:8393::::::::40:::::::|h[Scorpok Pincer]|h|r",EquipLoc="",Type="Quest"},["Jazeraint Chestguard"]={SubType="Mail",Level=42,id=9897,StackCount=1,Rarity=2,MinLevel=37,SellPrice=7368,Texture=132631,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9897::::::::40:::::::|h[Jazeraint Chestguard]|h|r"},["Tablet of Fire Nova Totem V"]={SubType="Book",Level=52,id=9152,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9152::::::::40:::::::|h[Tablet of Fire Nova Totem V]|h|r"},["Blessed Qiraji Naturalist Staff UNUSED"]={SubType="Staves",Level=80,id=21276,StackCount=1,Rarity=4,MinLevel=60,SellPrice=210376,Texture=135157,Link="|cffa335ee|Hitem:21276::::::::40:::::::|h[Blessed Qiraji Naturalist Staff UNUSED]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Revelosh's Armguards"]={SubType="Mail",Level=40,id=9388,StackCount=1,Rarity=2,MinLevel=35,SellPrice=3196,Texture=132615,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9388::::::::40:::::::|h[Revelosh's Armguards]|h|r"},["Fiery Blaze Enchantment"]={SubType="Consumable",Level=45,id=5421,StackCount=1,Rarity=1,MinLevel=0,SellPrice=650,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:5421::::::::40:::::::|h[Fiery Blaze Enchantment]|h|r",Type="Consumable"},["Barbaric Cloth Belt"]={SubType="Cloth",Level=14,id=4687,StackCount=1,Rarity=1,MinLevel=9,SellPrice=67,Texture=132492,Type="Armor",Link="|cffffffff|Hitem:4687::::::::40:::::::|h[Barbaric Cloth Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Tazan's Logbook"]={SubType="Quest",Level=1,id=7295,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133742,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7295::::::::40:::::::|h[Tazan's Logbook]|h|r"},["Deprecated Oslow's Wood Cutter"]={SubType="Two-Handed Axes",Level=18,id=1311,StackCount=1,Rarity=0,MinLevel=0,SellPrice=542,Texture=132402,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:1311::::::::40:::::::|h[Deprecated Oslow's Wood Cutter]|h|r"},["Nightsky Cowl"]={SubType="Cloth",Level=35,id=4039,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2215,Texture=133132,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:4039::::::::40:::::::|h[Nightsky Cowl]|h|r",Type="Armor"},["Polished Shortbow"]={SubType="Bows",Level=4,id=2505,StackCount=1,Rarity=1,MinLevel=1,SellPrice=12,Texture=135490,Link="|cffffffff|Hitem:2505::::::::40:::::::|h[Polished Shortbow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Dreadnaught Waistguard"]={SubType="Plate",Level=88,id=22422,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50334,Texture=132516,Link="|cffa335ee|Hitem:22422::::::::40:::::::|h[Dreadnaught Waistguard]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Deprecated Scarlet Badge"]={SubType="Miscellaneous",Level=40,id=1184,StackCount=1,Rarity=0,MinLevel=0,SellPrice=308,Texture=133281,Link="|cff9d9d9d|Hitem:1184::::::::40:::::::|h[Deprecated Scarlet Badge]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Feral Blade"]={SubType="One-Handed Swords",Level=13,id=4766,StackCount=1,Rarity=2,MinLevel=8,SellPrice=481,Texture=135325,Link="|cff1eff00|Hitem:4766::::::::40:::::::|h[Feral Blade]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Libram: Divine Favor II"]={SubType="Book",Level=18,id=1136,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:1136::::::::40:::::::|h[Libram: Divine Favor II]|h|r",Type="Recipe"},["Camping Knife"]={SubType="Daggers",Level=8,id=10547,StackCount=1,Rarity=1,MinLevel=0,SellPrice=81,Texture=135637,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:10547::::::::40:::::::|h[Camping Knife]|h|r",Type="Weapon"},["Imperial Red Bracers"]={SubType="Cloth",Level=51,id=8247,StackCount=1,Rarity=2,MinLevel=46,SellPrice=4997,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:8247::::::::40:::::::|h[Imperial Red Bracers]|h|r"},["63 Green Frost Shroud"]={SubType="Cloth",Level=63,id=20361,StackCount=1,Rarity=2,MinLevel=58,SellPrice=14245,Texture=133759,Link="|cff1eff00|Hitem:20361::::::::40:::::::|h[63 Green Frost Shroud]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Seasoned Fighter's Cloak"]={SubType="Cloth",Level=9,id=4933,StackCount=1,Rarity=1,MinLevel=0,SellPrice=48,Texture=133760,Type="Armor",Link="|cffffffff|Hitem:4933::::::::40:::::::|h[Seasoned Fighter's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Pink Mageweave Shirt"]={SubType="Miscellaneous",Level=47,id=10055,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=135029,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:10055::::::::40:::::::|h[Pink Mageweave Shirt]|h|r",Type="Armor"},["Vejrek's Head"]={SubType="Quest",Level=1,id=6799,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134177,Link="|cffffffff|Hitem:6799::::::::40:::::::|h[Vejrek's Head]|h|r",EquipLoc="",Type="Quest"},["Genesis Boots"]={SubType="Leather",Level=78,id=21355,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58580,Texture=132564,Link="|cffa335ee|Hitem:21355::::::::40:::::::|h[Genesis Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Hickory Pipe"]={SubType="Junk",Level=1,id=5432,StackCount=5,Rarity=0,MinLevel=0,SellPrice=330,Texture=134374,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:5432::::::::40:::::::|h[Hickory Pipe]|h|r"},["Brackwater Gauntlets"]={SubType="Mail",Level=14,id=3304,StackCount=1,Rarity=1,MinLevel=9,SellPrice=106,Texture=132959,Link="|cffffffff|Hitem:3304::::::::40:::::::|h[Brackwater Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Heraldic Spaulders"]={SubType="Leather",Level=48,id=8124,StackCount=1,Rarity=2,MinLevel=43,SellPrice=7932,Texture=135054,Link="|cff1eff00|Hitem:8124::::::::40:::::::|h[Heraldic Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Dust Bowl"]={SubType="Shields",Level=18,id=4290,StackCount=1,Rarity=2,MinLevel=13,SellPrice=715,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:4290::::::::40:::::::|h[Dust Bowl]|h|r"},["Fortitude of the Scourge"]={SubType="Quest",Level=60,id=23549,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=136121,Link="|cffa335ee|Hitem:23549::::::::40:::::::|h[Fortitude of the Scourge]|h|r",EquipLoc="",Type="Quest"},["Orcish War Sword"]={SubType="Two-Handed Swords",Level=29,id=6741,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3014,Texture=135311,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:6741::::::::40:::::::|h[Orcish War Sword]|h|r"},["Monster - Item, Bag - White"]={SubType="Miscellaneous",Level=1,id=12858,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133639,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12858::::::::40:::::::|h[Monster - Item, Bag - White]|h|r"},["Pruning Knife"]={SubType="Daggers",Level=10,id=5605,StackCount=1,Rarity=1,MinLevel=0,SellPrice=150,Texture=135637,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:5605::::::::40:::::::|h[Pruning Knife]|h|r",Type="Weapon"},["Elementium Reinforced Bulwark"]={SubType="Shields",Level=77,id=19349,StackCount=1,Rarity=4,MinLevel=60,SellPrice=98056,Texture=134963,Link="|cffa335ee|Hitem:19349::::::::40:::::::|h[Elementium Reinforced Bulwark]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Crimson Felt Hat"]={SubType="Cloth",Level=59,id=18727,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14487,Texture=133153,Type="Armor",Link="|cff0070dd|Hitem:18727::::::::40:::::::|h[Crimson Felt Hat]|h|r",EquipLoc="INVTYPE_HEAD"},["Crocolisk Meat"]={SubType="Trade Goods",Level=14,id=2924,StackCount=10,Rarity=1,MinLevel=0,SellPrice=16,Texture=133970,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:2924::::::::40:::::::|h[Crocolisk Meat]|h|r"},["Dragonmaw Shinbone"]={SubType="Quest",Level=1,id=7131,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133718,EquipLoc="",Link="|cffffffff|Hitem:7131::::::::40:::::::|h[Dragonmaw Shinbone]|h|r",Type="Quest"},["Empty Dreadmist Peak Sampler"]={SubType="Quest",Level=1,id=15842,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134776,EquipLoc="",Link="|cffffffff|Hitem:15842::::::::40:::::::|h[Empty Dreadmist Peak Sampler]|h|r",Type="Quest"},["Thistlewood Staff"]={SubType="Staves",Level=5,id=5393,StackCount=1,Rarity=1,MinLevel=0,SellPrice=32,Texture=135146,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:5393::::::::40:::::::|h[Thistlewood Staff]|h|r",Type="Weapon"},["Silksand Shoulder Pads"]={SubType="Cloth",Level=40,id=14423,StackCount=1,Rarity=2,MinLevel=35,SellPrice=3406,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14423::::::::40:::::::|h[Silksand Shoulder Pads]|h|r"},["Seer's Belt"]={SubType="Cloth",Level=18,id=4699,StackCount=1,Rarity=2,MinLevel=13,SellPrice=221,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4699::::::::40:::::::|h[Seer's Belt]|h|r",Type="Armor"},["Goat Fur Cloak"]={SubType="Cloth",Level=10,id=2905,StackCount=1,Rarity=1,MinLevel=0,SellPrice=53,Texture=133763,Type="Armor",Link="|cffffffff|Hitem:2905::::::::40:::::::|h[Goat Fur Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Andorhal Watch"]={SubType="Quest",Level=0,id=12638,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134377,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12638::::::::40:::::::|h[Andorhal Watch]|h|r"},["Tanned Leather Belt"]={SubType="Leather",Level=17,id=1843,StackCount=1,Rarity=1,MinLevel=12,SellPrice=145,Texture=132512,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:1843::::::::40:::::::|h[Tanned Leather Belt]|h|r"},["Warrior's Honor"]={SubType="Miscellaneous",Level=47,id=7550,StackCount=1,Rarity=2,MinLevel=42,SellPrice=7645,Texture=133289,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:7550::::::::40:::::::|h[Warrior's Honor]|h|r"},["Sheen of Zanza"]={SubType="Consumable",Level=65,id=20080,StackCount=1,Rarity=2,MinLevel=55,SellPrice=0,Texture=134809,Link="|cff1eff00|Hitem:20080::::::::40:::::::|h[Sheen of Zanza]|h|r",EquipLoc="",Type="Consumable"},["Deeprun Rat Kabob"]={SubType="Consumable",Level=15,id=17119,StackCount=20,Rarity=1,MinLevel=5,SellPrice=6,Texture=134024,EquipLoc="",Link="|cffffffff|Hitem:17119::::::::40:::::::|h[Deeprun Rat Kabob]|h|r",Type="Consumable"},["Obsidian Bauble"]={SubType="Miscellaneous",Level=58,id=18316,StackCount=1,Rarity=3,MinLevel=53,SellPrice=13117,Texture=134336,Type="Armor",Link="|cff0070dd|Hitem:18316::::::::40:::::::|h[Obsidian Bauble]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Skycaller"]={SubType="Wands",Level=21,id=12984,StackCount=1,Rarity=3,MinLevel=16,SellPrice=1423,Texture=135464,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:12984::::::::40:::::::|h[Skycaller]|h|r"},["Massacre Sword"]={SubType="Two-Handed Swords",Level=59,id=15256,StackCount=1,Rarity=2,MinLevel=54,SellPrice=47531,Texture=135327,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15256::::::::40:::::::|h[Massacre Sword]|h|r",Type="Weapon"},["Brimstone Staff"]={SubType="Staves",Level=83,id=22800,StackCount=1,Rarity=4,MinLevel=60,SellPrice=245498,Texture=135150,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:22800::::::::40:::::::|h[Brimstone Staff]|h|r"},["Deino's Flask"]={SubType="Quest",Level=1,id=7269,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132788,Link="|cffffffff|Hitem:7269::::::::40:::::::|h[Deino's Flask]|h|r",EquipLoc="",Type="Quest"},["Heavy Leaden Collection Phial"]={SubType="Quest",Level=1,id=9364,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132788,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9364::::::::40:::::::|h[Heavy Leaden Collection Phial]|h|r"},["Fortified Bracers"]={SubType="Mail",Level=24,id=9811,StackCount=1,Rarity=2,MinLevel=19,SellPrice=725,Texture=132602,Link="|cff1eff00|Hitem:9811::::::::40:::::::|h[Fortified Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Tome of Conjure Mana Gem"]={SubType="Book",Level=28,id=4145,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4145::::::::40:::::::|h[Tome of Conjure Mana Gem]|h|r"},["Brigandine Boots"]={SubType="Mail",Level=50,id=2426,StackCount=1,Rarity=1,MinLevel=45,SellPrice=6513,Texture=132535,Type="Armor",Link="|cffffffff|Hitem:2426::::::::40:::::::|h[Brigandine Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Scorched Bands"]={SubType="Cloth",Level=50,id=4990,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4546,Texture=132616,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:4990::::::::40:::::::|h[Scorched Bands]|h|r",Type="Armor"},["Bartleby's Mug"]={SubType="Consumable",Level=1,id=6781,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132791,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6781::::::::40:::::::|h[Bartleby's Mug]|h|r"},["Desertwalker Cane"]={SubType="Miscellaneous",Level=47,id=12471,StackCount=1,Rarity=3,MinLevel=42,SellPrice=8409,Texture=135158,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:12471::::::::40:::::::|h[Desertwalker Cane]|h|r"},["Test Arcane Res Shoulders Cloth"]={SubType="Cloth",Level=35,id=16154,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2260,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16154::::::::40:::::::|h[Test Arcane Res Shoulders Cloth]|h|r",Type="Armor"},["Prismatic Pendant"]={SubType="Miscellaneous",Level=65,id=12048,StackCount=1,Rarity=2,MinLevel=60,SellPrice=6507,Texture=133298,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12048::::::::40:::::::|h[Prismatic Pendant]|h|r"},["Basilisk Scale"]={SubType="Junk",Level=1,id=11385,StackCount=20,Rarity=0,MinLevel=0,SellPrice=145,Texture=134313,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11385::::::::40:::::::|h[Basilisk Scale]|h|r",EquipLoc=""},["Native Sash"]={SubType="Cloth",Level=12,id=14099,StackCount=1,Rarity=1,MinLevel=7,SellPrice=47,Texture=132513,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:14099::::::::40:::::::|h[Native Sash]|h|r"},["The Eye of Hakkar"]={SubType="Miscellaneous",Level=68,id=19856,StackCount=1,Rarity=4,MinLevel=60,SellPrice=48628,Texture=133309,Link="|cffa335ee|Hitem:19856::::::::40:::::::|h[The Eye of Hakkar]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Elunite Hammer"]={SubType="One-Handed Maces",Level=15,id=6968,StackCount=1,Rarity=2,MinLevel=0,SellPrice=698,Texture=133057,Link="|cff1eff00|Hitem:6968::::::::40:::::::|h[Elunite Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Demon Hide Sack"]={SubType="Bag",Level=55,id=10959,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8750,Texture=133646,EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:10959::::::::40:::::::|h[Demon Hide Sack]|h|r",Type="Container"},["Runecloth Bandage"]={SubType="Consumable",Level=52,id=14529,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=133681,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:14529::::::::40:::::::|h[Runecloth Bandage]|h|r"},["Vosh'gajin's Snakestone"]={SubType="Quest",Level=1,id=13352,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134462,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13352::::::::40:::::::|h[Vosh'gajin's Snakestone]|h|r"},["Dried Scorpid Carapace"]={SubType="Junk",Level=1,id=19936,StackCount=10,Rarity=0,MinLevel=0,SellPrice=830,Texture=133856,Link="|cff9d9d9d|Hitem:19936::::::::40:::::::|h[Dried Scorpid Carapace]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Shield, Royal Dreadguard"]={SubType="Shields",Level=1,id=18166,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Type="Armor",Link="|cff9d9d9d|Hitem:18166::::::::40:::::::|h[Monster - Shield, Royal Dreadguard]|h|r",EquipLoc="INVTYPE_SHIELD"},["Renataki's Tooth"]={SubType="Quest",Level=1,id=19940,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134298,Link="|cff1eff00|Hitem:19940::::::::40:::::::|h[Renataki's Tooth]|h|r",EquipLoc="",Type="Quest"},["Tome of Arcane Explosion II"]={SubType="Book",Level=22,id=8812,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133739,Link="|cffffffff|Hitem:8812::::::::40:::::::|h[Tome of Arcane Explosion II]|h|r",EquipLoc="",Type="Recipe"},["Blooddrenched Mask"]={SubType="Leather",Level=68,id=22718,StackCount=1,Rarity=3,MinLevel=60,SellPrice=28410,Texture=133143,Link="|cff0070dd|Hitem:22718::::::::40:::::::|h[Blooddrenched Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Frost Mantle of the Dawn"]={SubType="Quest",Level=60,id=18170,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25000,Texture=135849,Type="Quest",Link="|cff1eff00|Hitem:18170::::::::40:::::::|h[Frost Mantle of the Dawn]|h|r",EquipLoc=""},["Thorium Plated Dagger"]={SubType="Quest",Level=1,id=10551,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=135650,EquipLoc="",Link="|cffffffff|Hitem:10551::::::::40:::::::|h[Thorium Plated Dagger]|h|r",Type="Quest"},["War Torn Handgrips"]={SubType="Mail",Level=12,id=15484,StackCount=1,Rarity=1,MinLevel=7,SellPrice=68,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:15484::::::::40:::::::|h[War Torn Handgrips]|h|r",Type="Armor"},["Worn Mail Boots"]={SubType="Mail",Level=13,id=1731,StackCount=1,Rarity=0,MinLevel=8,SellPrice=92,Texture=132535,Link="|cff9d9d9d|Hitem:1731::::::::40:::::::|h[Worn Mail Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Deprecated Orc Acolyte's Shirt"]={SubType="Miscellaneous",Level=1,id=133,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135009,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:133::::::::40:::::::|h[Deprecated Orc Acolyte's Shirt]|h|r"},["Grenka's Claw"]={SubType="Quest",Level=1,id=5843,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134295,EquipLoc="",Link="|cffffffff|Hitem:5843::::::::40:::::::|h[Grenka's Claw]|h|r",Type="Quest"},["Pattern: Kodo Hide Bag"]={SubType="Leatherworking",Level=11,id=5083,StackCount=1,Rarity=2,MinLevel=0,SellPrice=50,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:5083::::::::40:::::::|h[Pattern: Kodo Hide Bag]|h|r"},["Embossed Leather Pants"]={SubType="Leather",Level=15,id=4242,StackCount=1,Rarity=2,MinLevel=10,SellPrice=347,Texture=134582,Link="|cff1eff00|Hitem:4242::::::::40:::::::|h[Embossed Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Master's Rod"]={SubType="Miscellaneous",Level=65,id=15942,StackCount=1,Rarity=2,MinLevel=60,SellPrice=12757,Texture=135144,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15942::::::::40:::::::|h[Master's Rod]|h|r",Type="Armor"},["Chieftain's Cloak"]={SubType="Cloth",Level=47,id=9951,StackCount=1,Rarity=2,MinLevel=42,SellPrice=6795,Texture=133770,Link="|cff1eff00|Hitem:9951::::::::40:::::::|h[Chieftain's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Scouting Cloak"]={SubType="Cloth",Level=20,id=6585,StackCount=1,Rarity=2,MinLevel=15,SellPrice=558,Texture=133754,Type="Armor",Link="|cff1eff00|Hitem:6585::::::::40:::::::|h[Scouting Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Virtuous Sandals"]={SubType="Cloth",Level=60,id=22084,StackCount=1,Rarity=4,MinLevel=0,SellPrice=19333,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:22084::::::::40:::::::|h[Virtuous Sandals]|h|r"},["Dire Nail"]={SubType="Daggers",Level=56,id=10828,StackCount=1,Rarity=3,MinLevel=51,SellPrice=40427,Texture=135652,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:10828::::::::40:::::::|h[Dire Nail]|h|r",Type="Weapon"},["Worn Dragonscale"]={SubType="Junk",Level=45,id=8165,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134319,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:8165::::::::40:::::::|h[Worn Dragonscale]|h|r"},["Darkmantle Gloves"]={SubType="Leather",Level=55,id=22006,StackCount=1,Rarity=4,MinLevel=0,SellPrice=12034,Texture=132958,Link="|cffa335ee|Hitem:22006::::::::40:::::::|h[Darkmantle Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Phalanx Bracers"]={SubType="Mail",Level=31,id=7416,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1442,Texture=132613,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:7416::::::::40:::::::|h[Phalanx Bracers]|h|r",Type="Armor"},["Love Token"]={SubType="Consumable",Level=1,id=21815,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=135453,Link="|cffffffff|Hitem:21815::::::::40:::::::|h[Love Token]|h|r",EquipLoc="",Type="Consumable"},["Robo-mechanical Guts"]={SubType="Quest",Level=1,id=9309,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132996,Link="|cffffffff|Hitem:9309::::::::40:::::::|h[Robo-mechanical Guts]|h|r",EquipLoc="",Type="Quest"},["90 Green Frost Crown"]={SubType="Cloth",Level=90,id=20341,StackCount=1,Rarity=2,MinLevel=60,SellPrice=53191,Texture=132768,Link="|cff1eff00|Hitem:20341::::::::40:::::::|h[90 Green Frost Crown]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Imperial Leather Pants"]={SubType="Leather",Level=45,id=4062,StackCount=1,Rarity=2,MinLevel=40,SellPrice=8359,Texture=134587,Link="|cff1eff00|Hitem:4062::::::::40:::::::|h[Imperial Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Monster - Axe, 2H Horde Massive Spiked"]={SubType="Two-Handed Axes",Level=1,id=14870,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14870::::::::40:::::::|h[Monster - Axe, 2H Horde Massive Spiked]|h|r"},["Deprecated Studded Shoulders"]={SubType="Leather",Level=20,id=4811,StackCount=1,Rarity=0,MinLevel=15,SellPrice=218,Texture=135039,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:4811::::::::40:::::::|h[Deprecated Studded Shoulders]|h|r"},["Copper Ore"]={SubType="Trade Goods",Level=10,id=2770,StackCount=10,Rarity=1,MinLevel=0,SellPrice=5,Texture=134566,Link="|cffffffff|Hitem:2770::::::::40:::::::|h[Copper Ore]|h|r",EquipLoc="",Type="Trade Goods"},["Khan's Bindings"]={SubType="Mail",Level=45,id=14778,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4933,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14778::::::::40:::::::|h[Khan's Bindings]|h|r"},["Hematite Link"]={SubType="Miscellaneous",Level=43,id=11973,StackCount=1,Rarity=2,MinLevel=38,SellPrice=3971,Texture=133345,Type="Armor",Link="|cff1eff00|Hitem:11973::::::::40:::::::|h[Hematite Link]|h|r",EquipLoc="INVTYPE_FINGER"},["Jungle Stalker Feather"]={SubType="Quest",Level=1,id=3863,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135992,Link="|cffffffff|Hitem:3863::::::::40:::::::|h[Jungle Stalker Feather]|h|r",EquipLoc="",Type="Quest"},["Mithril Bound Trunk"]={SubType="Junk",Level=45,id=21228,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2,Texture=132595,Link="|cffffffff|Hitem:21228::::::::40:::::::|h[Mithril Bound Trunk]|h|r",EquipLoc="",Type="Miscellaneous"},["Formidable Gauntlets"]={SubType="Mail",Level=48,id=15635,StackCount=1,Rarity=2,MinLevel=43,SellPrice=5896,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15635::::::::40:::::::|h[Formidable Gauntlets]|h|r",Type="Armor"},["Codex of Holy Smite VII"]={SubType="Book",Level=46,id=9003,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=133741,Link="|cffffffff|Hitem:9003::::::::40:::::::|h[Codex of Holy Smite VII]|h|r",EquipLoc="",Type="Recipe"},["Pattern: Cloak of Warding"]={SubType="Tailoring",Level=62,id=18418,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18418::::::::40:::::::|h[Pattern: Cloak of Warding]|h|r",EquipLoc=""},["Ghostwalker Bindings"]={SubType="Leather",Level=33,id=15143,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1439,Texture=132607,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15143::::::::40:::::::|h[Ghostwalker Bindings]|h|r",Type="Armor"},["Knight-Captain's Dreadweave Bracers"]={SubType="Cloth",Level=60,id=17563,StackCount=1,Rarity=3,MinLevel=55,SellPrice=5049,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:17563::::::::40:::::::|h[Knight-Captain's Dreadweave Bracers]|h|r",Type="Armor"},["Rust-covered Blunderbuss"]={SubType="Guns",Level=7,id=2774,StackCount=1,Rarity=0,MinLevel=2,SellPrice=28,Texture=135612,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:2774::::::::40:::::::|h[Rust-covered Blunderbuss]|h|r"},["Coldridge Hammer"]={SubType="Two-Handed Maces",Level=12,id=3103,StackCount=1,Rarity=2,MinLevel=0,SellPrice=466,Texture=133052,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3103::::::::40:::::::|h[Coldridge Hammer]|h|r"},["Atal'ai Stone Circle"]={SubType="Quest",Level=1,id=10466,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134430,EquipLoc="",Link="|cffffffff|Hitem:10466::::::::40:::::::|h[Atal'ai Stone Circle]|h|r",Type="Quest"},["Highperch Venom Sac"]={SubType="Quest",Level=1,id=5809,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,EquipLoc="",Link="|cffffffff|Hitem:5809::::::::40:::::::|h[Highperch Venom Sac]|h|r",Type="Quest"},["Formula: Enchant Weapon - Lesser Beastslayer"]={SubType="Enchanting",Level=35,id=11164,StackCount=1,Rarity=2,MinLevel=0,SellPrice=750,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11164::::::::40:::::::|h[Formula: Enchant Weapon - Lesser Beastslayer]|h|r",EquipLoc=""},["Heirloom Dagger"]={SubType="Daggers",Level=15,id=7116,StackCount=1,Rarity=2,MinLevel=0,SellPrice=685,Texture=135651,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:7116::::::::40:::::::|h[Heirloom Dagger]|h|r"},["Warrior's Cloak"]={SubType="Cloth",Level=8,id=4658,StackCount=1,Rarity=1,MinLevel=3,SellPrice=23,Texture=133754,Link="|cffffffff|Hitem:4658::::::::40:::::::|h[Warrior's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Cenarion Tactical Badge"]={SubType="Quest",Level=1,id=20801,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=133277,Link="|cff1eff00|Hitem:20801::::::::40:::::::|h[Cenarion Tactical Badge]|h|r",EquipLoc="",Type="Quest"},["Libram of Voracity"]={SubType="Book",Level=50,id=11737,StackCount=1,Rarity=2,MinLevel=50,SellPrice=0,Texture=133742,Type="Recipe",Link="|cff1eff00|Hitem:11737::::::::40:::::::|h[Libram of Voracity]|h|r",EquipLoc=""},["Battlefield Destroyer"]={SubType="Two-Handed Swords",Level=47,id=8199,StackCount=1,Rarity=2,MinLevel=42,SellPrice=24661,Texture=135327,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:8199::::::::40:::::::|h[Battlefield Destroyer]|h|r"},["Grimoire of Drain Soul II"]={SubType="Book",Level=24,id=9208,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9208::::::::40:::::::|h[Grimoire of Drain Soul II]|h|r"},["Sunscale Shield"]={SubType="Shields",Level=54,id=14852,StackCount=1,Rarity=2,MinLevel=49,SellPrice=19420,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14852::::::::40:::::::|h[Sunscale Shield]|h|r"},["Sartura's Might"]={SubType="Miscellaneous",Level=76,id=21666,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91352,Texture=134911,Link="|cffa335ee|Hitem:21666::::::::40:::::::|h[Sartura's Might]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Deprecated Dwarven Apprentice Belt"]={SubType="Miscellaneous",Level=1,id=115,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132493,Link="|cffffffff|Hitem:115::::::::40:::::::|h[Deprecated Dwarven Apprentice Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Tome of Mal'cin Vorail"]={SubType="Consumable",Level=1,id=13153,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133733,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13153::::::::40:::::::|h[Tome of Mal'cin Vorail]|h|r"},["Elder's Cloak"]={SubType="Cloth",Level=30,id=7356,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1411,Texture=133754,Link="|cff1eff00|Hitem:7356::::::::40:::::::|h[Elder's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Thin Cloth Gloves"]={SubType="Cloth",Level=5,id=2119,StackCount=1,Rarity=1,MinLevel=1,SellPrice=4,Texture=132952,Type="Armor",Link="|cffffffff|Hitem:2119::::::::40:::::::|h[Thin Cloth Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Pattern: Chimeric Boots"]={SubType="Leatherworking",Level=55,id=15737,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15737::::::::40:::::::|h[Pattern: Chimeric Boots]|h|r",Type="Recipe"},["Robust Bracers"]={SubType="Leather",Level=25,id=15122,StackCount=1,Rarity=2,MinLevel=20,SellPrice=701,Texture=132611,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15122::::::::40:::::::|h[Robust Bracers]|h|r",Type="Armor"},["Jazeraint Boots"]={SubType="Mail",Level=40,id=9895,StackCount=1,Rarity=2,MinLevel=35,SellPrice=5221,Texture=132589,Link="|cff1eff00|Hitem:9895::::::::40:::::::|h[Jazeraint Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Field Marshal's Coronet"]={SubType="Cloth",Level=74,id=16441,StackCount=1,Rarity=4,MinLevel=60,SellPrice=20575,Texture=133126,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16441::::::::40:::::::|h[Field Marshal's Coronet]|h|r",Type="Armor"},["Pattern: Chromatic Gauntlets"]={SubType="Leatherworking",Level=70,id=19331,StackCount=1,Rarity=1,MinLevel=0,SellPrice=22500,Texture=134939,Link="|cffffffff|Hitem:19331::::::::40:::::::|h[Pattern: Chromatic Gauntlets]|h|r",EquipLoc="",Type="Recipe"},["Winter Veil Candy"]={SubType="Consumable",Level=55,id=21240,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134017,Link="|cffffffff|Hitem:21240::::::::40:::::::|h[Winter Veil Candy]|h|r",EquipLoc="",Type="Consumable"},["Cloak of the Scourge"]={SubType="Cloth",Level=83,id=23030,StackCount=1,Rarity=4,MinLevel=60,SellPrice=59817,Texture=133775,Link="|cffa335ee|Hitem:23030::::::::40:::::::|h[Cloak of the Scourge]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Schematic: Thorium Grenade"]={SubType="Engineering",Level=52,id=16041,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:16041::::::::40:::::::|h[Schematic: Thorium Grenade]|h|r",Type="Recipe"},["Willey's Portable Howitzer"]={SubType="Guns",Level=61,id=13380,StackCount=1,Rarity=3,MinLevel=56,SellPrice=38443,Texture=135616,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:13380::::::::40:::::::|h[Willey's Portable Howitzer]|h|r"},["Sandcomber Boots"]={SubType="Cloth",Level=14,id=15398,StackCount=1,Rarity=1,MinLevel=0,SellPrice=108,Texture=132537,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:15398::::::::40:::::::|h[Sandcomber Boots]|h|r",Type="Armor"},["Sanguine Sandals"]={SubType="Cloth",Level=24,id=14374,StackCount=1,Rarity=2,MinLevel=19,SellPrice=699,Texture=132540,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14374::::::::40:::::::|h[Sanguine Sandals]|h|r"},["Trindlehaven Staff"]={SubType="Staves",Level=61,id=13161,StackCount=1,Rarity=3,MinLevel=56,SellPrice=65749,Texture=135166,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13161::::::::40:::::::|h[Trindlehaven Staff]|h|r"},["Assassination Blade"]={SubType="One-Handed Swords",Level=57,id=13036,StackCount=1,Rarity=3,MinLevel=52,SellPrice=40988,Texture=135352,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13036::::::::40:::::::|h[Assassination Blade]|h|r"},["Deprecated Ragged Scalp"]={SubType="Quest",Level=1,id=1115,StackCount=12,Rarity=1,MinLevel=0,SellPrice=0,Texture=133622,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1115::::::::40:::::::|h[Deprecated Ragged Scalp]|h|r"},["Glyphs of Calling"]={SubType="Junk",Level=1,id=20464,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136192,Link="|cffffffff|Hitem:20464::::::::40:::::::|h[Glyphs of Calling]|h|r",EquipLoc="",Type="Miscellaneous"},["Recipe: Nature Protection Potion"]={SubType="Alchemy",Level=38,id=6057,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,Link="|cffffffff|Hitem:6057::::::::40:::::::|h[Recipe: Nature Protection Potion]|h|r",EquipLoc="",Type="Recipe"},["Marshal's Leather Armsplints"]={SubType="Leather",Level=65,id=16460,StackCount=1,Rarity=4,MinLevel=60,SellPrice=10233,Texture=132601,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16460::::::::40:::::::|h[Marshal's Leather Armsplints]|h|r",Type="Armor"},["Embossed Plate Boots"]={SubType="Plate",Level=42,id=9973,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3727,Texture=132588,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9973::::::::40:::::::|h[Embossed Plate Boots]|h|r"},["Libram: Seal of Protection II"]={SubType="Book",Level=20,id=5680,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133740,Link="|cffffffff|Hitem:5680::::::::40:::::::|h[Libram: Seal of Protection II]|h|r",EquipLoc="",Type="Recipe"},["Codex of Mana Burn III"]={SubType="Book",Level=40,id=8988,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133741,Link="|cffffffff|Hitem:8988::::::::40:::::::|h[Codex of Mana Burn III]|h|r",EquipLoc="",Type="Recipe"},["Dark Leather Belt"]={SubType="Leather",Level=25,id=4249,StackCount=1,Rarity=2,MinLevel=20,SellPrice=703,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4249::::::::40:::::::|h[Dark Leather Belt]|h|r"},["Windchaser Cuffs"]={SubType="Cloth",Level=43,id=14429,StackCount=1,Rarity=2,MinLevel=38,SellPrice=2644,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14429::::::::40:::::::|h[Windchaser Cuffs]|h|r"},["Ancient War Sword"]={SubType="Two-Handed Swords",Level=32,id=3209,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6783,Texture=135280,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3209::::::::40:::::::|h[Ancient War Sword]|h|r"},["Earthfury Belt"]={SubType="Mail",Level=66,id=16838,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25682,Texture=132503,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16838::::::::40:::::::|h[Earthfury Belt]|h|r",Type="Armor"},["Cryptfiend Silk Cloak"]={SubType="Cloth",Level=83,id=22938,StackCount=1,Rarity=4,MinLevel=60,SellPrice=61651,Texture=133776,Link="|cffa335ee|Hitem:22938::::::::40:::::::|h[Cryptfiend Silk Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Sigil of Ignaeus"]={SubType="Quest",Level=1,id=4467,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133435,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4467::::::::40:::::::|h[Sigil of Ignaeus]|h|r"},["Savage Mail Tunic"]={SubType="Mail",Level=62,id=12615,StackCount=1,Rarity=2,MinLevel=57,SellPrice=27510,Texture=132738,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:12615::::::::40:::::::|h[Savage Mail Tunic]|h|r"},["Opulent Bracers"]={SubType="Cloth",Level=49,id=14279,StackCount=1,Rarity=2,MinLevel=44,SellPrice=4206,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14279::::::::40:::::::|h[Opulent Bracers]|h|r"},["A Torn Journal Page"]={SubType="Quest",Level=1,id=916,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133688,Type="Quest",Link="|cffffffff|Hitem:916::::::::40:::::::|h[A Torn Journal Page]|h|r",EquipLoc=""},["Monster - Staff, Demon Skull Staff Low Purple Flame"]={SubType="Staves",Level=1,id=13722,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13722::::::::40:::::::|h[Monster - Staff, Demon Skull Staff Low Purple Flame]|h|r"},["Fall/Winter Evening"]={SubType="Junk",Level=25,id=13844,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13844::::::::40:::::::|h[Fall/Winter Evening]|h|r"},["Rugged Trapper's Shirt"]={SubType="Miscellaneous",Level=1,id=148,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135005,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:148::::::::40:::::::|h[Rugged Trapper's Shirt]|h|r"},["Volcanic Hammer"]={SubType="One-Handed Maces",Level=58,id=12792,StackCount=1,Rarity=2,MinLevel=53,SellPrice=39255,Texture=133043,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:12792::::::::40:::::::|h[Volcanic Hammer]|h|r"},["Timberling Seed"]={SubType="Quest",Level=1,id=5168,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134188,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5168::::::::40:::::::|h[Timberling Seed]|h|r"},["Shackled Girdle"]={SubType="Mail",Level=11,id=5592,StackCount=1,Rarity=1,MinLevel=0,SellPrice=54,Texture=132499,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:5592::::::::40:::::::|h[Shackled Girdle]|h|r",Type="Armor"},["Monster - Spear, Sharp Thin"]={SubType="Polearms",Level=1,id=6680,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,Type="Weapon",Link="|cff9d9d9d|Hitem:6680::::::::40:::::::|h[Monster - Spear, Sharp Thin]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Umbral Ore"]={SubType="Quest",Level=1,id=6800,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134577,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6800::::::::40:::::::|h[Umbral Ore]|h|r"},["Cadet Gauntlets"]={SubType="Mail",Level=13,id=9762,StackCount=1,Rarity=1,MinLevel=8,SellPrice=92,Texture=132946,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:9762::::::::40:::::::|h[Cadet Gauntlets]|h|r"},["Tyrant's Gauntlets"]={SubType="Plate",Level=44,id=14833,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2988,Texture=132953,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14833::::::::40:::::::|h[Tyrant's Gauntlets]|h|r"},["Silver Spade"]={SubType="Two-Handed Maces",Level=41,id=4128,StackCount=1,Rarity=2,MinLevel=0,SellPrice=14587,Texture=134436,Type="Weapon",Link="|cff1eff00|Hitem:4128::::::::40:::::::|h[Silver Spade]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Spellbinder Cloak"]={SubType="Cloth",Level=13,id=4683,StackCount=1,Rarity=1,MinLevel=8,SellPrice=92,Texture=133767,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:4683::::::::40:::::::|h[Spellbinder Cloak]|h|r",Type="Armor"},["Tablet of Molten Blast IV"]={SubType="Book",Level=30,id=3132,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:3132::::::::40:::::::|h[Tablet of Molten Blast IV]|h|r"},["Brazen Gauntlets"]={SubType="Mail",Level=54,id=12051,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8996,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:12051::::::::40:::::::|h[Brazen Gauntlets]|h|r"},["Monster - Staff, Jeweled D01/B02 Yellow w/Low Red Flame"]={SubType="Staves",Level=1,id=20719,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Link="|cff9d9d9d|Hitem:20719::::::::40:::::::|h[Monster - Staff, Jeweled D01/B02 Yellow w/Low Red Flame]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Elunite Ore"]={SubType="Quest",Level=1,id=6808,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134577,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6808::::::::40:::::::|h[Elunite Ore]|h|r"},["Deprecated Brown Leather Vest"]={SubType="Leather",Level=8,id=1170,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37,Texture=132725,Type="Armor",Link="|cffffffff|Hitem:1170::::::::40:::::::|h[Deprecated Brown Leather Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Holiday Cheesewheel"]={SubType="Consumable",Level=15,id=17406,StackCount=20,Rarity=1,MinLevel=5,SellPrice=6,Texture=133945,EquipLoc="",Link="|cffffffff|Hitem:17406::::::::40:::::::|h[Holiday Cheesewheel]|h|r",Type="Consumable"},["Hunter's Insignia Medal"]={SubType="Miscellaneous",Level=60,id=15704,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6145,Texture=133278,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:15704::::::::40:::::::|h[Hunter's Insignia Medal]|h|r",Type="Armor"},["Broad Claymore"]={SubType="Two-Handed Swords",Level=34,id=3781,StackCount=1,Rarity=0,MinLevel=29,SellPrice=3125,Texture=135324,Type="Weapon",Link="|cff9d9d9d|Hitem:3781::::::::40:::::::|h[Broad Claymore]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Touch of Frost"]={SubType="Miscellaneous",Level=83,id=22935,StackCount=1,Rarity=4,MinLevel=60,SellPrice=88355,Texture=133279,Link="|cffa335ee|Hitem:22935::::::::40:::::::|h[Touch of Frost]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Ghoulfang"]={SubType="Two-Handed Swords",Level=19,id=1387,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1578,Texture=135277,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1387::::::::40:::::::|h[Ghoulfang]|h|r",Type="Weapon"},["Level 50 Test Gear Mail - Shaman 2"]={SubType="Junk",Level=1,id=17847,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17847::::::::40:::::::|h[Level 50 Test Gear Mail - Shaman 2]|h|r",Type="Miscellaneous"},["Argent Dawn Commission"]={SubType="Miscellaneous",Level=1,id=12846,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133440,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:12846::::::::40:::::::|h[Argent Dawn Commission]|h|r"},["Acid-etched Pauldrons"]={SubType="Plate",Level=61,id=13533,StackCount=1,Rarity=2,MinLevel=56,SellPrice=12810,Texture=135049,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:13533::::::::40:::::::|h[Acid-etched Pauldrons]|h|r"},["Tarnished Chain Boots"]={SubType="Mail",Level=5,id=2383,StackCount=1,Rarity=1,MinLevel=1,SellPrice=11,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:2383::::::::40:::::::|h[Tarnished Chain Boots]|h|r",Type="Armor"},["Tablet of Healing Totem II"]={SubType="Book",Level=12,id=5700,StackCount=1,Rarity=1,MinLevel=12,SellPrice=250,Texture=134459,Link="|cffffffff|Hitem:5700::::::::40:::::::|h[Tablet of Healing Totem II]|h|r",EquipLoc="",Type="Recipe"},["Monster - Wand, Horde Green Feathered"]={SubType="Wands",Level=1,id=16582,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135463,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:16582::::::::40:::::::|h[Monster - Wand, Horde Green Feathered]|h|r",Type="Weapon"},["Laminated Scale Boots"]={SubType="Mail",Level=53,id=3993,StackCount=1,Rarity=0,MinLevel=48,SellPrice=4940,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:3993::::::::40:::::::|h[Laminated Scale Boots]|h|r",Type="Armor"},["Bone Dust"]={SubType="Quest",Level=1,id=13159,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13159::::::::40:::::::|h[Bone Dust]|h|r"},["Smooth Leather Bracers"]={SubType="Leather",Level=59,id=3971,StackCount=1,Rarity=0,MinLevel=54,SellPrice=3811,Texture=132609,Type="Armor",Link="|cff9d9d9d|Hitem:3971::::::::40:::::::|h[Smooth Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Deviate Fish"]={SubType="Trade Goods",Level=15,id=6522,StackCount=20,Rarity=1,MinLevel=0,SellPrice=4,Texture=134299,Type="Trade Goods",Link="|cffffffff|Hitem:6522::::::::40:::::::|h[Deviate Fish]|h|r",EquipLoc=""},["Diablo Stone"]={SubType="Junk",Level=20,id=13584,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132787,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13584::::::::40:::::::|h[Diablo Stone]|h|r"},["Heavy Woolen Gloves"]={SubType="Cloth",Level=17,id=4310,StackCount=1,Rarity=2,MinLevel=12,SellPrice=180,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:4310::::::::40:::::::|h[Heavy Woolen Gloves]|h|r"},["Seedtime Hoop"]={SubType="Miscellaneous",Level=50,id=9655,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7092,Texture=133354,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:9655::::::::40:::::::|h[Seedtime Hoop]|h|r"},["Jazeraint Cloak"]={SubType="Cloth",Level=38,id=9898,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2718,Texture=133759,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9898::::::::40:::::::|h[Jazeraint Cloak]|h|r"},["Boar Ribs"]={SubType="Trade Goods",Level=14,id=2677,StackCount=10,Rarity=1,MinLevel=0,SellPrice=15,Texture=133972,EquipLoc="",Link="|cffffffff|Hitem:2677::::::::40:::::::|h[Boar Ribs]|h|r",Type="Trade Goods"},["Mystic's Gloves"]={SubType="Cloth",Level=19,id=14367,StackCount=1,Rarity=2,MinLevel=14,SellPrice=251,Texture=132952,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14367::::::::40:::::::|h[Mystic's Gloves]|h|r"},["Frostmane Scepter"]={SubType="One-Handed Maces",Level=11,id=3223,StackCount=1,Rarity=2,MinLevel=6,SellPrice=306,Texture=133482,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:3223::::::::40:::::::|h[Frostmane Scepter]|h|r",Type="Weapon"},["Goblin Screwdriver"]={SubType="Daggers",Level=18,id=1936,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1113,Texture=135641,Link="|cff1eff00|Hitem:1936::::::::40:::::::|h[Goblin Screwdriver]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Ghoul Rib"]={SubType="Quest",Level=1,id=884,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134232,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:884::::::::40:::::::|h[Ghoul Rib]|h|r"},["Champion's Plate Pauldrons"]={SubType="Plate",Level=63,id=16516,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8223,Texture=135042,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16516::::::::40:::::::|h[Champion's Plate Pauldrons]|h|r",Type="Armor"},["Gobbler's Head"]={SubType="Quest",Level=1,id=3618,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134299,EquipLoc="",Link="|cffffffff|Hitem:3618::::::::40:::::::|h[Gobbler's Head]|h|r",Type="Quest"},["Enchanter's Cowl"]={SubType="Cloth",Level=33,id=4322,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1810,Texture=133133,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:4322::::::::40:::::::|h[Enchanter's Cowl]|h|r",Type="Armor"},["Book of Soothe Animal"]={SubType="Book",Level=22,id=8787,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133743,Link="|cffffffff|Hitem:8787::::::::40:::::::|h[Book of Soothe Animal]|h|r",EquipLoc="",Type="Recipe"},["Top of Gelkak's Key"]={SubType="Quest",Level=1,id=7498,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134235,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7498::::::::40:::::::|h[Top of Gelkak's Key]|h|r"},["Greater Mystic Essence"]={SubType="Trade Goods",Level=35,id=11135,StackCount=10,Rarity=2,MinLevel=0,SellPrice=0,Texture=132868,Type="Trade Goods",Link="|cff1eff00|Hitem:11135::::::::40:::::::|h[Greater Mystic Essence]|h|r",EquipLoc=""},["OLDDwarven Initiate's Belt"]={SubType="Miscellaneous",Level=1,id=90,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132494,Type="Armor",Link="|cffffffff|Hitem:90::::::::40:::::::|h[OLDDwarven Initiate's Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Formula: Enchant Gloves - Fishing"]={SubType="Enchanting",Level=29,id=11152,StackCount=1,Rarity=2,MinLevel=0,SellPrice=750,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11152::::::::40:::::::|h[Formula: Enchant Gloves - Fishing]|h|r",EquipLoc=""},["Buzzer Blade"]={SubType="Daggers",Level=21,id=2169,StackCount=1,Rarity=1,MinLevel=16,SellPrice=943,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:2169::::::::40:::::::|h[Buzzer Blade]|h|r",Type="Weapon"},["Death Speaker Robes"]={SubType="Cloth",Level=31,id=6682,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1900,Texture=132661,Link="|cff1eff00|Hitem:6682::::::::40:::::::|h[Death Speaker Robes]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Deprecated Silver-thread Cowl"]={SubType="Cloth",Level=32,id=3068,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1700,Texture=133132,Link="|cff1eff00|Hitem:3068::::::::40:::::::|h[Deprecated Silver-thread Cowl]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Rusty Thieves' Tools"]={SubType="Trade Goods",Level=15,id=7872,StackCount=1,Rarity=1,MinLevel=15,SellPrice=0,Texture=134065,EquipLoc="",Link="|cffffffff|Hitem:7872::::::::40:::::::|h[Rusty Thieves' Tools]|h|r",Type="Trade Goods"},["Bloodpetal"]={SubType="Quest",Level=1,id=11316,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133941,Type="Quest",Link="|cffffffff|Hitem:11316::::::::40:::::::|h[Bloodpetal]|h|r",EquipLoc=""},["Dull Frenzy Scale"]={SubType="Junk",Level=1,id=537,StackCount=5,Rarity=0,MinLevel=0,SellPrice=87,Texture=134304,EquipLoc="",Link="|cff9d9d9d|Hitem:537::::::::40:::::::|h[Dull Frenzy Scale]|h|r",Type="Miscellaneous"},["Rod of Helcular"]={SubType="Quest",Level=1,id=3710,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135471,Type="Quest",Link="|cffffffff|Hitem:3710::::::::40:::::::|h[Rod of Helcular]|h|r",EquipLoc=""},["[PH] Rising Dawn Gauntlets"]={SubType="Plate",Level=1,id=13734,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132963,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:13734::::::::40:::::::|h[[PH] Rising Dawn Gauntlets]|h|r"},["Scaled Leather Bracers"]={SubType="Leather",Level=29,id=9829,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1020,Texture=132602,Link="|cff1eff00|Hitem:9829::::::::40:::::::|h[Scaled Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Bracers of the Fallen Son"]={SubType="Leather",Level=88,id=21594,StackCount=1,Rarity=4,MinLevel=60,SellPrice=61930,Texture=132610,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:21594::::::::40:::::::|h[Bracers of the Fallen Son]|h|r"},["Small Leather Collar"]={SubType="Junk",Level=1,id=4813,StackCount=10,Rarity=0,MinLevel=0,SellPrice=33,Texture=133676,EquipLoc="",Link="|cff9d9d9d|Hitem:4813::::::::40:::::::|h[Small Leather Collar]|h|r",Type="Miscellaneous"},["Torn Fin Eye"]={SubType="Quest",Level=1,id=3510,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133884,EquipLoc="",Link="|cffffffff|Hitem:3510::::::::40:::::::|h[Torn Fin Eye]|h|r",Type="Quest"},["Great Axe"]={SubType="Two-Handed Axes",Level=44,id=2531,StackCount=1,Rarity=1,MinLevel=39,SellPrice=11233,Texture=135424,Link="|cffffffff|Hitem:2531::::::::40:::::::|h[Great Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Level 60 Test Gear Leather - Rogue"]={SubType="Junk",Level=1,id=13678,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13678::::::::40:::::::|h[Level 60 Test Gear Leather - Rogue]|h|r"},["Thistlefur Mantle"]={SubType="Cloth",Level=34,id=14201,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2060,Texture=135036,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14201::::::::40:::::::|h[Thistlefur Mantle]|h|r"},["Crystallized Girdle"]={SubType="Leather",Level=61,id=12606,StackCount=1,Rarity=3,MinLevel=56,SellPrice=12668,Texture=132499,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:12606::::::::40:::::::|h[Crystallized Girdle]|h|r"},["Iron Strut"]={SubType="Parts",Level=32,id=4387,StackCount=10,Rarity=1,MinLevel=0,SellPrice=400,Texture=135128,Type="Trade Goods",Link="|cffffffff|Hitem:4387::::::::40:::::::|h[Iron Strut]|h|r",EquipLoc=""},["Yeti Fur Cloak"]={SubType="Cloth",Level=34,id=2805,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2352,Texture=133756,Type="Armor",Link="|cff1eff00|Hitem:2805::::::::40:::::::|h[Yeti Fur Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Monster - Axe, Metal Blue Badass"]={SubType="One-Handed Axes",Level=1,id=14534,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14534::::::::40:::::::|h[Monster - Axe, Metal Blue Badass]|h|r"},["[PH] Leather Boots of the Brilliant Dawn"]={SubType="Leather",Level=100,id=13801,StackCount=1,Rarity=1,MinLevel=100,SellPrice=66624,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:13801::::::::40:::::::|h[[PH] Leather Boots of the Brilliant Dawn]|h|r"},["Bandolier of the Night Watch"]={SubType="Ammo Pouch",Level=25,id=3604,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=133636,Type="Quiver",EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:3604::::::::40:::::::|h[Bandolier of the Night Watch]|h|r"},["Kimbra Boots"]={SubType="Cloth",Level=23,id=6191,StackCount=1,Rarity=2,MinLevel=0,SellPrice=615,Texture=132539,Type="Armor",Link="|cff1eff00|Hitem:6191::::::::40:::::::|h[Kimbra Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Monster - Trident, Dark Ornate"]={SubType="Polearms",Level=1,id=15910,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135575,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:15910::::::::40:::::::|h[Monster - Trident, Dark Ornate]|h|r",Type="Weapon"},["Dragonmaw War Banner"]={SubType="Quest",Level=1,id=3337,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132484,Link="|cffffffff|Hitem:3337::::::::40:::::::|h[Dragonmaw War Banner]|h|r",EquipLoc="",Type="Quest"},["Thistlewood Dagger"]={SubType="Daggers",Level=5,id=5392,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=135641,EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:5392::::::::40:::::::|h[Thistlewood Dagger]|h|r",Type="Weapon"},["Icebane Bracers"]={SubType="Plate",Level=80,id=22671,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34452,Texture=132606,Link="|cffa335ee|Hitem:22671::::::::40:::::::|h[Icebane Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Tiny Bronze Key"]={SubType="Reagent",Level=18,id=5517,StackCount=10,Rarity=1,MinLevel=0,SellPrice=50,Texture=134239,EquipLoc="",Link="|cffffffff|Hitem:5517::::::::40:::::::|h[Tiny Bronze Key]|h|r",Type="Reagent"},["Soft Frenzy Flesh"]={SubType="Trade Goods",Level=15,id=5468,StackCount=10,Rarity=1,MinLevel=0,SellPrice=12,Texture=133890,EquipLoc="",Link="|cffffffff|Hitem:5468::::::::40:::::::|h[Soft Frenzy Flesh]|h|r",Type="Trade Goods"},["Warlord's Leather Breastplate"]={SubType="Leather",Level=74,id=16563,StackCount=1,Rarity=4,MinLevel=60,SellPrice=32959,Texture=132638,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16563::::::::40:::::::|h[Warlord's Leather Breastplate]|h|r",Type="Armor"},["Fast Test 1H Axe"]={SubType="One-Handed Axes",Level=60,id=5551,StackCount=1,Rarity=0,MinLevel=1,SellPrice=15885,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:5551::::::::40:::::::|h[Fast Test 1H Axe]|h|r"},["Tigule and Foror's Strawberry Ice Cream"]={SubType="Consumable",Level=25,id=7228,StackCount=20,Rarity=1,MinLevel=15,SellPrice=25,Texture=133987,EquipLoc="",Link="|cffffffff|Hitem:7228::::::::40:::::::|h[Tigule and Foror's Strawberry Ice Cream]|h|r",Type="Consumable"},["Blue Linen Vest"]={SubType="Cloth",Level=12,id=6240,StackCount=1,Rarity=2,MinLevel=7,SellPrice=161,Texture=132678,Link="|cff1eff00|Hitem:6240::::::::40:::::::|h[Blue Linen Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Cadet Belt"]={SubType="Mail",Level=12,id=9758,StackCount=1,Rarity=1,MinLevel=7,SellPrice=72,Texture=132506,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:9758::::::::40:::::::|h[Cadet Belt]|h|r"},["Blessed Sunfruit"]={SubType="Consumable",Level=55,id=13810,StackCount=20,Rarity=1,MinLevel=45,SellPrice=300,Texture=133997,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13810::::::::40:::::::|h[Blessed Sunfruit]|h|r"},["Bad Mojo Mask"]={SubType="Cloth",Level=49,id=9470,StackCount=1,Rarity=3,MinLevel=44,SellPrice=7858,Texture=132482,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:9470::::::::40:::::::|h[Bad Mojo Mask]|h|r"},["Raider's Belt"]={SubType="Mail",Level=18,id=9788,StackCount=1,Rarity=2,MinLevel=13,SellPrice=312,Texture=132500,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9788::::::::40:::::::|h[Raider's Belt]|h|r"},["Guide: Aspect of the Hawk VII"]={SubType="Book",Level=60,id=21307,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133734,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:21307::::::::40:::::::|h[Guide: Aspect of the Hawk VII]|h|r"},["Amulet of Grol"]={SubType="Quest",Level=1,id=10753,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133277,EquipLoc="",Link="|cffffffff|Hitem:10753::::::::40:::::::|h[Amulet of Grol]|h|r",Type="Quest"},["Raincaller Cuffs"]={SubType="Cloth",Level=28,id=14187,StackCount=1,Rarity=2,MinLevel=23,SellPrice=717,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14187::::::::40:::::::|h[Raincaller Cuffs]|h|r"},["Tidal Loop"]={SubType="Miscellaneous",Level=63,id=18398,StackCount=1,Rarity=3,MinLevel=0,SellPrice=27103,Texture=133352,Type="Armor",Link="|cff0070dd|Hitem:18398::::::::40:::::::|h[Tidal Loop]|h|r",EquipLoc="INVTYPE_FINGER"},["Overlord's Legplates"]={SubType="Plate",Level=50,id=10208,StackCount=1,Rarity=2,MinLevel=45,SellPrice=9586,Texture=134581,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10208::::::::40:::::::|h[Overlord's Legplates]|h|r",Type="Armor"},["Throwing Tomahawk"]={SubType="Thrown",Level=7,id=4959,StackCount=200,Rarity=1,MinLevel=0,SellPrice=1,Texture=135421,Link="|cffffffff|Hitem:4959::::::::40:::::::|h[Throwing Tomahawk]|h|r",EquipLoc="INVTYPE_THROWN",Type="Weapon"},["Great Rage Potion"]={SubType="Consumable",Level=35,id=5633,StackCount=5,Rarity=1,MinLevel=25,SellPrice=150,Texture=134801,Link="|cffffffff|Hitem:5633::::::::40:::::::|h[Great Rage Potion]|h|r",EquipLoc="",Type="Consumable"},["War Torn Greaves"]={SubType="Mail",Level=13,id=15481,StackCount=1,Rarity=1,MinLevel=8,SellPrice=127,Texture=132536,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:15481::::::::40:::::::|h[War Torn Greaves]|h|r",Type="Armor"},["Monster - Glaive - 2 Blade B03 Green"]={SubType="One-Handed Axes",Level=1,id=18293,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135131,Type="Weapon",Link="|cff9d9d9d|Hitem:18293::::::::40:::::::|h[Monster - Glaive - 2 Blade B03 Green]|h|r",EquipLoc="INVTYPE_WEAPON"},["Helm of the Pathfinder"]={SubType="Leather",Level=55,id=21317,StackCount=1,Rarity=2,MinLevel=0,SellPrice=11675,Texture=133078,Link="|cff1eff00|Hitem:21317::::::::40:::::::|h[Helm of the Pathfinder]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Golem Oil"]={SubType="Quest",Level=1,id=10511,StackCount=4,Rarity=1,MinLevel=0,SellPrice=0,Texture=134120,EquipLoc="",Link="|cffffffff|Hitem:10511::::::::40:::::::|h[Golem Oil]|h|r",Type="Quest"},["Severed Night Elf Head"]={SubType="Quest",Level=60,id=18142,StackCount=100,Rarity=1,MinLevel=1,SellPrice=0,Texture=134162,Type="Quest",Link="|cffffffff|Hitem:18142::::::::40:::::::|h[Severed Night Elf Head]|h|r",EquipLoc=""},["Sentry's Headdress"]={SubType="Mail",Level=31,id=15533,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2290,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15533::::::::40:::::::|h[Sentry's Headdress]|h|r",Type="Armor"},["Swift Flight Bracers"]={SubType="Mail",Level=62,id=18508,StackCount=1,Rarity=3,MinLevel=57,SellPrice=17194,Texture=132604,Type="Armor",Link="|cff0070dd|Hitem:18508::::::::40:::::::|h[Swift Flight Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Hallowed Letter"]={SubType="Quest",Level=1,id=9548,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9548::::::::40:::::::|h[Hallowed Letter]|h|r"},["Fast Test Generic"]={SubType="Miscellaneous",Level=1,id=5561,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133890,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:5561::::::::40:::::::|h[Fast Test Generic]|h|r",Type="Weapon"},["Celestial Stave"]={SubType="Staves",Level=40,id=9517,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15737,Texture=135151,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9517::::::::40:::::::|h[Celestial Stave]|h|r"},["Quagmire Galoshes"]={SubType="Mail",Level=25,id=10658,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1249,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10658::::::::40:::::::|h[Quagmire Galoshes]|h|r",Type="Armor"},["Black Whelp Gloves"]={SubType="Leather",Level=18,id=1302,StackCount=1,Rarity=2,MinLevel=0,SellPrice=262,Texture=132951,Type="Armor",Link="|cff1eff00|Hitem:1302::::::::40:::::::|h[Black Whelp Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Regal Sash"]={SubType="Cloth",Level=40,id=7476,StackCount=1,Rarity=2,MinLevel=35,SellPrice=2203,Texture=132497,Link="|cff1eff00|Hitem:7476::::::::40:::::::|h[Regal Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Deprecated Amulet of the Nightmare"]={SubType="Miscellaneous",Level=45,id=1125,StackCount=1,Rarity=1,MinLevel=40,SellPrice=37500,Texture=133279,Type="Armor",Link="|cffffffff|Hitem:1125::::::::40:::::::|h[Deprecated Amulet of the Nightmare]|h|r",EquipLoc="INVTYPE_NECK"},["Spiked Chain Leggings"]={SubType="Mail",Level=27,id=15521,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1942,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15521::::::::40:::::::|h[Spiked Chain Leggings]|h|r",Type="Armor"},["Level 45 Test Gear Cloth - Mage/Priest/Warlock"]={SubType="Junk",Level=1,id=13651,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13651::::::::40:::::::|h[Level 45 Test Gear Cloth - Mage/Priest/Warlock]|h|r"},["Sandworm Skin Gloves"]={SubType="Cloth",Level=63,id=20716,StackCount=1,Rarity=3,MinLevel=0,SellPrice=11225,Texture=132951,Link="|cff0070dd|Hitem:20716::::::::40:::::::|h[Sandworm Skin Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Stonefist Girdle"]={SubType="Mail",Level=36,id=6742,StackCount=1,Rarity=3,MinLevel=0,SellPrice=2830,Texture=132524,Link="|cff0070dd|Hitem:6742::::::::40:::::::|h[Stonefist Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Zombie Skin Bracers"]={SubType="Leather",Level=8,id=3435,StackCount=1,Rarity=1,MinLevel=0,SellPrice=19,Texture=132607,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3435::::::::40:::::::|h[Zombie Skin Bracers]|h|r",Type="Armor"},["Golden Mantle of the Dawn"]={SubType="Leather",Level=64,id=19058,StackCount=1,Rarity=3,MinLevel=59,SellPrice=21845,Texture=135057,Link="|cff0070dd|Hitem:19058::::::::40:::::::|h[Golden Mantle of the Dawn]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Shredder Operating Manual - Page 5"]={SubType="Junk",Level=1,id=16649,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:16649::::::::40:::::::|h[Shredder Operating Manual - Page 5]|h|r",Type="Miscellaneous"},["Monster - Shield, Kite Metal"]={SubType="Shields",Level=1,id=1984,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134950,Type="Armor",Link="|cff9d9d9d|Hitem:1984::::::::40:::::::|h[Monster - Shield, Kite Metal]|h|r",EquipLoc="INVTYPE_SHIELD"},["Libram: Seal of Might III"]={SubType="Book",Level=32,id=5671,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2500,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:5671::::::::40:::::::|h[Libram: Seal of Might III]|h|r",Type="Recipe"},["Blood Guard's Mail Greaves"]={SubType="Mail",Level=66,id=22857,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14751,Texture=132541,Link="|cff0070dd|Hitem:22857::::::::40:::::::|h[Blood Guard's Mail Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Monster - Sword, Horde Troll"]={SubType="One-Handed Swords",Level=1,id=17123,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135277,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:17123::::::::40:::::::|h[Monster - Sword, Horde Troll]|h|r",Type="Weapon"},["Steadfast Coronet"]={SubType="Mail",Level=42,id=15593,StackCount=1,Rarity=2,MinLevel=37,SellPrice=5532,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15593::::::::40:::::::|h[Steadfast Coronet]|h|r",Type="Armor"},["Corpse Harvester"]={SubType="One-Handed Axes",Level=55,id=15237,StackCount=1,Rarity=2,MinLevel=50,SellPrice=30526,Texture=132407,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15237::::::::40:::::::|h[Corpse Harvester]|h|r",Type="Weapon"},["Woodworking Gloves"]={SubType="Leather",Level=18,id=1945,StackCount=1,Rarity=2,MinLevel=13,SellPrice=267,Texture=132955,Link="|cff1eff00|Hitem:1945::::::::40:::::::|h[Woodworking Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Banded Shield"]={SubType="Shields",Level=33,id=9843,StackCount=1,Rarity=2,MinLevel=28,SellPrice=3739,Texture=134955,Link="|cff1eff00|Hitem:9843::::::::40:::::::|h[Banded Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Tablet of Molten Blast II"]={SubType="Book",Level=14,id=1053,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1053::::::::40:::::::|h[Tablet of Molten Blast II]|h|r"},["The Minotaur"]={SubType="Two-Handed Axes",Level=49,id=9481,StackCount=1,Rarity=3,MinLevel=44,SellPrice=34067,Texture=132394,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9481::::::::40:::::::|h[The Minotaur]|h|r"},["Ebonhold Cloak"]={SubType="Cloth",Level=51,id=8266,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7468,Texture=133757,Link="|cff1eff00|Hitem:8266::::::::40:::::::|h[Ebonhold Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Slayer's Battle Axe"]={SubType="Two-Handed Axes",Level=25,id=1461,StackCount=1,Rarity=2,MinLevel=20,SellPrice=3387,Texture=135424,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1461::::::::40:::::::|h[Slayer's Battle Axe]|h|r"},["Monster - Staff, Feathered Invert - Glow Black High"]={SubType="Staves",Level=1,id=13720,StackCount=1,Rarity=0,MinLevel=0,SellPrice=2,Texture=135225,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13720::::::::40:::::::|h[Monster - Staff, Feathered Invert - Glow Black High]|h|r"},["Hellslayer Battle Axe"]={SubType="Two-Handed Axes",Level=40,id=13017,StackCount=1,Rarity=3,MinLevel=35,SellPrice=17209,Texture=132418,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13017::::::::40:::::::|h[Hellslayer Battle Axe]|h|r"},["Worgen Fang"]={SubType="Quest",Level=1,id=896,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,Type="Quest",Link="|cffffffff|Hitem:896::::::::40:::::::|h[Worgen Fang]|h|r",EquipLoc=""},["Vibroblade"]={SubType="One-Handed Axes",Level=30,id=9485,StackCount=1,Rarity=3,MinLevel=25,SellPrice=5288,Texture=132405,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9485::::::::40:::::::|h[Vibroblade]|h|r"},["Timolain's Phylactery"]={SubType="Quest",Level=50,id=15886,StackCount=1,Rarity=1,MinLevel=50,SellPrice=0,Texture=134134,EquipLoc="",Link="|cffffffff|Hitem:15886::::::::40:::::::|h[Timolain's Phylactery]|h|r",Type="Quest"},["Heavy Brown Bag"]={SubType="Bag",Level=25,id=4497,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=133639,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:4497::::::::40:::::::|h[Heavy Brown Bag]|h|r",Type="Container"},["Emberscale Cape"]={SubType="Cloth",Level=46,id=11311,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5110,Texture=133760,Type="Armor",Link="|cff1eff00|Hitem:11311::::::::40:::::::|h[Emberscale Cape]|h|r",EquipLoc="INVTYPE_CLOAK"},["Codex of Resurrection"]={SubType="Book",Level=10,id=1090,StackCount=1,Rarity=1,MinLevel=10,SellPrice=75,Texture=133741,Type="Recipe",Link="|cffffffff|Hitem:1090::::::::40:::::::|h[Codex of Resurrection]|h|r",EquipLoc=""},["Deprecated Prospector's Pick"]={SubType="One-Handed Axes",Level=7,id=4730,StackCount=1,Rarity=0,MinLevel=2,SellPrice=9,Texture=134707,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:4730::::::::40:::::::|h[Deprecated Prospector's Pick]|h|r",Type="Weapon"},["Signet of Beckoning: Fire"]={SubType="Junk",Level=1,id=20432,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134457,Link="|cffffffff|Hitem:20432::::::::40:::::::|h[Signet of Beckoning: Fire]|h|r",EquipLoc="",Type="Miscellaneous"},["Recipe: Mystery Stew"]={SubType="Cooking",Level=35,id=12233,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12233::::::::40:::::::|h[Recipe: Mystery Stew]|h|r"},["Searing Totem Scroll"]={SubType="Quest",Level=10,id=6649,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Link="|cffffffff|Hitem:6649::::::::40:::::::|h[Searing Totem Scroll]|h|r",EquipLoc="",Type="Quest"},["Magebane Scion"]={SubType="Miscellaneous",Level=60,id=15857,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15335,Texture=135148,EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:15857::::::::40:::::::|h[Magebane Scion]|h|r",Type="Armor"},["[PH] Greater Arcane Amalgamation (STR/FR)"]={SubType="Quest",Level=50,id=11667,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=134094,Type="Quest",Link="|cff0070dd|Hitem:11667::::::::40:::::::|h[[PH] Greater Arcane Amalgamation (STR/FR)]|h|r",EquipLoc=""},["Impenetrable Legguards"]={SubType="Mail",Level=60,id=15665,StackCount=1,Rarity=2,MinLevel=55,SellPrice=25520,Texture=134581,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15665::::::::40:::::::|h[Impenetrable Legguards]|h|r",Type="Armor"},["Codex of Prayer of Healing IV"]={SubType="Book",Level=60,id=9032,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133741,Link="|cffffffff|Hitem:9032::::::::40:::::::|h[Codex of Prayer of Healing IV]|h|r",EquipLoc="",Type="Recipe"},["Pattern: Wicked Leather Bracers"]={SubType="Leatherworking",Level=53,id=15728,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15728::::::::40:::::::|h[Pattern: Wicked Leather Bracers]|h|r",Type="Recipe"},["Efflorescent Robe"]={SubType="Cloth",Level=28,id=7334,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1544,Texture=132651,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:7334::::::::40:::::::|h[Efflorescent Robe]|h|r",Type="Armor"},["Dreamwalker Armor"]={SubType="Mail",Level=62,id=13123,StackCount=1,Rarity=3,MinLevel=57,SellPrice=33387,Texture=132628,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:13123::::::::40:::::::|h[Dreamwalker Armor]|h|r"},["Pattern: Blue Linen Vest"]={SubType="Tailoring",Level=12,id=6270,StackCount=1,Rarity=1,MinLevel=0,SellPrice=50,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:6270::::::::40:::::::|h[Pattern: Blue Linen Vest]|h|r",EquipLoc=""},["Dinosaur Bone"]={SubType="Quest",Level=1,id=11114,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133718,Type="Quest",Link="|cffffffff|Hitem:11114::::::::40:::::::|h[Dinosaur Bone]|h|r",EquipLoc=""},["Brightcloth Gloves"]={SubType="Cloth",Level=54,id=14101,StackCount=1,Rarity=2,MinLevel=49,SellPrice=6066,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14101::::::::40:::::::|h[Brightcloth Gloves]|h|r"},["Pratt's Handcrafted Boots"]={SubType="Leather",Level=45,id=9630,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5780,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9630::::::::40:::::::|h[Pratt's Handcrafted Boots]|h|r"},["Spellpower Goggles Xtreme Plus"]={SubType="Cloth",Level=54,id=15999,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9002,Texture=133149,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15999::::::::40:::::::|h[Spellpower Goggles Xtreme Plus]|h|r",Type="Armor"},["Zandalar Madcap's Mantle"]={SubType="Leather",Level=61,id=19835,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=135060,Link="|cffa335ee|Hitem:19835::::::::40:::::::|h[Zandalar Madcap's Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Elixir of Pain"]={SubType="Quest",Level=1,id=3497,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134799,Type="Quest",Link="|cffffffff|Hitem:3497::::::::40:::::::|h[Elixir of Pain]|h|r",EquipLoc=""},["Familiar Hide"]={SubType="Junk",Level=1,id=3722,StackCount=5,Rarity=0,MinLevel=0,SellPrice=213,Texture=134367,EquipLoc="",Link="|cff9d9d9d|Hitem:3722::::::::40:::::::|h[Familiar Hide]|h|r",Type="Miscellaneous"},["Minor Rejuvenation Potion"]={SubType="Consumable",Level=15,id=2456,StackCount=5,Rarity=1,MinLevel=5,SellPrice=15,Texture=134713,Link="|cffffffff|Hitem:2456::::::::40:::::::|h[Minor Rejuvenation Potion]|h|r",EquipLoc="",Type="Consumable"},["Tablet of Fire Resistance Totem"]={SubType="Book",Level=18,id=9075,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9075::::::::40:::::::|h[Tablet of Fire Resistance Totem]|h|r"},["Iron Shaft"]={SubType="Quest",Level=1,id=5464,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135138,Link="|cffffffff|Hitem:5464::::::::40:::::::|h[Iron Shaft]|h|r",EquipLoc="",Type="Quest"},["Sentinel Musket"]={SubType="Guns",Level=43,id=4026,StackCount=1,Rarity=0,MinLevel=38,SellPrice=4362,Texture=135610,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:4026::::::::40:::::::|h[Sentinel Musket]|h|r"},["Tapped Dowsing Widget"]={SubType="Quest",Level=0,id=8585,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134853,Link="|cffffffff|Hitem:8585::::::::40:::::::|h[Tapped Dowsing Widget]|h|r",EquipLoc="",Type="Quest"},["Plans: Imperial Plate Leggings"]={SubType="Blacksmithing",Level=61,id=12715,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12715::::::::40:::::::|h[Plans: Imperial Plate Leggings]|h|r"},["Tree Frog Box"]={SubType="Junk",Level=35,id=11026,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=132762,Type="Miscellaneous",Link="|cffffffff|Hitem:11026::::::::40:::::::|h[Tree Frog Box]|h|r",EquipLoc=""},["Signed Field Duty Papers"]={SubType="Quest",Level=1,id=20810,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:20810::::::::40:::::::|h[Signed Field Duty Papers]|h|r",EquipLoc="",Type="Quest"},["Pattern: Deviate Scale Belt"]={SubType="Leatherworking",Level=23,id=6476,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:6476::::::::40:::::::|h[Pattern: Deviate Scale Belt]|h|r",EquipLoc=""},["Stormpike Banner"]={SubType="Quest",Level=1,id=17849,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132483,EquipLoc="",Link="|cffffffff|Hitem:17849::::::::40:::::::|h[Stormpike Banner]|h|r",Type="Quest"},["Deprecated Libram: Seal of Fury"]={SubType="Book",Level=32,id=4163,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2500,Texture=133740,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4163::::::::40:::::::|h[Deprecated Libram: Seal of Fury]|h|r"},["[PH] Mail Chestguard of the Brilliant Dawn"]={SubType="Mail",Level=100,id=13768,StackCount=1,Rarity=1,MinLevel=100,SellPrice=109330,Texture=132628,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13768::::::::40:::::::|h[[PH] Mail Chestguard of the Brilliant Dawn]|h|r"},["Warsong Axe Shipment"]={SubType="Quest",Level=1,id=16745,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,EquipLoc="",Link="|cffffffff|Hitem:16745::::::::40:::::::|h[Warsong Axe Shipment]|h|r",Type="Quest"},["Bath'rah's Parchment"]={SubType="Consumable",Level=1,id=6929,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Link="|cffffffff|Hitem:6929::::::::40:::::::|h[Bath'rah's Parchment]|h|r",EquipLoc="",Type="Consumable"},["Inscribed Leather Boots"]={SubType="Leather",Level=18,id=2987,StackCount=1,Rarity=2,MinLevel=13,SellPrice=408,Texture=132539,Type="Armor",Link="|cff1eff00|Hitem:2987::::::::40:::::::|h[Inscribed Leather Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Golden Scale Coif"]={SubType="Mail",Level=38,id=3837,StackCount=1,Rarity=2,MinLevel=33,SellPrice=4405,Texture=133138,Type="Armor",Link="|cff1eff00|Hitem:3837::::::::40:::::::|h[Golden Scale Coif]|h|r",EquipLoc="INVTYPE_HEAD"},["Staff of the Shade"]={SubType="Staves",Level=27,id=2549,StackCount=1,Rarity=3,MinLevel=22,SellPrice=5016,Texture=135162,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:2549::::::::40:::::::|h[Staff of the Shade]|h|r",Type="Weapon"},["Plans: Arcanite Champion"]={SubType="Blacksmithing",Level=63,id=12834,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12834::::::::40:::::::|h[Plans: Arcanite Champion]|h|r"},["Pledge of Adoration: Darnassus"]={SubType="Consumable",Level=1,id=22155,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135450,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22155::::::::40:::::::|h[Pledge of Adoration: Darnassus]|h|r"},["Twill Cloak"]={SubType="Cloth",Level=52,id=3947,StackCount=1,Rarity=0,MinLevel=47,SellPrice=3258,Texture=133766,Link="|cff9d9d9d|Hitem:3947::::::::40:::::::|h[Twill Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Plaguebat Fur Gloves"]={SubType="Leather",Level=58,id=18744,StackCount=1,Rarity=3,MinLevel=53,SellPrice=11371,Texture=132952,Type="Armor",Link="|cff0070dd|Hitem:18744::::::::40:::::::|h[Plaguebat Fur Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Deprecated Jungle Stalker Tail"]={SubType="Quest",Level=1,id=1699,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134413,EquipLoc="",Link="|cffffffff|Hitem:1699::::::::40:::::::|h[Deprecated Jungle Stalker Tail]|h|r",Type="Quest"},["Torturing Poker"]={SubType="Daggers",Level=34,id=7682,StackCount=1,Rarity=3,MinLevel=29,SellPrice=7678,Texture=135124,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:7682::::::::40:::::::|h[Torturing Poker]|h|r",Type="Weapon"},["Highlander's Lizardhide Girdle"]={SubType="Leather",Level=63,id=20046,StackCount=1,Rarity=3,MinLevel=58,SellPrice=14836,Texture=132506,Link="|cff0070dd|Hitem:20046::::::::40:::::::|h[Highlander's Lizardhide Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Truesilver Champion"]={SubType="Two-Handed Swords",Level=52,id=7960,StackCount=1,Rarity=3,MinLevel=47,SellPrice=38548,Texture=135317,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:7960::::::::40:::::::|h[Truesilver Champion]|h|r",Type="Weapon"},["Codex of Holy Protection"]={SubType="Book",Level=30,id=4272,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4272::::::::40:::::::|h[Codex of Holy Protection]|h|r"},["Jordan's Weapon Notes"]={SubType="Quest",Level=1,id=6996,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133457,Link="|cffffffff|Hitem:6996::::::::40:::::::|h[Jordan's Weapon Notes]|h|r",EquipLoc="",Type="Quest"},["Pattern: Red Woolen Boots"]={SubType="Tailoring",Level=19,id=4345,StackCount=1,Rarity=2,MinLevel=0,SellPrice=100,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:4345::::::::40:::::::|h[Pattern: Red Woolen Boots]|h|r",Type="Recipe"},["Swift Yellow Mechanostrider"]={SubType="Junk",Level=60,id=18774,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132247,Type="Miscellaneous",Link="|cffa335ee|Hitem:18774::::::::40:::::::|h[Swift Yellow Mechanostrider]|h|r",EquipLoc=""},["Shadowcraft Bracers"]={SubType="Leather",Level=57,id=16710,StackCount=1,Rarity=3,MinLevel=52,SellPrice=10446,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16710::::::::40:::::::|h[Shadowcraft Bracers]|h|r",Type="Armor"},["Grimoire of Pestilence"]={SubType="Book",Level=14,id=4211,StackCount=1,Rarity=1,MinLevel=14,SellPrice=325,Texture=133738,Link="|cffffffff|Hitem:4211::::::::40:::::::|h[Grimoire of Pestilence]|h|r",EquipLoc="",Type="Recipe"},["Free Action Potion"]={SubType="Consumable",Level=30,id=5634,StackCount=5,Rarity=1,MinLevel=20,SellPrice=75,Texture=134715,Link="|cffffffff|Hitem:5634::::::::40:::::::|h[Free Action Potion]|h|r",EquipLoc="",Type="Consumable"},["Monster - Item, Bucket - Metal Dirty Offhand"]={SubType="Miscellaneous",Level=1,id=13605,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134718,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13605::::::::40:::::::|h[Monster - Item, Bucket - Metal Dirty Offhand]|h|r"},["Sentry's Shoulderguards"]={SubType="Mail",Level=30,id=15531,StackCount=1,Rarity=2,MinLevel=25,SellPrice=2076,Texture=135040,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15531::::::::40:::::::|h[Sentry's Shoulderguards]|h|r",Type="Armor"},["Lumbering Ogre Axe"]={SubType="Two-Handed Axes",Level=44,id=1521,StackCount=1,Rarity=2,MinLevel=39,SellPrice=19205,Texture=132409,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1521::::::::40:::::::|h[Lumbering Ogre Axe]|h|r",Type="Weapon"},["Novice's Robe"]={SubType="Cloth",Level=1,id=6123,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=132675,Link="|cff9d9d9d|Hitem:6123::::::::40:::::::|h[Novice's Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Supreme Bracers"]={SubType="Leather",Level=60,id=15436,StackCount=1,Rarity=2,MinLevel=55,SellPrice=10519,Texture=132614,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15436::::::::40:::::::|h[Supreme Bracers]|h|r",Type="Armor"},["Codex of Holy Smite IV"]={SubType="Book",Level=22,id=3120,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133741,Link="|cffffffff|Hitem:3120::::::::40:::::::|h[Codex of Holy Smite IV]|h|r",EquipLoc="",Type="Recipe"},["Grinning Axe"]={SubType="Two-Handed Axes",Level=49,id=1639,StackCount=1,Rarity=2,MinLevel=44,SellPrice=28460,Texture=132395,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1639::::::::40:::::::|h[Grinning Axe]|h|r",Type="Weapon"},["Ironfeather"]={SubType="Reagent",Level=50,id=15420,StackCount=50,Rarity=1,MinLevel=0,SellPrice=100,Texture=132918,EquipLoc="",Link="|cffffffff|Hitem:15420::::::::40:::::::|h[Ironfeather]|h|r",Type="Reagent"},["Nemesis Belt"]={SubType="Cloth",Level=76,id=16933,StackCount=1,Rarity=4,MinLevel=60,SellPrice=28106,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16933::::::::40:::::::|h[Nemesis Belt]|h|r",Type="Armor"},["Tablet of Grace of Air Totem"]={SubType="Book",Level=42,id=9125,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=134459,Link="|cffffffff|Hitem:9125::::::::40:::::::|h[Tablet of Grace of Air Totem]|h|r",EquipLoc="",Type="Recipe"},["Lunar Belt"]={SubType="Cloth",Level=42,id=14255,StackCount=1,Rarity=2,MinLevel=36,SellPrice=2628,Texture=132497,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14255::::::::40:::::::|h[Lunar Belt]|h|r"},["Cloak of Suturing"]={SubType="Cloth",Level=83,id=22960,StackCount=1,Rarity=4,MinLevel=60,SellPrice=62091,Texture=133776,Link="|cffa335ee|Hitem:22960::::::::40:::::::|h[Cloak of Suturing]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Lunar Slippers"]={SubType="Cloth",Level=42,id=14250,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3872,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14250::::::::40:::::::|h[Lunar Slippers]|h|r"},["Rainbow Fin Albacore"]={SubType="Consumable",Level=15,id=5095,StackCount=20,Rarity=1,MinLevel=5,SellPrice=3,Texture=133913,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5095::::::::40:::::::|h[Rainbow Fin Albacore]|h|r"},["Lunar Festival Fireworks Pack"]={SubType="Junk",Level=1,id=21640,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132595,Link="|cffffffff|Hitem:21640::::::::40:::::::|h[Lunar Festival Fireworks Pack]|h|r",EquipLoc="",Type="Miscellaneous"},["Grimoire of Soul Funnel II"]={SubType="Book",Level=20,id=4199,StackCount=1,Rarity=1,MinLevel=20,SellPrice=750,Texture=133738,Type="Recipe",Link="|cffffffff|Hitem:4199::::::::40:::::::|h[Grimoire of Soul Funnel II]|h|r",EquipLoc=""},["Alchemists' Stone"]={SubType="Trade Goods",Level=60,id=13503,StackCount=1,Rarity=4,MinLevel=0,SellPrice=25000,Texture=134334,Type="Trade Goods",EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:13503::::::::40:::::::|h[Alchemists' Stone]|h|r"},["Scrimshaw Dagger"]={SubType="Daggers",Level=18,id=2089,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1113,Texture=135637,Link="|cff1eff00|Hitem:2089::::::::40:::::::|h[Scrimshaw Dagger]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Clear Crystal Rod"]={SubType="Staves",Level=21,id=16894,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1993,Texture=135469,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:16894::::::::40:::::::|h[Clear Crystal Rod]|h|r",Type="Weapon"},["Level 35 Test Gear Mail - Paladin/Warrior"]={SubType="Junk",Level=1,id=13659,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13659::::::::40:::::::|h[Level 35 Test Gear Mail - Paladin/Warrior]|h|r"},["Fire Protection Potion"]={SubType="Consumable",Level=33,id=6049,StackCount=5,Rarity=1,MinLevel=23,SellPrice=170,Texture=134787,Type="Consumable",Link="|cffffffff|Hitem:6049::::::::40:::::::|h[Fire Protection Potion]|h|r",EquipLoc=""},["Opulent Scepter"]={SubType="Miscellaneous",Level=56,id=15984,StackCount=1,Rarity=2,MinLevel=51,SellPrice=9614,Texture=135144,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15984::::::::40:::::::|h[Opulent Scepter]|h|r",Type="Armor"},["Saltstone Shield"]={SubType="Shields",Level=41,id=14902,StackCount=1,Rarity=2,MinLevel=36,SellPrice=7482,Texture=134958,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14902::::::::40:::::::|h[Saltstone Shield]|h|r"},["Loose Chain Pants"]={SubType="Mail",Level=8,id=2646,StackCount=1,Rarity=0,MinLevel=3,SellPrice=31,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:2646::::::::40:::::::|h[Loose Chain Pants]|h|r",Type="Armor"},["Heavy Copper Maul"]={SubType="Two-Handed Maces",Level=16,id=6214,StackCount=1,Rarity=1,MinLevel=11,SellPrice=595,Texture=133055,Type="Weapon",Link="|cffffffff|Hitem:6214::::::::40:::::::|h[Heavy Copper Maul]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Ravager's Mantle"]={SubType="Mail",Level=43,id=14776,StackCount=1,Rarity=2,MinLevel=38,SellPrice=6326,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14776::::::::40:::::::|h[Ravager's Mantle]|h|r"},["Zandalar Confessor's Wraps"]={SubType="Cloth",Level=61,id=19843,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132606,Link="|cffa335ee|Hitem:19843::::::::40:::::::|h[Zandalar Confessor's Wraps]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Silk-threaded Trousers"]={SubType="Cloth",Level=18,id=1929,StackCount=1,Rarity=2,MinLevel=13,SellPrice=434,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:1929::::::::40:::::::|h[Silk-threaded Trousers]|h|r"},["Tunneler's Boots"]={SubType="Mail",Level=18,id=2037,StackCount=1,Rarity=2,MinLevel=0,SellPrice=469,Texture=132535,Link="|cff1eff00|Hitem:2037::::::::40:::::::|h[Tunneler's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Raw Mithril Head Trout"]={SubType="Consumable",Level=35,id=8365,StackCount=20,Rarity=1,MinLevel=25,SellPrice=4,Texture=133888,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8365::::::::40:::::::|h[Raw Mithril Head Trout]|h|r"},["Stag Meat"]={SubType="Trade Goods",Level=23,id=5471,StackCount=10,Rarity=1,MinLevel=0,SellPrice=30,Texture=134370,EquipLoc="",Link="|cffffffff|Hitem:5471::::::::40:::::::|h[Stag Meat]|h|r",Type="Trade Goods"},["Houndmaster's Rifle"]={SubType="Guns",Level=53,id=11629,StackCount=1,Rarity=3,MinLevel=48,SellPrice=24527,Texture=135616,Type="Weapon",Link="|cff0070dd|Hitem:11629::::::::40:::::::|h[Houndmaster's Rifle]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Tablet of Flame Shock III"]={SubType="Book",Level=28,id=9074,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=134459,Link="|cffffffff|Hitem:9074::::::::40:::::::|h[Tablet of Flame Shock III]|h|r",EquipLoc="",Type="Recipe"},["Parker's Lunch"]={SubType="Quest",Level=1,id=5534,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133974,EquipLoc="",Link="|cffffffff|Hitem:5534::::::::40:::::::|h[Parker's Lunch]|h|r",Type="Quest"},["Monster - Item, Bag - Gray"]={SubType="Miscellaneous",Level=1,id=12852,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133639,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12852::::::::40:::::::|h[Monster - Item, Bag - Gray]|h|r"},["Deprecated Tower of Althalaxx Key"]={SubType="Quest",Level=1,id=5384,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134236,EquipLoc="",Link="|cffffffff|Hitem:5384::::::::40:::::::|h[Deprecated Tower of Althalaxx Key]|h|r",Type="Quest"},["Light Quiver"]={SubType="Quiver",Level=1,id=2101,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134409,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:2101::::::::40:::::::|h[Light Quiver]|h|r",Type="Quiver"},["Deprecated Forest Leather Helm"]={SubType="Leather",Level=26,id=3059,StackCount=1,Rarity=0,MinLevel=21,SellPrice=464,Texture=133071,EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:3059::::::::40:::::::|h[Deprecated Forest Leather Helm]|h|r",Type="Armor"},["Large White Rocket Cluster"]={SubType="Consumable",Level=1,id=21719,StackCount=20,Rarity=1,MinLevel=0,SellPrice=50,Texture=134280,Link="|cffffffff|Hitem:21719::::::::40:::::::|h[Large White Rocket Cluster]|h|r",EquipLoc="",Type="Consumable"},["Codex of Holy Smite II"]={SubType="Book",Level=6,id=1091,StackCount=1,Rarity=1,MinLevel=6,SellPrice=20,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1091::::::::40:::::::|h[Codex of Holy Smite II]|h|r"},["Hunting Quiver"]={SubType="Quiver",Level=15,id=3573,StackCount=1,Rarity=1,MinLevel=0,SellPrice=212,Texture=134403,Type="Quiver",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:3573::::::::40:::::::|h[Hunting Quiver]|h|r"},["Deathdealer's Vest"]={SubType="Leather",Level=88,id=21364,StackCount=1,Rarity=4,MinLevel=60,SellPrice=134962,Texture=132723,Link="|cffa335ee|Hitem:21364::::::::40:::::::|h[Deathdealer's Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Deepfury's Orders"]={SubType="Quest",Level=1,id=4429,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Type="Quest",Link="|cffffffff|Hitem:4429::::::::40:::::::|h[Deepfury's Orders]|h|r",EquipLoc=""},["Instant Poison II"]={SubType="Consumable",Level=28,id=6949,StackCount=20,Rarity=1,MinLevel=28,SellPrice=20,Texture=132273,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6949::::::::40:::::::|h[Instant Poison II]|h|r"},["Lead Ore"]={SubType="Junk",Level=30,id=9261,StackCount=10,Rarity=0,MinLevel=0,SellPrice=250,Texture=134579,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:9261::::::::40:::::::|h[Lead Ore]|h|r"},["Heart of Flame"]={SubType="Quest",Level=1,id=10509,StackCount=4,Rarity=1,MinLevel=0,SellPrice=0,Texture=134085,EquipLoc="",Link="|cffffffff|Hitem:10509::::::::40:::::::|h[Heart of Flame]|h|r",Type="Quest"},["Lightforge Belt"]={SubType="Plate",Level=58,id=16723,StackCount=1,Rarity=3,MinLevel=53,SellPrice=8625,Texture=132500,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16723::::::::40:::::::|h[Lightforge Belt]|h|r",Type="Armor"},["Monster - Mace2H, Unstoppable Force"]={SubType="Two-Handed Maces",Level=1,id=22346,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,Link="|cff9d9d9d|Hitem:22346::::::::40:::::::|h[Monster - Mace2H, Unstoppable Force]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Master Ryson's All Seeing Eye"]={SubType="Quest",Level=1,id=17354,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136206,EquipLoc="",Link="|cffffffff|Hitem:17354::::::::40:::::::|h[Master Ryson's All Seeing Eye]|h|r",Type="Quest"},["Pattern: Icy Cloak"]={SubType="Tailoring",Level=40,id=4355,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4355::::::::40:::::::|h[Pattern: Icy Cloak]|h|r"},["Steelsnap's Rib"]={SubType="Quest",Level=1,id=5837,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133719,EquipLoc="",Link="|cffffffff|Hitem:5837::::::::40:::::::|h[Steelsnap's Rib]|h|r",Type="Quest"},["Pitted Defias Shortsword"]={SubType="One-Handed Swords",Level=4,id=2057,StackCount=1,Rarity=1,MinLevel=1,SellPrice=16,Texture=135274,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2057::::::::40:::::::|h[Pitted Defias Shortsword]|h|r",Type="Weapon"},["Valconian Sash"]={SubType="Cloth",Level=58,id=12083,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7348,Texture=132500,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:12083::::::::40:::::::|h[Valconian Sash]|h|r"},["Insignia Boots"]={SubType="Leather",Level=34,id=4055,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2481,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:4055::::::::40:::::::|h[Insignia Boots]|h|r"},["Champion's Dragonhide Headguard"]={SubType="Leather",Level=71,id=23253,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15438,Texture=133077,Link="|cff0070dd|Hitem:23253::::::::40:::::::|h[Champion's Dragonhide Headguard]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Tome of Chains of Ice II"]={SubType="Book",Level=30,id=1004,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2000,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:1004::::::::40:::::::|h[Tome of Chains of Ice II]|h|r",Type="Recipe"},["Sorcerer Robe"]={SubType="Cloth",Level=43,id=9884,StackCount=1,Rarity=2,MinLevel=38,SellPrice=5448,Texture=132664,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:9884::::::::40:::::::|h[Sorcerer Robe]|h|r"},["Topaz Ring"]={SubType="Miscellaneous",Level=49,id=11975,StackCount=1,Rarity=2,MinLevel=44,SellPrice=4739,Texture=133349,Type="Armor",Link="|cff1eff00|Hitem:11975::::::::40:::::::|h[Topaz Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Wooden Warhammer"]={SubType="Two-Handed Maces",Level=9,id=2501,StackCount=1,Rarity=1,MinLevel=4,SellPrice=144,Texture=133052,Type="Weapon",Link="|cffffffff|Hitem:2501::::::::40:::::::|h[Wooden Warhammer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Idol of Ferocity"]={SubType="Idols",Level=57,id=22397,StackCount=1,Rarity=3,MinLevel=52,SellPrice=13067,Texture=134912,Link="|cff0070dd|Hitem:22397::::::::40:::::::|h[Idol of Ferocity]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Mighty Boots"]={SubType="Leather",Level=61,id=10146,StackCount=1,Rarity=2,MinLevel=56,SellPrice=16194,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10146::::::::40:::::::|h[Mighty Boots]|h|r",Type="Armor"},["Bronze Lotterybox"]={SubType="Junk",Level=20,id=8502,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=132594,Link="|cff1eff00|Hitem:8502::::::::40:::::::|h[Bronze Lotterybox]|h|r",EquipLoc="",Type="Miscellaneous"},["Fortified Chain"]={SubType="Mail",Level=25,id=9818,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1682,Texture=132624,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9818::::::::40:::::::|h[Fortified Chain]|h|r"},["Silksand Legwraps"]={SubType="Cloth",Level=42,id=14424,StackCount=1,Rarity=2,MinLevel=37,SellPrice=5316,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14424::::::::40:::::::|h[Silksand Legwraps]|h|r"},["Bard's Trousers"]={SubType="Leather",Level=18,id=6553,StackCount=1,Rarity=2,MinLevel=13,SellPrice=525,Texture=134586,Link="|cff1eff00|Hitem:6553::::::::40:::::::|h[Bard's Trousers]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Pattern: Brightcloth Pants"]={SubType="Tailoring",Level=58,id=14494,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14494::::::::40:::::::|h[Pattern: Brightcloth Pants]|h|r"},["Smokey's Lighter"]={SubType="Miscellaneous",Level=61,id=13171,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7000,Texture=135825,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:13171::::::::40:::::::|h[Smokey's Lighter]|h|r"},["Arcane Orb"]={SubType="Miscellaneous",Level=10,id=7507,StackCount=1,Rarity=2,MinLevel=0,SellPrice=400,Texture=134333,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:7507::::::::40:::::::|h[Arcane Orb]|h|r",Type="Armor"},["Wand of the Whispering Dead"]={SubType="Wands",Level=83,id=23009,StackCount=1,Rarity=4,MinLevel=60,SellPrice=148994,Texture=135481,Link="|cffa335ee|Hitem:23009::::::::40:::::::|h[Wand of the Whispering Dead]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Demon Box"]={SubType="Quest",Level=1,id=13542,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132594,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13542::::::::40:::::::|h[Demon Box]|h|r"},["Altered Black Dragonflight Molt"]={SubType="Quest",Level=1,id=11231,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134430,Type="Quest",Link="|cffffffff|Hitem:11231::::::::40:::::::|h[Altered Black Dragonflight Molt]|h|r",EquipLoc=""},["Basilisk Brain"]={SubType="Quest",Level=1,id=8394,StackCount=20,Rarity=1,MinLevel=1,SellPrice=0,Texture=134340,Link="|cffffffff|Hitem:8394::::::::40:::::::|h[Basilisk Brain]|h|r",EquipLoc="",Type="Quest"},["Flesh Carver"]={SubType="One-Handed Axes",Level=23,id=4445,StackCount=1,Rarity=2,MinLevel=18,SellPrice=2068,Texture=132407,Type="Weapon",Link="|cff1eff00|Hitem:4445::::::::40:::::::|h[Flesh Carver]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Tablet of Unyielding Will III"]={SubType="Book",Level=38,id=4182,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4250,Texture=134459,Type="Recipe",Link="|cffffffff|Hitem:4182::::::::40:::::::|h[Tablet of Unyielding Will III]|h|r",EquipLoc=""},["Lord's Pauldrons"]={SubType="Mail",Level=52,id=10085,StackCount=1,Rarity=2,MinLevel=47,SellPrice=11529,Texture=135061,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10085::::::::40:::::::|h[Lord's Pauldrons]|h|r",Type="Armor"},["Giant Silver Vein"]={SubType="Consumable",Level=1,id=11405,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134580,Type="Consumable",Link="|cffffffff|Hitem:11405::::::::40:::::::|h[Giant Silver Vein]|h|r",EquipLoc=""},["Bold Yellow Shirt"]={SubType="Miscellaneous",Level=30,id=3426,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=135031,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:3426::::::::40:::::::|h[Bold Yellow Shirt]|h|r",Type="Armor"},["Gypsy Sandals"]={SubType="Leather",Level=12,id=9751,StackCount=1,Rarity=1,MinLevel=7,SellPrice=86,Texture=132579,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:9751::::::::40:::::::|h[Gypsy Sandals]|h|r"},["Deprecated Hands of the New Moon"]={SubType="Leather",Level=12,id=5294,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:5294::::::::40:::::::|h[Deprecated Hands of the New Moon]|h|r",Type="Armor"},["Demonshear"]={SubType="Two-Handed Swords",Level=63,id=13348,StackCount=1,Rarity=3,MinLevel=58,SellPrice=72770,Texture=135312,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13348::::::::40:::::::|h[Demonshear]|h|r"},["Ring of Spell Power"]={SubType="Miscellaneous",Level=66,id=19147,StackCount=1,Rarity=4,MinLevel=60,SellPrice=91453,Texture=133380,Link="|cffa335ee|Hitem:19147::::::::40:::::::|h[Ring of Spell Power]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Pressed Felt Robe"]={SubType="Cloth",Level=34,id=1997,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2538,Texture=132663,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:1997::::::::40:::::::|h[Pressed Felt Robe]|h|r"},["Deprecated Reed Pipe"]={SubType="Miscellaneous",Level=40,id=1912,StackCount=1,Rarity=0,MinLevel=35,SellPrice=122,Texture=134374,Type="Armor",Link="|cff9d9d9d|Hitem:1912::::::::40:::::::|h[Deprecated Reed Pipe]|h|r",EquipLoc="INVTYPE_TRINKET"},["Shiny Bracelet"]={SubType="Junk",Level=1,id=11939,StackCount=20,Rarity=0,MinLevel=0,SellPrice=671,Texture=132522,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11939::::::::40:::::::|h[Shiny Bracelet]|h|r",EquipLoc=""},["QAEnchant Weapon Unholy"]={SubType="Consumable",Level=1,id=22024,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22024::::::::40:::::::|h[QAEnchant Weapon Unholy]|h|r",EquipLoc="",Type="Consumable"},["Filled Pure Sample Jar"]={SubType="Quest",Level=1,id=11954,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134836,Type="Quest",Link="|cffffffff|Hitem:11954::::::::40:::::::|h[Filled Pure Sample Jar]|h|r",EquipLoc=""},["Schematic: Gnomish Alarm-O-Bot"]={SubType="Engineering",Level=53,id=18654,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:18654::::::::40:::::::|h[Schematic: Gnomish Alarm-O-Bot]|h|r",EquipLoc=""},["Warbringer's Crown"]={SubType="Plate",Level=45,id=14944,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4806,Texture=132517,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14944::::::::40:::::::|h[Warbringer's Crown]|h|r"},["Tear of Grief"]={SubType="Miscellaneous",Level=16,id=5611,StackCount=1,Rarity=2,MinLevel=0,SellPrice=452,Texture=134797,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:5611::::::::40:::::::|h[Tear of Grief]|h|r",Type="Armor"},["Deprecated Scorched Heart"]={SubType="Quest",Level=1,id=4868,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134341,Link="|cffffffff|Hitem:4868::::::::40:::::::|h[Deprecated Scorched Heart]|h|r",EquipLoc="",Type="Quest"},["Plans: Sulfuron Hammer"]={SubType="Blacksmithing",Level=63,id=18592,StackCount=1,Rarity=4,MinLevel=0,SellPrice=20000,Texture=134939,Type="Recipe",Link="|cffa335ee|Hitem:18592::::::::40:::::::|h[Plans: Sulfuron Hammer]|h|r",EquipLoc=""},["Twill Gloves"]={SubType="Cloth",Level=58,id=3948,StackCount=1,Rarity=0,MinLevel=53,SellPrice=3092,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:3948::::::::40:::::::|h[Twill Gloves]|h|r"},["Black Duskwood Staff"]={SubType="Staves",Level=38,id=937,StackCount=1,Rarity=3,MinLevel=33,SellPrice=14577,Texture=135150,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:937::::::::40:::::::|h[Black Duskwood Staff]|h|r"},["Blood-etched Blade"]={SubType="Daggers",Level=57,id=11922,StackCount=1,Rarity=3,MinLevel=52,SellPrice=43491,Texture=135651,Type="Weapon",Link="|cff0070dd|Hitem:11922::::::::40:::::::|h[Blood-etched Blade]|h|r",EquipLoc="INVTYPE_WEAPON"},["[PH] Leather Boots of the Rising Dawn"]={SubType="Leather",Level=100,id=13802,StackCount=1,Rarity=1,MinLevel=100,SellPrice=66867,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:13802::::::::40:::::::|h[[PH] Leather Boots of the Rising Dawn]|h|r"},["Book of Healing Touch VI"]={SubType="Book",Level=32,id=4230,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=133743,Type="Recipe",Link="|cffffffff|Hitem:4230::::::::40:::::::|h[Book of Healing Touch VI]|h|r",EquipLoc=""},["Frostmane Club"]={SubType="One-Handed Maces",Level=8,id=2259,StackCount=1,Rarity=1,MinLevel=3,SellPrice=75,Texture=133053,Link="|cffffffff|Hitem:2259::::::::40:::::::|h[Frostmane Club]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Pattern: Frostsaber Leggings"]={SubType="Leatherworking",Level=57,id=15747,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15747::::::::40:::::::|h[Pattern: Frostsaber Leggings]|h|r",Type="Recipe"},["Beastmaster's Cap"]={SubType="Mail",Level=60,id=22013,StackCount=1,Rarity=4,MinLevel=0,SellPrice=29212,Texture=133126,Link="|cffa335ee|Hitem:22013::::::::40:::::::|h[Beastmaster's Cap]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Feralheart Bracers"]={SubType="Leather",Level=65,id=22108,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15653,Texture=132608,Link="|cff0070dd|Hitem:22108::::::::40:::::::|h[Feralheart Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Morning Glory Dew"]={SubType="Consumable",Level=55,id=8766,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=134712,Link="|cffffffff|Hitem:8766::::::::40:::::::|h[Morning Glory Dew]|h|r",EquipLoc="",Type="Consumable"},["Rhahk'Zor's Hammer"]={SubType="Two-Handed Maces",Level=20,id=5187,StackCount=1,Rarity=1,MinLevel=15,SellPrice=1081,Texture=133046,Link="|cffffffff|Hitem:5187::::::::40:::::::|h[Rhahk'Zor's Hammer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Deprecated Worn Leather Shoulderpads"]={SubType="Leather",Level=8,id=1424,StackCount=1,Rarity=0,MinLevel=3,SellPrice=19,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:1424::::::::40:::::::|h[Deprecated Worn Leather Shoulderpads]|h|r",Type="Armor"},["Greater Adept's Robe"]={SubType="Cloth",Level=23,id=6264,StackCount=1,Rarity=2,MinLevel=18,SellPrice=884,Texture=132665,Type="Armor",Link="|cff1eff00|Hitem:6264::::::::40:::::::|h[Greater Adept's Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Taut Dragonhide Gloves"]={SubType="Leather",Level=77,id=19390,StackCount=1,Rarity=4,MinLevel=60,SellPrice=39443,Texture=132953,Link="|cffa335ee|Hitem:19390::::::::40:::::::|h[Taut Dragonhide Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Deprecated Maiden's Anguish"]={SubType="Trade Goods",Level=34,id=2931,StackCount=10,Rarity=1,MinLevel=0,SellPrice=25,Texture=134183,Link="|cffffffff|Hitem:2931::::::::40:::::::|h[Deprecated Maiden's Anguish]|h|r",EquipLoc="",Type="Trade Goods"},["The Castigator"]={SubType="One-Handed Maces",Level=83,id=22808,StackCount=1,Rarity=4,MinLevel=60,SellPrice=207785,Texture=133495,Link="|cffa335ee|Hitem:22808::::::::40:::::::|h[The Castigator]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Orange Dye"]={SubType="Trade Goods",Level=35,id=6261,StackCount=10,Rarity=1,MinLevel=0,SellPrice=250,Texture=134815,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:6261::::::::40:::::::|h[Orange Dye]|h|r"},["Well Stone"]={SubType="Quest",Level=1,id=4808,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135238,EquipLoc="",Link="|cffffffff|Hitem:4808::::::::40:::::::|h[Well Stone]|h|r",Type="Quest"},["Serpentine Sash"]={SubType="Leather",Level=57,id=13118,StackCount=1,Rarity=3,MinLevel=52,SellPrice=10601,Texture=132514,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13118::::::::40:::::::|h[Serpentine Sash]|h|r"},["Gemstone Dagger"]={SubType="Daggers",Level=40,id=5742,StackCount=1,Rarity=2,MinLevel=35,SellPrice=10770,Texture=135322,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:5742::::::::40:::::::|h[Gemstone Dagger]|h|r",Type="Weapon"},["Level 55 Test Gear Mail - Shaman"]={SubType="Junk",Level=1,id=13695,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13695::::::::40:::::::|h[Level 55 Test Gear Mail - Shaman]|h|r"},["Combat Healing Potion"]={SubType="Consumable",Level=45,id=18839,StackCount=5,Rarity=1,MinLevel=35,SellPrice=250,Texture=134819,Type="Consumable",Link="|cffffffff|Hitem:18839::::::::40:::::::|h[Combat Healing Potion]|h|r",EquipLoc=""},["Halycon's Spiked Collar"]={SubType="Miscellaneous",Level=60,id=13212,StackCount=1,Rarity=3,MinLevel=55,SellPrice=10670,Texture=132503,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:13212::::::::40:::::::|h[Halycon's Spiked Collar]|h|r"},["Raw Brilliant Smallfish"]={SubType="Consumable",Level=5,id=6291,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=133894,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6291::::::::40:::::::|h[Raw Brilliant Smallfish]|h|r"},["Lovely Black Dress"]={SubType="Miscellaneous",Level=1,id=22279,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132691,Link="|cffffffff|Hitem:22279::::::::40:::::::|h[Lovely Black Dress]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Chipped Ogre Teeth"]={SubType="Junk",Level=1,id=15798,StackCount=20,Rarity=0,MinLevel=0,SellPrice=50,Texture=133724,EquipLoc="",Link="|cff9d9d9d|Hitem:15798::::::::40:::::::|h[Chipped Ogre Teeth]|h|r",Type="Miscellaneous"},["Primitive Kilt"]={SubType="Leather",Level=1,id=153,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:153::::::::40:::::::|h[Primitive Kilt]|h|r"},["Flash Powder"]={SubType="Reagent",Level=20,id=5140,StackCount=20,Rarity=1,MinLevel=0,SellPrice=6,Texture=134387,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:5140::::::::40:::::::|h[Flash Powder]|h|r"},["Tattered Manuscript"]={SubType="Quest",Level=1,id=6997,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",Link="|cffffffff|Hitem:6997::::::::40:::::::|h[Tattered Manuscript]|h|r",EquipLoc=""},["Elixir of Minor Fortitude"]={SubType="Consumable",Level=12,id=2458,StackCount=5,Rarity=1,MinLevel=2,SellPrice=15,Texture=134822,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2458::::::::40:::::::|h[Elixir of Minor Fortitude]|h|r"},["Carapace of Tuten'kash"]={SubType="Plate",Level=42,id=10775,StackCount=1,Rarity=3,MinLevel=40,SellPrice=6377,Texture=132743,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:10775::::::::40:::::::|h[Carapace of Tuten'kash]|h|r",Type="Armor"},["Thick Spider Hair"]={SubType="Junk",Level=1,id=3167,StackCount=10,Rarity=0,MinLevel=0,SellPrice=68,Texture=134321,EquipLoc="",Link="|cff9d9d9d|Hitem:3167::::::::40:::::::|h[Thick Spider Hair]|h|r",Type="Miscellaneous"},["Monster - Staff, Jeweled Blue Staff"]={SubType="Staves",Level=1,id=13750,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13750::::::::40:::::::|h[Monster - Staff, Jeweled Blue Staff]|h|r"},["Assassin's Contract"]={SubType="Quest",Level=30,id=3668,StackCount=1,Rarity=1,MinLevel=30,SellPrice=0,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:3668::::::::40:::::::|h[Assassin's Contract]|h|r",Type="Quest"},["Seer's Padded Armor"]={SubType="Cloth",Level=21,id=6561,StackCount=1,Rarity=2,MinLevel=16,SellPrice=675,Texture=135006,Link="|cff1eff00|Hitem:6561::::::::40:::::::|h[Seer's Padded Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Level 40 Test Gear Mail - Hunter"]={SubType="Junk",Level=1,id=13686,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13686::::::::40:::::::|h[Level 40 Test Gear Mail - Hunter]|h|r"},["Thick Hide"]={SubType="Trade Goods",Level=40,id=8169,StackCount=10,Rarity=1,MinLevel=0,SellPrice=500,Texture=134356,Link="|cffffffff|Hitem:8169::::::::40:::::::|h[Thick Hide]|h|r",EquipLoc="",Type="Trade Goods"},["Gargoyle Shredder Talons"]={SubType="Fist Weapons",Level=59,id=13399,StackCount=1,Rarity=3,MinLevel=54,SellPrice=46312,Texture=132945,Type="Weapon",EquipLoc="INVTYPE_WEAPONOFFHAND",Link="|cff0070dd|Hitem:13399::::::::40:::::::|h[Gargoyle Shredder Talons]|h|r"},["Advisor's Gnarled Staff"]={SubType="Staves",Level=63,id=19566,StackCount=1,Rarity=3,MinLevel=58,SellPrice=70171,Texture=135162,Link="|cff0070dd|Hitem:19566::::::::40:::::::|h[Advisor's Gnarled Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Ruined Pelt"]={SubType="Junk",Level=1,id=4865,StackCount=5,Rarity=0,MinLevel=0,SellPrice=5,Texture=134371,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:4865::::::::40:::::::|h[Ruined Pelt]|h|r",EquipLoc=""},["Crafted Solid Shot"]={SubType="Bullet",Level=35,id=8069,StackCount=200,Rarity=1,MinLevel=30,SellPrice=0,Texture=132384,Type="Projectile",EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:8069::::::::40:::::::|h[Crafted Solid Shot]|h|r"},["Deprecated Book of Cyclone"]={SubType="Book",Level=10,id=5144,StackCount=1,Rarity=1,MinLevel=10,SellPrice=187,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:5144::::::::40:::::::|h[Deprecated Book of Cyclone]|h|r",Type="Recipe"},["Fire-welded Bracers"]={SubType="Mail",Level=30,id=9535,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1406,Texture=132601,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:9535::::::::40:::::::|h[Fire-welded Bracers]|h|r"},["Twain TEST Cloak"]={SubType="Cloth",Level=12,id=7248,StackCount=1,Rarity=1,MinLevel=7,SellPrice=68,Texture=133766,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:7248::::::::40:::::::|h[Twain TEST Cloak]|h|r",Type="Armor"},["Basilisk Heart"]={SubType="Junk",Level=1,id=11387,StackCount=5,Rarity=0,MinLevel=0,SellPrice=1013,Texture=134338,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11387::::::::40:::::::|h[Basilisk Heart]|h|r",EquipLoc=""},["Russet Gloves"]={SubType="Cloth",Level=37,id=2434,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1033,Texture=132952,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2434::::::::40:::::::|h[Russet Gloves]|h|r",Type="Armor"},["A Sparkling Stone"]={SubType="Quest",Level=1,id=9307,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134334,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9307::::::::40:::::::|h[A Sparkling Stone]|h|r"},["Stonecloth Boots"]={SubType="Cloth",Level=35,id=14408,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2275,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14408::::::::40:::::::|h[Stonecloth Boots]|h|r"},["Draconic Avenger"]={SubType="Two-Handed Axes",Level=71,id=19354,StackCount=1,Rarity=4,MinLevel=60,SellPrice=135086,Texture=132415,Link="|cffa335ee|Hitem:19354::::::::40:::::::|h[Draconic Avenger]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Emblazoned Boots"]={SubType="Leather",Level=30,id=4051,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1669,Texture=132543,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:4051::::::::40:::::::|h[Emblazoned Boots]|h|r",Type="Armor"},["Intact Raptor Horn"]={SubType="Quest",Level=1,id=5055,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133723,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5055::::::::40:::::::|h[Intact Raptor Horn]|h|r"},["Conjured Sparkling Water"]={SubType="Consumable",Level=55,id=8078,StackCount=20,Rarity=1,MinLevel=45,SellPrice=0,Texture=132798,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8078::::::::40:::::::|h[Conjured Sparkling Water]|h|r"},["Serpentskin Armor"]={SubType="Leather",Level=56,id=8258,StackCount=1,Rarity=2,MinLevel=51,SellPrice=17396,Texture=132717,Link="|cff1eff00|Hitem:8258::::::::40:::::::|h[Serpentskin Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Devout Belt"]={SubType="Cloth",Level=58,id=16696,StackCount=1,Rarity=3,MinLevel=53,SellPrice=9058,Texture=132499,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16696::::::::40:::::::|h[Devout Belt]|h|r",Type="Armor"},["Manual: Heavy Silk Bandage"]={SubType="First Aid",Level=36,id=16112,StackCount=1,Rarity=1,MinLevel=0,SellPrice=550,Texture=133735,EquipLoc="",Link="|cffffffff|Hitem:16112::::::::40:::::::|h[Manual: Heavy Silk Bandage]|h|r",Type="Recipe"},["Crystal Vial"]={SubType="Trade Goods",Level=35,id=8925,StackCount=20,Rarity=1,MinLevel=0,SellPrice=125,Texture=132793,Link="|cffffffff|Hitem:8925::::::::40:::::::|h[Crystal Vial]|h|r",EquipLoc="",Type="Trade Goods"},["Dull Iron Key"]={SubType="Key",Level=1,id=3467,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:3467::::::::40:::::::|h[Dull Iron Key]|h|r"},["Brutal Helm"]={SubType="Mail",Level=31,id=7130,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2328,Texture=133070,Link="|cff1eff00|Hitem:7130::::::::40:::::::|h[Brutal Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Greater Nether Essence"]={SubType="Trade Goods",Level=45,id=11175,StackCount=10,Rarity=2,MinLevel=0,SellPrice=0,Texture=132870,Type="Trade Goods",Link="|cff1eff00|Hitem:11175::::::::40:::::::|h[Greater Nether Essence]|h|r",EquipLoc=""},["Gordok's Gauntlets"]={SubType="Mail",Level=60,id=18367,StackCount=1,Rarity=3,MinLevel=0,SellPrice=14762,Texture=132943,Type="Armor",Link="|cff0070dd|Hitem:18367::::::::40:::::::|h[Gordok's Gauntlets]|h|r",EquipLoc="INVTYPE_HAND"},["Tome of Fireball V"]={SubType="Book",Level=24,id=8814,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1325,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8814::::::::40:::::::|h[Tome of Fireball V]|h|r"},["Dream Dust"]={SubType="Trade Goods",Level=45,id=11176,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132855,Type="Trade Goods",Link="|cffffffff|Hitem:11176::::::::40:::::::|h[Dream Dust]|h|r",EquipLoc=""},["Plans: Ornate Mithril Shoulder"]={SubType="Blacksmithing",Level=45,id=7985,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7985::::::::40:::::::|h[Plans: Ornate Mithril Shoulder]|h|r",Type="Recipe"},["Seer's Mantle"]={SubType="Cloth",Level=21,id=4698,StackCount=1,Rarity=1,MinLevel=16,SellPrice=301,Texture=135040,Type="Armor",Link="|cffffffff|Hitem:4698::::::::40:::::::|h[Seer's Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Schematic: Accurate Scope"]={SubType="Engineering",Level=36,id=13310,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13310::::::::40:::::::|h[Schematic: Accurate Scope]|h|r"},["Plans: Deadly Bronze Poniard"]={SubType="Blacksmithing",Level=25,id=2883,StackCount=1,Rarity=2,MinLevel=0,SellPrice=375,Texture=134942,Link="|cff1eff00|Hitem:2883::::::::40:::::::|h[Plans: Deadly Bronze Poniard]|h|r",EquipLoc="",Type="Recipe"},["Tablet of Frost Shock II"]={SubType="Book",Level=34,id=9089,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3250,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9089::::::::40:::::::|h[Tablet of Frost Shock II]|h|r"},["Viking Sword"]={SubType="One-Handed Swords",Level=30,id=3186,StackCount=1,Rarity=2,MinLevel=25,SellPrice=4436,Texture=135343,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:3186::::::::40:::::::|h[Viking Sword]|h|r",Type="Weapon"},["Letter to Jin'Zil"]={SubType="Quest",Level=1,id=5594,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,EquipLoc="",Link="|cffffffff|Hitem:5594::::::::40:::::::|h[Letter to Jin'Zil]|h|r",Type="Quest"},["Padded Bracers"]={SubType="Cloth",Level=27,id=3592,StackCount=1,Rarity=1,MinLevel=22,SellPrice=420,Texture=132610,Link="|cffffffff|Hitem:3592::::::::40:::::::|h[Padded Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Beautiful Wildflowers"]={SubType="Miscellaneous",Level=30,id=3422,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=133939,EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:3422::::::::40:::::::|h[Beautiful Wildflowers]|h|r",Type="Armor"},["Vile Fin Scale"]={SubType="Quest",Level=1,id=2859,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134304,Link="|cffffffff|Hitem:2859::::::::40:::::::|h[Vile Fin Scale]|h|r",EquipLoc="",Type="Quest"},["Turtle Scale Helm"]={SubType="Mail",Level=46,id=8191,StackCount=1,Rarity=2,MinLevel=41,SellPrice=7780,Texture=133142,Link="|cff1eff00|Hitem:8191::::::::40:::::::|h[Turtle Scale Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Small Dagger"]={SubType="Daggers",Level=18,id=2764,StackCount=1,Rarity=0,MinLevel=13,SellPrice=440,Texture=135637,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2764::::::::40:::::::|h[Small Dagger]|h|r"},["Wicked Claw"]={SubType="Trade Goods",Level=45,id=8146,StackCount=5,Rarity=1,MinLevel=0,SellPrice=500,Texture=134294,Link="|cffffffff|Hitem:8146::::::::40:::::::|h[Wicked Claw]|h|r",EquipLoc="",Type="Trade Goods"},["Shepherd's Gloves"]={SubType="Leather",Level=33,id=3754,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1492,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:3754::::::::40:::::::|h[Shepherd's Gloves]|h|r"},["Golden Skeleton Key"]={SubType="Trade Goods",Level=30,id=15870,StackCount=20,Rarity=2,MinLevel=0,SellPrice=300,Texture=134247,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:15870::::::::40:::::::|h[Golden Skeleton Key]|h|r"},["Pioneer Boots"]={SubType="Leather",Level=11,id=6518,StackCount=1,Rarity=1,MinLevel=6,SellPrice=70,Texture=132542,Type="Armor",Link="|cffffffff|Hitem:6518::::::::40:::::::|h[Pioneer Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Retractable Claw"]={SubType="Junk",Level=1,id=1687,StackCount=5,Rarity=0,MinLevel=0,SellPrice=243,Texture=134296,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:1687::::::::40:::::::|h[Retractable Claw]|h|r"},["Model 4711-FTZ Power Source"]={SubType="Quest",Level=1,id=8524,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134459,Link="|cff1eff00|Hitem:8524::::::::40:::::::|h[Model 4711-FTZ Power Source]|h|r",EquipLoc="",Type="Quest"},["Recipe: Elixir of Demonslaying"]={SubType="Alchemy",Level=50,id=9300,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9300::::::::40:::::::|h[Recipe: Elixir of Demonslaying]|h|r"},["Candle of Beckoning"]={SubType="Quest",Level=1,id=3080,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133750,EquipLoc="",Link="|cffffffff|Hitem:3080::::::::40:::::::|h[Candle of Beckoning]|h|r",Type="Quest"},["Fast Test 1H Sword"]={SubType="One-Handed Swords",Level=60,id=5555,StackCount=1,Rarity=0,MinLevel=1,SellPrice=16129,Texture=135327,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff9d9d9d|Hitem:5555::::::::40:::::::|h[Fast Test 1H Sword]|h|r",Type="Weapon"},["Light Scimitar"]={SubType="One-Handed Swords",Level=36,id=3783,StackCount=1,Rarity=0,MinLevel=31,SellPrice=3048,Texture=135325,Type="Weapon",Link="|cff9d9d9d|Hitem:3783::::::::40:::::::|h[Light Scimitar]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Marshal's Dragonhide Bracers"]={SubType="Leather",Level=65,id=16445,StackCount=1,Rarity=4,MinLevel=60,SellPrice=10429,Texture=132601,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16445::::::::40:::::::|h[Marshal's Dragonhide Bracers]|h|r",Type="Armor"},["Test Armor Chest"]={SubType="Plate",Level=60,id=12188,StackCount=1,Rarity=1,MinLevel=55,SellPrice=10425,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:12188::::::::40:::::::|h[Test Armor Chest]|h|r"},["Small Obsidian Shard"]={SubType="Trade Goods",Level=1,id=22202,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2500,Texture=134455,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:22202::::::::40:::::::|h[Small Obsidian Shard]|h|r"},["Magnificent Greaves"]={SubType="Mail",Level=60,id=15674,StackCount=1,Rarity=2,MinLevel=55,SellPrice=18464,Texture=132536,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15674::::::::40:::::::|h[Magnificent Greaves]|h|r",Type="Armor"},["Vile Familiar Head"]={SubType="Quest",Level=1,id=6487,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136140,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6487::::::::40:::::::|h[Vile Familiar Head]|h|r"},["Grimoire of Shadow Bolt VI"]={SubType="Book",Level=36,id=9225,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9225::::::::40:::::::|h[Grimoire of Shadow Bolt VI]|h|r"},["Large Round Shield"]={SubType="Shields",Level=5,id=2129,StackCount=1,Rarity=1,MinLevel=1,SellPrice=15,Texture=134955,Type="Armor",Link="|cffffffff|Hitem:2129::::::::40:::::::|h[Large Round Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Aboriginal Cape"]={SubType="Cloth",Level=14,id=14116,StackCount=1,Rarity=1,MinLevel=9,SellPrice=106,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:14116::::::::40:::::::|h[Aboriginal Cape]|h|r"},["Boots of Epiphany"]={SubType="Cloth",Level=81,id=21600,StackCount=1,Rarity=4,MinLevel=60,SellPrice=54040,Texture=132562,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:21600::::::::40:::::::|h[Boots of Epiphany]|h|r"},["Kenata's Head"]={SubType="Quest",Level=1,id=5830,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134167,Link="|cffffffff|Hitem:5830::::::::40:::::::|h[Kenata's Head]|h|r",EquipLoc="",Type="Quest"},["Bright Bracers"]={SubType="Cloth",Level=23,id=3647,StackCount=1,Rarity=2,MinLevel=18,SellPrice=433,Texture=132601,Link="|cff1eff00|Hitem:3647::::::::40:::::::|h[Bright Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Revenant Boots"]={SubType="Plate",Level=50,id=10131,StackCount=1,Rarity=2,MinLevel=45,SellPrice=7085,Texture=132583,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10131::::::::40:::::::|h[Revenant Boots]|h|r",Type="Armor"},["Light Scorpid Armor"]={SubType="Leather",Level=9,id=4929,StackCount=1,Rarity=1,MinLevel=0,SellPrice=58,Texture=132716,Type="Armor",Link="|cffffffff|Hitem:4929::::::::40:::::::|h[Light Scorpid Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Tablet of Mana Font Totem"]={SubType="Book",Level=26,id=9071,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9071::::::::40:::::::|h[Tablet of Mana Font Totem]|h|r"},["Small Brown-wrapped Package"]={SubType="Junk",Level=0,id=15699,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=134144,EquipLoc="",Link="|cffffffff|Hitem:15699::::::::40:::::::|h[Small Brown-wrapped Package]|h|r",Type="Miscellaneous"},["Crul'shorukh, Edge of Chaos"]={SubType="One-Handed Axes",Level=81,id=19363,StackCount=1,Rarity=4,MinLevel=60,SellPrice=182148,Texture=132403,Link="|cffa335ee|Hitem:19363::::::::40:::::::|h[Crul'shorukh, Edge of Chaos]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Silithid Chitin"]={SubType="Junk",Level=55,id=20498,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134315,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:20498::::::::40:::::::|h[Silithid Chitin]|h|r"},["Pendant of Forgotten Names"]={SubType="Miscellaneous",Level=85,id=22947,StackCount=1,Rarity=4,MinLevel=60,SellPrice=88355,Texture=133317,Link="|cffa335ee|Hitem:22947::::::::40:::::::|h[Pendant of Forgotten Names]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Abyssal Mail Pauldrons"]={SubType="Mail",Level=68,id=20680,StackCount=1,Rarity=3,MinLevel=60,SellPrice=31683,Texture=135047,Link="|cff0070dd|Hitem:20680::::::::40:::::::|h[Abyssal Mail Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Milli's Shield"]={SubType="Shields",Level=59,id=18535,StackCount=1,Rarity=3,MinLevel=0,SellPrice=30231,Texture=134958,Type="Armor",Link="|cff0070dd|Hitem:18535::::::::40:::::::|h[Milli's Shield]|h|r",EquipLoc="INVTYPE_SHIELD"},["Monster - Item, Bag - Red Offhand"]={SubType="Miscellaneous",Level=1,id=12857,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133639,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12857::::::::40:::::::|h[Monster - Item, Bag - Red Offhand]|h|r"},["Tranquil Ring"]={SubType="Miscellaneous",Level=33,id=2917,StackCount=1,Rarity=2,MinLevel=0,SellPrice=665,Texture=133349,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:2917::::::::40:::::::|h[Tranquil Ring]|h|r"},["Pronged Reaver"]={SubType="One-Handed Axes",Level=36,id=6692,StackCount=1,Rarity=3,MinLevel=31,SellPrice=9788,Texture=132409,Link="|cff0070dd|Hitem:6692::::::::40:::::::|h[Pronged Reaver]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Tome of Ice Armor III"]={SubType="Book",Level=50,id=8865,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8865::::::::40:::::::|h[Tome of Ice Armor III]|h|r"},["Primal Batskin Bracers"]={SubType="Leather",Level=65,id=19687,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15939,Texture=132606,Link="|cff0070dd|Hitem:19687::::::::40:::::::|h[Primal Batskin Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Hardpacked Snowball"]={SubType="Consumable",Level=5,id=21038,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132387,Link="|cffffffff|Hitem:21038::::::::40:::::::|h[Hardpacked Snowball]|h|r",EquipLoc="",Type="Consumable"},["Horn of the Winter Wolf"]={SubType="Junk",Level=40,id=1133,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132266,Link="|cffffffff|Hitem:1133::::::::40:::::::|h[Horn of the Winter Wolf]|h|r",EquipLoc="",Type="Miscellaneous"},["Mindthrust Bracers"]={SubType="Cloth",Level=22,id=1974,StackCount=1,Rarity=3,MinLevel=17,SellPrice=464,Texture=132606,Link="|cff0070dd|Hitem:1974::::::::40:::::::|h[Mindthrust Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Pulsating Crystalline Shard"]={SubType="Miscellaneous",Level=50,id=4743,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5430,Texture=134132,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:4743::::::::40:::::::|h[Pulsating Crystalline Shard]|h|r",Type="Armor"},["[PH] Rising Dawn Helm"]={SubType="Plate",Level=1,id=13796,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133126,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:13796::::::::40:::::::|h[[PH] Rising Dawn Helm]|h|r"},["Seed of Life"]={SubType="Quest",Level=1,id=17760,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134199,EquipLoc="",Link="|cffffffff|Hitem:17760::::::::40:::::::|h[Seed of Life]|h|r",Type="Quest"},["Treant Muisek Vessel"]={SubType="Quest",Level=1,id=9606,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133841,Link="|cffffffff|Hitem:9606::::::::40:::::::|h[Treant Muisek Vessel]|h|r",EquipLoc="",Type="Quest"},["Vial of Blessed Water"]={SubType="Quest",Level=1,id=5646,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134856,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5646::::::::40:::::::|h[Vial of Blessed Water]|h|r"},["Plans: Darksoul Breastplate"]={SubType="Blacksmithing",Level=65,id=19779,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19779::::::::40:::::::|h[Plans: Darksoul Breastplate]|h|r",EquipLoc="",Type="Recipe"},["Green Silken Shoulders"]={SubType="Cloth",Level=36,id=7057,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2323,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7057::::::::40:::::::|h[Green Silken Shoulders]|h|r",Type="Armor"},["Mithril Lockbox"]={SubType="Junk",Level=50,id=5758,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=134344,Link="|cff1eff00|Hitem:5758::::::::40:::::::|h[Mithril Lockbox]|h|r",EquipLoc="",Type="Miscellaneous"},["Choking Band"]={SubType="Miscellaneous",Level=53,id=11868,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6542,Texture=133357,Type="Armor",Link="|cff1eff00|Hitem:11868::::::::40:::::::|h[Choking Band]|h|r",EquipLoc="INVTYPE_FINGER"},["Chemist's Ring"]={SubType="Miscellaneous",Level=55,id=15702,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7396,Texture=133722,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:15702::::::::40:::::::|h[Chemist's Ring]|h|r",Type="Armor"},["Band of Accuria"]={SubType="Miscellaneous",Level=78,id=17063,StackCount=1,Rarity=4,MinLevel=60,SellPrice=23961,Texture=133357,EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:17063::::::::40:::::::|h[Band of Accuria]|h|r",Type="Armor"},["Minor Darkmoon Prize"]={SubType="Junk",Level=20,id=19298,StackCount=1,Rarity=2,MinLevel=15,SellPrice=50,Texture=133625,Link="|cff1eff00|Hitem:19298::::::::40:::::::|h[Minor Darkmoon Prize]|h|r",EquipLoc="",Type="Miscellaneous"},["Pattern: Primal Batskin Bracers"]={SubType="Leatherworking",Level=65,id=19771,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:19771::::::::40:::::::|h[Pattern: Primal Batskin Bracers]|h|r",EquipLoc="",Type="Recipe"},["Deprecated Horse Summoning (Mount)"]={SubType="Junk",Level=1,id=823,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=134937,EquipLoc="",Link="|cffffffff|Hitem:823::::::::40:::::::|h[Deprecated Horse Summoning (Mount)]|h|r",Type="Miscellaneous"},["Savage Gladiator Greaves"]={SubType="Mail",Level=57,id=11731,StackCount=1,Rarity=3,MinLevel=52,SellPrice=19300,Texture=132535,Type="Armor",Link="|cff0070dd|Hitem:11731::::::::40:::::::|h[Savage Gladiator Greaves]|h|r",EquipLoc="INVTYPE_FEET"},["Codex of Shadow Word: Fumble"]={SubType="Book",Level=20,id=4267,StackCount=1,Rarity=1,MinLevel=20,SellPrice=750,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:4267::::::::40:::::::|h[Codex of Shadow Word: Fumble]|h|r",Type="Recipe"},["Potent Boots"]={SubType="Leather",Level=50,id=15171,StackCount=1,Rarity=2,MinLevel=45,SellPrice=8697,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15171::::::::40:::::::|h[Potent Boots]|h|r",Type="Armor"},["90 Green Warrior Axe"]={SubType="Two-Handed Axes",Level=90,id=20238,StackCount=1,Rarity=2,MinLevel=60,SellPrice=213369,Texture=132392,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:20238::::::::40:::::::|h[90 Green Warrior Axe]|h|r"},["A Bulging Coin Purse"]={SubType="Junk",Level=15,id=10456,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133641,EquipLoc="",Link="|cffffffff|Hitem:10456::::::::40:::::::|h[A Bulging Coin Purse]|h|r",Type="Miscellaneous"},["Essence of Hakkar"]={SubType="Consumable",Level=1,id=10663,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136148,EquipLoc="",Link="|cffffffff|Hitem:10663::::::::40:::::::|h[Essence of Hakkar]|h|r",Type="Consumable"},["Ritual Sandals"]={SubType="Cloth",Level=20,id=14129,StackCount=1,Rarity=2,MinLevel=15,SellPrice=415,Texture=132537,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14129::::::::40:::::::|h[Ritual Sandals]|h|r"},["The Scarlet Key"]={SubType="Key",Level=0,id=7146,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134235,EquipLoc="",Link="|cff1eff00|Hitem:7146::::::::40:::::::|h[The Scarlet Key]|h|r",Type="Key"},["Rusted Chain Leggings"]={SubType="Mail",Level=5,id=2388,StackCount=1,Rarity=1,MinLevel=1,SellPrice=15,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:2388::::::::40:::::::|h[Rusted Chain Leggings]|h|r"},["Medium Hide"]={SubType="Trade Goods",Level=20,id=4232,StackCount=10,Rarity=1,MinLevel=0,SellPrice=125,Texture=134364,Link="|cffffffff|Hitem:4232::::::::40:::::::|h[Medium Hide]|h|r",EquipLoc="",Type="Trade Goods"},["Codex of Defense"]={SubType="Junk",Level=60,id=18357,StackCount=1,Rarity=3,MinLevel=54,SellPrice=0,Texture=133739,Type="Miscellaneous",Link="|cff0070dd|Hitem:18357::::::::40:::::::|h[Codex of Defense]|h|r",EquipLoc=""},["Red Mechanostrider"]={SubType="Junk",Level=40,id=8563,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132247,Link="|cff0070dd|Hitem:8563::::::::40:::::::|h[Red Mechanostrider]|h|r",EquipLoc="",Type="Miscellaneous"},["Legguards of the Fallen Crusader"]={SubType="Plate",Level=75,id=19402,StackCount=1,Rarity=4,MinLevel=60,SellPrice=55609,Texture=134692,Link="|cffa335ee|Hitem:19402::::::::40:::::::|h[Legguards of the Fallen Crusader]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Rockfist"]={SubType="Fist Weapons",Level=55,id=11743,StackCount=1,Rarity=2,MinLevel=50,SellPrice=30734,Texture=132945,Type="Weapon",Link="|cff1eff00|Hitem:11743::::::::40:::::::|h[Rockfist]|h|r",EquipLoc="INVTYPE_WEAPON"},["Deadly Bronze Poniard"]={SubType="Daggers",Level=25,id=3490,StackCount=1,Rarity=2,MinLevel=20,SellPrice=2731,Texture=135641,Link="|cff1eff00|Hitem:3490::::::::40:::::::|h[Deadly Bronze Poniard]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Orchid Amice"]={SubType="Cloth",Level=56,id=15812,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9574,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15812::::::::40:::::::|h[Orchid Amice]|h|r",Type="Armor"},["Medallion of Faith"]={SubType="Quest",Level=1,id=12845,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133295,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12845::::::::40:::::::|h[Medallion of Faith]|h|r"},["Lupine Slippers"]={SubType="Leather",Level=16,id=15012,StackCount=1,Rarity=2,MinLevel=11,SellPrice=296,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15012::::::::40:::::::|h[Lupine Slippers]|h|r",Type="Armor"},["Sturdy Male Troll Mask"]={SubType="Miscellaneous",Level=45,id=20597,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4631,Texture=134177,Link="|cff1eff00|Hitem:20597::::::::40:::::::|h[Sturdy Male Troll Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Sturdy Male Human Mask"]={SubType="Miscellaneous",Level=45,id=20593,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5046,Texture=134173,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:20593::::::::40:::::::|h[Sturdy Male Human Mask]|h|r"},["Red Qiraji Resonating Crystal"]={SubType="Junk",Level=60,id=21321,StackCount=1,Rarity=3,MinLevel=60,SellPrice=0,Texture=134396,Link="|cff0070dd|Hitem:21321::::::::40:::::::|h[Red Qiraji Resonating Crystal]|h|r",EquipLoc="",Type="Miscellaneous"},["Charred Leather Tunic"]={SubType="Leather",Level=50,id=19127,StackCount=1,Rarity=2,MinLevel=0,SellPrice=12258,Texture=132718,Link="|cff1eff00|Hitem:19127::::::::40:::::::|h[Charred Leather Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Upper Map Fragment"]={SubType="Quest",Level=1,id=9251,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134331,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9251::::::::40:::::::|h[Upper Map Fragment]|h|r"},["Skyshroud Leggings"]={SubType="Cloth",Level=60,id=13170,StackCount=1,Rarity=3,MinLevel=55,SellPrice=19230,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:13170::::::::40:::::::|h[Skyshroud Leggings]|h|r"},["Green Dragonscale Leggings"]={SubType="Mail",Level=54,id=15046,StackCount=1,Rarity=3,MinLevel=49,SellPrice=22482,Texture=134585,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:15046::::::::40:::::::|h[Green Dragonscale Leggings]|h|r",Type="Armor"},["Cenarion Belt"]={SubType="Leather",Level=66,id=16828,StackCount=1,Rarity=4,MinLevel=60,SellPrice=22221,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16828::::::::40:::::::|h[Cenarion Belt]|h|r",Type="Armor"},["Silverwing Talisman of Merit"]={SubType="Quest",Level=1,id=19213,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=133443,Link="|cff1eff00|Hitem:19213::::::::40:::::::|h[Silverwing Talisman of Merit]|h|r",EquipLoc="",Type="Quest"},["Silent Fang"]={SubType="One-Handed Swords",Level=62,id=13953,StackCount=1,Rarity=3,MinLevel=57,SellPrice=56880,Texture=135351,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:13953::::::::40:::::::|h[Silent Fang]|h|r"},["Zandalar Confessor's Mantle"]={SubType="Cloth",Level=68,id=19841,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=135032,Link="|cffa335ee|Hitem:19841::::::::40:::::::|h[Zandalar Confessor's Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Test Enchant Chest Health"]={SubType="Consumable",Level=45,id=16086,StackCount=1,Rarity=1,MinLevel=0,SellPrice=650,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:16086::::::::40:::::::|h[Test Enchant Chest Health]|h|r",Type="Consumable"},["Dreamwalker Headpiece"]={SubType="Leather",Level=88,id=22490,StackCount=1,Rarity=4,MinLevel=60,SellPrice=99788,Texture=133117,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:22490::::::::40:::::::|h[Dreamwalker Headpiece]|h|r"},["Deprecated Murkwood Sap"]={SubType="Consumable",Level=45,id=3773,StackCount=10,Rarity=1,MinLevel=35,SellPrice=126,Texture=132794,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:3773::::::::40:::::::|h[Deprecated Murkwood Sap]|h|r"},["Deeprock Bracers"]={SubType="Plate",Level=62,id=21184,StackCount=1,Rarity=4,MinLevel=0,SellPrice=14425,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:21184::::::::40:::::::|h[Deeprock Bracers]|h|r"},["Fool's Stout"]={SubType="Quest",Level=1,id=5806,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132623,Link="|cffffffff|Hitem:5806::::::::40:::::::|h[Fool's Stout]|h|r",EquipLoc="",Type="Quest"},["Recipe: Greater Dreamless Sleep"]={SubType="Alchemy",Level=55,id=20012,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Link="|cffffffff|Hitem:20012::::::::40:::::::|h[Recipe: Greater Dreamless Sleep]|h|r",EquipLoc="",Type="Recipe"},["Ringtail Girdle"]={SubType="Leather",Level=35,id=15587,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1822,Texture=132523,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15587::::::::40:::::::|h[Ringtail Girdle]|h|r",Type="Armor"},["Shortsword of Vengeance"]={SubType="One-Handed Swords",Level=47,id=754,StackCount=1,Rarity=3,MinLevel=42,SellPrice=23556,Texture=135312,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:754::::::::40:::::::|h[Shortsword of Vengeance]|h|r"},["Tusker Sword"]={SubType="Two-Handed Swords",Level=49,id=15252,StackCount=1,Rarity=2,MinLevel=44,SellPrice=27906,Texture=135355,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15252::::::::40:::::::|h[Tusker Sword]|h|r",Type="Weapon"},["Green Leather Bag"]={SubType="Bag",Level=15,id=5573,StackCount=1,Rarity=1,MinLevel=0,SellPrice=875,Texture=133624,Link="|cffffffff|Hitem:5573::::::::40:::::::|h[Green Leather Bag]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Monster - Mace, Standard B01 White"]={SubType="One-Handed Maces",Level=1,id=13894,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133476,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13894::::::::40:::::::|h[Monster - Mace, Standard B01 White]|h|r"},["Pattern: Ghostweave Vest"]={SubType="Tailoring",Level=55,id=14480,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14480::::::::40:::::::|h[Pattern: Ghostweave Vest]|h|r"},["Faerleia's Shield"]={SubType="Shields",Level=15,id=3450,StackCount=1,Rarity=2,MinLevel=0,SellPrice=443,Texture=134950,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:3450::::::::40:::::::|h[Faerleia's Shield]|h|r",Type="Armor"},["Eaglehorn Long Bow"]={SubType="Bows",Level=63,id=13023,StackCount=1,Rarity=3,MinLevel=58,SellPrice=42703,Texture=135499,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff0070dd|Hitem:13023::::::::40:::::::|h[Eaglehorn Long Bow]|h|r"},["Well Balanced Axe"]={SubType="One-Handed Axes",Level=61,id=18347,StackCount=1,Rarity=2,MinLevel=56,SellPrice=43067,Texture=132402,Type="Weapon",Link="|cff1eff00|Hitem:18347::::::::40:::::::|h[Well Balanced Axe]|h|r",EquipLoc="INVTYPE_WEAPON"},["Lieutenant Commander's Leather Helm"]={SubType="Leather",Level=71,id=23312,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15795,Texture=133077,Link="|cff0070dd|Hitem:23312::::::::40:::::::|h[Lieutenant Commander's Leather Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Moist Cornbread"]={SubType="Consumable",Level=25,id=4542,StackCount=20,Rarity=1,MinLevel=15,SellPrice=25,Texture=133950,Link="|cffffffff|Hitem:4542::::::::40:::::::|h[Moist Cornbread]|h|r",EquipLoc="",Type="Consumable"},["Linken's Superior Sword"]={SubType="Quest",Level=1,id=11162,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135349,Type="Quest",Link="|cffffffff|Hitem:11162::::::::40:::::::|h[Linken's Superior Sword]|h|r",EquipLoc=""},["Sealed Note to Elling"]={SubType="Quest",Level=1,id=5946,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133458,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5946::::::::40:::::::|h[Sealed Note to Elling]|h|r"},["Scalping Tomahawk"]={SubType="One-Handed Axes",Level=11,id=4561,StackCount=1,Rarity=2,MinLevel=6,SellPrice=309,Texture=132410,Link="|cff1eff00|Hitem:4561::::::::40:::::::|h[Scalping Tomahawk]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Videre Elixir"]={SubType="Quest",Level=1,id=11243,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134813,Type="Quest",Link="|cffffffff|Hitem:11243::::::::40:::::::|h[Videre Elixir]|h|r",EquipLoc=""},["Test Arcane Res Wrist Cloth"]={SubType="Cloth",Level=35,id=16153,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1379,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:16153::::::::40:::::::|h[Test Arcane Res Wrist Cloth]|h|r",Type="Armor"},["Black Dye"]={SubType="Trade Goods",Level=40,id=2325,StackCount=10,Rarity=1,MinLevel=0,SellPrice=250,Texture=134843,Type="Trade Goods",Link="|cffffffff|Hitem:2325::::::::40:::::::|h[Black Dye]|h|r",EquipLoc=""},["Quick Strike Ring"]={SubType="Miscellaneous",Level=67,id=18821,StackCount=1,Rarity=4,MinLevel=60,SellPrice=64030,Texture=133349,Type="Armor",Link="|cffa335ee|Hitem:18821::::::::40:::::::|h[Quick Strike Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Deprecated Winter Mail Coif"]={SubType="Mail",Level=26,id=3052,StackCount=1,Rarity=0,MinLevel=21,SellPrice=528,Texture=133071,Type="Armor",Link="|cff9d9d9d|Hitem:3052::::::::40:::::::|h[Deprecated Winter Mail Coif]|h|r",EquipLoc="INVTYPE_HEAD"},["Fish Oil"]={SubType="Junk",Level=1,id=17058,StackCount=20,Rarity=1,MinLevel=0,SellPrice=7,Texture=134844,EquipLoc="",Link="|cffffffff|Hitem:17058::::::::40:::::::|h[Fish Oil]|h|r",Type="Miscellaneous"},["Desert Choker"]={SubType="Miscellaneous",Level=47,id=12043,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5396,Texture=133295,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12043::::::::40:::::::|h[Desert Choker]|h|r"},["Schematic: Dark Iron Bomb"]={SubType="Engineering",Level=57,id=16049,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:16049::::::::40:::::::|h[Schematic: Dark Iron Bomb]|h|r",Type="Recipe"},["Recipe: Poached Sunscale Salmon"]={SubType="Cooking",Level=50,id=13946,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13946::::::::40:::::::|h[Recipe: Poached Sunscale Salmon]|h|r"},["Plans: Stronghold Gauntlets"]={SubType="Blacksmithing",Level=62,id=12720,StackCount=1,Rarity=4,MinLevel=0,SellPrice=20000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffa335ee|Hitem:12720::::::::40:::::::|h[Plans: Stronghold Gauntlets]|h|r"},["Filled Vessel"]={SubType="Quest",Level=1,id=5188,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134754,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5188::::::::40:::::::|h[Filled Vessel]|h|r"},["Craftsman's Writ - Runecloth Robe"]={SubType="Junk",Level=60,id=22612,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22612::::::::40:::::::|h[Craftsman's Writ - Runecloth Robe]|h|r"},["Stormpike Commander's Flesh"]={SubType="Quest",Level=1,id=17328,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=134025,EquipLoc="",Link="|cffffffff|Hitem:17328::::::::40:::::::|h[Stormpike Commander's Flesh]|h|r",Type="Quest"},["Champion's Chain Helm"]={SubType="Mail",Level=71,id=23251,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18384,Texture=133071,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:23251::::::::40:::::::|h[Champion's Chain Helm]|h|r"},["Primal Batskin Jerkin"]={SubType="Leather",Level=65,id=19685,StackCount=1,Rarity=3,MinLevel=60,SellPrice=31644,Texture=132718,Link="|cff0070dd|Hitem:19685::::::::40:::::::|h[Primal Batskin Jerkin]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Bundle of Relics"]={SubType="Consumable",Level=1,id=15314,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133639,EquipLoc="",Link="|cffffffff|Hitem:15314::::::::40:::::::|h[Bundle of Relics]|h|r",Type="Consumable"},["Schematic: Mithril Heavy-bore Rifle"]={SubType="Engineering",Level=44,id=10604,StackCount=1,Rarity=2,MinLevel=0,SellPrice=825,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10604::::::::40:::::::|h[Schematic: Mithril Heavy-bore Rifle]|h|r",Type="Recipe"},["Head of Instructor Razuvious"]={SubType="Quest",Level=1,id=23360,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134173,Link="|cffffffff|Hitem:23360::::::::40:::::::|h[Head of Instructor Razuvious]|h|r",EquipLoc="",Type="Quest"},["Small Leather Ammo Pouch"]={SubType="Ammo Pouch",Level=5,id=7279,StackCount=1,Rarity=1,MinLevel=1,SellPrice=25,Texture=133581,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:7279::::::::40:::::::|h[Small Leather Ammo Pouch]|h|r",Type="Quiver"},["Ruined Leather Scraps"]={SubType="Trade Goods",Level=5,id=2934,StackCount=20,Rarity=1,MinLevel=0,SellPrice=7,Texture=134360,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:2934::::::::40:::::::|h[Ruined Leather Scraps]|h|r"},["Test Spirit Chest"]={SubType="Plate",Level=60,id=12245,StackCount=1,Rarity=1,MinLevel=55,SellPrice=9488,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:12245::::::::40:::::::|h[Test Spirit Chest]|h|r"},["Green Wedding Hanbok"]={SubType="Miscellaneous",Level=40,id=13900,StackCount=1,Rarity=1,MinLevel=0,SellPrice=27442,Texture=132663,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:13900::::::::40:::::::|h[Green Wedding Hanbok]|h|r"},["Pork Belly Pie"]={SubType="Quest",Level=1,id=962,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133952,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:962::::::::40:::::::|h[Pork Belly Pie]|h|r"},["Shadowcraft Belt"]={SubType="Leather",Level=58,id=16713,StackCount=1,Rarity=3,MinLevel=53,SellPrice=11196,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:16713::::::::40:::::::|h[Shadowcraft Belt]|h|r",Type="Armor"},["Jutebraid Gloves"]={SubType="Cloth",Level=31,id=10654,StackCount=1,Rarity=2,MinLevel=0,SellPrice=965,Texture=132955,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10654::::::::40:::::::|h[Jutebraid Gloves]|h|r",Type="Armor"},["Brackwater Shield"]={SubType="Shields",Level=14,id=3654,StackCount=1,Rarity=2,MinLevel=9,SellPrice=366,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:3654::::::::40:::::::|h[Brackwater Shield]|h|r"},["Sentry's Armsplints"]={SubType="Mail",Level=26,id=15532,StackCount=1,Rarity=2,MinLevel=21,SellPrice=944,Texture=132615,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15532::::::::40:::::::|h[Sentry's Armsplints]|h|r",Type="Armor"},["PVP Cloth Legs Horde"]={SubType="Miscellaneous",Level=60,id=16037,StackCount=1,Rarity=1,MinLevel=0,SellPrice=9488,Texture=134589,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:16037::::::::40:::::::|h[PVP Cloth Legs Horde]|h|r",Type="Armor"},["Battleforge Shield"]={SubType="Shields",Level=29,id=6599,StackCount=1,Rarity=2,MinLevel=24,SellPrice=2678,Texture=134951,Link="|cff1eff00|Hitem:6599::::::::40:::::::|h[Battleforge Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Pattern: Bright Yellow Shirt"]={SubType="Tailoring",Level=27,id=14627,StackCount=1,Rarity=1,MinLevel=0,SellPrice=200,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:14627::::::::40:::::::|h[Pattern: Bright Yellow Shirt]|h|r"},["Monster - Mace2H, Cairne Totem"]={SubType="Two-Handed Maces",Level=1,id=14084,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133038,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14084::::::::40:::::::|h[Monster - Mace2H, Cairne Totem]|h|r"},["Fissure Plant"]={SubType="Consumable",Level=15,id=5066,StackCount=10,Rarity=1,MinLevel=5,SellPrice=21,Texture=134184,Link="|cffffffff|Hitem:5066::::::::40:::::::|h[Fissure Plant]|h|r",EquipLoc="",Type="Consumable"},["Smokey's Explosive Launcher"]={SubType="Guns",Level=60,id=16992,StackCount=1,Rarity=2,MinLevel=0,SellPrice=30874,Texture=135617,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:16992::::::::40:::::::|h[Smokey's Explosive Launcher]|h|r",Type="Weapon"},["Serpent Clasp Belt"]={SubType="Mail",Level=44,id=12258,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4549,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:12258::::::::40:::::::|h[Serpent Clasp Belt]|h|r"},["Emerald Mist Gauntlets"]={SubType="Plate",Level=58,id=15795,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7631,Texture=132964,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15795::::::::40:::::::|h[Emerald Mist Gauntlets]|h|r",Type="Armor"},["Chief Brigadier Armor"]={SubType="Mail",Level=41,id=6411,StackCount=1,Rarity=2,MinLevel=36,SellPrice=7268,Texture=132743,Type="Armor",Link="|cff1eff00|Hitem:6411::::::::40:::::::|h[Chief Brigadier Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Small Tomahawk"]={SubType="One-Handed Axes",Level=8,id=2498,StackCount=1,Rarity=1,MinLevel=3,SellPrice=81,Texture=132410,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:2498::::::::40:::::::|h[Small Tomahawk]|h|r"},["Sorcerer Hat"]={SubType="Cloth",Level=41,id=9878,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3424,Texture=133153,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9878::::::::40:::::::|h[Sorcerer Hat]|h|r"},["Level 60 Test Gear Mail - Hunter"]={SubType="Junk",Level=1,id=13690,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13690::::::::40:::::::|h[Level 60 Test Gear Mail - Hunter]|h|r"},["Tangy Clam Meat"]={SubType="Trade Goods",Level=23,id=5504,StackCount=10,Rarity=1,MinLevel=0,SellPrice=22,Texture=134007,Link="|cffffffff|Hitem:5504::::::::40:::::::|h[Tangy Clam Meat]|h|r",EquipLoc="",Type="Trade Goods"},["Swiftwalker Boots"]={SubType="Leather",Level=59,id=12553,StackCount=1,Rarity=3,MinLevel=54,SellPrice=17699,Texture=132536,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:12553::::::::40:::::::|h[Swiftwalker Boots]|h|r"},["Warstrife Leggings"]={SubType="Leather",Level=58,id=11821,StackCount=1,Rarity=3,MinLevel=53,SellPrice=22384,Texture=134589,Type="Armor",Link="|cff0070dd|Hitem:11821::::::::40:::::::|h[Warstrife Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Recipe: Elixir of the Mongoose"]={SubType="Alchemy",Level=56,id=13491,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13491::::::::40:::::::|h[Recipe: Elixir of the Mongoose]|h|r"},["Empty Thaumaturgy Vessel"]={SubType="Quest",Level=1,id=7866,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134867,EquipLoc="",Link="|cffffffff|Hitem:7866::::::::40:::::::|h[Empty Thaumaturgy Vessel]|h|r",Type="Quest"},["Hardened Flasket"]={SubType="Quest",Level=1,id=12566,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134870,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12566::::::::40:::::::|h[Hardened Flasket]|h|r"},["Empty Leaden Collection Phial"]={SubType="Quest",Level=1,id=9283,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132788,Link="|cffffffff|Hitem:9283::::::::40:::::::|h[Empty Leaden Collection Phial]|h|r",EquipLoc="",Type="Quest"},["Swift Razzashi Raptor"]={SubType="Junk",Level=60,id=19872,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132253,Link="|cffa335ee|Hitem:19872::::::::40:::::::|h[Swift Razzashi Raptor]|h|r",EquipLoc="",Type="Miscellaneous"},["Crawler Claw"]={SubType="Trade Goods",Level=13,id=2675,StackCount=10,Rarity=1,MinLevel=0,SellPrice=11,Texture=133708,Link="|cffffffff|Hitem:2675::::::::40:::::::|h[Crawler Claw]|h|r",EquipLoc="",Type="Trade Goods"},["Torch of Retribution"]={SubType="Miscellaneous",Level=1,id=10515,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135466,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:10515::::::::40:::::::|h[Torch of Retribution]|h|r",Type="Armor"},["Green Hills of Stranglethorn - Page 11"]={SubType="Junk",Level=1,id=2735,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,Type="Miscellaneous",Link="|cffffffff|Hitem:2735::::::::40:::::::|h[Green Hills of Stranglethorn - Page 11]|h|r",EquipLoc=""},["Zombie Skin Boots"]={SubType="Leather",Level=8,id=3439,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:3439::::::::40:::::::|h[Zombie Skin Boots]|h|r"},["Hameya's Slayer"]={SubType="One-Handed Swords",Level=60,id=15814,StackCount=1,Rarity=2,MinLevel=0,SellPrice=41911,Texture=135344,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15814::::::::40:::::::|h[Hameya's Slayer]|h|r",Type="Weapon"},["Cured Thick Hide"]={SubType="Trade Goods",Level=40,id=8172,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134353,Link="|cffffffff|Hitem:8172::::::::40:::::::|h[Cured Thick Hide]|h|r",EquipLoc="",Type="Trade Goods"},["Last Month's Mutton"]={SubType="One-Handed Maces",Level=34,id=19292,StackCount=1,Rarity=1,MinLevel=29,SellPrice=4022,Texture=133974,Link="|cffffffff|Hitem:19292::::::::40:::::::|h[Last Month's Mutton]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Polished Scale Leggings"]={SubType="Mail",Level=27,id=2152,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1181,Texture=134583,Type="Armor",Link="|cffffffff|Hitem:2152::::::::40:::::::|h[Polished Scale Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Plans: Wicked Mithril Blade"]={SubType="Blacksmithing",Level=45,id=8029,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2000,Texture=134942,Link="|cff1eff00|Hitem:8029::::::::40:::::::|h[Plans: Wicked Mithril Blade]|h|r",EquipLoc="",Type="Recipe"},["Blazefury Medallion"]={SubType="Miscellaneous",Level=68,id=17111,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34648,Texture=133434,EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:17111::::::::40:::::::|h[Blazefury Medallion]|h|r",Type="Armor"},["Horn of the Timber Wolf"]={SubType="Junk",Level=40,id=1132,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132224,Link="|cff0070dd|Hitem:1132::::::::40:::::::|h[Horn of the Timber Wolf]|h|r",EquipLoc="",Type="Miscellaneous"},["Binding Girdle"]={SubType="Leather",Level=15,id=5275,StackCount=1,Rarity=2,MinLevel=0,SellPrice=175,Texture=132490,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:5275::::::::40:::::::|h[Binding Girdle]|h|r",Type="Armor"},["Potent Gloves"]={SubType="Leather",Level=50,id=15174,StackCount=1,Rarity=2,MinLevel=45,SellPrice=6017,Texture=132946,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15174::::::::40:::::::|h[Potent Gloves]|h|r",Type="Armor"},["Conqueror's Medallion"]={SubType="Miscellaneous",Level=58,id=12059,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12377,Texture=133278,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:12059::::::::40:::::::|h[Conqueror's Medallion]|h|r"},["Fourth Relic Fragment"]={SubType="Quest",Level=1,id=12899,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135152,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12899::::::::40:::::::|h[Fourth Relic Fragment]|h|r"},["Putrid Bile Duct"]={SubType="Quest",Level=1,id=20024,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,Link="|cffffffff|Hitem:20024::::::::40:::::::|h[Putrid Bile Duct]|h|r",EquipLoc="",Type="Quest"},["Raptor Hunter Tunic"]={SubType="Leather",Level=43,id=4119,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7271,Texture=132722,Type="Armor",Link="|cff1eff00|Hitem:4119::::::::40:::::::|h[Raptor Hunter Tunic]|h|r",EquipLoc="INVTYPE_CHEST"},["Khan Hratha's Head"]={SubType="Quest",Level=1,id=6192,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134151,Type="Quest",Link="|cffffffff|Hitem:6192::::::::40:::::::|h[Khan Hratha's Head]|h|r",EquipLoc=""},["Captain's Leggings"]={SubType="Mail",Level=43,id=7487,StackCount=1,Rarity=2,MinLevel=38,SellPrice=8665,Texture=134590,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7487::::::::40:::::::|h[Captain's Leggings]|h|r",Type="Armor"},["Webbed Cloak"]={SubType="Cloth",Level=5,id=3261,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=133763,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:3261::::::::40:::::::|h[Webbed Cloak]|h|r"},["Encoded Fragment"]={SubType="Quest",Level=1,id=20023,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:20023::::::::40:::::::|h[Encoded Fragment]|h|r"},["Robes of Arugal"]={SubType="Cloth",Level=29,id=6324,StackCount=1,Rarity=3,MinLevel=24,SellPrice=1892,Texture=132672,Type="Armor",Link="|cff0070dd|Hitem:6324::::::::40:::::::|h[Robes of Arugal]|h|r",EquipLoc="INVTYPE_ROBE"},["Nat Pagle's Extreme Anglin' Boots"]={SubType="Cloth",Level=40,id=19969,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3360,Texture=132543,Link="|cff1eff00|Hitem:19969::::::::40:::::::|h[Nat Pagle's Extreme Anglin' Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Dust-covered Leggings"]={SubType="Leather",Level=5,id=4921,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=134582,Type="Armor",Link="|cffffffff|Hitem:4921::::::::40:::::::|h[Dust-covered Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Rageclaw Belt"]={SubType="Leather",Level=46,id=15378,StackCount=1,Rarity=2,MinLevel=41,SellPrice=4358,Texture=132501,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15378::::::::40:::::::|h[Rageclaw Belt]|h|r",Type="Armor"},["Discordant Bracers"]={SubType="Quest",Level=1,id=17309,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132606,EquipLoc="",Link="|cffffffff|Hitem:17309::::::::40:::::::|h[Discordant Bracers]|h|r",Type="Quest"},["Enchanted Thorium Leggings"]={SubType="Plate",Level=63,id=12619,StackCount=1,Rarity=3,MinLevel=58,SellPrice=24058,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:12619::::::::40:::::::|h[Enchanted Thorium Leggings]|h|r"},["Bloomsprout Headpiece"]={SubType="Mail",Level=51,id=17767,StackCount=1,Rarity=3,MinLevel=46,SellPrice=13610,Texture=133119,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:17767::::::::40:::::::|h[Bloomsprout Headpiece]|h|r",Type="Armor"},["Unused Black Night Elf Bracers"]={SubType="Mail",Level=1,id=3525,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132603,Type="Armor",Link="|cffffffff|Hitem:3525::::::::40:::::::|h[Unused Black Night Elf Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Heavy Mageweave Bandage"]={SubType="Consumable",Level=1,id=8545,StackCount=20,Rarity=1,MinLevel=0,SellPrice=600,Texture=133690,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8545::::::::40:::::::|h[Heavy Mageweave Bandage]|h|r"},["Wrangler's Gloves"]={SubType="Leather",Level=27,id=15334,StackCount=1,Rarity=2,MinLevel=22,SellPrice=828,Texture=132961,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15334::::::::40:::::::|h[Wrangler's Gloves]|h|r",Type="Armor"},["Magni's Will"]={SubType="Miscellaneous",Level=60,id=12548,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7102,Texture=133347,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:12548::::::::40:::::::|h[Magni's Will]|h|r"},["Thorium Belt"]={SubType="Plate",Level=50,id=12406,StackCount=1,Rarity=2,MinLevel=45,SellPrice=4636,Texture=132519,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:12406::::::::40:::::::|h[Thorium Belt]|h|r"},["Runic Leather Headband"]={SubType="Leather",Level=58,id=15094,StackCount=1,Rarity=2,MinLevel=53,SellPrice=14155,Texture=133681,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15094::::::::40:::::::|h[Runic Leather Headband]|h|r",Type="Armor"},["Fragile Sprite Darter Egg"]={SubType="Quest",Level=1,id=11471,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132833,Type="Quest",Link="|cffffffff|Hitem:11471::::::::40:::::::|h[Fragile Sprite Darter Egg]|h|r",EquipLoc=""},["Grimoire of Create Bloodstone III"]={SubType="Book",Level=36,id=9228,StackCount=1,Rarity=1,MinLevel=36,SellPrice=4500,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9228::::::::40:::::::|h[Grimoire of Create Bloodstone III]|h|r"},["Monster - Mace, Ornate Metal Hammer"]={SubType="One-Handed Maces",Level=1,id=2182,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133041,Type="Weapon",Link="|cff9d9d9d|Hitem:2182::::::::40:::::::|h[Monster - Mace, Ornate Metal Hammer]|h|r",EquipLoc="INVTYPE_WEAPON"},["Linked Chain Pants"]={SubType="Mail",Level=25,id=1751,StackCount=1,Rarity=0,MinLevel=20,SellPrice=676,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:1751::::::::40:::::::|h[Linked Chain Pants]|h|r"},["Gloves of Faith"]={SubType="Cloth",Level=88,id=22517,StackCount=1,Rarity=4,MinLevel=60,SellPrice=54551,Texture=132951,Link="|cffa335ee|Hitem:22517::::::::40:::::::|h[Gloves of Faith]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Tablet of Windfury Totem II"]={SubType="Book",Level=46,id=9134,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9134::::::::40:::::::|h[Tablet of Windfury Totem II]|h|r"},["Anvilmar Knife"]={SubType="Daggers",Level=5,id=2195,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=135641,Type="Weapon",Link="|cffffffff|Hitem:2195::::::::40:::::::|h[Anvilmar Knife]|h|r",EquipLoc="INVTYPE_WEAPON"},["90 Green Frost Shroud"]={SubType="Cloth",Level=90,id=20348,StackCount=1,Rarity=2,MinLevel=60,SellPrice=54573,Texture=133759,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:20348::::::::40:::::::|h[90 Green Frost Shroud]|h|r"},["Hulking Bands"]={SubType="Mail",Level=22,id=14743,StackCount=1,Rarity=2,MinLevel=17,SellPrice=583,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14743::::::::40:::::::|h[Hulking Bands]|h|r"},["Test Nature Resist Plate LockBox"]={SubType="Junk",Level=1,id=16177,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16177::::::::40:::::::|h[Test Nature Resist Plate LockBox]|h|r",Type="Miscellaneous"},["Small Furry Paw"]={SubType="Junk",Level=1,id=5134,StackCount=5,Rarity=1,MinLevel=0,SellPrice=92,Texture=132179,EquipLoc="",Link="|cffffffff|Hitem:5134::::::::40:::::::|h[Small Furry Paw]|h|r",Type="Miscellaneous"},["Book of Thorns V"]={SubType="Book",Level=44,id=8782,StackCount=1,Rarity=1,MinLevel=44,SellPrice=6250,Texture=133743,Link="|cffffffff|Hitem:8782::::::::40:::::::|h[Book of Thorns V]|h|r",EquipLoc="",Type="Recipe"},["Darkmoon Card: Twisting Nether"]={SubType="Miscellaneous",Level=66,id=19290,StackCount=1,Rarity=4,MinLevel=60,SellPrice=100000,Texture=134495,Link="|cffa335ee|Hitem:19290::::::::40:::::::|h[Darkmoon Card: Twisting Nether]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Snickerfang Jowl"]={SubType="Quest",Level=1,id=8391,StackCount=20,Rarity=1,MinLevel=1,SellPrice=0,Texture=133972,Link="|cffffffff|Hitem:8391::::::::40:::::::|h[Snickerfang Jowl]|h|r",EquipLoc="",Type="Quest"},["Wendigo Mane"]={SubType="Quest",Level=1,id=2671,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134367,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2671::::::::40:::::::|h[Wendigo Mane]|h|r"},["Owl's Disk"]={SubType="Shields",Level=23,id=4822,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1349,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:4822::::::::40:::::::|h[Owl's Disk]|h|r",Type="Armor"},["Protector Legguards"]={SubType="Mail",Level=53,id=14796,StackCount=1,Rarity=2,MinLevel=48,SellPrice=16983,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14796::::::::40:::::::|h[Protector Legguards]|h|r"},["Morrowgrain"]={SubType="Trade Goods",Level=50,id=11040,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1,Texture=134185,Type="Trade Goods",Link="|cffffffff|Hitem:11040::::::::40:::::::|h[Morrowgrain]|h|r",EquipLoc=""},["Legionnaire's Dragonhide Trousers"]={SubType="Leather",Level=63,id=16502,StackCount=1,Rarity=3,MinLevel=58,SellPrice=14025,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16502::::::::40:::::::|h[Legionnaire's Dragonhide Trousers]|h|r",Type="Armor"},["Wushoolay's Mane"]={SubType="Quest",Level=1,id=19941,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134323,Link="|cff1eff00|Hitem:19941::::::::40:::::::|h[Wushoolay's Mane]|h|r",EquipLoc="",Type="Quest"},["Archimtiros' Ring of Reckoning"]={SubType="Miscellaneous",Level=83,id=19376,StackCount=1,Rarity=4,MinLevel=60,SellPrice=111528,Texture=133382,Link="|cffa335ee|Hitem:19376::::::::40:::::::|h[Archimtiros' Ring of Reckoning]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Book of Regrowth IV"]={SubType="Book",Level=30,id=8765,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133743,Link="|cffffffff|Hitem:8765::::::::40:::::::|h[Book of Regrowth IV]|h|r",EquipLoc="",Type="Recipe"},["Broken Weapon"]={SubType="Junk",Level=1,id=20763,StackCount=5,Rarity=0,MinLevel=0,SellPrice=312,Texture=132363,Link="|cff9d9d9d|Hitem:20763::::::::40:::::::|h[Broken Weapon]|h|r",EquipLoc="",Type="Miscellaneous"},["Green Hills of Stranglethorn - Page 21"]={SubType="Junk",Level=1,id=2745,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:2745::::::::40:::::::|h[Green Hills of Stranglethorn - Page 21]|h|r",Type="Miscellaneous"},["Dense Shortbow"]={SubType="Bows",Level=35,id=11305,StackCount=1,Rarity=2,MinLevel=30,SellPrice=5162,Texture=135495,Type="Weapon",Link="|cff1eff00|Hitem:11305::::::::40:::::::|h[Dense Shortbow]|h|r",EquipLoc="INVTYPE_RANGED"},["Geomancer's Boots"]={SubType="Cloth",Level=37,id=14218,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2713,Texture=132541,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14218::::::::40:::::::|h[Geomancer's Boots]|h|r"},["Defiler's Chain Pauldrons"]={SubType="Mail",Level=65,id=20158,StackCount=1,Rarity=4,MinLevel=60,SellPrice=39293,Texture=135032,Link="|cffa335ee|Hitem:20158::::::::40:::::::|h[Defiler's Chain Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Deprecated Speedstone"]={SubType="Miscellaneous",Level=40,id=941,StackCount=1,Rarity=1,MinLevel=35,SellPrice=5000,Texture=135229,Link="|cffffffff|Hitem:941::::::::40:::::::|h[Deprecated Speedstone]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Cloak of the Necropolis"]={SubType="Cloth",Level=90,id=23050,StackCount=1,Rarity=4,MinLevel=60,SellPrice=86439,Texture=133777,Link="|cffa335ee|Hitem:23050::::::::40:::::::|h[Cloak of the Necropolis]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["63 Green Warrior Axe"]={SubType="Two-Handed Axes",Level=63,id=20280,StackCount=1,Rarity=2,MinLevel=58,SellPrice=57576,Texture=132392,Link="|cff1eff00|Hitem:20280::::::::40:::::::|h[63 Green Warrior Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Deprecated Brackwater Pauldrons"]={SubType="Mail",Level=15,id=4679,StackCount=1,Rarity=0,MinLevel=10,SellPrice=131,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:4679::::::::40:::::::|h[Deprecated Brackwater Pauldrons]|h|r"},["Delicious Cave Mold"]={SubType="Consumable",Level=35,id=4607,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=134186,Type="Consumable",Link="|cffffffff|Hitem:4607::::::::40:::::::|h[Delicious Cave Mold]|h|r",EquipLoc=""},["Cactus Apple Surprise"]={SubType="Consumable",Level=5,id=11584,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1,Texture=133975,Type="Consumable",Link="|cffffffff|Hitem:11584::::::::40:::::::|h[Cactus Apple Surprise]|h|r",EquipLoc=""},["Codex of Fade V"]={SubType="Book",Level=50,id=9007,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9007::::::::40:::::::|h[Codex of Fade V]|h|r"},["Green Hills of Stranglethorn - Page 14"]={SubType="Junk",Level=1,id=2738,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,Type="Miscellaneous",Link="|cffffffff|Hitem:2738::::::::40:::::::|h[Green Hills of Stranglethorn - Page 14]|h|r",EquipLoc=""},["Consecrated Wand"]={SubType="Wands",Level=30,id=5244,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3465,Texture=135464,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5244::::::::40:::::::|h[Consecrated Wand]|h|r",Type="Weapon"},["Spellbinder Robe"]={SubType="Cloth",Level=17,id=6528,StackCount=1,Rarity=2,MinLevel=12,SellPrice=358,Texture=132663,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:6528::::::::40:::::::|h[Spellbinder Robe]|h|r"},["Overlord's Vambraces"]={SubType="Plate",Level=48,id=10202,StackCount=1,Rarity=2,MinLevel=43,SellPrice=3988,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10202::::::::40:::::::|h[Overlord's Vambraces]|h|r",Type="Armor"},["Stormpike Battle Tabard"]={SubType="Miscellaneous",Level=20,id=19032,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=135026,Link="|cffffffff|Hitem:19032::::::::40:::::::|h[Stormpike Battle Tabard]|h|r",EquipLoc="INVTYPE_TABARD",Type="Armor"},["Felcloth Bag"]={SubType="Soul Bag",Level=57,id=21341,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20000,Texture=133667,Link="|cff0070dd|Hitem:21341::::::::40:::::::|h[Felcloth Bag]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Unmelting Ice Girdle"]={SubType="Plate",Level=71,id=18547,StackCount=1,Rarity=4,MinLevel=60,SellPrice=23619,Texture=132520,Type="Armor",Link="|cffa335ee|Hitem:18547::::::::40:::::::|h[Unmelting Ice Girdle]|h|r",EquipLoc="INVTYPE_WAIST"},["Stone of Goodman"]={SubType="Miscellaneous",Level=1,id=6708,StackCount=1,Rarity=6,MinLevel=1,SellPrice=837,Texture=133346,Link="|cffe6cc80|Hitem:6708::::::::40:::::::|h[Stone of Goodman]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Familiar Claw"]={SubType="Junk",Level=1,id=3724,StackCount=5,Rarity=0,MinLevel=0,SellPrice=81,Texture=133723,Link="|cff9d9d9d|Hitem:3724::::::::40:::::::|h[Familiar Claw]|h|r",EquipLoc="",Type="Miscellaneous"},["Elunarian Boots"]={SubType="Cloth",Level=60,id=14458,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12573,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14458::::::::40:::::::|h[Elunarian Boots]|h|r"},["Test Arcane Resist Cloth LockBox"]={SubType="Junk",Level=1,id=16186,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16186::::::::40:::::::|h[Test Arcane Resist Cloth LockBox]|h|r",Type="Miscellaneous"},["Idol of the Sage"]={SubType="Quest",Level=61,id=20877,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134907,Link="|cff0070dd|Hitem:20877::::::::40:::::::|h[Idol of the Sage]|h|r",EquipLoc="",Type="Quest"},["Ornate Thorium Handaxe"]={SubType="One-Handed Axes",Level=55,id=12773,StackCount=1,Rarity=2,MinLevel=50,SellPrice=33079,Texture=132403,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:12773::::::::40:::::::|h[Ornate Thorium Handaxe]|h|r"},["Crimson Silk Vest"]={SubType="Cloth",Level=37,id=7058,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2052,Texture=135008,Link="|cffffffff|Hitem:7058::::::::40:::::::|h[Crimson Silk Vest]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Backbreaker"]={SubType="Two-Handed Maces",Level=56,id=15264,StackCount=1,Rarity=2,MinLevel=51,SellPrice=41517,Texture=133053,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15264::::::::40:::::::|h[Backbreaker]|h|r",Type="Weapon"},["Pattern: Wizardweave Robe"]={SubType="Tailoring",Level=60,id=14500,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14500::::::::40:::::::|h[Pattern: Wizardweave Robe]|h|r"},["Jin'do's Hexxer"]={SubType="One-Handed Maces",Level=66,id=19890,StackCount=1,Rarity=4,MinLevel=60,SellPrice=88292,Texture=133492,Link="|cffa335ee|Hitem:19890::::::::40:::::::|h[Jin'do's Hexxer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["zzOLD - QAEnchant 2H Weapon Major Intellect"]={SubType="Consumable",Level=1,id=17889,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17889::::::::40:::::::|h[zzOLD - QAEnchant 2H Weapon Major Intellect]|h|r",Type="Consumable"},["Ancient Bone Bow"]={SubType="Bows",Level=61,id=18680,StackCount=1,Rarity=3,MinLevel=56,SellPrice=37894,Texture=135496,Type="Weapon",Link="|cff0070dd|Hitem:18680::::::::40:::::::|h[Ancient Bone Bow]|h|r",EquipLoc="INVTYPE_RANGED"},["Orb of the Darkmoon"]={SubType="Miscellaneous",Level=65,id=19426,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25000,Texture=133303,Link="|cffa335ee|Hitem:19426::::::::40:::::::|h[Orb of the Darkmoon]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Crystallized Azsharite"]={SubType="Quest",Level=1,id=10714,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134088,EquipLoc="",Link="|cffffffff|Hitem:10714::::::::40:::::::|h[Crystallized Azsharite]|h|r",Type="Quest"},["Wolfskin Bracers"]={SubType="Leather",Level=5,id=6070,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=132604,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:6070::::::::40:::::::|h[Wolfskin Bracers]|h|r"},["Thick Qirajihide Belt"]={SubType="Leather",Level=76,id=21675,StackCount=1,Rarity=4,MinLevel=60,SellPrice=35560,Texture=132504,Link="|cffa335ee|Hitem:21675::::::::40:::::::|h[Thick Qirajihide Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Mystical Leggings"]={SubType="Cloth",Level=56,id=10177,StackCount=1,Rarity=2,MinLevel=51,SellPrice=12833,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10177::::::::40:::::::|h[Mystical Leggings]|h|r",Type="Armor"},["Recipe: Herb Baked Egg"]={SubType="Cooking",Level=5,id=6891,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:6891::::::::40:::::::|h[Recipe: Herb Baked Egg]|h|r"},["Lieutenant Commander's Silk Cowl"]={SubType="Cloth",Level=71,id=23318,StackCount=1,Rarity=3,MinLevel=60,SellPrice=12917,Texture=133074,Link="|cff0070dd|Hitem:23318::::::::40:::::::|h[Lieutenant Commander's Silk Cowl]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Bristlebark Cape"]={SubType="Cloth",Level=21,id=14571,StackCount=1,Rarity=2,MinLevel=16,SellPrice=496,Texture=133761,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14571::::::::40:::::::|h[Bristlebark Cape]|h|r"},["Protector Buckler"]={SubType="Shields",Level=54,id=14790,StackCount=1,Rarity=2,MinLevel=49,SellPrice=18781,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14790::::::::40:::::::|h[Protector Buckler]|h|r"},["Crate With Holes"]={SubType="Consumable",Level=1,id=5880,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132765,EquipLoc="",Link="|cffffffff|Hitem:5880::::::::40:::::::|h[Crate With Holes]|h|r",Type="Consumable"},["Avalanchion's Stony Hide"]={SubType="Shields",Level=59,id=18673,StackCount=1,Rarity=3,MinLevel=54,SellPrice=28918,Texture=134949,Type="Armor",Link="|cff0070dd|Hitem:18673::::::::40:::::::|h[Avalanchion's Stony Hide]|h|r",EquipLoc="INVTYPE_SHIELD"},["Monster - Mace2H, Horde Black Spiked Badass"]={SubType="Two-Handed Maces",Level=1,id=14824,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14824::::::::40:::::::|h[Monster - Mace2H, Horde Black Spiked Badass]|h|r"},["Codex of Fade VI"]={SubType="Book",Level=60,id=9029,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9029::::::::40:::::::|h[Codex of Fade VI]|h|r"},["Khan's Buckler"]={SubType="Shields",Level=49,id=14780,StackCount=1,Rarity=2,MinLevel=44,SellPrice=14289,Texture=134951,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:14780::::::::40:::::::|h[Khan's Buckler]|h|r"},["Bloodspattered Shoulder Pads"]={SubType="Mail",Level=21,id=15496,StackCount=1,Rarity=1,MinLevel=16,SellPrice=461,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:15496::::::::40:::::::|h[Bloodspattered Shoulder Pads]|h|r",Type="Armor"},["Sample of Indurium Ore"]={SubType="Quest",Level=1,id=5866,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134575,EquipLoc="",Link="|cffffffff|Hitem:5866::::::::40:::::::|h[Sample of Indurium Ore]|h|r",Type="Quest"},["Jungle Remedy"]={SubType="Consumable",Level=32,id=2633,StackCount=10,Rarity=1,MinLevel=22,SellPrice=25,Texture=134743,Link="|cffffffff|Hitem:2633::::::::40:::::::|h[Jungle Remedy]|h|r",EquipLoc="",Type="Consumable"},["Blood of Anacondra"]={SubType="Quest",Level=1,id=5402,StackCount=1,Rarity=1,MinLevel=0,SellPrice=17,Texture=134719,EquipLoc="",Link="|cffffffff|Hitem:5402::::::::40:::::::|h[Blood of Anacondra]|h|r",Type="Quest"},["90 Epic Frost Bindings"]={SubType="Cloth",Level=90,id=20325,StackCount=1,Rarity=4,MinLevel=60,SellPrice=57586,Texture=133365,Link="|cffa335ee|Hitem:20325::::::::40:::::::|h[90 Epic Frost Bindings]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Tome of Frostbolt V"]={SubType="Book",Level=26,id=8816,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8816::::::::40:::::::|h[Tome of Frostbolt V]|h|r"},["Tablet of Chain Lightning II"]={SubType="Book",Level=40,id=9102,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9102::::::::40:::::::|h[Tablet of Chain Lightning II]|h|r"},["Insignia of the Alliance"]={SubType="Miscellaneous",Level=0,id=18854,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3750,Texture=133452,Type="Armor",Link="|cff0070dd|Hitem:18854::::::::40:::::::|h[Insignia of the Alliance]|h|r",EquipLoc="INVTYPE_TRINKET"},["Giant Egg"]={SubType="Trade Goods",Level=45,id=12207,StackCount=10,Rarity=1,MinLevel=0,SellPrice=150,Texture=132834,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:12207::::::::40:::::::|h[Giant Egg]|h|r"},["Pattern: Mooncloth Circlet"]={SubType="Tailoring",Level=62,id=14509,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:14509::::::::40:::::::|h[Pattern: Mooncloth Circlet]|h|r"},["Monster - Sword, Horde Jagged Bloody"]={SubType="One-Handed Swords",Level=1,id=11019,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,Type="Weapon",Link="|cff9d9d9d|Hitem:11019::::::::40:::::::|h[Monster - Sword, Horde Jagged Bloody]|h|r",EquipLoc="INVTYPE_WEAPON"},["Tablet of Agitating Totem"]={SubType="Book",Level=8,id=1032,StackCount=1,Rarity=1,MinLevel=8,SellPrice=87,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1032::::::::40:::::::|h[Tablet of Agitating Totem]|h|r"},["Crystal Encrusted Greaves"]={SubType="Plate",Level=63,id=20710,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16457,Texture=132583,Link="|cff0070dd|Hitem:20710::::::::40:::::::|h[Crystal Encrusted Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Solid Shortblade"]={SubType="One-Handed Swords",Level=18,id=2074,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1054,Texture=135324,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:2074::::::::40:::::::|h[Solid Shortblade]|h|r",Type="Weapon"},["Pattern: Polar Gloves"]={SubType="Tailoring",Level=80,id=22694,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37500,Texture=134939,Link="|cffffffff|Hitem:22694::::::::40:::::::|h[Pattern: Polar Gloves]|h|r",EquipLoc="",Type="Recipe"},["Recipe: Tasty Lion Steak"]={SubType="Cooking",Level=30,id=3736,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,Link="|cffffffff|Hitem:3736::::::::40:::::::|h[Recipe: Tasty Lion Steak]|h|r",EquipLoc="",Type="Recipe"},["The Pariah's Instructions"]={SubType="Quest",Level=0,id=17781,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,EquipLoc="",Link="|cffffffff|Hitem:17781::::::::40:::::::|h[The Pariah's Instructions]|h|r",Type="Quest"},["Soul Crystal Relic"]={SubType="Miscellaneous",Level=40,id=3788,StackCount=1,Rarity=1,MinLevel=35,SellPrice=3000,Texture=134087,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:3788::::::::40:::::::|h[Soul Crystal Relic]|h|r",Type="Armor"},["Grubbis Paws"]={SubType="Mail",Level=34,id=9445,StackCount=1,Rarity=3,MinLevel=29,SellPrice=2260,Texture=132951,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:9445::::::::40:::::::|h[Grubbis Paws]|h|r"},["Bloodsoul Breastplate"]={SubType="Mail",Level=65,id=19690,StackCount=1,Rarity=3,MinLevel=60,SellPrice=39683,Texture=132636,Link="|cff0070dd|Hitem:19690::::::::40:::::::|h[Bloodsoul Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Engraved Cape"]={SubType="Cloth",Level=55,id=10231,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9815,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10231::::::::40:::::::|h[Engraved Cape]|h|r",Type="Armor"},["Deprecated Patchwork Cloth Shoulderpads"]={SubType="Cloth",Level=9,id=1432,StackCount=1,Rarity=0,MinLevel=4,SellPrice=21,Texture=135037,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:1432::::::::40:::::::|h[Deprecated Patchwork Cloth Shoulderpads]|h|r"},["Holy Bologna: What the Light Won't Tell You"]={SubType="Junk",Level=60,id=18362,StackCount=1,Rarity=3,MinLevel=54,SellPrice=0,Texture=133740,Type="Miscellaneous",Link="|cff0070dd|Hitem:18362::::::::40:::::::|h[Holy Bologna: What the Light Won't Tell You]|h|r",EquipLoc=""},["Warchief Kilt"]={SubType="Leather",Level=39,id=7760,StackCount=1,Rarity=3,MinLevel=34,SellPrice=6074,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:7760::::::::40:::::::|h[Warchief Kilt]|h|r",Type="Armor"},["Steadfast Stompers"]={SubType="Mail",Level=41,id=15589,StackCount=1,Rarity=2,MinLevel=36,SellPrice=5462,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15589::::::::40:::::::|h[Steadfast Stompers]|h|r",Type="Armor"},["Modest Armguards"]={SubType="Mail",Level=60,id=18458,StackCount=1,Rarity=2,MinLevel=55,SellPrice=12212,Texture=132602,Type="Armor",Link="|cff1eff00|Hitem:18458::::::::40:::::::|h[Modest Armguards]|h|r",EquipLoc="INVTYPE_WRIST"},["Ley Staff"]={SubType="Staves",Level=10,id=9513,StackCount=1,Rarity=2,MinLevel=0,SellPrice=305,Texture=135158,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:9513::::::::40:::::::|h[Ley Staff]|h|r"},["Hallowed Scroll"]={SubType="Consumable",Level=1,id=9569,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:9569::::::::40:::::::|h[Hallowed Scroll]|h|r",EquipLoc="",Type="Consumable"},["Dokebi Leggings"]={SubType="Leather",Level=32,id=14585,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2687,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14585::::::::40:::::::|h[Dokebi Leggings]|h|r"},["Scorpashi Slippers"]={SubType="Leather",Level=46,id=14653,StackCount=1,Rarity=2,MinLevel=41,SellPrice=6854,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14653::::::::40:::::::|h[Scorpashi Slippers]|h|r"},["Libram: Holy Light IV"]={SubType="Book",Level=22,id=1534,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:1534::::::::40:::::::|h[Libram: Holy Light IV]|h|r",Type="Recipe"},["Unrefined Ore Sample"]={SubType="Quest",Level=1,id=5842,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135242,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5842::::::::40:::::::|h[Unrefined Ore Sample]|h|r"},["Waterspout Boots"]={SubType="Leather",Level=58,id=18322,StackCount=1,Rarity=3,MinLevel=53,SellPrice=16137,Texture=132542,Type="Armor",Link="|cff0070dd|Hitem:18322::::::::40:::::::|h[Waterspout Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Renegade Leggings"]={SubType="Mail",Level=37,id=9871,StackCount=1,Rarity=2,MinLevel=32,SellPrice=5425,Texture=134583,Link="|cff1eff00|Hitem:9871::::::::40:::::::|h[Renegade Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Tome of Flamestrike V"]={SubType="Book",Level=48,id=8864,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=133739,Link="|cffffffff|Hitem:8864::::::::40:::::::|h[Tome of Flamestrike V]|h|r",EquipLoc="",Type="Recipe"},["Judgement Spaulders"]={SubType="Plate",Level=76,id=16953,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42155,Texture=135068,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16953::::::::40:::::::|h[Judgement Spaulders]|h|r",Type="Armor"},["Knight-Captain's Plate Leggings"]={SubType="Plate",Level=63,id=16431,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11606,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16431::::::::40:::::::|h[Knight-Captain's Plate Leggings]|h|r",Type="Armor"},["Squirrel Token"]={SubType="Quest",Level=1,id=17115,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133786,EquipLoc="",Link="|cffffffff|Hitem:17115::::::::40:::::::|h[Squirrel Token]|h|r",Type="Quest"},["Head of Krom'zar"]={SubType="Quest",Level=1,id=11222,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134151,Type="Quest",Link="|cffffffff|Hitem:11222::::::::40:::::::|h[Head of Krom'zar]|h|r",EquipLoc=""},["Driving Gloves"]={SubType="Leather",Level=9,id=3152,StackCount=1,Rarity=1,MinLevel=0,SellPrice=28,Texture=132952,Link="|cffffffff|Hitem:3152::::::::40:::::::|h[Driving Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Webwood Spider Silk"]={SubType="Quest",Level=1,id=3412,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136113,EquipLoc="",Link="|cffffffff|Hitem:3412::::::::40:::::::|h[Webwood Spider Silk]|h|r",Type="Quest"},["Monster - Bow, White"]={SubType="Bows",Level=1,id=13147,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135493,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:13147::::::::40:::::::|h[Monster - Bow, White]|h|r"},["Headhunter's Buckler"]={SubType="Shields",Level=34,id=15352,StackCount=1,Rarity=2,MinLevel=29,SellPrice=4101,Texture=134967,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15352::::::::40:::::::|h[Headhunter's Buckler]|h|r",Type="Armor"},["Geomancer's Gloves"]={SubType="Cloth",Level=37,id=14222,StackCount=1,Rarity=2,MinLevel=32,SellPrice=1834,Texture=132955,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14222::::::::40:::::::|h[Geomancer's Gloves]|h|r"},["Book of Incantations"]={SubType="Quest",Level=1,id=18261,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133739,Type="Quest",Link="|cffffffff|Hitem:18261::::::::40:::::::|h[Book of Incantations]|h|r",EquipLoc=""},["Scarlet Armband"]={SubType="Quest",Level=1,id=3266,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133694,Link="|cffffffff|Hitem:3266::::::::40:::::::|h[Scarlet Armband]|h|r",EquipLoc="",Type="Quest"},["Jadefire Bracelets"]={SubType="Leather",Level=50,id=15387,StackCount=1,Rarity=2,MinLevel=45,SellPrice=5583,Texture=132605,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15387::::::::40:::::::|h[Jadefire Bracelets]|h|r",Type="Armor"},["A Dull and Flat Elven Blade"]={SubType="Quest",Level=1,id=18513,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=135357,Type="Quest",Link="|cffa335ee|Hitem:18513::::::::40:::::::|h[A Dull and Flat Elven Blade]|h|r",EquipLoc=""},["Sardonyx Knuckle"]={SubType="Miscellaneous",Level=52,id=11976,StackCount=1,Rarity=2,MinLevel=47,SellPrice=7778,Texture=133346,Type="Armor",Link="|cff1eff00|Hitem:11976::::::::40:::::::|h[Sardonyx Knuckle]|h|r",EquipLoc="INVTYPE_FINGER"},["Schematic: Deadly Scope"]={SubType="Engineering",Level=42,id=10602,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10602::::::::40:::::::|h[Schematic: Deadly Scope]|h|r",Type="Recipe"},["Crown of Destruction"]={SubType="Mail",Level=76,id=18817,StackCount=1,Rarity=4,MinLevel=60,SellPrice=63975,Texture=132768,Type="Armor",Link="|cffa335ee|Hitem:18817::::::::40:::::::|h[Crown of Destruction]|h|r",EquipLoc="INVTYPE_HEAD"},["Deathblow"]={SubType="Two-Handed Swords",Level=48,id=10628,StackCount=1,Rarity=3,MinLevel=43,SellPrice=29245,Texture=135341,EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:10628::::::::40:::::::|h[Deathblow]|h|r",Type="Weapon"},["Stormwind Medallion"]={SubType="Junk",Level=65,id=12585,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134414,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:12585::::::::40:::::::|h[Stormwind Medallion]|h|r"},["Five of Beasts"]={SubType="Junk",Level=1,id=19233,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134482,Link="|cff0070dd|Hitem:19233::::::::40:::::::|h[Five of Beasts]|h|r",EquipLoc="",Type="Miscellaneous"},["Venomspitter"]={SubType="One-Handed Maces",Level=60,id=13183,StackCount=1,Rarity=3,MinLevel=55,SellPrice=51771,Texture=135472,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:13183::::::::40:::::::|h[Venomspitter]|h|r"},["Test Glaive I"]={SubType="One-Handed Swords",Level=5,id=14891,StackCount=1,Rarity=1,MinLevel=1,SellPrice=25,Texture=135643,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:14891::::::::40:::::::|h[Test Glaive I]|h|r"},["Unused Red Leather C03 Gloves"]={SubType="Leather",Level=1,id=3534,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:3534::::::::40:::::::|h[Unused Red Leather C03 Gloves]|h|r"},["Golden Iron Destroyer"]={SubType="Two-Handed Maces",Level=34,id=3852,StackCount=1,Rarity=2,MinLevel=29,SellPrice=8360,Texture=133041,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3852::::::::40:::::::|h[Golden Iron Destroyer]|h|r",Type="Weapon"},["Linked Chain Bracers"]={SubType="Mail",Level=22,id=1748,StackCount=1,Rarity=0,MinLevel=17,SellPrice=232,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff9d9d9d|Hitem:1748::::::::40:::::::|h[Linked Chain Bracers]|h|r"},["Small Bronze Bomb"]={SubType="Explosives",Level=29,id=4374,StackCount=10,Rarity=1,MinLevel=0,SellPrice=200,Texture=133717,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4374::::::::40:::::::|h[Small Bronze Bomb]|h|r"},["OLDPlague Vials"]={SubType="Quest",Level=1,id=5438,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134799,EquipLoc="",Link="|cffffffff|Hitem:5438::::::::40:::::::|h[OLDPlague Vials]|h|r",Type="Quest"},["Grunt's Chestpiece"]={SubType="Mail",Level=26,id=15514,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1902,Texture=132624,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15514::::::::40:::::::|h[Grunt's Chestpiece]|h|r",Type="Armor"},["Dark Hooded Cape"]={SubType="Cloth",Level=37,id=5257,StackCount=1,Rarity=3,MinLevel=32,SellPrice=3159,Texture=133756,EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:5257::::::::40:::::::|h[Dark Hooded Cape]|h|r",Type="Armor"},["Deprecated Hands of the Gibbous Moon"]={SubType="Leather",Level=17,id=5297,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:5297::::::::40:::::::|h[Deprecated Hands of the Gibbous Moon]|h|r",Type="Armor"},["Thick Murloc Scale"]={SubType="Trade Goods",Level=35,id=5785,StackCount=10,Rarity=1,MinLevel=0,SellPrice=500,Texture=134305,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:5785::::::::40:::::::|h[Thick Murloc Scale]|h|r"},["Test Nature Res Waist Leather"]={SubType="Leather",Level=35,id=16126,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1782,Texture=133693,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16126::::::::40:::::::|h[Test Nature Res Waist Leather]|h|r",Type="Armor"},["Fast Test Bow"]={SubType="Bows",Level=70,id=5548,StackCount=1,Rarity=0,MinLevel=1,SellPrice=21212,Texture=135491,EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:5548::::::::40:::::::|h[Fast Test Bow]|h|r",Type="Weapon"},["Codex of Cure Disease"]={SubType="Book",Level=14,id=8960,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8960::::::::40:::::::|h[Codex of Cure Disease]|h|r"},["Bag of Empty Ooze Containers"]={SubType="Junk",Level=48,id=11955,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133622,Type="Miscellaneous",Link="|cffffffff|Hitem:11955::::::::40:::::::|h[Bag of Empty Ooze Containers]|h|r",EquipLoc=""},["Vital Leggings"]={SubType="Cloth",Level=36,id=14207,StackCount=1,Rarity=2,MinLevel=31,SellPrice=3076,Texture=134587,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14207::::::::40:::::::|h[Vital Leggings]|h|r"},["Champion's Silk Hood"]={SubType="Cloth",Level=63,id=16489,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8638,Texture=133074,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16489::::::::40:::::::|h[Champion's Silk Hood]|h|r",Type="Armor"},["Dragon's Blood Cape"]={SubType="Cloth",Level=73,id=17107,StackCount=1,Rarity=4,MinLevel=60,SellPrice=37537,Texture=133760,EquipLoc="INVTYPE_CLOAK",Link="|cffa335ee|Hitem:17107::::::::40:::::::|h[Dragon's Blood Cape]|h|r",Type="Armor"},["Fast Test Polearm"]={SubType="Polearms",Level=45,id=5545,StackCount=1,Rarity=0,MinLevel=1,SellPrice=8179,Texture=135574,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5545::::::::40:::::::|h[Fast Test Polearm]|h|r"},["Light Chain Armor"]={SubType="Mail",Level=10,id=2398,StackCount=1,Rarity=1,MinLevel=5,SellPrice=86,Texture=132624,Link="|cffffffff|Hitem:2398::::::::40:::::::|h[Light Chain Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Cabalist Belt"]={SubType="Leather",Level=46,id=7535,StackCount=1,Rarity=2,MinLevel=41,SellPrice=4353,Texture=132501,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:7535::::::::40:::::::|h[Cabalist Belt]|h|r",Type="Armor"},["Maggran's Reserve Letter"]={SubType="Quest",Level=1,id=16189,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133461,EquipLoc="",Link="|cffffffff|Hitem:16189::::::::40:::::::|h[Maggran's Reserve Letter]|h|r",Type="Quest"},["Earthen Leather Shoulders"]={SubType="Leather",Level=27,id=7352,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1306,Texture=135037,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7352::::::::40:::::::|h[Earthen Leather Shoulders]|h|r",Type="Armor"},["Large Ogre Chain Armor"]={SubType="Mail",Level=30,id=914,StackCount=1,Rarity=2,MinLevel=25,SellPrice=2669,Texture=132624,Type="Armor",Link="|cff1eff00|Hitem:914::::::::40:::::::|h[Large Ogre Chain Armor]|h|r",EquipLoc="INVTYPE_CHEST"},["Chief Brigadier Bracers"]={SubType="Mail",Level=37,id=6413,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2497,Texture=132617,Link="|cff1eff00|Hitem:6413::::::::40:::::::|h[Chief Brigadier Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Girdle of Nobility"]={SubType="Cloth",Level=18,id=5967,StackCount=1,Rarity=2,MinLevel=13,SellPrice=209,Texture=132499,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:5967::::::::40:::::::|h[Girdle of Nobility]|h|r",Type="Armor"},["Field Marshal's Lamellar Chestplate"]={SubType="Plate",Level=74,id=16473,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26654,Texture=132738,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16473::::::::40:::::::|h[Field Marshal's Lamellar Chestplate]|h|r",Type="Armor"},["Hive'Ashi Scout Report"]={SubType="Quest",Level=60,id=21161,StackCount=1,Rarity=1,MinLevel=58,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:21161::::::::40:::::::|h[Hive'Ashi Scout Report]|h|r",EquipLoc="",Type="Quest"},["Nightslayer Pants"]={SubType="Leather",Level=66,id=16822,StackCount=1,Rarity=4,MinLevel=60,SellPrice=43466,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16822::::::::40:::::::|h[Nightslayer Pants]|h|r",Type="Armor"},["Potent Belt"]={SubType="Leather",Level=47,id=15178,StackCount=1,Rarity=2,MinLevel=42,SellPrice=4935,Texture=132505,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15178::::::::40:::::::|h[Potent Belt]|h|r",Type="Armor"},["Formidable Circlet"]={SubType="Mail",Level=52,id=15634,StackCount=1,Rarity=2,MinLevel=47,SellPrice=11441,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15634::::::::40:::::::|h[Formidable Circlet]|h|r",Type="Armor"},["Gravestone Scepter"]={SubType="Wands",Level=29,id=7001,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3535,Texture=135466,Link="|cff0070dd|Hitem:7001::::::::40:::::::|h[Gravestone Scepter]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Tablet of Mana Font Totem II"]={SubType="Book",Level=36,id=9093,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=134459,Link="|cffffffff|Hitem:9093::::::::40:::::::|h[Tablet of Mana Font Totem II]|h|r",EquipLoc="",Type="Recipe"},["Heavy Runecloth Bandage"]={SubType="Consumable",Level=58,id=14530,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1000,Texture=133682,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:14530::::::::40:::::::|h[Heavy Runecloth Bandage]|h|r"},["Tainted Pierce"]={SubType="One-Handed Swords",Level=36,id=8225,StackCount=1,Rarity=3,MinLevel=31,SellPrice=9222,Texture=135340,Link="|cff0070dd|Hitem:8225::::::::40:::::::|h[Tainted Pierce]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Lithe Boots"]={SubType="Leather",Level=10,id=6201,StackCount=1,Rarity=1,MinLevel=5,SellPrice=54,Texture=132539,Link="|cffffffff|Hitem:6201::::::::40:::::::|h[Lithe Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Harlequin Robes"]={SubType="Cloth",Level=22,id=6503,StackCount=1,Rarity=2,MinLevel=0,SellPrice=762,Texture=132642,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:6503::::::::40:::::::|h[Harlequin Robes]|h|r"},["Merciless Bracers"]={SubType="Mail",Level=51,id=15649,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7808,Texture=132609,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15649::::::::40:::::::|h[Merciless Bracers]|h|r",Type="Armor"},["Sabatons of the Flamewalker"]={SubType="Mail",Level=68,id=19144,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45973,Texture=132548,Link="|cffa335ee|Hitem:19144::::::::40:::::::|h[Sabatons of the Flamewalker]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Legionnaire's Dragonhide Leggings"]={SubType="Leather",Level=68,id=22878,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18055,Texture=134586,Link="|cff0070dd|Hitem:22878::::::::40:::::::|h[Legionnaire's Dragonhide Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Girdle of Prophecy"]={SubType="Cloth",Level=66,id=16817,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17059,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16817::::::::40:::::::|h[Girdle of Prophecy]|h|r",Type="Armor"},["Glyph of Azora"]={SubType="Quest",Level=1,id=1083,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133277,Link="|cffffffff|Hitem:1083::::::::40:::::::|h[Glyph of Azora]|h|r",EquipLoc="",Type="Quest"},["Thorium Tube"]={SubType="Parts",Level=39,id=16000,StackCount=10,Rarity=1,MinLevel=0,SellPrice=3750,Texture=133027,EquipLoc="",Link="|cffffffff|Hitem:16000::::::::40:::::::|h[Thorium Tube]|h|r",Type="Trade Goods"},["Lightforge Helm"]={SubType="Plate",Level=62,id=16727,StackCount=1,Rarity=3,MinLevel=57,SellPrice=15968,Texture=133076,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16727::::::::40:::::::|h[Lightforge Helm]|h|r",Type="Armor"},["Lava Belt"]={SubType="Leather",Level=66,id=19149,StackCount=1,Rarity=4,MinLevel=60,SellPrice=21248,Texture=132521,Link="|cffa335ee|Hitem:19149::::::::40:::::::|h[Lava Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Vagabond Leggings"]={SubType="Leather",Level=13,id=5617,StackCount=1,Rarity=2,MinLevel=0,SellPrice=247,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:5617::::::::40:::::::|h[Vagabond Leggings]|h|r"},["Dwarven Charge"]={SubType="Two-Handed Axes",Level=42,id=9626,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16243,Texture=132400,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:9626::::::::40:::::::|h[Dwarven Charge]|h|r"},["Wrath of Cenarius"]={SubType="Miscellaneous",Level=66,id=21190,StackCount=1,Rarity=4,MinLevel=0,SellPrice=188888,Texture=133382,Link="|cffa335ee|Hitem:21190::::::::40:::::::|h[Wrath of Cenarius]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Nightslayer Shoulder Pads"]={SubType="Leather",Level=66,id=16823,StackCount=1,Rarity=4,MinLevel=60,SellPrice=32719,Texture=135056,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16823::::::::40:::::::|h[Nightslayer Shoulder Pads]|h|r",Type="Armor"},["Korg Bat"]={SubType="Two-Handed Maces",Level=36,id=1679,StackCount=1,Rarity=2,MinLevel=31,SellPrice=9635,Texture=133476,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1679::::::::40:::::::|h[Korg Bat]|h|r"},["Partially Filled Vessel"]={SubType="Quest",Level=1,id=5186,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134754,Link="|cffffffff|Hitem:5186::::::::40:::::::|h[Partially Filled Vessel]|h|r",EquipLoc="",Type="Quest"},["Templar Chestplate"]={SubType="Plate",Level=58,id=10164,StackCount=1,Rarity=2,MinLevel=53,SellPrice=14808,Texture=132751,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10164::::::::40:::::::|h[Templar Chestplate]|h|r",Type="Armor"},["Resplendent Belt"]={SubType="Cloth",Level=58,id=14327,StackCount=1,Rarity=2,MinLevel=53,SellPrice=7659,Texture=132502,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14327::::::::40:::::::|h[Resplendent Belt]|h|r"},["Infantry Tunic"]={SubType="Mail",Level=13,id=6336,StackCount=1,Rarity=2,MinLevel=8,SellPrice=305,Texture=132624,Type="Armor",Link="|cff1eff00|Hitem:6336::::::::40:::::::|h[Infantry Tunic]|h|r",EquipLoc="INVTYPE_CHEST"},["Enchanted Thorium Breastplate"]={SubType="Plate",Level=63,id=12618,StackCount=1,Rarity=3,MinLevel=58,SellPrice=23972,Texture=132745,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:12618::::::::40:::::::|h[Enchanted Thorium Breastplate]|h|r"},["Abyssal Plate Gauntlets"]={SubType="Plate",Level=60,id=20653,StackCount=1,Rarity=2,MinLevel=55,SellPrice=8602,Texture=132963,Link="|cff1eff00|Hitem:20653::::::::40:::::::|h[Abyssal Plate Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Renataki's Charm of Trickery"]={SubType="Miscellaneous",Level=65,id=19954,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133306,Link="|cffa335ee|Hitem:19954::::::::40:::::::|h[Renataki's Charm of Trickery]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Myrmidon's Greaves"]={SubType="Mail",Level=49,id=8130,StackCount=1,Rarity=2,MinLevel=44,SellPrice=9458,Texture=132535,Link="|cff1eff00|Hitem:8130::::::::40:::::::|h[Myrmidon's Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Lightstep Leggings"]={SubType="Leather",Level=37,id=15456,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4442,Texture=134593,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15456::::::::40:::::::|h[Lightstep Leggings]|h|r",Type="Armor"},["Soft Fur-lined Shoes"]={SubType="Cloth",Level=5,id=80,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=132543,Link="|cffffffff|Hitem:80::::::::40:::::::|h[Soft Fur-lined Shoes]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Pattern: Runecloth Headband"]={SubType="Tailoring",Level=59,id=14498,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6250,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14498::::::::40:::::::|h[Pattern: Runecloth Headband]|h|r"},["Mining Pick"]={SubType="Miscellaneous",Level=4,id=2901,StackCount=1,Rarity=1,MinLevel=1,SellPrice=16,Texture=134708,Link="|cffffffff|Hitem:2901::::::::40:::::::|h[Mining Pick]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Forest Mushroom Cap"]={SubType="Consumable",Level=5,id=4604,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=134534,Type="Consumable",Link="|cffffffff|Hitem:4604::::::::40:::::::|h[Forest Mushroom Cap]|h|r",EquipLoc=""},["Venomshroud Armguards"]={SubType="Cloth",Level=47,id=14439,StackCount=1,Rarity=2,MinLevel=42,SellPrice=3836,Texture=132605,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14439::::::::40:::::::|h[Venomshroud Armguards]|h|r"},["Myrmidon's Leggings"]={SubType="Mail",Level=51,id=8132,StackCount=1,Rarity=2,MinLevel=46,SellPrice=14485,Texture=134592,Link="|cff1eff00|Hitem:8132::::::::40:::::::|h[Myrmidon's Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Midnight Mace"]={SubType="One-Handed Maces",Level=38,id=936,StackCount=1,Rarity=3,MinLevel=33,SellPrice=11620,Texture=133729,Link="|cff0070dd|Hitem:936::::::::40:::::::|h[Midnight Mace]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Book of Moonfire"]={SubType="Book",Level=4,id=1341,StackCount=1,Rarity=1,MinLevel=4,SellPrice=10,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1341::::::::40:::::::|h[Book of Moonfire]|h|r"},["Rugged Spaulders"]={SubType="Leather",Level=20,id=5254,StackCount=1,Rarity=1,MinLevel=15,SellPrice=308,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:5254::::::::40:::::::|h[Rugged Spaulders]|h|r",Type="Armor"},["Test AQ Resource - Thorium"]={SubType="Junk",Level=1,id=21630,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21630::::::::40:::::::|h[Test AQ Resource - Thorium]|h|r",EquipLoc="",Type="Miscellaneous"},["Level 30 Test Gear Mail - Paladin/Warrior"]={SubType="Junk",Level=1,id=13658,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13658::::::::40:::::::|h[Level 30 Test Gear Mail - Paladin/Warrior]|h|r"},["Traphook Jerkin"]={SubType="Leather",Level=59,id=15825,StackCount=1,Rarity=2,MinLevel=0,SellPrice=19302,Texture=132741,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15825::::::::40:::::::|h[Traphook Jerkin]|h|r",Type="Armor"},["Death Capsule"]={SubType="Reagent",Level=30,id=5172,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=136210,Link="|cffffffff|Hitem:5172::::::::40:::::::|h[Death Capsule]|h|r",EquipLoc="",Type="Reagent"},["Pattern: Heavy Earthen Gloves"]={SubType="Leatherworking",Level=29,id=7364,StackCount=1,Rarity=2,MinLevel=0,SellPrice=550,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:7364::::::::40:::::::|h[Pattern: Heavy Earthen Gloves]|h|r"},["Shizzle's Drizzle Blocker"]={SubType="Shields",Level=55,id=11915,StackCount=1,Rarity=2,MinLevel=0,SellPrice=20124,Texture=134953,Type="Armor",Link="|cff1eff00|Hitem:11915::::::::40:::::::|h[Shizzle's Drizzle Blocker]|h|r",EquipLoc="INVTYPE_SHIELD"},["Chrome Ring"]={SubType="Miscellaneous",Level=26,id=11983,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1130,Texture=133347,Type="Armor",Link="|cff1eff00|Hitem:11983::::::::40:::::::|h[Chrome Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Black Dragonscale Shoulders"]={SubType="Mail",Level=60,id=15051,StackCount=1,Rarity=3,MinLevel=55,SellPrice=21736,Texture=135032,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:15051::::::::40:::::::|h[Black Dragonscale Shoulders]|h|r",Type="Armor"},["Recipe: Crystal Flake Throat Lozenge"]={SubType="Cooking",Level=60,id=23690,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6250,Texture=133734,Link="|cffffffff|Hitem:23690::::::::40:::::::|h[Recipe: Crystal Flake Throat Lozenge]|h|r",EquipLoc="",Type="Recipe"},["Deprecated Cougar Head Cap"]={SubType="Leather",Level=24,id=2038,StackCount=1,Rarity=0,MinLevel=0,SellPrice=349,Texture=133072,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:2038::::::::40:::::::|h[Deprecated Cougar Head Cap]|h|r"},["Eric Test Item B"]={SubType="Consumable",Level=1,id=17163,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132387,EquipLoc="",Link="|cffffffff|Hitem:17163::::::::40:::::::|h[Eric Test Item B]|h|r",Type="Consumable"},["Recipe: Transmute Fire to Earth"]={SubType="Alchemy",Level=55,id=13483,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13483::::::::40:::::::|h[Recipe: Transmute Fire to Earth]|h|r"},["Deprecated Battle Chain Pauldrons"]={SubType="Mail",Level=13,id=4667,StackCount=1,Rarity=1,MinLevel=8,SellPrice=127,Texture=135038,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:4667::::::::40:::::::|h[Deprecated Battle Chain Pauldrons]|h|r",Type="Armor"},["Oil of Immolation"]={SubType="Consumable",Level=41,id=8956,StackCount=5,Rarity=1,MinLevel=31,SellPrice=200,Texture=134732,Link="|cffffffff|Hitem:8956::::::::40:::::::|h[Oil of Immolation]|h|r",EquipLoc="",Type="Consumable"},["Serpent's Shoulders"]={SubType="Leather",Level=23,id=5404,StackCount=1,Rarity=1,MinLevel=18,SellPrice=469,Texture=135039,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:5404::::::::40:::::::|h[Serpent's Shoulders]|h|r"},["Nightslayer Bracelets"]={SubType="Leather",Level=66,id=16825,StackCount=1,Rarity=4,MinLevel=60,SellPrice=21977,Texture=132601,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16825::::::::40:::::::|h[Nightslayer Bracelets]|h|r",Type="Armor"},["Big Voodoo Robe"]={SubType="Leather",Level=43,id=8200,StackCount=1,Rarity=2,MinLevel=38,SellPrice=7275,Texture=132666,Link="|cff1eff00|Hitem:8200::::::::40:::::::|h[Big Voodoo Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Heroic Girdle"]={SubType="Plate",Level=57,id=14934,StackCount=1,Rarity=2,MinLevel=52,SellPrice=6754,Texture=132501,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14934::::::::40:::::::|h[Heroic Girdle]|h|r"},["Recipe: Hot Wolf Ribs"]={SubType="Cooking",Level=35,id=12229,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12229::::::::40:::::::|h[Recipe: Hot Wolf Ribs]|h|r"},["Blackrock Medallion"]={SubType="Quest",Level=1,id=11467,StackCount=50,Rarity=1,MinLevel=0,SellPrice=0,Texture=133439,Type="Quest",Link="|cffffffff|Hitem:11467::::::::40:::::::|h[Blackrock Medallion]|h|r",EquipLoc=""},["Combat Task Briefing VIII"]={SubType="Quest",Level=60,id=21252,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21252::::::::40:::::::|h[Combat Task Briefing VIII]|h|r",EquipLoc="",Type="Quest"},["Cabalist Helm"]={SubType="Leather",Level=47,id=7529,StackCount=1,Rarity=2,MinLevel=42,SellPrice=6897,Texture=133120,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:7529::::::::40:::::::|h[Cabalist Helm]|h|r",Type="Armor"},["Level 60 Test Gear Leather - Druid"]={SubType="Junk",Level=1,id=13672,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13672::::::::40:::::::|h[Level 60 Test Gear Leather - Druid]|h|r"},["Smokywood Satchel"]={SubType="Junk",Level=1,id=21315,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133622,Link="|cffffffff|Hitem:21315::::::::40:::::::|h[Smokywood Satchel]|h|r",EquipLoc="",Type="Miscellaneous"},["Heavy Spear"]={SubType="Polearms",Level=35,id=15811,StackCount=1,Rarity=1,MinLevel=30,SellPrice=5426,Texture=135129,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:15811::::::::40:::::::|h[Heavy Spear]|h|r",Type="Weapon"},["Red Punch Card"]={SubType="Quest",Level=1,id=9281,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133215,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9281::::::::40:::::::|h[Red Punch Card]|h|r"},["Malistar's Defender"]={SubType="Shields",Level=75,id=17106,StackCount=1,Rarity=4,MinLevel=60,SellPrice=87960,Texture=134954,EquipLoc="INVTYPE_SHIELD",Link="|cffa335ee|Hitem:17106::::::::40:::::::|h[Malistar's Defender]|h|r",Type="Armor"},["Plans: Imperial Plate Shoulders"]={SubType="Blacksmithing",Level=53,id=12687,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12687::::::::40:::::::|h[Plans: Imperial Plate Shoulders]|h|r"},["Broken Tears"]={SubType="Quest",Level=1,id=6083,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134133,Link="|cffffffff|Hitem:6083::::::::40:::::::|h[Broken Tears]|h|r",EquipLoc="",Type="Quest"},["Darkmoon Card: Maelstrom"]={SubType="Miscellaneous",Level=66,id=19289,StackCount=1,Rarity=4,MinLevel=60,SellPrice=100000,Texture=134491,Link="|cffa335ee|Hitem:19289::::::::40:::::::|h[Darkmoon Card: Maelstrom]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Hillman's Leather Vest"]={SubType="Leather",Level=20,id=4244,StackCount=1,Rarity=2,MinLevel=15,SellPrice=723,Texture=132725,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:4244::::::::40:::::::|h[Hillman's Leather Vest]|h|r"},["Gerenzo's Mechanical Arm"]={SubType="Quest",Level=1,id=5736,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132154,EquipLoc="",Link="|cffffffff|Hitem:5736::::::::40:::::::|h[Gerenzo's Mechanical Arm]|h|r",Type="Quest"},["Nightshade Tunic"]={SubType="Leather",Level=63,id=10220,StackCount=1,Rarity=2,MinLevel=58,SellPrice=23263,Texture=132717,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10220::::::::40:::::::|h[Nightshade Tunic]|h|r",Type="Armor"},["Deprecated Old Leather Boots"]={SubType="Miscellaneous",Level=1,id=136,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132535,Type="Armor",Link="|cffffffff|Hitem:136::::::::40:::::::|h[Deprecated Old Leather Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Light Mail Leggings"]={SubType="Mail",Level=10,id=2394,StackCount=1,Rarity=1,MinLevel=5,SellPrice=83,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:2394::::::::40:::::::|h[Light Mail Leggings]|h|r"},["Kodo Brander"]={SubType="Wands",Level=38,id=15692,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6935,Texture=135469,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15692::::::::40:::::::|h[Kodo Brander]|h|r",Type="Weapon"},["Magister's Robes"]={SubType="Cloth",Level=63,id=16688,StackCount=1,Rarity=3,MinLevel=58,SellPrice=22445,Texture=132666,EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:16688::::::::40:::::::|h[Magister's Robes]|h|r",Type="Armor"},["Mace"]={SubType="One-Handed Maces",Level=14,id=852,StackCount=1,Rarity=1,MinLevel=9,SellPrice=347,Texture=133490,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:852::::::::40:::::::|h[Mace]|h|r"},["Monster - Item, Flower - Purple"]={SubType="Miscellaneous",Level=1,id=21121,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133941,Link="|cff9d9d9d|Hitem:21121::::::::40:::::::|h[Monster - Item, Flower - Purple]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Defias Tower Key"]={SubType="Key",Level=1,id=7923,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134245,Link="|cffffffff|Hitem:7923::::::::40:::::::|h[Defias Tower Key]|h|r",EquipLoc="",Type="Key"},["Dragonscale Breastplate"]={SubType="Mail",Level=51,id=8367,StackCount=1,Rarity=3,MinLevel=46,SellPrice=18455,Texture=132629,Link="|cff0070dd|Hitem:8367::::::::40:::::::|h[Dragonscale Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Warped Leather Bracers"]={SubType="Leather",Level=11,id=1504,StackCount=1,Rarity=0,MinLevel=6,SellPrice=32,Texture=132606,Link="|cff9d9d9d|Hitem:1504::::::::40:::::::|h[Warped Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Incomplete Banner of Provocation"]={SubType="Quest",Level=1,id=21983,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132619,Link="|cffffffff|Hitem:21983::::::::40:::::::|h[Incomplete Banner of Provocation]|h|r",EquipLoc="",Type="Quest"},["Vis'kag the Bloodletter"]={SubType="One-Handed Swords",Level=74,id=17075,StackCount=1,Rarity=4,MinLevel=60,SellPrice=135266,Texture=135316,EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:17075::::::::40:::::::|h[Vis'kag the Bloodletter]|h|r",Type="Weapon"},["Kadrak's Flag"]={SubType="Quest",Level=1,id=10622,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132484,EquipLoc="",Link="|cffffffff|Hitem:10622::::::::40:::::::|h[Kadrak's Flag]|h|r",Type="Quest"},["Monster - Axe, Hatchet Gold"]={SubType="One-Handed Axes",Level=1,id=11762,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Type="Weapon",Link="|cff9d9d9d|Hitem:11762::::::::40:::::::|h[Monster - Axe, Hatchet Gold]|h|r",EquipLoc="INVTYPE_WEAPON"},["Strapped Belt"]={SubType="Leather",Level=63,id=3977,StackCount=1,Rarity=0,MinLevel=58,SellPrice=4738,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:3977::::::::40:::::::|h[Strapped Belt]|h|r",Type="Armor"},["Dragon's Touch"]={SubType="Wands",Level=75,id=19367,StackCount=1,Rarity=4,MinLevel=60,SellPrice=103461,Texture=135473,Link="|cffa335ee|Hitem:19367::::::::40:::::::|h[Dragon's Touch]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Royal Dangui"]={SubType="Miscellaneous",Level=50,id=13898,StackCount=1,Rarity=1,MinLevel=0,SellPrice=57739,Texture=132671,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:13898::::::::40:::::::|h[Royal Dangui]|h|r"},["Channeler's Head"]={SubType="Quest",Level=1,id=19881,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134178,Link="|cffffffff|Hitem:19881::::::::40:::::::|h[Channeler's Head]|h|r",EquipLoc="",Type="Quest"},["Barbaric Iron Shoulders"]={SubType="Mail",Level=32,id=7913,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2500,Texture=135054,Link="|cff1eff00|Hitem:7913::::::::40:::::::|h[Barbaric Iron Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Monster - Staff, Feathered Silver Glow"]={SubType="Staves",Level=1,id=18123,StackCount=1,Rarity=0,MinLevel=0,SellPrice=2,Texture=135225,Type="Weapon",Link="|cff9d9d9d|Hitem:18123::::::::40:::::::|h[Monster - Staff, Feathered Silver Glow]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Champion's Mail Shoulders"]={SubType="Mail",Level=63,id=16524,StackCount=1,Rarity=3,MinLevel=58,SellPrice=13117,Texture=135035,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16524::::::::40:::::::|h[Champion's Mail Shoulders]|h|r",Type="Armor"},["Dreamfoil"]={SubType="Trade Goods",Level=54,id=13463,StackCount=20,Rarity=1,MinLevel=0,SellPrice=100,Texture=134204,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:13463::::::::40:::::::|h[Dreamfoil]|h|r"},["Horde Commendation Signet"]={SubType="Junk",Level=1,id=21438,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=132485,Link="|cffffffff|Hitem:21438::::::::40:::::::|h[Horde Commendation Signet]|h|r",EquipLoc="",Type="Miscellaneous"},["Shield of Condemnation"]={SubType="Shields",Level=92,id=22819,StackCount=1,Rarity=4,MinLevel=60,SellPrice=194225,Texture=134973,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffa335ee|Hitem:22819::::::::40:::::::|h[Shield of Condemnation]|h|r"},["Charged Rift Gem"]={SubType="Quest",Level=1,id=7249,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134138,EquipLoc="",Link="|cffffffff|Hitem:7249::::::::40:::::::|h[Charged Rift Gem]|h|r",Type="Quest"},["Level 45 Test Gear Mail - Shaman"]={SubType="Junk",Level=1,id=13693,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13693::::::::40:::::::|h[Level 45 Test Gear Mail - Shaman]|h|r"},["Pattern: Runecloth Bag"]={SubType="Tailoring",Level=52,id=14468,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:14468::::::::40:::::::|h[Pattern: Runecloth Bag]|h|r"},["test"]={SubType="Consumable",Level=0,id=4842,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132381,Type="Consumable",EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:4842::::::::40:::::::|h[test]|h|r"},["Pristine Black Diamond"]={SubType="Junk",Level=0,id=18335,StackCount=20,Rarity=3,MinLevel=0,SellPrice=0,Texture=134072,Type="Miscellaneous",Link="|cff0070dd|Hitem:18335::::::::40:::::::|h[Pristine Black Diamond]|h|r",EquipLoc=""},["Banshee Armor"]={SubType="Cloth",Level=14,id=5420,StackCount=1,Rarity=2,MinLevel=0,SellPrice=227,Texture=135011,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:5420::::::::40:::::::|h[Banshee Armor]|h|r",Type="Armor"},["Monster - Item, Book - Black Skull Glowing Offhand"]={SubType="Miscellaneous",Level=1,id=12861,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12861::::::::40:::::::|h[Monster - Item, Book - Black Skull Glowing Offhand]|h|r"},["Tyrant's Chestpiece"]={SubType="Plate",Level=48,id=14835,StackCount=1,Rarity=2,MinLevel=43,SellPrice=8192,Texture=132743,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14835::::::::40:::::::|h[Tyrant's Chestpiece]|h|r"},["Prodigious Shadowshard Pendant"]={SubType="Miscellaneous",Level=42,id=17773,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7132,Texture=133293,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:17773::::::::40:::::::|h[Prodigious Shadowshard Pendant]|h|r",Type="Armor"},["Cavalier's Boots"]={SubType="Cloth",Level=13,id=860,StackCount=1,Rarity=1,MinLevel=0,SellPrice=89,Texture=132539,Type="Armor",Link="|cffffffff|Hitem:860::::::::40:::::::|h[Cavalier's Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Cavalier Two-hander"]={SubType="Two-Handed Swords",Level=28,id=3206,StackCount=1,Rarity=2,MinLevel=23,SellPrice=4582,Texture=135321,Link="|cff1eff00|Hitem:3206::::::::40:::::::|h[Cavalier Two-hander]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Monster - Axe, Horde B02 Silver"]={SubType="One-Handed Axes",Level=1,id=17462,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:17462::::::::40:::::::|h[Monster - Axe, Horde B02 Silver]|h|r",Type="Weapon"},["Rotgrip Mantle"]={SubType="Cloth",Level=53,id=17732,StackCount=1,Rarity=3,MinLevel=48,SellPrice=10383,Texture=135036,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:17732::::::::40:::::::|h[Rotgrip Mantle]|h|r",Type="Armor"},["Dark Silk Shirt"]={SubType="Miscellaneous",Level=31,id=4333,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1200,Texture=135022,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:4333::::::::40:::::::|h[Dark Silk Shirt]|h|r",Type="Armor"},["Recipe: Shadow Oil"]={SubType="Alchemy",Level=33,id=6068,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=134939,Link="|cffffffff|Hitem:6068::::::::40:::::::|h[Recipe: Shadow Oil]|h|r",EquipLoc="",Type="Recipe"},["Webwood Venom Sac"]={SubType="Quest",Level=1,id=5166,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,EquipLoc="",Link="|cffffffff|Hitem:5166::::::::40:::::::|h[Webwood Venom Sac]|h|r",Type="Quest"},["Bloodsoaked Pauldrons"]={SubType="Plate",Level=71,id=19878,StackCount=1,Rarity=3,MinLevel=60,SellPrice=26107,Texture=135032,Link="|cff0070dd|Hitem:19878::::::::40:::::::|h[Bloodsoaked Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["A Wooden Leg"]={SubType="Junk",Level=1,id=9356,StackCount=5,Rarity=0,MinLevel=0,SellPrice=217,Texture=133479,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:9356::::::::40:::::::|h[A Wooden Leg]|h|r"},["Eternal Crown"]={SubType="Cloth",Level=64,id=14332,StackCount=1,Rarity=2,MinLevel=59,SellPrice=15674,Texture=133074,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14332::::::::40:::::::|h[Eternal Crown]|h|r"},["Blood Guard's Chain Boots"]={SubType="Mail",Level=63,id=16531,StackCount=1,Rarity=3,MinLevel=58,SellPrice=13452,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16531::::::::40:::::::|h[Blood Guard's Chain Boots]|h|r",Type="Armor"},["Arathor Battle Tabard"]={SubType="Miscellaneous",Level=20,id=20132,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=135026,Link="|cffffffff|Hitem:20132::::::::40:::::::|h[Arathor Battle Tabard]|h|r",EquipLoc="INVTYPE_TABARD",Type="Armor"},["Vital Headband"]={SubType="Cloth",Level=36,id=14208,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2316,Texture=132514,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14208::::::::40:::::::|h[Vital Headband]|h|r"},["Horned Viking Helmet"]={SubType="Plate",Level=42,id=9394,StackCount=1,Rarity=3,MinLevel=40,SellPrice=1372,Texture=133127,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:9394::::::::40:::::::|h[Horned Viking Helmet]|h|r"},["Linen Belt"]={SubType="Cloth",Level=9,id=7026,StackCount=1,Rarity=1,MinLevel=4,SellPrice=22,Texture=132494,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:7026::::::::40:::::::|h[Linen Belt]|h|r"},["Helmet of Ten Storms"]={SubType="Mail",Level=76,id=16947,StackCount=1,Rarity=4,MinLevel=60,SellPrice=68314,Texture=133171,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16947::::::::40:::::::|h[Helmet of Ten Storms]|h|r",Type="Armor"},["Deprecated Writ of Lakeshire"]={SubType="Quest",Level=1,id=1078,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:1078::::::::40:::::::|h[Deprecated Writ of Lakeshire]|h|r",EquipLoc="",Type="Quest"},["Emblazoned Leggings"]={SubType="Leather",Level=31,id=4050,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2374,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:4050::::::::40:::::::|h[Emblazoned Leggings]|h|r",Type="Armor"},["Discombobulator Ray"]={SubType="Devices",Level=32,id=4388,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134441,Link="|cffffffff|Hitem:4388::::::::40:::::::|h[Discombobulator Ray]|h|r",EquipLoc="",Type="Trade Goods"},["Keen Raptor Tooth"]={SubType="Junk",Level=1,id=1697,StackCount=10,Rarity=0,MinLevel=0,SellPrice=445,Texture=133725,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:1697::::::::40:::::::|h[Keen Raptor Tooth]|h|r"},["Brackwater Bracers"]={SubType="Mail",Level=12,id=3303,StackCount=1,Rarity=1,MinLevel=7,SellPrice=70,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3303::::::::40:::::::|h[Brackwater Bracers]|h|r"},["Crude Pocket Watch"]={SubType="Junk",Level=1,id=5427,StackCount=5,Rarity=0,MinLevel=0,SellPrice=147,Texture=134378,EquipLoc="",Link="|cff9d9d9d|Hitem:5427::::::::40:::::::|h[Crude Pocket Watch]|h|r",Type="Miscellaneous"},["Geomancer's Trousers"]={SubType="Cloth",Level=39,id=14224,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3901,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14224::::::::40:::::::|h[Geomancer's Trousers]|h|r"},["Sorcerer Pants"]={SubType="Cloth",Level=42,id=9883,StackCount=1,Rarity=2,MinLevel=37,SellPrice=5026,Texture=134588,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9883::::::::40:::::::|h[Sorcerer Pants]|h|r"},["Ebon Mask"]={SubType="Leather",Level=52,id=19984,StackCount=1,Rarity=3,MinLevel=0,SellPrice=11893,Texture=133132,Link="|cff0070dd|Hitem:19984::::::::40:::::::|h[Ebon Mask]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Gauntlets of Divinity"]={SubType="Mail",Level=44,id=7724,StackCount=1,Rarity=3,MinLevel=39,SellPrice=5436,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:7724::::::::40:::::::|h[Gauntlets of Divinity]|h|r",Type="Armor"},["Deprecated Graystone Shoulders"]={SubType="Mail",Level=8,id=5607,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37,Texture=135038,Link="|cffffffff|Hitem:5607::::::::40:::::::|h[Deprecated Graystone Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Tyrant's Helm"]={SubType="Plate",Level=46,id=14843,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5036,Texture=133101,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14843::::::::40:::::::|h[Tyrant's Helm]|h|r"},["Dark Keeper Key"]={SubType="Consumable",Level=1,id=11197,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134245,Type="Consumable",Link="|cffffffff|Hitem:11197::::::::40:::::::|h[Dark Keeper Key]|h|r",EquipLoc=""},["Lapidis Tankard of Tidesippe"]={SubType="Miscellaneous",Level=59,id=4696,StackCount=1,Rarity=3,MinLevel=54,SellPrice=5537,Texture=132790,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:4696::::::::40:::::::|h[Lapidis Tankard of Tidesippe]|h|r"},["Twilight Belt"]={SubType="Cloth",Level=36,id=7438,StackCount=1,Rarity=2,MinLevel=31,SellPrice=1560,Texture=132499,Link="|cff1eff00|Hitem:7438::::::::40:::::::|h[Twilight Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Sage's Stave"]={SubType="Miscellaneous",Level=32,id=15934,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2596,Texture=135154,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15934::::::::40:::::::|h[Sage's Stave]|h|r",Type="Armor"},["Plate Helmet D2 (test)"]={SubType="Leather",Level=1,id=1024,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133071,Link="|cffffffff|Hitem:1024::::::::40:::::::|h[Plate Helmet D2 (test)]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Scalemail Boots"]={SubType="Mail",Level=22,id=287,StackCount=1,Rarity=1,MinLevel=17,SellPrice=488,Texture=132535,Type="Armor",Link="|cffffffff|Hitem:287::::::::40:::::::|h[Scalemail Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Broken Wand"]={SubType="Junk",Level=1,id=3769,StackCount=5,Rarity=0,MinLevel=0,SellPrice=13,Texture=135464,Link="|cff9d9d9d|Hitem:3769::::::::40:::::::|h[Broken Wand]|h|r",EquipLoc="",Type="Miscellaneous"},["Hands of Power"]={SubType="Cloth",Level=60,id=13253,StackCount=1,Rarity=3,MinLevel=55,SellPrice=9983,Texture=132948,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:13253::::::::40:::::::|h[Hands of Power]|h|r"},["Symbol of Life"]={SubType="Quest",Level=12,id=6866,StackCount=1,Rarity=1,MinLevel=12,SellPrice=0,Texture=133439,Link="|cffffffff|Hitem:6866::::::::40:::::::|h[Symbol of Life]|h|r",EquipLoc="",Type="Quest"},["Test AQ Resource - Copper"]={SubType="Junk",Level=1,id=21628,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21628::::::::40:::::::|h[Test AQ Resource - Copper]|h|r",EquipLoc="",Type="Miscellaneous"},["Blackmetal Cape"]={SubType="Cloth",Level=46,id=9512,StackCount=1,Rarity=3,MinLevel=41,SellPrice=6341,Texture=133757,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:9512::::::::40:::::::|h[Blackmetal Cape]|h|r"},["Deprecated Dreadmaster's Shroud"]={SubType="Cloth",Level=62,id=13936,StackCount=1,Rarity=3,MinLevel=57,SellPrice=17248,Texture=133132,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:13936::::::::40:::::::|h[Deprecated Dreadmaster's Shroud]|h|r"},["Schematic: Gyrofreeze Ice Reflector"]={SubType="Engineering",Level=52,id=18652,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:18652::::::::40:::::::|h[Schematic: Gyrofreeze Ice Reflector]|h|r",EquipLoc=""},["Styleen's Sour Suckerpop"]={SubType="Consumable",Level=15,id=18633,StackCount=20,Rarity=1,MinLevel=5,SellPrice=6,Texture=133982,Type="Consumable",Link="|cffffffff|Hitem:18633::::::::40:::::::|h[Styleen's Sour Suckerpop]|h|r",EquipLoc=""},["Heartswood Core"]={SubType="Quest",Level=1,id=6913,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136065,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6913::::::::40:::::::|h[Heartswood Core]|h|r"},["Mighty Gauntlets"]={SubType="Leather",Level=61,id=10149,StackCount=1,Rarity=2,MinLevel=56,SellPrice=10915,Texture=132957,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10149::::::::40:::::::|h[Mighty Gauntlets]|h|r",Type="Armor"},["Test Herb Bag"]={SubType="Herb Bag",Level=52,id=21857,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=133670,Link="|cff1eff00|Hitem:21857::::::::40:::::::|h[Test Herb Bag]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Desert Shoulders"]={SubType="Cloth",Level=28,id=15457,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1134,Texture=135036,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15457::::::::40:::::::|h[Desert Shoulders]|h|r",Type="Armor"},["Unhatched Sprite Darter Egg"]={SubType="Quest",Level=1,id=11102,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132833,Type="Quest",Link="|cffffffff|Hitem:11102::::::::40:::::::|h[Unhatched Sprite Darter Egg]|h|r",EquipLoc=""},["Councillor's Circlet"]={SubType="Cloth",Level=57,id=10097,StackCount=1,Rarity=2,MinLevel=52,SellPrice=10991,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10097::::::::40:::::::|h[Councillor's Circlet]|h|r",Type="Armor"},["Timberling Sprout"]={SubType="Quest",Level=1,id=5169,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136065,Link="|cffffffff|Hitem:5169::::::::40:::::::|h[Timberling Sprout]|h|r",EquipLoc="",Type="Quest"},["Thick Leather"]={SubType="Trade Goods",Level=40,id=4304,StackCount=20,Rarity=1,MinLevel=0,SellPrice=300,Texture=134257,Link="|cffffffff|Hitem:4304::::::::40:::::::|h[Thick Leather]|h|r",EquipLoc="",Type="Trade Goods"},["Beaststalker's Tunic"]={SubType="Mail",Level=63,id=16674,StackCount=1,Rarity=3,MinLevel=58,SellPrice=34435,Texture=132625,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16674::::::::40:::::::|h[Beaststalker's Tunic]|h|r",Type="Armor"},["Badge of the Swarmguard"]={SubType="Miscellaneous",Level=76,id=21670,StackCount=1,Rarity=4,MinLevel=60,SellPrice=80303,Texture=133573,Link="|cffa335ee|Hitem:21670::::::::40:::::::|h[Badge of the Swarmguard]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Coldrage Dagger"]={SubType="Daggers",Level=44,id=10761,StackCount=1,Rarity=3,MinLevel=39,SellPrice=17193,Texture=135344,EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:10761::::::::40:::::::|h[Coldrage Dagger]|h|r",Type="Weapon"},["Sacred Protector"]={SubType="Shields",Level=62,id=16998,StackCount=1,Rarity=3,MinLevel=0,SellPrice=35631,Texture=134952,EquipLoc="INVTYPE_SHIELD",Link="|cff0070dd|Hitem:16998::::::::40:::::::|h[Sacred Protector]|h|r",Type="Armor"},["Marshal's Plate Boots"]={SubType="Plate",Level=71,id=16483,StackCount=1,Rarity=4,MinLevel=60,SellPrice=16642,Texture=132590,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16483::::::::40:::::::|h[Marshal's Plate Boots]|h|r",Type="Armor"},["Butcher's Slicer"]={SubType="One-Handed Swords",Level=23,id=6633,StackCount=1,Rarity=2,MinLevel=18,SellPrice=2131,Texture=135314,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:6633::::::::40:::::::|h[Butcher's Slicer]|h|r"},["Devout Crown"]={SubType="Cloth",Level=62,id=16693,StackCount=1,Rarity=3,MinLevel=57,SellPrice=16335,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16693::::::::40:::::::|h[Devout Crown]|h|r",Type="Armor"},["Precisely Calibrated Boomstick"]={SubType="Guns",Level=48,id=2100,StackCount=1,Rarity=4,MinLevel=43,SellPrice=24539,Texture=135615,Link="|cffa335ee|Hitem:2100::::::::40:::::::|h[Precisely Calibrated Boomstick]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Champion's Pauldrons"]={SubType="Mail",Level=47,id=7543,StackCount=1,Rarity=2,MinLevel=42,SellPrice=8123,Texture=135053,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7543::::::::40:::::::|h[Champion's Pauldrons]|h|r",Type="Armor"},["Crusted Bandages"]={SubType="Junk",Level=1,id=9332,StackCount=20,Rarity=0,MinLevel=0,SellPrice=38,Texture=133678,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:9332::::::::40:::::::|h[Crusted Bandages]|h|r"},["Decomposed Boot"]={SubType="Junk",Level=1,id=3674,StackCount=5,Rarity=0,MinLevel=0,SellPrice=95,Texture=132535,EquipLoc="",Link="|cff9d9d9d|Hitem:3674::::::::40:::::::|h[Decomposed Boot]|h|r",Type="Miscellaneous"},["90 Epic Frost Belt"]={SubType="Cloth",Level=90,id=20324,StackCount=1,Rarity=4,MinLevel=60,SellPrice=57374,Texture=132497,Link="|cffa335ee|Hitem:20324::::::::40:::::::|h[90 Epic Frost Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Bloodpetal Sprout"]={SubType="Quest",Level=1,id=11315,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=134001,Type="Quest",Link="|cffffffff|Hitem:11315::::::::40:::::::|h[Bloodpetal Sprout]|h|r",EquipLoc=""},["Plans: Fiery Plate Gauntlets"]={SubType="Blacksmithing",Level=58,id=12699,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:12699::::::::40:::::::|h[Plans: Fiery Plate Gauntlets]|h|r"},["Imposing Gloves"]={SubType="Leather",Level=45,id=15166,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3945,Texture=132956,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15166::::::::40:::::::|h[Imposing Gloves]|h|r",Type="Armor"},["Abyssal Cloth Amice"]={SubType="Cloth",Level=68,id=20686,StackCount=1,Rarity=3,MinLevel=60,SellPrice=21028,Texture=135056,Link="|cff0070dd|Hitem:20686::::::::40:::::::|h[Abyssal Cloth Amice]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Purple Lotus"]={SubType="Trade Goods",Level=42,id=8831,StackCount=20,Rarity=1,MinLevel=0,SellPrice=300,Texture=134198,Link="|cffffffff|Hitem:8831::::::::40:::::::|h[Purple Lotus]|h|r",EquipLoc="",Type="Trade Goods"},["Trogg Stone Tooth"]={SubType="Quest",Level=1,id=2536,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133725,Link="|cffffffff|Hitem:2536::::::::40:::::::|h[Trogg Stone Tooth]|h|r",EquipLoc="",Type="Quest"},["Monster - Item, Flowers - Boquet Roses (Black)"]={SubType="Miscellaneous",Level=1,id=6237,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133941,Type="Weapon",Link="|cff9d9d9d|Hitem:6237::::::::40:::::::|h[Monster - Item, Flowers - Boquet Roses (Black)]|h|r",EquipLoc="INVTYPE_WEAPON"},["Pattern: Stormcloth Pants"]={SubType="Tailoring",Level=44,id=10303,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10303::::::::40:::::::|h[Pattern: Stormcloth Pants]|h|r",Type="Recipe"},["Pebble of Kajaro"]={SubType="Miscellaneous",Level=60,id=19598,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133310,Link="|cff1eff00|Hitem:19598::::::::40:::::::|h[Pebble of Kajaro]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Monster - Mace2H, Horde Skull Maul"]={SubType="Two-Handed Maces",Level=1,id=14820,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14820::::::::40:::::::|h[Monster - Mace2H, Horde Skull Maul]|h|r"},["Serpentbloom"]={SubType="Quest",Level=1,id=5339,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134183,Link="|cffffffff|Hitem:5339::::::::40:::::::|h[Serpentbloom]|h|r",EquipLoc="",Type="Quest"},["Pattern: Runecloth Shoulders"]={SubType="Tailoring",Level=61,id=14504,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14504::::::::40:::::::|h[Pattern: Runecloth Shoulders]|h|r"},["Fire Runed Grimoire"]={SubType="Miscellaneous",Level=70,id=19142,StackCount=1,Rarity=4,MinLevel=60,SellPrice=18903,Texture=133741,Link="|cffa335ee|Hitem:19142::::::::40:::::::|h[Fire Runed Grimoire]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Cat Carrier (Corrupted Kitten)"]={SubType="Junk",Level=40,id=11903,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=132599,Type="Miscellaneous",Link="|cffffffff|Hitem:11903::::::::40:::::::|h[Cat Carrier (Corrupted Kitten)]|h|r",EquipLoc=""},["Skullbreaker"]={SubType="One-Handed Maces",Level=36,id=17039,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8317,Texture=133728,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:17039::::::::40:::::::|h[Skullbreaker]|h|r",Type="Weapon"},["Test Frost Res Head Cloth"]={SubType="Cloth",Level=35,id=16138,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2070,Texture=133133,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:16138::::::::40:::::::|h[Test Frost Res Head Cloth]|h|r",Type="Armor"},["Blood Guard's Satin Walkers"]={SubType="Cloth",Level=66,id=22859,StackCount=1,Rarity=3,MinLevel=60,SellPrice=9536,Texture=132539,Link="|cff0070dd|Hitem:22859::::::::40:::::::|h[Blood Guard's Satin Walkers]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Plans: Thorium Belt"]={SubType="Blacksmithing",Level=50,id=12683,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12683::::::::40:::::::|h[Plans: Thorium Belt]|h|r"},["Arcane Armor"]={SubType="Cloth",Level=61,id=8283,StackCount=1,Rarity=2,MinLevel=56,SellPrice=17138,Texture=135017,Link="|cff1eff00|Hitem:8283::::::::40:::::::|h[Arcane Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Raw Rockscale Cod"]={SubType="Consumable",Level=35,id=6362,StackCount=20,Rarity=1,MinLevel=25,SellPrice=4,Texture=133890,Type="Consumable",Link="|cffffffff|Hitem:6362::::::::40:::::::|h[Raw Rockscale Cod]|h|r",EquipLoc=""},["Jazeraint Helm"]={SubType="Mail",Level=41,id=9902,StackCount=1,Rarity=2,MinLevel=36,SellPrice=5357,Texture=133139,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9902::::::::40:::::::|h[Jazeraint Helm]|h|r"},["Libram: Cleanse"]={SubType="Book",Level=30,id=1139,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133740,Type="Recipe",Link="|cffffffff|Hitem:1139::::::::40:::::::|h[Libram: Cleanse]|h|r",EquipLoc=""},["Deprecated Thornstone Chunk"]={SubType="Trade Goods",Level=39,id=1638,StackCount=10,Rarity=1,MinLevel=0,SellPrice=30,Texture=133752,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:1638::::::::40:::::::|h[Deprecated Thornstone Chunk]|h|r"},["Large Radiant Shard"]={SubType="Trade Goods",Level=45,id=11178,StackCount=20,Rarity=3,MinLevel=0,SellPrice=0,Texture=132883,Type="Trade Goods",Link="|cff0070dd|Hitem:11178::::::::40:::::::|h[Large Radiant Shard]|h|r",EquipLoc=""},["Battleforge Wristguards"]={SubType="Mail",Level=27,id=6591,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1007,Texture=132609,Link="|cff1eff00|Hitem:6591::::::::40:::::::|h[Battleforge Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Hulkstone Pauldrons"]={SubType="Plate",Level=47,id=17779,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5547,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:17779::::::::40:::::::|h[Hulkstone Pauldrons]|h|r",Type="Armor"},["Large Rocket Recipes"]={SubType="Consumable",Level=1,id=21742,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134940,Link="|cffffffff|Hitem:21742::::::::40:::::::|h[Large Rocket Recipes]|h|r",EquipLoc="",Type="Consumable"},["Bracers of the Stone Princess"]={SubType="Mail",Level=54,id=17714,StackCount=1,Rarity=3,MinLevel=49,SellPrice=10225,Texture=132613,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:17714::::::::40:::::::|h[Bracers of the Stone Princess]|h|r",Type="Armor"},["Fast Test Dagger"]={SubType="Daggers",Level=60,id=5549,StackCount=1,Rarity=0,MinLevel=1,SellPrice=15763,Texture=135641,Link="|cff9d9d9d|Hitem:5549::::::::40:::::::|h[Fast Test Dagger]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Mysterious Lockbox"]={SubType="Consumable",Level=1,id=19425,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=132595,Link="|cff1eff00|Hitem:19425::::::::40:::::::|h[Mysterious Lockbox]|h|r",EquipLoc="",Type="Consumable"},["Monster - Sword2H, Luminous Evil Blade"]={SubType="Two-Handed Swords",Level=1,id=12902,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12902::::::::40:::::::|h[Monster - Sword2H, Luminous Evil Blade]|h|r"},["Unused Black Night Elf Pants"]={SubType="Mail",Level=1,id=3523,StackCount=1,Rarity=1,MinLevel=1,SellPrice=2,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:3523::::::::40:::::::|h[Unused Black Night Elf Pants]|h|r"},["Sparkmetal Coif"]={SubType="Mail",Level=33,id=1282,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2825,Texture=133070,Link="|cff1eff00|Hitem:1282::::::::40:::::::|h[Sparkmetal Coif]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["26 Pound Catfish"]={SubType="Junk",Level=25,id=6363,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=133916,Type="Miscellaneous",Link="|cffffffff|Hitem:6363::::::::40:::::::|h[26 Pound Catfish]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Deprecated Deepwood Gloves"]={SubType="Leather",Level=25,id=3062,StackCount=1,Rarity=0,MinLevel=20,SellPrice=277,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:3062::::::::40:::::::|h[Deprecated Deepwood Gloves]|h|r",Type="Armor"},["Plans: Icebane Gauntlets"]={SubType="Blacksmithing",Level=80,id=22704,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:22704::::::::40:::::::|h[Plans: Icebane Gauntlets]|h|r"},["Robes of Insight"]={SubType="Cloth",Level=47,id=940,StackCount=1,Rarity=4,MinLevel=42,SellPrice=12566,Texture=132667,Link="|cffa335ee|Hitem:940::::::::40:::::::|h[Robes of Insight]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Supreme Cape"]={SubType="Cloth",Level=61,id=15437,StackCount=1,Rarity=2,MinLevel=56,SellPrice=13301,Texture=133754,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15437::::::::40:::::::|h[Supreme Cape]|h|r",Type="Armor"},["Emperor's Seal"]={SubType="Miscellaneous",Level=61,id=11934,StackCount=1,Rarity=3,MinLevel=55,SellPrice=19921,Texture=133366,Type="Armor",Link="|cff0070dd|Hitem:11934::::::::40:::::::|h[Emperor's Seal]|h|r",EquipLoc="INVTYPE_FINGER"},["Black Mageweave Robe"]={SubType="Cloth",Level=42,id=10001,StackCount=1,Rarity=2,MinLevel=37,SellPrice=5257,Texture=132654,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:10001::::::::40:::::::|h[Black Mageweave Robe]|h|r",Type="Armor"},["Plans: Ornate Thorium Handaxe"]={SubType="Blacksmithing",Level=55,id=12819,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12819::::::::40:::::::|h[Plans: Ornate Thorium Handaxe]|h|r"},["Viny Gloves"]={SubType="Cloth",Level=5,id=11190,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5,Texture=132939,Type="Armor",Link="|cffffffff|Hitem:11190::::::::40:::::::|h[Viny Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Pattern: Runecloth Pants"]={SubType="Tailoring",Level=57,id=14491,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14491::::::::40:::::::|h[Pattern: Runecloth Pants]|h|r"},["Horn of the Red Wolf"]={SubType="Junk",Level=40,id=5663,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132224,Link="|cffffffff|Hitem:5663::::::::40:::::::|h[Horn of the Red Wolf]|h|r",EquipLoc="",Type="Miscellaneous"},["Gazlowe's Charm"]={SubType="Miscellaneous",Level=41,id=13088,StackCount=1,Rarity=3,MinLevel=36,SellPrice=7413,Texture=133276,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:13088::::::::40:::::::|h[Gazlowe's Charm]|h|r"},["Jordan's Refined Ore Shipment"]={SubType="Quest",Level=1,id=6993,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Type="Quest",Link="|cffffffff|Hitem:6993::::::::40:::::::|h[Jordan's Refined Ore Shipment]|h|r",EquipLoc=""},["Blood of Innocents"]={SubType="Quest",Level=1,id=13523,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134804,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13523::::::::40:::::::|h[Blood of Innocents]|h|r"},["Whirlwind Heart"]={SubType="Quest",Level=1,id=6894,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134131,EquipLoc="",Link="|cffffffff|Hitem:6894::::::::40:::::::|h[Whirlwind Heart]|h|r",Type="Quest"},["Ring of Critical Testing 2"]={SubType="Miscellaneous",Level=60,id=18970,StackCount=1,Rarity=4,MinLevel=0,SellPrice=56012,Texture=133368,Type="Armor",Link="|cffa335ee|Hitem:18970::::::::40:::::::|h[Ring of Critical Testing 2]|h|r",EquipLoc="INVTYPE_FINGER"},["Logistics Task Briefing IX"]={SubType="Quest",Level=60,id=21265,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21265::::::::40:::::::|h[Logistics Task Briefing IX]|h|r",EquipLoc="",Type="Quest"},["Durability Sword"]={SubType="One-Handed Swords",Level=1,id=14391,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:14391::::::::40:::::::|h[Durability Sword]|h|r"},["Carton of Mystery Meat"]={SubType="Quest",Level=1,id=17118,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,EquipLoc="",Link="|cffffffff|Hitem:17118::::::::40:::::::|h[Carton of Mystery Meat]|h|r",Type="Quest"},["Khan's Mantle"]={SubType="Mail",Level=47,id=14787,StackCount=1,Rarity=2,MinLevel=42,SellPrice=8323,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14787::::::::40:::::::|h[Khan's Mantle]|h|r"},["Garrick's Head"]={SubType="Quest",Level=1,id=182,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Type="Quest",Link="|cffffffff|Hitem:182::::::::40:::::::|h[Garrick's Head]|h|r",EquipLoc=""},["Elixir of Defense"]={SubType="Consumable",Level=26,id=3389,StackCount=5,Rarity=1,MinLevel=16,SellPrice=40,Texture=134844,Type="Consumable",Link="|cffffffff|Hitem:3389::::::::40:::::::|h[Elixir of Defense]|h|r",EquipLoc=""},["Burnished Shield"]={SubType="Shields",Level=21,id=3655,StackCount=1,Rarity=2,MinLevel=16,SellPrice=1022,Texture=134949,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:3655::::::::40:::::::|h[Burnished Shield]|h|r",Type="Armor"},["Battleforge Legguards"]={SubType="Mail",Level=28,id=6596,StackCount=1,Rarity=2,MinLevel=23,SellPrice=2258,Texture=134586,Type="Armor",Link="|cff1eff00|Hitem:6596::::::::40:::::::|h[Battleforge Legguards]|h|r",EquipLoc="INVTYPE_LEGS"},["Hellion Boots"]={SubType="Cloth",Level=40,id=6791,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3464,Texture=132536,Type="Armor",Link="|cff1eff00|Hitem:6791::::::::40:::::::|h[Hellion Boots]|h|r",EquipLoc="INVTYPE_FEET"},["PVP Cloth Helm Horde"]={SubType="Plate",Level=60,id=16035,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7407,Texture=133075,EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:16035::::::::40:::::::|h[PVP Cloth Helm Horde]|h|r",Type="Armor"},["Deprecated Inscribed Leather Helm"]={SubType="Leather",Level=20,id=2993,StackCount=1,Rarity=0,MinLevel=15,SellPrice=205,Texture=133071,Link="|cff9d9d9d|Hitem:2993::::::::40:::::::|h[Deprecated Inscribed Leather Helm]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Ogremage Staff"]={SubType="Staves",Level=27,id=2226,StackCount=1,Rarity=2,MinLevel=22,SellPrice=4117,Texture=135468,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:2226::::::::40:::::::|h[Ogremage Staff]|h|r"},["Book of Entangling Roots II"]={SubType="Book",Level=18,id=5147,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=133743,Link="|cffffffff|Hitem:5147::::::::40:::::::|h[Book of Entangling Roots II]|h|r",EquipLoc="",Type="Recipe"},["Lieutenant Commander's Leather Veil"]={SubType="Leather",Level=63,id=16418,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11160,Texture=133144,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16418::::::::40:::::::|h[Lieutenant Commander's Leather Veil]|h|r",Type="Armor"},["Scout's Cloak"]={SubType="Cloth",Level=11,id=5618,StackCount=1,Rarity=1,MinLevel=0,SellPrice=86,Texture=133753,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:5618::::::::40:::::::|h[Scout's Cloak]|h|r",Type="Armor"},["Recipe: Greater Nature Protection Potion"]={SubType="Alchemy",Level=58,id=13496,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13496::::::::40:::::::|h[Recipe: Greater Nature Protection Potion]|h|r"},["Woodsman Sword"]={SubType="Two-Handed Swords",Level=20,id=5615,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1776,Texture=135352,Link="|cff1eff00|Hitem:5615::::::::40:::::::|h[Woodsman Sword]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Hard Spider Leg Tip"]={SubType="Junk",Level=1,id=1074,StackCount=5,Rarity=0,MinLevel=0,SellPrice=491,Texture=134321,Link="|cff9d9d9d|Hitem:1074::::::::40:::::::|h[Hard Spider Leg Tip]|h|r",EquipLoc="",Type="Miscellaneous"},["Headmaster's Charge"]={SubType="Staves",Level=62,id=13937,StackCount=1,Rarity=4,MinLevel=57,SellPrice=87013,Texture=133445,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:13937::::::::40:::::::|h[Headmaster's Charge]|h|r"},["Thick Silithid Chestguard"]={SubType="Leather",Level=69,id=21467,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50158,Texture=132722,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:21467::::::::40:::::::|h[Thick Silithid Chestguard]|h|r"},["Tuft of Gorilla Hair"]={SubType="Junk",Level=1,id=4099,StackCount=5,Rarity=0,MinLevel=0,SellPrice=1131,Texture=134347,EquipLoc="",Link="|cff9d9d9d|Hitem:4099::::::::40:::::::|h[Tuft of Gorilla Hair]|h|r",Type="Miscellaneous"},["Swiftfoot Treads"]={SubType="Leather",Level=60,id=15861,StackCount=1,Rarity=2,MinLevel=0,SellPrice=14969,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15861::::::::40:::::::|h[Swiftfoot Treads]|h|r",Type="Armor"},["Tome of Frost Ward II"]={SubType="Book",Level=32,id=8876,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=133739,Link="|cffffffff|Hitem:8876::::::::40:::::::|h[Tome of Frost Ward II]|h|r",EquipLoc="",Type="Recipe"},["Bright Sphere"]={SubType="Miscellaneous",Level=27,id=15927,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1864,Texture=134123,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15927::::::::40:::::::|h[Bright Sphere]|h|r",Type="Armor"},["Quartz Ring"]={SubType="Miscellaneous",Level=20,id=11965,StackCount=1,Rarity=2,MinLevel=15,SellPrice=464,Texture=133347,Type="Armor",Link="|cff1eff00|Hitem:11965::::::::40:::::::|h[Quartz Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Lesser Mana Potion"]={SubType="Consumable",Level=24,id=3385,StackCount=5,Rarity=1,MinLevel=14,SellPrice=30,Texture=134851,Type="Consumable",Link="|cffffffff|Hitem:3385::::::::40:::::::|h[Lesser Mana Potion]|h|r",EquipLoc=""},["Stolen Silver"]={SubType="Quest",Level=1,id=5061,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133787,Link="|cffffffff|Hitem:5061::::::::40:::::::|h[Stolen Silver]|h|r",EquipLoc="",Type="Quest"},["Alanna's Embrace"]={SubType="Cloth",Level=62,id=13314,StackCount=1,Rarity=4,MinLevel=57,SellPrice=30222,Texture=132653,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:13314::::::::40:::::::|h[Alanna's Embrace]|h|r"},["Blasting Hackbut"]={SubType="Guns",Level=37,id=6798,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6386,Texture=135613,Type="Weapon",Link="|cff1eff00|Hitem:6798::::::::40:::::::|h[Blasting Hackbut]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Legionnaire's Plate Armor"]={SubType="Plate",Level=63,id=16513,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11991,Texture=132751,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16513::::::::40:::::::|h[Legionnaire's Plate Armor]|h|r",Type="Armor"},["Falconcrest's Head"]={SubType="Quest",Level=1,id=4517,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4517::::::::40:::::::|h[Falconcrest's Head]|h|r"},["Sayge's Fortune #4"]={SubType="Junk",Level=1,id=19239,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19239::::::::40:::::::|h[Sayge's Fortune #4]|h|r",EquipLoc="",Type="Miscellaneous"},["Spaulders of Heroism"]={SubType="Plate",Level=65,id=22001,StackCount=1,Rarity=3,MinLevel=0,SellPrice=19203,Texture=135061,Link="|cff0070dd|Hitem:22001::::::::40:::::::|h[Spaulders of Heroism]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Conjured Mineral Water"]={SubType="Consumable",Level=45,id=8077,StackCount=20,Rarity=1,MinLevel=35,SellPrice=0,Texture=132796,Link="|cffffffff|Hitem:8077::::::::40:::::::|h[Conjured Mineral Water]|h|r",EquipLoc="",Type="Consumable"},["Thick Scale Cloak"]={SubType="Cloth",Level=29,id=15547,StackCount=1,Rarity=2,MinLevel=24,SellPrice=1234,Texture=133769,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15547::::::::40:::::::|h[Thick Scale Cloak]|h|r",Type="Armor"},["Vile Fin Battle Axe"]={SubType="Two-Handed Axes",Level=9,id=3325,StackCount=1,Rarity=1,MinLevel=4,SellPrice=140,Texture=132415,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:3325::::::::40:::::::|h[Vile Fin Battle Axe]|h|r",Type="Weapon"},["Zanzil's Band"]={SubType="Miscellaneous",Level=68,id=19905,StackCount=1,Rarity=3,MinLevel=60,SellPrice=45253,Texture=133388,Link="|cff0070dd|Hitem:19905::::::::40:::::::|h[Zanzil's Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Arlokk's Hoodoo Stick"]={SubType="Miscellaneous",Level=68,id=19922,StackCount=1,Rarity=3,MinLevel=60,SellPrice=63655,Texture=133728,Link="|cff0070dd|Hitem:19922::::::::40:::::::|h[Arlokk's Hoodoo Stick]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Embroidered Boots"]={SubType="Cloth",Level=50,id=2438,StackCount=1,Rarity=1,MinLevel=45,SellPrice=4199,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:2438::::::::40:::::::|h[Embroidered Boots]|h|r",Type="Armor"},["Codex of Inner Fire II"]={SubType="Book",Level=20,id=4266,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:4266::::::::40:::::::|h[Codex of Inner Fire II]|h|r",Type="Recipe"},["Winter Squid"]={SubType="Consumable",Level=45,id=13755,StackCount=20,Rarity=1,MinLevel=35,SellPrice=7,Texture=133899,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13755::::::::40:::::::|h[Winter Squid]|h|r"},["Sack of Corn"]={SubType="Quest",Level=1,id=739,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134059,Type="Quest",Link="|cffffffff|Hitem:739::::::::40:::::::|h[Sack of Corn]|h|r",EquipLoc=""},["Monster - Sword2H, Claymore B01/Broadsword A03 Black Sharpened"]={SubType="Two-Handed Swords",Level=1,id=19981,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135280,Link="|cff9d9d9d|Hitem:19981::::::::40:::::::|h[Monster - Sword2H, Claymore B01/Broadsword A03 Black Sharpened]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Royal Trousers"]={SubType="Cloth",Level=46,id=9911,StackCount=1,Rarity=2,MinLevel=41,SellPrice=7228,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9911::::::::40:::::::|h[Royal Trousers]|h|r"},["Silvered Bronze Breastplate"]={SubType="Mail",Level=26,id=2869,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1831,Texture=132631,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:2869::::::::40:::::::|h[Silvered Bronze Breastplate]|h|r"},["Tablet of Chain Lightning"]={SubType="Book",Level=32,id=4189,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=134459,Type="Recipe",Link="|cffffffff|Hitem:4189::::::::40:::::::|h[Tablet of Chain Lightning]|h|r",EquipLoc=""},["Belt of the Gladiator"]={SubType="Mail",Level=49,id=13134,StackCount=1,Rarity=3,MinLevel=44,SellPrice=7716,Texture=132512,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:13134::::::::40:::::::|h[Belt of the Gladiator]|h|r"},["Gypsy Cloak"]={SubType="Cloth",Level=11,id=9754,StackCount=1,Rarity=1,MinLevel=6,SellPrice=70,Texture=133769,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:9754::::::::40:::::::|h[Gypsy Cloak]|h|r"},["Pattern: Green Dragonscale Breastplate"]={SubType="Leatherworking",Level=52,id=15726,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15726::::::::40:::::::|h[Pattern: Green Dragonscale Breastplate]|h|r",Type="Recipe"},["The Agamaggan Scrolls"]={SubType="Quest",Level=1,id=7275,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,EquipLoc="",Link="|cffffffff|Hitem:7275::::::::40:::::::|h[The Agamaggan Scrolls]|h|r",Type="Quest"},["Dry Moss Tunic"]={SubType="Leather",Level=25,id=5317,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1360,Texture=135010,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:5317::::::::40:::::::|h[Dry Moss Tunic]|h|r"},["Simple Kilt"]={SubType="Cloth",Level=15,id=10047,StackCount=1,Rarity=1,MinLevel=10,SellPrice=164,Texture=134591,EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:10047::::::::40:::::::|h[Simple Kilt]|h|r",Type="Armor"},["90 Green Rogue Gloves"]={SubType="Leather",Level=90,id=20304,StackCount=1,Rarity=2,MinLevel=60,SellPrice=44832,Texture=132958,Link="|cff1eff00|Hitem:20304::::::::40:::::::|h[90 Green Rogue Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Mesh Boots"]={SubType="Cloth",Level=64,id=3953,StackCount=1,Rarity=0,MinLevel=59,SellPrice=6327,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:3953::::::::40:::::::|h[Mesh Boots]|h|r"},["JEFF TEST SWORD II"]={SubType="One-Handed Swords",Level=50,id=12972,StackCount=1,Rarity=1,MinLevel=0,SellPrice=14333,Texture=135271,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:12972::::::::40:::::::|h[JEFF TEST SWORD II]|h|r"},["Monster - Axe, 2H Single Bladed /w Pick"]={SubType="Two-Handed Axes",Level=1,id=5289,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7,Texture=132395,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5289::::::::40:::::::|h[Monster - Axe, 2H Single Bladed /w Pick]|h|r",Type="Weapon"},["Rackmore's Golden Key"]={SubType="Quest",Level=1,id=15881,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134238,EquipLoc="",Link="|cffffffff|Hitem:15881::::::::40:::::::|h[Rackmore's Golden Key]|h|r",Type="Quest"},["Perpetual Purple Firework"]={SubType="Miscellaneous",Level=20,id=23714,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134284,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:23714::::::::40:::::::|h[Perpetual Purple Firework]|h|r"},["Deprecated Standard Arrow"]={SubType="Arrow",Level=4,id=2517,StackCount=200,Rarity=1,MinLevel=1,SellPrice=0,Texture=132382,EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:2517::::::::40:::::::|h[Deprecated Standard Arrow]|h|r",Type="Projectile"},["High Warlord's Pig Sticker"]={SubType="Polearms",Level=78,id=18871,StackCount=1,Rarity=4,MinLevel=60,SellPrice=59017,Texture=135124,Type="Weapon",Link="|cffa335ee|Hitem:18871::::::::40:::::::|h[High Warlord's Pig Sticker]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Test Shadow Res Waist Cloth"]={SubType="Cloth",Level=35,id=16145,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1420,Texture=133693,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16145::::::::40:::::::|h[Test Shadow Res Waist Cloth]|h|r",Type="Armor"},["Darkhound Blood"]={SubType="Quest",Level=1,id=2858,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134719,EquipLoc="",Link="|cffffffff|Hitem:2858::::::::40:::::::|h[Darkhound Blood]|h|r",Type="Quest"},["Goblin Radio"]={SubType="Devices",Level=44,id=10585,StackCount=10,Rarity=1,MinLevel=0,SellPrice=750,Texture=135899,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:10585::::::::40:::::::|h[Goblin Radio]|h|r",Type="Trade Goods"},["Grayson's Torch"]={SubType="Miscellaneous",Level=21,id=1172,StackCount=1,Rarity=2,MinLevel=0,SellPrice=968,Texture=135432,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:1172::::::::40:::::::|h[Grayson's Torch]|h|r",Type="Armor"},["Plans: Ironforge Breastplate"]={SubType="Blacksmithing",Level=20,id=6735,StackCount=1,Rarity=2,MinLevel=0,SellPrice=150,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:6735::::::::40:::::::|h[Plans: Ironforge Breastplate]|h|r",EquipLoc=""},["Felstriker"]={SubType="Daggers",Level=63,id=12590,StackCount=1,Rarity=4,MinLevel=58,SellPrice=75624,Texture=135661,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:12590::::::::40:::::::|h[Felstriker]|h|r"},["Lavaplate Gauntlets"]={SubType="Plate",Level=58,id=12111,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7768,Texture=132960,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:12111::::::::40:::::::|h[Lavaplate Gauntlets]|h|r"},["Field Marshal's Coronal"]={SubType="Cloth",Level=74,id=17578,StackCount=1,Rarity=4,MinLevel=60,SellPrice=19632,Texture=133126,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:17578::::::::40:::::::|h[Field Marshal's Coronal]|h|r",Type="Armor"},["Ward of the Defiler"]={SubType="Key",Level=1,id=10757,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133276,EquipLoc="",Link="|cffffffff|Hitem:10757::::::::40:::::::|h[Ward of the Defiler]|h|r",Type="Key"},["Bloody Chain Boots"]={SubType="Mail",Level=8,id=18612,StackCount=1,Rarity=1,MinLevel=3,SellPrice=34,Texture=132535,Type="Armor",Link="|cffffffff|Hitem:18612::::::::40:::::::|h[Bloody Chain Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Xylem's Note"]={SubType="Quest",Level=0,id=10681,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133464,EquipLoc="",Link="|cffffffff|Hitem:10681::::::::40:::::::|h[Xylem's Note]|h|r",Type="Quest"},["Durable Shoulders"]={SubType="Cloth",Level=32,id=9824,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1599,Texture=135037,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:9824::::::::40:::::::|h[Durable Shoulders]|h|r"},["Gryphon Mail Pauldrons"]={SubType="Mail",Level=48,id=15628,StackCount=1,Rarity=2,MinLevel=43,SellPrice=9570,Texture=135032,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15628::::::::40:::::::|h[Gryphon Mail Pauldrons]|h|r",Type="Armor"},["Prismatic Punch Card"]={SubType="Quest",Level=1,id=9316,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133215,Link="|cffffffff|Hitem:9316::::::::40:::::::|h[Prismatic Punch Card]|h|r",EquipLoc="",Type="Quest"},["Tromping Miner's Boots"]={SubType="Leather",Level=38,id=9382,StackCount=1,Rarity=2,MinLevel=33,SellPrice=3607,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9382::::::::40:::::::|h[Tromping Miner's Boots]|h|r"},["Gnomeregan Amulet"]={SubType="Miscellaneous",Level=31,id=10299,StackCount=1,Rarity=2,MinLevel=26,SellPrice=3778,Texture=133290,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:10299::::::::40:::::::|h[Gnomeregan Amulet]|h|r"},["Scouting Bracers"]={SubType="Leather",Level=21,id=6583,StackCount=1,Rarity=2,MinLevel=16,SellPrice=425,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:6583::::::::40:::::::|h[Scouting Bracers]|h|r"},["Wicked Chain Chestpiece"]={SubType="Mail",Level=34,id=15536,StackCount=1,Rarity=2,MinLevel=29,SellPrice=4107,Texture=132739,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15536::::::::40:::::::|h[Wicked Chain Chestpiece]|h|r",Type="Armor"},["Strong Iron Lockbox"]={SubType="Junk",Level=35,id=4636,StackCount=1,Rarity=2,MinLevel=0,SellPrice=110,Texture=134344,Link="|cff1eff00|Hitem:4636::::::::40:::::::|h[Strong Iron Lockbox]|h|r",EquipLoc="",Type="Miscellaneous"},["Shredder Operating Manual - Page 11"]={SubType="Junk",Level=1,id=16655,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:16655::::::::40:::::::|h[Shredder Operating Manual - Page 11]|h|r",Type="Miscellaneous"},["90 Epic Warrior Ring"]={SubType="Miscellaneous",Level=90,id=20144,StackCount=1,Rarity=4,MinLevel=0,SellPrice=7888,Texture=133368,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:20144::::::::40:::::::|h[90 Epic Warrior Ring]|h|r"},["Deprecated Elemental Resistance Potion"]={SubType="Consumable",Level=20,id=2461,StackCount=5,Rarity=1,MinLevel=10,SellPrice=25,Texture=134754,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2461::::::::40:::::::|h[Deprecated Elemental Resistance Potion]|h|r"},["Geomancer's Spaulders"]={SubType="Cloth",Level=38,id=14223,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2698,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14223::::::::40:::::::|h[Geomancer's Spaulders]|h|r"},["Grimoire of Detect Invisibility"]={SubType="Book",Level=40,id=4221,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:4221::::::::40:::::::|h[Grimoire of Detect Invisibility]|h|r",Type="Recipe"},["Shattered Necklace Power Source"]={SubType="Quest",Level=1,id=7672,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134335,Link="|cffffffff|Hitem:7672::::::::40:::::::|h[Shattered Necklace Power Source]|h|r",EquipLoc="",Type="Quest"},["Pattern: Warbear Harness"]={SubType="Leatherworking",Level=55,id=15742,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:15742::::::::40:::::::|h[Pattern: Warbear Harness]|h|r",Type="Recipe"},["Fast Test 2H Sword"]={SubType="Two-Handed Swords",Level=45,id=5556,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7911,Texture=135276,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:5556::::::::40:::::::|h[Fast Test 2H Sword]|h|r",Type="Weapon"},["Codex of Mind Blast VI"]={SubType="Book",Level=40,id=8990,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133741,Link="|cffffffff|Hitem:8990::::::::40:::::::|h[Codex of Mind Blast VI]|h|r",EquipLoc="",Type="Recipe"},["Mechanical Yeti"]={SubType="Consumable",Level=58,id=15778,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=132189,EquipLoc="",Link="|cff1eff00|Hitem:15778::::::::40:::::::|h[Mechanical Yeti]|h|r",Type="Consumable"},["Plans: Wildthorn Mail"]={SubType="Blacksmithing",Level=54,id=12691,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12691::::::::40:::::::|h[Plans: Wildthorn Mail]|h|r"},["Darkmist Wizard Hat"]={SubType="Cloth",Level=44,id=14246,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4451,Texture=133090,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14246::::::::40:::::::|h[Darkmist Wizard Hat]|h|r"},["Knight-Captain's Lamellar Armsplints"]={SubType="Plate",Level=60,id=16412,StackCount=1,Rarity=3,MinLevel=55,SellPrice=5031,Texture=132617,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16412::::::::40:::::::|h[Knight-Captain's Lamellar Armsplints]|h|r",Type="Armor"},["Test Enchant Weapon Greater Striking"]={SubType="Consumable",Level=45,id=16106,StackCount=1,Rarity=1,MinLevel=0,SellPrice=650,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:16106::::::::40:::::::|h[Test Enchant Weapon Greater Striking]|h|r",Type="Consumable"},["Graccu's Homemade Meat Pie"]={SubType="Consumable",Level=35,id=17407,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=133952,EquipLoc="",Link="|cffffffff|Hitem:17407::::::::40:::::::|h[Graccu's Homemade Meat Pie]|h|r",Type="Consumable"},["Nightcrawlers"]={SubType="Consumable",Level=20,id=6530,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=134324,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6530::::::::40:::::::|h[Nightcrawlers]|h|r"},["Recipe: Loch Frenzy Delight"]={SubType="Cooking",Level=15,id=6329,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:6329::::::::40:::::::|h[Recipe: Loch Frenzy Delight]|h|r",EquipLoc=""},["Ambassador's Satchel"]={SubType="Quest",Level=1,id=1923,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133641,Type="Quest",Link="|cffffffff|Hitem:1923::::::::40:::::::|h[Ambassador's Satchel]|h|r",EquipLoc=""},["Elune's Lantern"]={SubType="Junk",Level=40,id=21540,StackCount=1,Rarity=2,MinLevel=40,SellPrice=0,Texture=134249,Link="|cff1eff00|Hitem:21540::::::::40:::::::|h[Elune's Lantern]|h|r",EquipLoc="",Type="Miscellaneous"},["Deprecated Book of Nullify Poison II"]={SubType="Book",Level=28,id=1878,StackCount=1,Rarity=1,MinLevel=28,SellPrice=1750,Texture=133743,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1878::::::::40:::::::|h[Deprecated Book of Nullify Poison II]|h|r"},["The War of the Shifting Sands"]={SubType="Junk",Level=1,id=20415,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133738,Link="|cffffffff|Hitem:20415::::::::40:::::::|h[The War of the Shifting Sands]|h|r",EquipLoc="",Type="Miscellaneous"},["Lonebrow's Journal"]={SubType="Quest",Level=1,id=5790,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133741,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5790::::::::40:::::::|h[Lonebrow's Journal]|h|r"},["Stormpike Soldier's Pendant"]={SubType="Miscellaneous",Level=60,id=19097,StackCount=1,Rarity=3,MinLevel=55,SellPrice=17912,Texture=133302,Link="|cff0070dd|Hitem:19097::::::::40:::::::|h[Stormpike Soldier's Pendant]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Deprecated Skipper's Hat"]={SubType="Leather",Level=20,id=5307,StackCount=1,Rarity=0,MinLevel=0,SellPrice=206,Texture=133072,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff9d9d9d|Hitem:5307::::::::40:::::::|h[Deprecated Skipper's Hat]|h|r"},["Okra"]={SubType="Trade Goods",Level=9,id=732,StackCount=10,Rarity=1,MinLevel=0,SellPrice=6,Texture=134185,Type="Trade Goods",Link="|cffffffff|Hitem:732::::::::40:::::::|h[Okra]|h|r",EquipLoc=""},["Lord's Gauntlets"]={SubType="Mail",Level=50,id=10080,StackCount=1,Rarity=2,MinLevel=45,SellPrice=7319,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10080::::::::40:::::::|h[Lord's Gauntlets]|h|r",Type="Armor"},["Deprecated Heavy Cord Shoulderpads"]={SubType="Cloth",Level=8,id=4934,StackCount=1,Rarity=1,MinLevel=0,SellPrice=22,Texture=135040,Link="|cffffffff|Hitem:4934::::::::40:::::::|h[Deprecated Heavy Cord Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Baby Shark"]={SubType="Junk",Level=20,id=21168,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=132806,Link="|cffffffff|Hitem:21168::::::::40:::::::|h[Baby Shark]|h|r",EquipLoc="",Type="Miscellaneous"},["Formula: Enchant Weapon - Fiery Weapon"]={SubType="Enchanting",Level=53,id=11207,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11207::::::::40:::::::|h[Formula: Enchant Weapon - Fiery Weapon]|h|r",EquipLoc=""},["Aurora Sash"]={SubType="Cloth",Level=37,id=6418,StackCount=1,Rarity=2,MinLevel=32,SellPrice=1697,Texture=132495,Type="Armor",Link="|cff1eff00|Hitem:6418::::::::40:::::::|h[Aurora Sash]|h|r",EquipLoc="INVTYPE_WAIST"},["Pioneer Trousers"]={SubType="Leather",Level=12,id=6269,StackCount=1,Rarity=2,MinLevel=7,SellPrice=193,Texture=134585,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:6269::::::::40:::::::|h[Pioneer Trousers]|h|r"},["Aqual Quintessence"]={SubType="Quest",Level=1,id=17333,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134856,EquipLoc="",Link="|cffffffff|Hitem:17333::::::::40:::::::|h[Aqual Quintessence]|h|r",Type="Quest"},["Briarthorn"]={SubType="Trade Goods",Level=15,id=2450,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=134412,Link="|cffffffff|Hitem:2450::::::::40:::::::|h[Briarthorn]|h|r",EquipLoc="",Type="Trade Goods"},["Minor Soulstone"]={SubType="Consumable",Level=18,id=5232,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134336,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5232::::::::40:::::::|h[Minor Soulstone]|h|r"},["Beazel's Basher"]={SubType="One-Handed Maces",Level=29,id=13024,StackCount=1,Rarity=3,MinLevel=24,SellPrice=4863,Texture=133041,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:13024::::::::40:::::::|h[Beazel's Basher]|h|r"},["Overlord's Girdle"]={SubType="Plate",Level=48,id=10206,StackCount=1,Rarity=2,MinLevel=43,SellPrice=4048,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10206::::::::40:::::::|h[Overlord's Girdle]|h|r",Type="Armor"},["22 Pound Catfish"]={SubType="Junk",Level=15,id=6311,StackCount=1,Rarity=1,MinLevel=0,SellPrice=187,Texture=133916,Type="Miscellaneous",Link="|cffffffff|Hitem:6311::::::::40:::::::|h[22 Pound Catfish]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["32 Pound Catfish"]={SubType="Junk",Level=25,id=6364,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=133916,Type="Miscellaneous",Link="|cffffffff|Hitem:6364::::::::40:::::::|h[32 Pound Catfish]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Delivery to Mathias"]={SubType="Quest",Level=1,id=7674,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132594,EquipLoc="",Link="|cffffffff|Hitem:7674::::::::40:::::::|h[Delivery to Mathias]|h|r",Type="Quest"},["Catelyn's Blade"]={SubType="Quest",Level=1,id=4027,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135637,EquipLoc="",Link="|cffffffff|Hitem:4027::::::::40:::::::|h[Catelyn's Blade]|h|r",Type="Quest"},["Swim Speed Potion"]={SubType="Consumable",Level=20,id=6372,StackCount=5,Rarity=1,MinLevel=10,SellPrice=35,Texture=134754,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6372::::::::40:::::::|h[Swim Speed Potion]|h|r"},["Plans: Gloves of the Dawn"]={SubType="Blacksmithing",Level=64,id=19205,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134939,Link="|cffffffff|Hitem:19205::::::::40:::::::|h[Plans: Gloves of the Dawn]|h|r",EquipLoc="",Type="Recipe"},["Elder's Pants"]={SubType="Cloth",Level=34,id=7368,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2677,Texture=134588,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7368::::::::40:::::::|h[Elder's Pants]|h|r",Type="Armor"},["Splitting Hatchet"]={SubType="One-Handed Axes",Level=31,id=15231,StackCount=1,Rarity=2,MinLevel=26,SellPrice=5033,Texture=132405,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15231::::::::40:::::::|h[Splitting Hatchet]|h|r",Type="Weapon"},["Trogg Dagger"]={SubType="Daggers",Level=3,id=2787,StackCount=1,Rarity=1,MinLevel=1,SellPrice=10,Texture=135644,Link="|cffffffff|Hitem:2787::::::::40:::::::|h[Trogg Dagger]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Plans: Black Amnesty"]={SubType="Blacksmithing",Level=66,id=19208,StackCount=1,Rarity=1,MinLevel=0,SellPrice=17500,Texture=134939,Link="|cffffffff|Hitem:19208::::::::40:::::::|h[Plans: Black Amnesty]|h|r",EquipLoc="",Type="Recipe"},["Pattern: Felcloth Robe"]={SubType="Tailoring",Level=61,id=14506,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14506::::::::40:::::::|h[Pattern: Felcloth Robe]|h|r"},["Smithing Tuyere"]={SubType="Quest",Level=1,id=18959,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134538,Type="Quest",Link="|cffffffff|Hitem:18959::::::::40:::::::|h[Smithing Tuyere]|h|r",EquipLoc=""},["Pathfinder Pants"]={SubType="Leather",Level=31,id=15344,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2516,Texture=134587,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15344::::::::40:::::::|h[Pathfinder Pants]|h|r",Type="Armor"},["Plans: Elemental Sharpening Stone"]={SubType="Blacksmithing",Level=60,id=18264,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18264::::::::40:::::::|h[Plans: Elemental Sharpening Stone]|h|r",EquipLoc=""},["Sign of the Earth"]={SubType="Quest",Level=1,id=4640,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134566,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4640::::::::40:::::::|h[Sign of the Earth]|h|r"},["Ring of Demonic Potency"]={SubType="Miscellaneous",Level=59,id=18315,StackCount=1,Rarity=3,MinLevel=54,SellPrice=12100,Texture=133370,Type="Armor",Link="|cff0070dd|Hitem:18315::::::::40:::::::|h[Ring of Demonic Potency]|h|r",EquipLoc="INVTYPE_FINGER"},["Specter's Blade"]={SubType="Daggers",Level=62,id=18758,StackCount=1,Rarity=3,MinLevel=57,SellPrice=54072,Texture=135654,Type="Weapon",Link="|cff0070dd|Hitem:18758::::::::40:::::::|h[Specter's Blade]|h|r",EquipLoc="INVTYPE_WEAPON"},["Mesh Pants"]={SubType="Cloth",Level=67,id=3957,StackCount=1,Rarity=0,MinLevel=62,SellPrice=9216,Texture=134587,Link="|cff9d9d9d|Hitem:3957::::::::40:::::::|h[Mesh Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Level 20 Test Gear Cloth - Mage/Priest/Warlock"]={SubType="Junk",Level=1,id=13646,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13646::::::::40:::::::|h[Level 20 Test Gear Cloth - Mage/Priest/Warlock]|h|r"},["Pattern: Orange Martial Shirt"]={SubType="Tailoring",Level=44,id=10311,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:10311::::::::40:::::::|h[Pattern: Orange Martial Shirt]|h|r",Type="Recipe"},["Seven of Portals"]={SubType="Junk",Level=1,id=19283,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134492,Link="|cff0070dd|Hitem:19283::::::::40:::::::|h[Seven of Portals]|h|r",EquipLoc="",Type="Miscellaneous"},["Tablet of Lightning Shock III"]={SubType="Book",Level=54,id=9159,StackCount=1,Rarity=1,MinLevel=54,SellPrice=8750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9159::::::::40:::::::|h[Tablet of Lightning Shock III]|h|r"},["Book of Entangling Roots VI"]={SubType="Book",Level=58,id=8795,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=133743,Link="|cffffffff|Hitem:8795::::::::40:::::::|h[Book of Entangling Roots VI]|h|r",EquipLoc="",Type="Recipe"},["Pratt's Handcrafted Tunic"]={SubType="Leather",Level=48,id=19041,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9946,Texture=132722,Link="|cff1eff00|Hitem:19041::::::::40:::::::|h[Pratt's Handcrafted Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Tactical Task Briefing II"]={SubType="Quest",Level=60,id=20945,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:20945::::::::40:::::::|h[Tactical Task Briefing II]|h|r",EquipLoc="",Type="Quest"},["Pattern: Turtle Scale Gloves"]={SubType="Leatherworking",Level=41,id=8385,StackCount=1,Rarity=1,MinLevel=0,SellPrice=875,Texture=134939,Link="|cffffffff|Hitem:8385::::::::40:::::::|h[Pattern: Turtle Scale Gloves]|h|r",EquipLoc="",Type="Recipe"},["QAEnchant Fiery Weapon"]={SubType="Consumable",Level=45,id=23725,StackCount=1,Rarity=1,MinLevel=0,SellPrice=650,Texture=133434,Link="|cffffffff|Hitem:23725::::::::40:::::::|h[QAEnchant Fiery Weapon]|h|r",EquipLoc="",Type="Consumable"},["Deprecated Iron Ingot"]={SubType="Trade Goods",Level=10,id=807,StackCount=5,Rarity=1,MinLevel=0,SellPrice=125,Texture=133218,Link="|cffffffff|Hitem:807::::::::40:::::::|h[Deprecated Iron Ingot]|h|r",EquipLoc="",Type="Trade Goods"},["Mystic's Sphere"]={SubType="Miscellaneous",Level=23,id=15946,StackCount=1,Rarity=2,MinLevel=18,SellPrice=802,Texture=134121,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15946::::::::40:::::::|h[Mystic's Sphere]|h|r",Type="Armor"},["Tome of Divinity"]={SubType="Quest",Level=12,id=6775,StackCount=1,Rarity=1,MinLevel=12,SellPrice=0,Texture=133739,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6775::::::::40:::::::|h[Tome of Divinity]|h|r"},["[PH] Plate Bracers of the Shining Dawn"]={SubType="Plate",Level=100,id=13745,StackCount=1,Rarity=1,MinLevel=100,SellPrice=36061,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:13745::::::::40:::::::|h[[PH] Plate Bracers of the Shining Dawn]|h|r"},["Monster - Staff, Ornate Jeweled Staff - Red"]={SubType="Staves",Level=1,id=13050,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13050::::::::40:::::::|h[Monster - Staff, Ornate Jeweled Staff - Red]|h|r"},["Dervish Bracers"]={SubType="Leather",Level=27,id=6602,StackCount=1,Rarity=2,MinLevel=22,SellPrice=873,Texture=132611,Link="|cff1eff00|Hitem:6602::::::::40:::::::|h[Dervish Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Grime-Encrusted Object"]={SubType="Quest",Level=1,id=9308,StackCount=20,Rarity=1,MinLevel=0,SellPrice=38,Texture=132386,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9308::::::::40:::::::|h[Grime-Encrusted Object]|h|r"},["Teebu's Blazing Longsword"]={SubType="One-Handed Swords",Level=65,id=1728,StackCount=1,Rarity=4,MinLevel=60,SellPrice=87008,Texture=135323,Type="Weapon",Link="|cffa335ee|Hitem:1728::::::::40:::::::|h[Teebu's Blazing Longsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Crusaders' Square Postbox Key"]={SubType="Key",Level=1,id=13303,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:13303::::::::40:::::::|h[Crusaders' Square Postbox Key]|h|r"},["Monster - Axe, Horde C04 Purple"]={SubType="One-Handed Axes",Level=1,id=19762,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Link="|cff9d9d9d|Hitem:19762::::::::40:::::::|h[Monster - Axe, Horde C04 Purple]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Tree Bark Jacket"]={SubType="Cloth",Level=24,id=1486,StackCount=1,Rarity=3,MinLevel=19,SellPrice=1202,Texture=135006,Type="Armor",Link="|cff0070dd|Hitem:1486::::::::40:::::::|h[Tree Bark Jacket]|h|r",EquipLoc="INVTYPE_CHEST"},["Test Potion LockBox (Rogue)"]={SubType="Junk",Level=1,id=16075,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:16075::::::::40:::::::|h[Test Potion LockBox (Rogue)]|h|r",Type="Miscellaneous"},["Laced Mail Belt"]={SubType="Mail",Level=19,id=1738,StackCount=1,Rarity=0,MinLevel=14,SellPrice=147,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:1738::::::::40:::::::|h[Laced Mail Belt]|h|r",Type="Armor"},["Mish'undare, Circlet of the Mind Flayer"]={SubType="Cloth",Level=83,id=19375,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58442,Texture=133154,Link="|cffa335ee|Hitem:19375::::::::40:::::::|h[Mish'undare, Circlet of the Mind Flayer]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Helm of the Holy Avenger"]={SubType="Plate",Level=68,id=21803,StackCount=1,Rarity=3,MinLevel=60,SellPrice=21253,Texture=133071,Link="|cff0070dd|Hitem:21803::::::::40:::::::|h[Helm of the Holy Avenger]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Unbestowed Friendship Bracelet"]={SubType="Consumable",Level=1,id=22259,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=133345,Link="|cffffffff|Hitem:22259::::::::40:::::::|h[Unbestowed Friendship Bracelet]|h|r",EquipLoc="",Type="Consumable"},["Marshal's Dragonhide Waistguard"]={SubType="Leather",Level=65,id=16447,StackCount=1,Rarity=4,MinLevel=60,SellPrice=10506,Texture=132512,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16447::::::::40:::::::|h[Marshal's Dragonhide Waistguard]|h|r",Type="Armor"},["Beatstick"]={SubType="Two-Handed Maces",Level=8,id=3190,StackCount=1,Rarity=1,MinLevel=3,SellPrice=99,Texture=133477,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:3190::::::::40:::::::|h[Beatstick]|h|r"},["Green Moro'gai Gem"]={SubType="Quest",Level=1,id=18156,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133367,Type="Quest",Link="|cff1eff00|Hitem:18156::::::::40:::::::|h[Green Moro'gai Gem]|h|r",EquipLoc=""},["Level 50 Test Gear Cloth - Mage/Priest/Warlock"]={SubType="Junk",Level=1,id=13652,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13652::::::::40:::::::|h[Level 50 Test Gear Cloth - Mage/Priest/Warlock]|h|r"},["Rusty Hatchet"]={SubType="One-Handed Axes",Level=9,id=1416,StackCount=1,Rarity=0,MinLevel=4,SellPrice=72,Texture=135421,Link="|cff9d9d9d|Hitem:1416::::::::40:::::::|h[Rusty Hatchet]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Flarecore Gloves"]={SubType="Cloth",Level=62,id=16979,StackCount=1,Rarity=4,MinLevel=57,SellPrice=14902,Texture=132960,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16979::::::::40:::::::|h[Flarecore Gloves]|h|r",Type="Armor"},["Nomadic Bracers"]={SubType="Leather",Level=5,id=4908,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=132611,EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:4908::::::::40:::::::|h[Nomadic Bracers]|h|r",Type="Armor"},["Tome of Flamestrike III"]={SubType="Book",Level=32,id=3092,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:3092::::::::40:::::::|h[Tome of Flamestrike III]|h|r",EquipLoc=""},["Marshal's Plate Gauntlets"]={SubType="Plate",Level=71,id=16484,StackCount=1,Rarity=4,MinLevel=60,SellPrice=11135,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16484::::::::40:::::::|h[Marshal's Plate Gauntlets]|h|r",Type="Armor"},["Frostwolf Advisor's Pendant"]={SubType="Miscellaneous",Level=60,id=19096,StackCount=1,Rarity=3,MinLevel=55,SellPrice=17912,Texture=133294,Link="|cff0070dd|Hitem:19096::::::::40:::::::|h[Frostwolf Advisor's Pendant]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Frost Metal Pauldrons"]={SubType="Mail",Level=37,id=4123,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3804,Texture=135038,Type="Armor",Link="|cff1eff00|Hitem:4123::::::::40:::::::|h[Frost Metal Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Knight-Lieutenant's Chain Greaves"]={SubType="Mail",Level=66,id=23278,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15253,Texture=132539,Link="|cff0070dd|Hitem:23278::::::::40:::::::|h[Knight-Lieutenant's Chain Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Brimstone Belt"]={SubType="Cloth",Level=24,id=4785,StackCount=1,Rarity=2,MinLevel=19,SellPrice=469,Texture=132491,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4785::::::::40:::::::|h[Brimstone Belt]|h|r"},["Followup Logistics Assignment"]={SubType="Junk",Level=1,id=20805,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133460,Link="|cffffffff|Hitem:20805::::::::40:::::::|h[Followup Logistics Assignment]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Mace, Standard Serpent Green"]={SubType="One-Handed Maces",Level=1,id=19916,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=136040,Link="|cff9d9d9d|Hitem:19916::::::::40:::::::|h[Monster - Mace, Standard Serpent Green]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Arctic Pendant"]={SubType="Miscellaneous",Level=51,id=12044,StackCount=1,Rarity=2,MinLevel=46,SellPrice=5145,Texture=133294,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12044::::::::40:::::::|h[Arctic Pendant]|h|r"},["Steady Bastard Sword"]={SubType="Two-Handed Swords",Level=11,id=4939,StackCount=1,Rarity=2,MinLevel=0,SellPrice=395,Texture=135344,Type="Weapon",Link="|cff1eff00|Hitem:4939::::::::40:::::::|h[Steady Bastard Sword]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Treant Muisek"]={SubType="Quest",Level=1,id=9593,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136074,Link="|cffffffff|Hitem:9593::::::::40:::::::|h[Treant Muisek]|h|r",EquipLoc="",Type="Quest"},["Pattern: Mooncloth Leggings"]={SubType="Tailoring",Level=58,id=14497,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:14497::::::::40:::::::|h[Pattern: Mooncloth Leggings]|h|r"},["Simple Blouse"]={SubType="Cloth",Level=15,id=9749,StackCount=1,Rarity=2,MinLevel=10,SellPrice=275,Texture=135009,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:9749::::::::40:::::::|h[Simple Blouse]|h|r"},["Recipe: Transmute Air to Fire"]={SubType="Alchemy",Level=55,id=13482,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13482::::::::40:::::::|h[Recipe: Transmute Air to Fire]|h|r"},["90 Epic Rogue Bracers"]={SubType="Leather",Level=90,id=20269,StackCount=1,Rarity=4,MinLevel=60,SellPrice=73065,Texture=132606,Link="|cffa335ee|Hitem:20269::::::::40:::::::|h[90 Epic Rogue Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Raw Loch Frenzy"]={SubType="Consumable",Level=15,id=6317,StackCount=20,Rarity=1,MinLevel=5,SellPrice=2,Texture=133889,Type="Consumable",Link="|cffffffff|Hitem:6317::::::::40:::::::|h[Raw Loch Frenzy]|h|r",EquipLoc=""},["Mantle of the Blackwing Cabal"]={SubType="Cloth",Level=73,id=19370,StackCount=1,Rarity=4,MinLevel=60,SellPrice=38944,Texture=135056,Link="|cffa335ee|Hitem:19370::::::::40:::::::|h[Mantle of the Blackwing Cabal]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Plainstrider Kidney"]={SubType="Quest",Level=1,id=4894,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134342,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4894::::::::40:::::::|h[Plainstrider Kidney]|h|r"},["Deprecated Wolf Femur"]={SubType="One-Handed Maces",Level=3,id=751,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7,Texture=133718,Type="Weapon",Link="|cff9d9d9d|Hitem:751::::::::40:::::::|h[Deprecated Wolf Femur]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Cross-stitched Bracers"]={SubType="Cloth",Level=28,id=3381,StackCount=1,Rarity=0,MinLevel=23,SellPrice=303,Texture=132612,Link="|cff9d9d9d|Hitem:3381::::::::40:::::::|h[Cross-stitched Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Knitted Belt"]={SubType="Cloth",Level=10,id=3602,StackCount=1,Rarity=1,MinLevel=5,SellPrice=29,Texture=132495,Type="Armor",Link="|cffffffff|Hitem:3602::::::::40:::::::|h[Knitted Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Lewis' Note"]={SubType="Quest",Level=1,id=15998,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,EquipLoc="",Link="|cffffffff|Hitem:15998::::::::40:::::::|h[Lewis' Note]|h|r",Type="Quest"},["Sunderseer Mantle"]={SubType="Cloth",Level=61,id=13185,StackCount=1,Rarity=3,MinLevel=56,SellPrice=16422,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13185::::::::40:::::::|h[Sunderseer Mantle]|h|r"},["Nocturnal Shoes"]={SubType="Leather",Level=41,id=15152,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4449,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15152::::::::40:::::::|h[Nocturnal Shoes]|h|r",Type="Armor"},["Thin Cloth Shoes"]={SubType="Cloth",Level=5,id=2117,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=132543,Type="Armor",Link="|cffffffff|Hitem:2117::::::::40:::::::|h[Thin Cloth Shoes]|h|r",EquipLoc="INVTYPE_FEET"},["Tear of the Moons"]={SubType="Quest",Level=1,id=5038,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134075,EquipLoc="",Link="|cffffffff|Hitem:5038::::::::40:::::::|h[Tear of the Moons]|h|r",Type="Quest"},["Sentry's Surcoat"]={SubType="Mail",Level=31,id=15524,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2876,Texture=132719,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15524::::::::40:::::::|h[Sentry's Surcoat]|h|r",Type="Armor"},["Blade of Reckoning"]={SubType="One-Handed Swords",Level=60,id=12061,StackCount=1,Rarity=2,MinLevel=0,SellPrice=40212,Texture=135327,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:12061::::::::40:::::::|h[Blade of Reckoning]|h|r"},["Soldier's Cloak"]={SubType="Cloth",Level=14,id=6549,StackCount=1,Rarity=1,MinLevel=9,SellPrice=101,Texture=133769,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:6549::::::::40:::::::|h[Soldier's Cloak]|h|r"},["Reconstructed Tome"]={SubType="Quest",Level=1,id=7006,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133740,EquipLoc="",Link="|cffffffff|Hitem:7006::::::::40:::::::|h[Reconstructed Tome]|h|r",Type="Quest"},["The Lich's Spellbook"]={SubType="Quest",Level=1,id=2833,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133733,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2833::::::::40:::::::|h[The Lich's Spellbook]|h|r"},["Deprecated DEFAULT QUEST ITEM - Scroll"]={SubType="Quest",Level=1,id=3519,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",Link="|cffffffff|Hitem:3519::::::::40:::::::|h[Deprecated DEFAULT QUEST ITEM - Scroll]|h|r",EquipLoc=""},["Deprecated Battered Lock"]={SubType="Junk",Level=1,id=3500,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=133343,Type="Miscellaneous",Link="|cffffffff|Hitem:3500::::::::40:::::::|h[Deprecated Battered Lock]|h|r",EquipLoc=""},["Red Linen Shirt"]={SubType="Miscellaneous",Level=10,id=2575,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=135029,Type="Armor",Link="|cffffffff|Hitem:2575::::::::40:::::::|h[Red Linen Shirt]|h|r",EquipLoc="INVTYPE_BODY"},["Cloak of the People's Militia"]={SubType="Cloth",Level=15,id=3511,StackCount=1,Rarity=2,MinLevel=0,SellPrice=267,Texture=133766,Link="|cff1eff00|Hitem:3511::::::::40:::::::|h[Cloak of the People's Militia]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Artisan Fishing - The Way of the Lure"]={SubType="Fishing",Level=45,id=16082,StackCount=1,Rarity=1,MinLevel=35,SellPrice=5000,Texture=133742,EquipLoc="",Link="|cffffffff|Hitem:16082::::::::40:::::::|h[Artisan Fishing - The Way of the Lure]|h|r",Type="Recipe"},["Sauteed Sunfish"]={SubType="Consumable",Level=15,id=1326,StackCount=20,Rarity=1,MinLevel=0,SellPrice=10,Texture=133888,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:1326::::::::40:::::::|h[Sauteed Sunfish]|h|r"},["Crude Scope"]={SubType="Devices",Level=12,id=4405,StackCount=5,Rarity=1,MinLevel=5,SellPrice=125,Texture=134441,Type="Trade Goods",Link="|cffffffff|Hitem:4405::::::::40:::::::|h[Crude Scope]|h|r",EquipLoc=""},["Cindercloth Cloak"]={SubType="Cloth",Level=55,id=14044,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9503,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14044::::::::40:::::::|h[Cindercloth Cloak]|h|r"},["Delicate Car Parts"]={SubType="Quest",Level=1,id=5802,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132996,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5802::::::::40:::::::|h[Delicate Car Parts]|h|r"},["Codex of Psychic Scream II"]={SubType="Book",Level=28,id=8971,StackCount=1,Rarity=1,MinLevel=28,SellPrice=2025,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8971::::::::40:::::::|h[Codex of Psychic Scream II]|h|r"},["Level 40 Test Gear Leather - Rogue"]={SubType="Junk",Level=1,id=13674,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13674::::::::40:::::::|h[Level 40 Test Gear Leather - Rogue]|h|r"},["Ashjre'thul, Crossbow of Smiting"]={SubType="Crossbows",Level=77,id=19361,StackCount=1,Rarity=4,MinLevel=60,SellPrice=111546,Texture=135538,Link="|cffa335ee|Hitem:19361::::::::40:::::::|h[Ashjre'thul, Crossbow of Smiting]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Light Bow"]={SubType="Bows",Level=21,id=4576,StackCount=1,Rarity=2,MinLevel=16,SellPrice=1184,Texture=135495,Type="Weapon",Link="|cff1eff00|Hitem:4576::::::::40:::::::|h[Light Bow]|h|r",EquipLoc="INVTYPE_RANGED"},["Gauntlets of the Sea"]={SubType="Leather",Level=46,id=8346,StackCount=1,Rarity=3,MinLevel=41,SellPrice=5363,Texture=132964,Link="|cff0070dd|Hitem:8346::::::::40:::::::|h[Gauntlets of the Sea]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Notched Rib"]={SubType="Quest",Level=1,id=3162,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133719,Type="Quest",Link="|cffffffff|Hitem:3162::::::::40:::::::|h[Notched Rib]|h|r",EquipLoc=""},["Alliance Battle Standard"]={SubType="Consumable",Level=0,id=18606,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=132486,Type="Consumable",Link="|cffffffff|Hitem:18606::::::::40:::::::|h[Alliance Battle Standard]|h|r",EquipLoc=""},["Fat Sack of Coins"]={SubType="Junk",Level=1,id=11937,StackCount=1,Rarity=1,MinLevel=0,SellPrice=187,Texture=133639,Type="Miscellaneous",Link="|cffffffff|Hitem:11937::::::::40:::::::|h[Fat Sack of Coins]|h|r",EquipLoc=""},["Monster - Sword2H, Ahn'Qiraj"]={SubType="Two-Handed Swords",Level=1,id=21794,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135366,Link="|cff9d9d9d|Hitem:21794::::::::40:::::::|h[Monster - Sword2H, Ahn'Qiraj]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Branch of Cenarius"]={SubType="Quest",Level=1,id=5461,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136065,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5461::::::::40:::::::|h[Branch of Cenarius]|h|r"},["Unfired Ancient Blade"]={SubType="Quest",Level=1,id=18489,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=135357,Type="Quest",Link="|cffa335ee|Hitem:18489::::::::40:::::::|h[Unfired Ancient Blade]|h|r",EquipLoc=""},["Trogg Club"]={SubType="One-Handed Maces",Level=11,id=2064,StackCount=1,Rarity=1,MinLevel=6,SellPrice=191,Texture=133052,Type="Weapon",Link="|cffffffff|Hitem:2064::::::::40:::::::|h[Trogg Club]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["War Torn Shield"]={SubType="Shields",Level=12,id=15486,StackCount=1,Rarity=2,MinLevel=7,SellPrice=245,Texture=134954,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15486::::::::40:::::::|h[War Torn Shield]|h|r",Type="Armor"},["Barbaric Cloth Vest"]={SubType="Cloth",Level=18,id=3310,StackCount=1,Rarity=2,MinLevel=13,SellPrice=442,Texture=135011,Type="Armor",Link="|cff1eff00|Hitem:3310::::::::40:::::::|h[Barbaric Cloth Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Murloc Eye"]={SubType="Trade Goods",Level=11,id=730,StackCount=10,Rarity=1,MinLevel=0,SellPrice=16,Texture=133884,Link="|cffffffff|Hitem:730::::::::40:::::::|h[Murloc Eye]|h|r",EquipLoc="",Type="Trade Goods"},["Guardian Belt"]={SubType="Leather",Level=34,id=4258,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1592,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4258::::::::40:::::::|h[Guardian Belt]|h|r",Type="Armor"},["Master Hunter's Rifle"]={SubType="Guns",Level=45,id=4111,StackCount=1,Rarity=2,MinLevel=0,SellPrice=12042,Texture=135614,Link="|cff1eff00|Hitem:4111::::::::40:::::::|h[Master Hunter's Rifle]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Heavy Ogre War Axe"]={SubType="Two-Handed Axes",Level=27,id=2227,StackCount=1,Rarity=2,MinLevel=22,SellPrice=4133,Texture=135562,Link="|cff1eff00|Hitem:2227::::::::40:::::::|h[Heavy Ogre War Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Sterling Chain Belt"]={SubType="Mail",Level=63,id=4008,StackCount=1,Rarity=0,MinLevel=58,SellPrice=5494,Texture=132495,Link="|cff9d9d9d|Hitem:4008::::::::40:::::::|h[Sterling Chain Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Magnificent Breastplate"]={SubType="Mail",Level=62,id=15669,StackCount=1,Rarity=2,MinLevel=57,SellPrice=28538,Texture=132629,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15669::::::::40:::::::|h[Magnificent Breastplate]|h|r",Type="Armor"},["Gooey Spider Cake"]={SubType="Consumable",Level=25,id=3666,StackCount=20,Rarity=1,MinLevel=15,SellPrice=100,Texture=133952,EquipLoc="",Link="|cffffffff|Hitem:3666::::::::40:::::::|h[Gooey Spider Cake]|h|r",Type="Consumable"},["Bolt of Runecloth"]={SubType="Trade Goods",Level=55,id=14048,StackCount=10,Rarity=1,MinLevel=0,SellPrice=2000,Texture=132904,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:14048::::::::40:::::::|h[Bolt of Runecloth]|h|r"},["Chillwind E'ko"]={SubType="Quest",Level=1,id=12434,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135227,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12434::::::::40:::::::|h[Chillwind E'ko]|h|r"},["Dirty Leather Vest"]={SubType="Leather",Level=5,id=85,StackCount=1,Rarity=1,MinLevel=1,SellPrice=12,Texture=135011,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:85::::::::40:::::::|h[Dirty Leather Vest]|h|r",Type="Armor"},["Light Chain Bracers"]={SubType="Mail",Level=10,id=2402,StackCount=1,Rarity=1,MinLevel=5,SellPrice=43,Texture=132604,Link="|cffffffff|Hitem:2402::::::::40:::::::|h[Light Chain Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Giantstalker's Epaulets"]={SubType="Mail",Level=66,id=16848,StackCount=1,Rarity=4,MinLevel=60,SellPrice=41237,Texture=135041,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16848::::::::40:::::::|h[Giantstalker's Epaulets]|h|r",Type="Armor"},["Glowing Ember"]={SubType="Quest",Level=1,id=6655,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134335,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6655::::::::40:::::::|h[Glowing Ember]|h|r"},["Chausses of Westfall"]={SubType="Mail",Level=24,id=6087,StackCount=1,Rarity=3,MinLevel=0,SellPrice=1727,Texture=134583,Link="|cff0070dd|Hitem:6087::::::::40:::::::|h[Chausses of Westfall]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Bloodlord's Defender"]={SubType="One-Handed Swords",Level=66,id=19867,StackCount=1,Rarity=4,MinLevel=60,SellPrice=87323,Texture=135364,Link="|cffa335ee|Hitem:19867::::::::40:::::::|h[Bloodlord's Defender]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Mooncloth"]={SubType="Trade Goods",Level=55,id=14342,StackCount=20,Rarity=1,MinLevel=0,SellPrice=4000,Texture=132895,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:14342::::::::40:::::::|h[Mooncloth]|h|r"},["Stormpike Battle Charger"]={SubType="Junk",Level=60,id=19030,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132248,Link="|cffa335ee|Hitem:19030::::::::40:::::::|h[Stormpike Battle Charger]|h|r",EquipLoc="",Type="Miscellaneous"},["Pattern: Blue Dragonscale Shoulders"]={SubType="Leatherworking",Level=59,id=15763,StackCount=1,Rarity=3,MinLevel=0,SellPrice=6250,Texture=134939,EquipLoc="",Link="|cff0070dd|Hitem:15763::::::::40:::::::|h[Pattern: Blue Dragonscale Shoulders]|h|r",Type="Recipe"},["Pupellyverbos Port"]={SubType="Quest",Level=1,id=3900,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132796,Link="|cffffffff|Hitem:3900::::::::40:::::::|h[Pupellyverbos Port]|h|r",EquipLoc="",Type="Quest"},["Thick Wolfhide"]={SubType="Trade Goods",Level=40,id=8368,StackCount=10,Rarity=1,MinLevel=0,SellPrice=1000,Texture=134346,Link="|cffffffff|Hitem:8368::::::::40:::::::|h[Thick Wolfhide]|h|r",EquipLoc="",Type="Trade Goods"},["Twig of the World Tree"]={SubType="Two-Handed Maces",Level=58,id=13047,StackCount=1,Rarity=3,MinLevel=53,SellPrice=56588,Texture=133488,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13047::::::::40:::::::|h[Twig of the World Tree]|h|r"},["Starfire Tiara"]={SubType="Cloth",Level=60,id=12604,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14368,Texture=132768,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:12604::::::::40:::::::|h[Starfire Tiara]|h|r"},["Recipe: Great Rage Potion"]={SubType="Alchemy",Level=35,id=5643,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:5643::::::::40:::::::|h[Recipe: Great Rage Potion]|h|r",Type="Recipe"},["Night Watch Gauntlets"]={SubType="Mail",Level=21,id=3559,StackCount=1,Rarity=2,MinLevel=0,SellPrice=473,Texture=132938,Type="Armor",Link="|cff1eff00|Hitem:3559::::::::40:::::::|h[Night Watch Gauntlets]|h|r",EquipLoc="INVTYPE_HAND"},["Blitzcleaver"]={SubType="One-Handed Axes",Level=54,id=15862,StackCount=1,Rarity=2,MinLevel=0,SellPrice=28789,Texture=135576,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15862::::::::40:::::::|h[Blitzcleaver]|h|r",Type="Weapon"},["Ritual Bands"]={SubType="Cloth",Level=18,id=14122,StackCount=1,Rarity=2,MinLevel=13,SellPrice=219,Texture=132609,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14122::::::::40:::::::|h[Ritual Bands]|h|r"},["Indomitable Boots"]={SubType="Leather",Level=62,id=14681,StackCount=1,Rarity=2,MinLevel=57,SellPrice=17139,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14681::::::::40:::::::|h[Indomitable Boots]|h|r"},["Saltstone Sabatons"]={SubType="Plate",Level=40,id=14896,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3418,Texture=132589,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14896::::::::40:::::::|h[Saltstone Sabatons]|h|r"},["Warleader's Crown"]={SubType="Plate",Level=62,id=14866,StackCount=1,Rarity=2,MinLevel=57,SellPrice=13301,Texture=133121,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14866::::::::40:::::::|h[Warleader's Crown]|h|r"},["Robes of the Exalted"]={SubType="Cloth",Level=63,id=13346,StackCount=1,Rarity=3,MinLevel=58,SellPrice=23118,Texture=132649,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:13346::::::::40:::::::|h[Robes of the Exalted]|h|r"},["Secret Plans: Fiery Flux"]={SubType="Quest",Level=1,id=18922,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134943,Type="Quest",Link="|cffffffff|Hitem:18922::::::::40:::::::|h[Secret Plans: Fiery Flux]|h|r",EquipLoc=""},["Cushioned Boots"]={SubType="Leather",Level=12,id=9601,StackCount=1,Rarity=1,MinLevel=0,SellPrice=87,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:9601::::::::40:::::::|h[Cushioned Boots]|h|r"},["Curved Raptor Talon"]={SubType="Junk",Level=1,id=1696,StackCount=5,Rarity=0,MinLevel=0,SellPrice=606,Texture=134295,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:1696::::::::40:::::::|h[Curved Raptor Talon]|h|r",EquipLoc=""},["Razorflank's Heart"]={SubType="Quest",Level=1,id=5793,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5793::::::::40:::::::|h[Razorflank's Heart]|h|r"},["Lake Creeper Moss"]={SubType="Quest",Level=1,id=3257,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134186,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3257::::::::40:::::::|h[Lake Creeper Moss]|h|r"},["Pocked Black Box"]={SubType="Quest",Level=30,id=10590,StackCount=1,Rarity=1,MinLevel=30,SellPrice=0,Texture=134400,EquipLoc="",Link="|cffffffff|Hitem:10590::::::::40:::::::|h[Pocked Black Box]|h|r",Type="Quest"},["Hollow Vulture Bone"]={SubType="Quest",Level=1,id=5848,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133718,EquipLoc="",Link="|cffffffff|Hitem:5848::::::::40:::::::|h[Hollow Vulture Bone]|h|r",Type="Quest"},["Pristine Crawler Leg"]={SubType="Quest",Level=1,id=5938,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134321,Link="|cffffffff|Hitem:5938::::::::40:::::::|h[Pristine Crawler Leg]|h|r",EquipLoc="",Type="Quest"},["Executioner's Cleaver"]={SubType="Two-Handed Axes",Level=48,id=13018,StackCount=1,Rarity=3,MinLevel=43,SellPrice=31967,Texture=132418,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13018::::::::40:::::::|h[Executioner's Cleaver]|h|r"},["Reins of the Night saber"]={SubType="Junk",Level=40,id=8627,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132225,Link="|cffffffff|Hitem:8627::::::::40:::::::|h[Reins of the Night saber]|h|r",EquipLoc="",Type="Miscellaneous"},["Mistscape Pants"]={SubType="Cloth",Level=45,id=4046,StackCount=1,Rarity=2,MinLevel=40,SellPrice=6783,Texture=134593,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:4046::::::::40:::::::|h[Mistscape Pants]|h|r",Type="Armor"},["Plans: Heavy Mithril Helm"]={SubType="Blacksmithing",Level=49,id=7990,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:7990::::::::40:::::::|h[Plans: Heavy Mithril Helm]|h|r",Type="Recipe"},["Whipvine Cord"]={SubType="Cloth",Level=59,id=18327,StackCount=1,Rarity=3,MinLevel=54,SellPrice=9376,Texture=132506,Type="Armor",Link="|cff0070dd|Hitem:18327::::::::40:::::::|h[Whipvine Cord]|h|r",EquipLoc="INVTYPE_WAIST"},["Double-stitched Cloak"]={SubType="Cloth",Level=37,id=3811,StackCount=1,Rarity=0,MinLevel=32,SellPrice=1064,Texture=133754,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:3811::::::::40:::::::|h[Double-stitched Cloak]|h|r"},["Mooncloth Gloves"]={SubType="Cloth",Level=62,id=18409,StackCount=1,Rarity=3,MinLevel=57,SellPrice=11219,Texture=132951,Type="Armor",Link="|cff0070dd|Hitem:18409::::::::40:::::::|h[Mooncloth Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Level 30 Test Gear Leather - Hunter/Rogue"]={SubType="Junk",Level=1,id=13666,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13666::::::::40:::::::|h[Level 30 Test Gear Leather - Hunter/Rogue]|h|r"},["Sturdy Male Orc Mask"]={SubType="Miscellaneous",Level=45,id=20595,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5082,Texture=132366,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:20595::::::::40:::::::|h[Sturdy Male Orc Mask]|h|r"},["Brigade Defender"]={SubType="Shields",Level=45,id=9918,StackCount=1,Rarity=2,MinLevel=40,SellPrice=10212,Texture=134949,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9918::::::::40:::::::|h[Brigade Defender]|h|r"},["Hickory Shortbow"]={SubType="Bows",Level=11,id=4931,StackCount=1,Rarity=1,MinLevel=0,SellPrice=134,Texture=135493,EquipLoc="INVTYPE_RANGED",Link="|cffffffff|Hitem:4931::::::::40:::::::|h[Hickory Shortbow]|h|r",Type="Weapon"},["Chillsteel Girdle"]={SubType="Mail",Level=57,id=11783,StackCount=1,Rarity=3,MinLevel=52,SellPrice=12767,Texture=132522,Type="Armor",Link="|cff0070dd|Hitem:11783::::::::40:::::::|h[Chillsteel Girdle]|h|r",EquipLoc="INVTYPE_WAIST"},["Malown's Slam"]={SubType="Two-Handed Maces",Level=61,id=13393,StackCount=1,Rarity=3,MinLevel=56,SellPrice=62380,Texture=133476,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13393::::::::40:::::::|h[Malown's Slam]|h|r"},["Girdle of Insight"]={SubType="Leather",Level=62,id=18504,StackCount=1,Rarity=3,MinLevel=57,SellPrice=14126,Texture=132515,Type="Armor",Link="|cff0070dd|Hitem:18504::::::::40:::::::|h[Girdle of Insight]|h|r",EquipLoc="INVTYPE_WAIST"},["Craftsman's Writ - Gnomish Battle Chicken"]={SubType="Junk",Level=60,id=22615,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22615::::::::40:::::::|h[Craftsman's Writ - Gnomish Battle Chicken]|h|r",EquipLoc="",Type="Miscellaneous"},["Trader's Ring"]={SubType="Miscellaneous",Level=35,id=15689,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4040,Texture=133369,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:15689::::::::40:::::::|h[Trader's Ring]|h|r",Type="Armor"},["Schematic: Hyper-Radiant Flame Reflector"]={SubType="Engineering",Level=58,id=18657,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:18657::::::::40:::::::|h[Schematic: Hyper-Radiant Flame Reflector]|h|r",EquipLoc=""},["Demonic Runed Spaulders"]={SubType="Leather",Level=59,id=13257,StackCount=1,Rarity=3,MinLevel=54,SellPrice=18088,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13257::::::::40:::::::|h[Demonic Runed Spaulders]|h|r"},["Pattern: Chimeric Vest"]={SubType="Leatherworking",Level=58,id=15755,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15755::::::::40:::::::|h[Pattern: Chimeric Vest]|h|r",Type="Recipe"},["Blurred Axe"]={SubType="One-Handed Axes",Level=27,id=4824,StackCount=1,Rarity=2,MinLevel=22,SellPrice=3371,Texture=132405,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:4824::::::::40:::::::|h[Blurred Axe]|h|r"},["Sigil of Trollbane"]={SubType="Quest",Level=1,id=4466,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:4466::::::::40:::::::|h[Sigil of Trollbane]|h|r",Type="Quest"},["Goldthorn"]={SubType="Trade Goods",Level=34,id=3821,StackCount=20,Rarity=1,MinLevel=0,SellPrice=150,Texture=134196,Type="Trade Goods",Link="|cffffffff|Hitem:3821::::::::40:::::::|h[Goldthorn]|h|r",EquipLoc=""},["Welding Shield"]={SubType="Shields",Level=16,id=5325,StackCount=1,Rarity=2,MinLevel=0,SellPrice=498,Texture=134952,Link="|cff1eff00|Hitem:5325::::::::40:::::::|h[Welding Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Spellbinder Vest"]={SubType="Cloth",Level=17,id=2969,StackCount=1,Rarity=2,MinLevel=12,SellPrice=381,Texture=132647,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:2969::::::::40:::::::|h[Spellbinder Vest]|h|r",Type="Armor"},["Small Wooden Hammer"]={SubType="One-Handed Maces",Level=4,id=2055,StackCount=1,Rarity=1,MinLevel=1,SellPrice=16,Texture=133052,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2055::::::::40:::::::|h[Small Wooden Hammer]|h|r",Type="Weapon"},["Holiday Spices"]={SubType="Trade Goods",Level=5,id=17194,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133644,EquipLoc="",Link="|cffffffff|Hitem:17194::::::::40:::::::|h[Holiday Spices]|h|r",Type="Trade Goods"},["Pattern: Cindercloth Vest"]={SubType="Tailoring",Level=52,id=14471,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14471::::::::40:::::::|h[Pattern: Cindercloth Vest]|h|r"},["Frostwolf Cloth Belt"]={SubType="Cloth",Level=60,id=19090,StackCount=1,Rarity=3,MinLevel=55,SellPrice=10285,Texture=132493,Link="|cff0070dd|Hitem:19090::::::::40:::::::|h[Frostwolf Cloth Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Voice Amplification Modulator"]={SubType="Miscellaneous",Level=58,id=16009,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5930,Texture=133282,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:16009::::::::40:::::::|h[Voice Amplification Modulator]|h|r",Type="Armor"},["Araj's Phylactery Shard"]={SubType="Quest",Level=1,id=17114,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132878,EquipLoc="",Link="|cffffffff|Hitem:17114::::::::40:::::::|h[Araj's Phylactery Shard]|h|r",Type="Quest"},["Gold Link Belt"]={SubType="Mail",Level=56,id=15813,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10113,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15813::::::::40:::::::|h[Gold Link Belt]|h|r",Type="Armor"},["Raw Black Truffle"]={SubType="Consumable",Level=45,id=4608,StackCount=20,Rarity=1,MinLevel=35,SellPrice=100,Texture=134524,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:4608::::::::40:::::::|h[Raw Black Truffle]|h|r"},["Layered Tunic"]={SubType="Leather",Level=5,id=60,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=132724,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:60::::::::40:::::::|h[Layered Tunic]|h|r"},["Piece of Threshadon Carcass"]={SubType="Quest",Level=1,id=11504,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133972,Type="Quest",Link="|cffffffff|Hitem:11504::::::::40:::::::|h[Piece of Threshadon Carcass]|h|r",EquipLoc=""},["Lunar Fungus"]={SubType="Quest",Level=1,id=15851,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134522,EquipLoc="",Link="|cffffffff|Hitem:15851::::::::40:::::::|h[Lunar Fungus]|h|r",Type="Quest"},["Shipment of Iron"]={SubType="Quest",Level=1,id=3564,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Link="|cffffffff|Hitem:3564::::::::40:::::::|h[Shipment of Iron]|h|r",EquipLoc="",Type="Quest"},["[PH] Greater Arcane Amalgamation (AC/FR)"]={SubType="Quest",Level=50,id=11666,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=134094,Type="Quest",Link="|cff0070dd|Hitem:11666::::::::40:::::::|h[[PH] Greater Arcane Amalgamation (AC/FR)]|h|r",EquipLoc=""},["QAEnchant Gloves +15 Agility"]={SubType="Consumable",Level=1,id=22033,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22033::::::::40:::::::|h[QAEnchant Gloves +15 Agility]|h|r"},["Demon Hunter Blindfold"]={SubType="Mail",Level=1,id=3536,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133072,Link="|cffffffff|Hitem:3536::::::::40:::::::|h[Demon Hunter Blindfold]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Deprecated Farmer's Maul"]={SubType="Two-Handed Maces",Level=4,id=1385,StackCount=1,Rarity=0,MinLevel=1,SellPrice=14,Texture=133046,Link="|cff9d9d9d|Hitem:1385::::::::40:::::::|h[Deprecated Farmer's Maul]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Head of Lathoric the Black"]={SubType="Quest",Level=1,id=10447,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134159,EquipLoc="",Link="|cffffffff|Hitem:10447::::::::40:::::::|h[Head of Lathoric the Black]|h|r",Type="Quest"},["Flash Rifle"]={SubType="Guns",Level=37,id=4086,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6386,Texture=135616,Link="|cff1eff00|Hitem:4086::::::::40:::::::|h[Flash Rifle]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Monster - Item, Fish - Orange"]={SubType="Miscellaneous",Level=1,id=6228,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=133888,Type="Weapon",Link="|cff9d9d9d|Hitem:6228::::::::40:::::::|h[Monster - Item, Fish - Orange]|h|r",EquipLoc="INVTYPE_WEAPON"},["Explorer's Knapsack"]={SubType="Bag",Level=55,id=10683,StackCount=1,Rarity=1,MinLevel=0,SellPrice=8750,Texture=133652,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:10683::::::::40:::::::|h[Explorer's Knapsack]|h|r",Type="Container"},["Shiver Blade"]={SubType="Two-Handed Swords",Level=20,id=5182,StackCount=1,Rarity=2,MinLevel=15,SellPrice=1769,Texture=135327,Link="|cff1eff00|Hitem:5182::::::::40:::::::|h[Shiver Blade]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Taming Rod"]={SubType="Quest",Level=10,id=15908,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132164,EquipLoc="",Link="|cffffffff|Hitem:15908::::::::40:::::::|h[Taming Rod]|h|r",Type="Quest"},["Pagan Shoes"]={SubType="Cloth",Level=22,id=14159,StackCount=1,Rarity=2,MinLevel=17,SellPrice=570,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14159::::::::40:::::::|h[Pagan Shoes]|h|r"},["Knight-Captain's Dragonhide Armsplints"]={SubType="Leather",Level=60,id=16395,StackCount=1,Rarity=3,MinLevel=55,SellPrice=6359,Texture=132601,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16395::::::::40:::::::|h[Knight-Captain's Dragonhide Armsplints]|h|r",Type="Armor"},["Tome of Fireball IV"]={SubType="Book",Level=18,id=4161,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=133739,EquipLoc="",Link="|cffffffff|Hitem:4161::::::::40:::::::|h[Tome of Fireball IV]|h|r",Type="Recipe"},["Lancer Boots"]={SubType="Leather",Level=30,id=6752,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1601,Texture=132537,Link="|cff1eff00|Hitem:6752::::::::40:::::::|h[Lancer Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Swashbuckler's Bracers"]={SubType="Leather",Level=52,id=10184,StackCount=1,Rarity=2,MinLevel=47,SellPrice=6523,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10184::::::::40:::::::|h[Swashbuckler's Bracers]|h|r",Type="Armor"},["Ancient Belt"]={SubType="Mail",Level=41,id=15606,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3585,Texture=132499,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15606::::::::40:::::::|h[Ancient Belt]|h|r",Type="Armor"},["Formula: Enchant Weapon - Mighty Intellect"]={SubType="Enchanting",Level=70,id=19449,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25000,Texture=134327,Link="|cffffffff|Hitem:19449::::::::40:::::::|h[Formula: Enchant Weapon - Mighty Intellect]|h|r",EquipLoc="",Type="Recipe"},["Evil Eye Pendant"]={SubType="Miscellaneous",Level=62,id=18381,StackCount=1,Rarity=3,MinLevel=57,SellPrice=21635,Texture=133884,Type="Armor",Link="|cff0070dd|Hitem:18381::::::::40:::::::|h[Evil Eye Pendant]|h|r",EquipLoc="INVTYPE_NECK"},["Monster - Claw Offhand"]={SubType="Fist Weapons",Level=1,id=11506,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134294,Type="Weapon",Link="|cff9d9d9d|Hitem:11506::::::::40:::::::|h[Monster - Claw Offhand]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND"},["Ringed Buckler"]={SubType="Shields",Level=22,id=2441,StackCount=1,Rarity=1,MinLevel=17,SellPrice=729,Texture=134956,Type="Armor",Link="|cffffffff|Hitem:2441::::::::40:::::::|h[Ringed Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Worn Leather Belt"]={SubType="Leather",Level=7,id=1418,StackCount=1,Rarity=0,MinLevel=2,SellPrice=9,Texture=132513,Type="Armor",Link="|cff9d9d9d|Hitem:1418::::::::40:::::::|h[Worn Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Deprecated Book of Nullify Disease III"]={SubType="Book",Level=35,id=4224,StackCount=1,Rarity=1,MinLevel=35,SellPrice=3300,Texture=133743,Type="Recipe",Link="|cffffffff|Hitem:4224::::::::40:::::::|h[Deprecated Book of Nullify Disease III]|h|r",EquipLoc=""},["[PH] Mail Bracers of the Rising Dawn"]={SubType="Mail",Level=100,id=13746,StackCount=1,Rarity=1,MinLevel=100,SellPrice=54281,Texture=132613,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:13746::::::::40:::::::|h[[PH] Mail Bracers of the Rising Dawn]|h|r"},["Super Reaper 6000 Blueprints"]={SubType="Quest",Level=1,id=5734,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134330,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5734::::::::40:::::::|h[Super Reaper 6000 Blueprints]|h|r"},["Smashing Star"]={SubType="One-Handed Maces",Level=53,id=15228,StackCount=1,Rarity=2,MinLevel=48,SellPrice=28308,Texture=133729,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15228::::::::40:::::::|h[Smashing Star]|h|r",Type="Weapon"},["Mature Blue Dragon Sinew"]={SubType="Quest",Level=71,id=18704,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133674,Type="Quest",Link="|cffa335ee|Hitem:18704::::::::40:::::::|h[Mature Blue Dragon Sinew]|h|r",EquipLoc=""},["Gryphon Mail Bracelets"]={SubType="Mail",Level=47,id=15620,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5564,Texture=132612,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15620::::::::40:::::::|h[Gryphon Mail Bracelets]|h|r",Type="Armor"},["Water Sapta"]={SubType="Consumable",Level=1,id=6637,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134754,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:6637::::::::40:::::::|h[Water Sapta]|h|r"},["Shadow Lord Fel'dan's Head"]={SubType="Quest",Level=1,id=13207,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13207::::::::40:::::::|h[Shadow Lord Fel'dan's Head]|h|r"},["Geomancer's Jerkin"]={SubType="Cloth",Level=41,id=14216,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4887,Texture=132646,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14216::::::::40:::::::|h[Geomancer's Jerkin]|h|r"},["Highlander's Lamellar Girdle"]={SubType="Plate",Level=63,id=20042,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11394,Texture=132503,Link="|cff0070dd|Hitem:20042::::::::40:::::::|h[Highlander's Lamellar Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Deep Fried Plantains"]={SubType="Consumable",Level=55,id=8953,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=133979,Link="|cffffffff|Hitem:8953::::::::40:::::::|h[Deep Fried Plantains]|h|r",EquipLoc="",Type="Consumable"},["Murloc Fin Soup"]={SubType="Consumable",Level=25,id=3663,StackCount=20,Rarity=1,MinLevel=15,SellPrice=125,Texture=133748,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:3663::::::::40:::::::|h[Murloc Fin Soup]|h|r"},["Frozen Steel Vambraces"]={SubType="Plate",Level=63,id=19112,StackCount=1,Rarity=3,MinLevel=58,SellPrice=10984,Texture=132617,Link="|cff0070dd|Hitem:19112::::::::40:::::::|h[Frozen Steel Vambraces]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Recipe: Elixir of Ogre's Strength"]={SubType="Alchemy",Level=30,id=6211,StackCount=1,Rarity=1,MinLevel=0,SellPrice=450,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:6211::::::::40:::::::|h[Recipe: Elixir of Ogre's Strength]|h|r",EquipLoc=""},["Cavedweller Bracers"]={SubType="Mail",Level=18,id=14147,StackCount=1,Rarity=2,MinLevel=13,SellPrice=311,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14147::::::::40:::::::|h[Cavedweller Bracers]|h|r"},["Indomitable Leggings"]={SubType="Leather",Level=62,id=14687,StackCount=1,Rarity=2,MinLevel=57,SellPrice=23357,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14687::::::::40:::::::|h[Indomitable Leggings]|h|r"},["Ear of Balgaras"]={SubType="Quest",Level=1,id=3639,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133854,EquipLoc="",Link="|cffffffff|Hitem:3639::::::::40:::::::|h[Ear of Balgaras]|h|r",Type="Quest"},["[PH] Plate Boots of the Rising Dawn"]={SubType="Plate",Level=100,id=13808,StackCount=1,Rarity=1,MinLevel=100,SellPrice=50783,Texture=132585,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:13808::::::::40:::::::|h[[PH] Plate Boots of the Rising Dawn]|h|r"},["Monster - Mace, Horde Bone Claw Hammer"]={SubType="One-Handed Maces",Level=1,id=12787,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133476,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12787::::::::40:::::::|h[Monster - Mace, Horde Bone Claw Hammer]|h|r"},["Stone of the Earth"]={SubType="Two-Handed Swords",Level=56,id=11786,StackCount=1,Rarity=3,MinLevel=51,SellPrice=50739,Texture=135357,Type="Weapon",Link="|cff0070dd|Hitem:11786::::::::40:::::::|h[Stone of the Earth]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Militia Shortsword"]={SubType="One-Handed Swords",Level=5,id=1161,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=135274,Type="Weapon",Link="|cffffffff|Hitem:1161::::::::40:::::::|h[Militia Shortsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Orb of Noh'Orahil"]={SubType="Miscellaneous",Level=40,id=15107,StackCount=1,Rarity=3,MinLevel=0,SellPrice=5000,Texture=134335,EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:15107::::::::40:::::::|h[Orb of Noh'Orahil]|h|r",Type="Armor"},["Formula: Enchant Cloak - Lesser Shadow Resistance"]={SubType="Enchanting",Level=27,id=11098,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11098::::::::40:::::::|h[Formula: Enchant Cloak - Lesser Shadow Resistance]|h|r",EquipLoc=""},["Chromatic Sword"]={SubType="Two-Handed Swords",Level=45,id=1604,StackCount=1,Rarity=2,MinLevel=40,SellPrice=19463,Texture=135323,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1604::::::::40:::::::|h[Chromatic Sword]|h|r",Type="Weapon"},["Talisman of Arathor"]={SubType="Miscellaneous",Level=63,id=20071,StackCount=1,Rarity=3,MinLevel=58,SellPrice=10307,Texture=133438,Link="|cff0070dd|Hitem:20071::::::::40:::::::|h[Talisman of Arathor]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Anvilmar Hammer"]={SubType="One-Handed Maces",Level=5,id=2048,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=133057,Type="Weapon",Link="|cffffffff|Hitem:2048::::::::40:::::::|h[Anvilmar Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["[PH] Leather Bracers of the Rising Dawn"]={SubType="Leather",Level=100,id=13749,StackCount=1,Rarity=1,MinLevel=100,SellPrice=45720,Texture=132603,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:13749::::::::40:::::::|h[[PH] Leather Bracers of the Rising Dawn]|h|r"},["Coal"]={SubType="Trade Goods",Level=30,id=3857,StackCount=10,Rarity=1,MinLevel=0,SellPrice=125,Texture=134579,Link="|cffffffff|Hitem:3857::::::::40:::::::|h[Coal]|h|r",EquipLoc="",Type="Trade Goods"},["Codex of Greater Heal II"]={SubType="Book",Level=46,id=9001,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=133741,Link="|cffffffff|Hitem:9001::::::::40:::::::|h[Codex of Greater Heal II]|h|r",EquipLoc="",Type="Recipe"},["Monster - Shield, B01 WoodCopperCap"]={SubType="Shields",Level=1,id=17482,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:17482::::::::40:::::::|h[Monster - Shield, B01 WoodCopperCap]|h|r",Type="Armor"},["Runesteel Vambraces"]={SubType="Plate",Level=50,id=10746,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4549,Texture=132616,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10746::::::::40:::::::|h[Runesteel Vambraces]|h|r",Type="Armor"},["Grimoire of Torment (Rank 4)"]={SubType="Book",Level=40,id=16348,StackCount=1,Rarity=1,MinLevel=40,SellPrice=2750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16348::::::::40:::::::|h[Grimoire of Torment (Rank 4)]|h|r",Type="Recipe"},["Carrion Surprise"]={SubType="Consumable",Level=35,id=12213,StackCount=20,Rarity=1,MinLevel=25,SellPrice=300,Texture=134005,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12213::::::::40:::::::|h[Carrion Surprise]|h|r"},["Imperial Red Cloak"]={SubType="Cloth",Level=50,id=8248,StackCount=1,Rarity=2,MinLevel=45,SellPrice=7032,Texture=133770,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:8248::::::::40:::::::|h[Imperial Red Cloak]|h|r"},["Monster - Glaive Vol'jin"]={SubType="One-Handed Swords",Level=1,id=14085,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135128,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:14085::::::::40:::::::|h[Monster - Glaive Vol'jin]|h|r"},["Gothic Plate Armor"]={SubType="Plate",Level=49,id=10086,StackCount=1,Rarity=2,MinLevel=44,SellPrice=8438,Texture=132722,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10086::::::::40:::::::|h[Gothic Plate Armor]|h|r",Type="Armor"},["Celestial Kilt"]={SubType="Cloth",Level=59,id=14315,StackCount=1,Rarity=2,MinLevel=54,SellPrice=16550,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14315::::::::40:::::::|h[Celestial Kilt]|h|r"},["Deprecated Freezing Talisman"]={SubType="Miscellaneous",Level=40,id=2804,StackCount=1,Rarity=1,MinLevel=35,SellPrice=2125,Texture=133438,EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:2804::::::::40:::::::|h[Deprecated Freezing Talisman]|h|r",Type="Armor"},["Bloodwoven Cord"]={SubType="Cloth",Level=45,id=14258,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3109,Texture=132496,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14258::::::::40:::::::|h[Bloodwoven Cord]|h|r"},["Ancestral Gloves"]={SubType="Cloth",Level=12,id=3290,StackCount=1,Rarity=1,MinLevel=7,SellPrice=48,Texture=132952,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:3290::::::::40:::::::|h[Ancestral Gloves]|h|r",Type="Armor"},["Encrusted Minerals"]={SubType="Quest",Level=1,id=9589,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134139,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9589::::::::40:::::::|h[Encrusted Minerals]|h|r"},["Formula: Enchant Weapon - Lesser Elemental Slayer"]={SubType="Enchanting",Level=35,id=11165,StackCount=1,Rarity=2,MinLevel=0,SellPrice=750,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11165::::::::40:::::::|h[Formula: Enchant Weapon - Lesser Elemental Slayer]|h|r",EquipLoc=""},["Laquered Wooden Plate Legplates"]={SubType="Plate",Level=50,id=19117,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8915,Texture=134585,Link="|cff1eff00|Hitem:19117::::::::40:::::::|h[Laquered Wooden Plate Legplates]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Melted Candle"]={SubType="Junk",Level=1,id=755,StackCount=5,Rarity=0,MinLevel=0,SellPrice=1,Texture=133750,EquipLoc="",Link="|cff9d9d9d|Hitem:755::::::::40:::::::|h[Melted Candle]|h|r",Type="Miscellaneous"},["Ebonclaw Reaver"]={SubType="One-Handed Axes",Level=46,id=1994,StackCount=1,Rarity=2,MinLevel=41,SellPrice=16696,Texture=132407,Type="Weapon",Link="|cff1eff00|Hitem:1994::::::::40:::::::|h[Ebonclaw Reaver]|h|r",EquipLoc="INVTYPE_WEAPON"},["Razor Axe"]={SubType="Two-Handed Axes",Level=59,id=15272,StackCount=1,Rarity=2,MinLevel=54,SellPrice=51740,Texture=132408,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15272::::::::40:::::::|h[Razor Axe]|h|r",Type="Weapon"},["Red Dye"]={SubType="Trade Goods",Level=10,id=2604,StackCount=10,Rarity=1,MinLevel=0,SellPrice=12,Texture=134732,EquipLoc="",Link="|cffffffff|Hitem:2604::::::::40:::::::|h[Red Dye]|h|r",Type="Trade Goods"},["Cactus Apple"]={SubType="Quest",Level=1,id=11583,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=133975,Type="Quest",Link="|cffffffff|Hitem:11583::::::::40:::::::|h[Cactus Apple]|h|r",EquipLoc=""},["Ruined Cat Pelt"]={SubType="Junk",Level=1,id=4756,StackCount=5,Rarity=1,MinLevel=0,SellPrice=5,Texture=134358,EquipLoc="",Link="|cffffffff|Hitem:4756::::::::40:::::::|h[Ruined Cat Pelt]|h|r",Type="Miscellaneous"},["Belt of Vindication"]={SubType="Leather",Level=27,id=3562,StackCount=1,Rarity=2,MinLevel=0,SellPrice=823,Texture=132494,Type="Armor",Link="|cff1eff00|Hitem:3562::::::::40:::::::|h[Belt of Vindication]|h|r",EquipLoc="INVTYPE_WAIST"},["Shin Blade"]={SubType="Two-Handed Swords",Level=62,id=15257,StackCount=1,Rarity=2,MinLevel=57,SellPrice=55234,Texture=135280,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15257::::::::40:::::::|h[Shin Blade]|h|r",Type="Weapon"},["Scourge Data"]={SubType="Quest",Level=1,id=13176,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134420,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13176::::::::40:::::::|h[Scourge Data]|h|r"},["TEST 1H Amberseal Keeper"]={SubType="One-Handed Maces",Level=67,id=18800,StackCount=1,Rarity=4,MinLevel=60,SellPrice=92678,Texture=135225,Type="Weapon",Link="|cffa335ee|Hitem:18800::::::::40:::::::|h[TEST 1H Amberseal Keeper]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Sash of Mercy"]={SubType="Leather",Level=61,id=14553,StackCount=1,Rarity=4,MinLevel=56,SellPrice=17733,Texture=132498,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:14553::::::::40:::::::|h[Sash of Mercy]|h|r"},["Outrider Standard Care Package"]={SubType="Consumable",Level=1,id=19155,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134143,Link="|cffffffff|Hitem:19155::::::::40:::::::|h[Outrider Standard Care Package]|h|r",EquipLoc="",Type="Consumable"},["Bloodforged Shoulder Pads"]={SubType="Plate",Level=47,id=14955,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5418,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14955::::::::40:::::::|h[Bloodforged Shoulder Pads]|h|r"},["Blush Ember Ring"]={SubType="Miscellaneous",Level=37,id=13093,StackCount=1,Rarity=3,MinLevel=32,SellPrice=3381,Texture=133367,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:13093::::::::40:::::::|h[Blush Ember Ring]|h|r"},["Plans: Polished Steel Boots"]={SubType="Blacksmithing",Level=37,id=3874,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1100,Texture=134942,Link="|cff1eff00|Hitem:3874::::::::40:::::::|h[Plans: Polished Steel Boots]|h|r",EquipLoc="",Type="Recipe"},["Fire Hardened Hauberk"]={SubType="Mail",Level=30,id=6972,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3242,Texture=132629,Link="|cff0070dd|Hitem:6972::::::::40:::::::|h[Fire Hardened Hauberk]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Patchwork Belt"]={SubType="Cloth",Level=8,id=3370,StackCount=1,Rarity=0,MinLevel=3,SellPrice=10,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:3370::::::::40:::::::|h[Patchwork Belt]|h|r",Type="Armor"},["Band of Unending Life"]={SubType="Miscellaneous",Level=65,id=21408,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133425,Link="|cffa335ee|Hitem:21408::::::::40:::::::|h[Band of Unending Life]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Iron Counterweight"]={SubType="Trade Goods",Level=33,id=6043,StackCount=5,Rarity=1,MinLevel=0,SellPrice=500,Texture=134333,Type="Trade Goods",Link="|cffffffff|Hitem:6043::::::::40:::::::|h[Iron Counterweight]|h|r",EquipLoc=""},["The Ziggler"]={SubType="Daggers",Level=39,id=8006,StackCount=1,Rarity=3,MinLevel=34,SellPrice=12472,Texture=135661,Link="|cff0070dd|Hitem:8006::::::::40:::::::|h[The Ziggler]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Invulnerable Mail"]={SubType="Mail",Level=63,id=12641,StackCount=1,Rarity=4,MinLevel=57,SellPrice=43836,Texture=132629,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:12641::::::::40:::::::|h[Invulnerable Mail]|h|r"},["Claw of Chromaggus"]={SubType="Daggers",Level=77,id=19347,StackCount=1,Rarity=4,MinLevel=60,SellPrice=152104,Texture=135664,Link="|cffa335ee|Hitem:19347::::::::40:::::::|h[Claw of Chromaggus]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Enchanted South Seas Kelp"]={SubType="Miscellaneous",Level=60,id=19610,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133310,Link="|cff1eff00|Hitem:19610::::::::40:::::::|h[Enchanted South Seas Kelp]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Scroll of Protection III"]={SubType="Consumable",Level=40,id=4421,StackCount=5,Rarity=1,MinLevel=30,SellPrice=100,Texture=134943,EquipLoc="",Link="|cffffffff|Hitem:4421::::::::40:::::::|h[Scroll of Protection III]|h|r",Type="Consumable"},["Head of Ossirian the Unscarred"]={SubType="Quest",Level=60,id=21220,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=132192,Link="|cffa335ee|Hitem:21220::::::::40:::::::|h[Head of Ossirian the Unscarred]|h|r",EquipLoc="",Type="Quest"},["Ancient Petrified Leaf"]={SubType="Quest",Level=71,id=18703,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=136085,Type="Quest",Link="|cffa335ee|Hitem:18703::::::::40:::::::|h[Ancient Petrified Leaf]|h|r",EquipLoc=""},["Tablet of Sentry Totem"]={SubType="Book",Level=14,id=5701,StackCount=1,Rarity=1,MinLevel=14,SellPrice=325,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:5701::::::::40:::::::|h[Tablet of Sentry Totem]|h|r",Type="Recipe"},["Yeh'kinya's Scroll"]={SubType="Quest",Level=50,id=10818,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:10818::::::::40:::::::|h[Yeh'kinya's Scroll]|h|r",Type="Quest"},["Craftsman's Writ - Imperial Plate Chest"]={SubType="Junk",Level=60,id=22601,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22601::::::::40:::::::|h[Craftsman's Writ - Imperial Plate Chest]|h|r",EquipLoc="",Type="Miscellaneous"},["Duskwoven Turban"]={SubType="Cloth",Level=51,id=10061,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7661,Texture=133134,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10061::::::::40:::::::|h[Duskwoven Turban]|h|r",Type="Armor"},["Frayed Robe"]={SubType="Cloth",Level=4,id=1380,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=132662,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff9d9d9d|Hitem:1380::::::::40:::::::|h[Frayed Robe]|h|r"},["Cured Light Hide"]={SubType="Trade Goods",Level=10,id=4231,StackCount=20,Rarity=1,MinLevel=0,SellPrice=110,Texture=134366,Type="Trade Goods",Link="|cffffffff|Hitem:4231::::::::40:::::::|h[Cured Light Hide]|h|r",EquipLoc=""},["Dartol's Rod of Transformation"]={SubType="Quest",Level=1,id=5462,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135463,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5462::::::::40:::::::|h[Dartol's Rod of Transformation]|h|r"},["Double Mail Pants"]={SubType="Mail",Level=35,id=3813,StackCount=1,Rarity=0,MinLevel=30,SellPrice=1772,Texture=134583,EquipLoc="INVTYPE_LEGS",Link="|cff9d9d9d|Hitem:3813::::::::40:::::::|h[Double Mail Pants]|h|r",Type="Armor"},["Tablet of Chain Lightning III"]={SubType="Book",Level=48,id=9140,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9140::::::::40:::::::|h[Tablet of Chain Lightning III]|h|r"},["Savage Trodders"]={SubType="Mail",Level=23,id=6459,StackCount=1,Rarity=2,MinLevel=18,SellPrice=934,Texture=132535,Type="Armor",Link="|cff1eff00|Hitem:6459::::::::40:::::::|h[Savage Trodders]|h|r",EquipLoc="INVTYPE_FEET"},["Merciless Belt"]={SubType="Mail",Level=54,id=15654,StackCount=1,Rarity=2,MinLevel=49,SellPrice=8569,Texture=132496,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15654::::::::40:::::::|h[Merciless Belt]|h|r",Type="Armor"},["Raincaller Mitts"]={SubType="Cloth",Level=30,id=14191,StackCount=1,Rarity=2,MinLevel=25,SellPrice=881,Texture=132954,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14191::::::::40:::::::|h[Raincaller Mitts]|h|r"},["Empty Gahrron's Withering Bottle"]={SubType="Quest",Level=1,id=13189,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134870,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13189::::::::40:::::::|h[Empty Gahrron's Withering Bottle]|h|r"},["AHNQIRAJ TEST ITEM A CLOTH GLOVES"]={SubType="Miscellaneous",Level=1,id=21437,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21437::::::::40:::::::|h[AHNQIRAJ TEST ITEM A CLOTH GLOVES]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Monster - Item, Potion Red"]={SubType="Miscellaneous",Level=1,id=3699,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134787,Link="|cff9d9d9d|Hitem:3699::::::::40:::::::|h[Monster - Item, Potion Red]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Coldridge Valley Gift Voucher"]={SubType="Quest",Level=1,id=14647,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134140,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14647::::::::40:::::::|h[Coldridge Valley Gift Voucher]|h|r"},["Guse's Beacon"]={SubType="Quest",Level=1,id=17324,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135148,EquipLoc="",Link="|cffffffff|Hitem:17324::::::::40:::::::|h[Guse's Beacon]|h|r",Type="Quest"},["Sea Dog Britches"]={SubType="Cloth",Level=20,id=5310,StackCount=1,Rarity=2,MinLevel=0,SellPrice=555,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:5310::::::::40:::::::|h[Sea Dog Britches]|h|r"},["Magic Beans"]={SubType="Quest",Level=1,id=15688,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134059,EquipLoc="",Link="|cffffffff|Hitem:15688::::::::40:::::::|h[Magic Beans]|h|r",Type="Quest"},["19 Pound Catfish"]={SubType="Junk",Level=15,id=6310,StackCount=1,Rarity=1,MinLevel=0,SellPrice=150,Texture=133916,Type="Miscellaneous",Link="|cffffffff|Hitem:6310::::::::40:::::::|h[19 Pound Catfish]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["Tattered Cloth Gloves"]={SubType="Cloth",Level=5,id=711,StackCount=1,Rarity=1,MinLevel=1,SellPrice=5,Texture=132961,Link="|cffffffff|Hitem:711::::::::40:::::::|h[Tattered Cloth Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Elder's Moonstone"]={SubType="Consumable",Level=1,id=21745,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134123,Link="|cffffffff|Hitem:21745::::::::40:::::::|h[Elder's Moonstone]|h|r",EquipLoc="",Type="Consumable"},["Eyepoker"]={SubType="Wands",Level=37,id=6797,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6362,Texture=135465,Type="Weapon",Link="|cff1eff00|Hitem:6797::::::::40:::::::|h[Eyepoker]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Earthshatter Wristguards"]={SubType="Mail",Level=88,id=22471,StackCount=1,Rarity=4,MinLevel=60,SellPrice=80127,Texture=132601,Link="|cffa335ee|Hitem:22471::::::::40:::::::|h[Earthshatter Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Bonescythe Breastplate"]={SubType="Leather",Level=92,id=22476,StackCount=1,Rarity=4,MinLevel=60,SellPrice=165232,Texture=132737,Link="|cffa335ee|Hitem:22476::::::::40:::::::|h[Bonescythe Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Chloromesh Girdle"]={SubType="Cloth",Level=51,id=17750,StackCount=1,Rarity=2,MinLevel=46,SellPrice=4769,Texture=132514,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:17750::::::::40:::::::|h[Chloromesh Girdle]|h|r",Type="Armor"},["Stinging Mace"]={SubType="One-Handed Maces",Level=11,id=4948,StackCount=1,Rarity=2,MinLevel=0,SellPrice=326,Texture=133476,Link="|cff1eff00|Hitem:4948::::::::40:::::::|h[Stinging Mace]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Gordok Courtyard Key"]={SubType="Key",Level=1,id=18266,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134236,Type="Key",Link="|cffffffff|Hitem:18266::::::::40:::::::|h[Gordok Courtyard Key]|h|r",EquipLoc=""},["Nightscape Boots"]={SubType="Leather",Level=47,id=8197,StackCount=1,Rarity=2,MinLevel=42,SellPrice=7158,Texture=132539,Link="|cff1eff00|Hitem:8197::::::::40:::::::|h[Nightscape Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Gyromast's Key"]={SubType="Quest",Level=1,id=7442,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134459,Link="|cffffffff|Hitem:7442::::::::40:::::::|h[Gyromast's Key]|h|r",EquipLoc="",Type="Quest"},["Scroll of Intellect II"]={SubType="Consumable",Level=30,id=2290,StackCount=5,Rarity=1,MinLevel=20,SellPrice=75,Texture=134937,EquipLoc="",Link="|cffffffff|Hitem:2290::::::::40:::::::|h[Scroll of Intellect II]|h|r",Type="Consumable"},["Essence Mango"]={SubType="Consumable",Level=65,id=20031,StackCount=20,Rarity=1,MinLevel=55,SellPrice=0,Texture=133998,Link="|cffffffff|Hitem:20031::::::::40:::::::|h[Essence Mango]|h|r",EquipLoc="",Type="Consumable"},["Inscribed Leather Pants"]={SubType="Leather",Level=20,id=2986,StackCount=1,Rarity=2,MinLevel=15,SellPrice=718,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:2986::::::::40:::::::|h[Inscribed Leather Pants]|h|r"},["Tablet of Earth Shock VI"]={SubType="Book",Level=48,id=9142,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9142::::::::40:::::::|h[Tablet of Earth Shock VI]|h|r"},["Cross-stitched Shoulderpads"]={SubType="Cloth",Level=28,id=1785,StackCount=1,Rarity=0,MinLevel=23,SellPrice=464,Texture=135040,Type="Armor",Link="|cff9d9d9d|Hitem:1785::::::::40:::::::|h[Cross-stitched Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Ripped Note"]={SubType="Junk",Level=1,id=4101,StackCount=10,Rarity=0,MinLevel=0,SellPrice=26,Texture=133471,EquipLoc="",Link="|cff9d9d9d|Hitem:4101::::::::40:::::::|h[Ripped Note]|h|r",Type="Miscellaneous"},["Tracker's Belt"]={SubType="Leather",Level=44,id=9916,StackCount=1,Rarity=2,MinLevel=39,SellPrice=3566,Texture=132506,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9916::::::::40:::::::|h[Tracker's Belt]|h|r"},["63 Green Warrior Cloak"]={SubType="Cloth",Level=63,id=20283,StackCount=1,Rarity=2,MinLevel=58,SellPrice=6988,Texture=133759,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:20283::::::::40:::::::|h[63 Green Warrior Cloak]|h|r"},["Barbaric Iron Boots"]={SubType="Mail",Level=36,id=7916,StackCount=1,Rarity=2,MinLevel=31,SellPrice=3700,Texture=132582,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7916::::::::40:::::::|h[Barbaric Iron Boots]|h|r",Type="Armor"},["Bad Egg"]={SubType="Quest",Level=1,id=8646,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=132832,Link="|cffffffff|Hitem:8646::::::::40:::::::|h[Bad Egg]|h|r",EquipLoc="",Type="Quest"},["Celestial Handwraps"]={SubType="Cloth",Level=58,id=14314,StackCount=1,Rarity=2,MinLevel=53,SellPrice=7854,Texture=132954,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14314::::::::40:::::::|h[Celestial Handwraps]|h|r"},["Goblin Rocket Helmet"]={SubType="Cloth",Level=47,id=10588,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5834,Texture=133151,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10588::::::::40:::::::|h[Goblin Rocket Helmet]|h|r",Type="Armor"},["Sturdy Leather Bracers"]={SubType="Leather",Level=10,id=2327,StackCount=1,Rarity=1,MinLevel=5,SellPrice=36,Texture=132606,Type="Armor",Link="|cffffffff|Hitem:2327::::::::40:::::::|h[Sturdy Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Phytoskin Spaulders"]={SubType="Leather",Level=51,id=17749,StackCount=1,Rarity=3,MinLevel=46,SellPrice=11425,Texture=135037,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:17749::::::::40:::::::|h[Phytoskin Spaulders]|h|r",Type="Armor"},["Gossamer Pants"]={SubType="Cloth",Level=47,id=7519,StackCount=1,Rarity=2,MinLevel=42,SellPrice=7635,Texture=134592,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7519::::::::40:::::::|h[Gossamer Pants]|h|r",Type="Armor"},["Primal Hakkari Sash"]={SubType="Quest",Level=1,id=19720,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=132496,Link="|cffa335ee|Hitem:19720::::::::40:::::::|h[Primal Hakkari Sash]|h|r",EquipLoc="",Type="Quest"},["Lightforge Spaulders"]={SubType="Plate",Level=60,id=16729,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14592,Texture=135041,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16729::::::::40:::::::|h[Lightforge Spaulders]|h|r",Type="Armor"},["Hot Lion Chops"]={SubType="Consumable",Level=25,id=3727,StackCount=20,Rarity=1,MinLevel=15,SellPrice=125,Texture=133974,Type="Consumable",Link="|cffffffff|Hitem:3727::::::::40:::::::|h[Hot Lion Chops]|h|r",EquipLoc=""},["Grimoire of Ritual of Summoning"]={SubType="Book",Level=20,id=9203,StackCount=1,Rarity=1,MinLevel=20,SellPrice=725,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9203::::::::40:::::::|h[Grimoire of Ritual of Summoning]|h|r"},["Sacred Highborne Writings"]={SubType="Quest",Level=1,id=13313,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133739,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13313::::::::40:::::::|h[Sacred Highborne Writings]|h|r"},["Dervish Tunic"]={SubType="Leather",Level=30,id=6603,StackCount=1,Rarity=2,MinLevel=25,SellPrice=2334,Texture=132716,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:6603::::::::40:::::::|h[Dervish Tunic]|h|r"},["Empty Tainted Ooze Jar"]={SubType="Consumable",Level=1,id=11948,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134864,Type="Consumable",Link="|cffffffff|Hitem:11948::::::::40:::::::|h[Empty Tainted Ooze Jar]|h|r",EquipLoc=""},["Swiftfeather Token"]={SubType="Consumable",Level=12,id=1400,StackCount=1,Rarity=1,MinLevel=2,SellPrice=337,Texture=134414,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:1400::::::::40:::::::|h[Swiftfeather Token]|h|r"},["Strength of Mugamba"]={SubType="Miscellaneous",Level=60,id=19574,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133310,Link="|cff1eff00|Hitem:19574::::::::40:::::::|h[Strength of Mugamba]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Crimson Lotus"]={SubType="Trade Goods",Level=40,id=6986,StackCount=10,Rarity=0,MinLevel=0,SellPrice=50,Texture=134200,Type="Trade Goods",Link="|cff9d9d9d|Hitem:6986::::::::40:::::::|h[Crimson Lotus]|h|r",EquipLoc=""},["Beer Basted Boar Ribs"]={SubType="Consumable",Level=8,id=2888,StackCount=20,Rarity=1,MinLevel=1,SellPrice=10,Texture=134004,Link="|cffffffff|Hitem:2888::::::::40:::::::|h[Beer Basted Boar Ribs]|h|r",EquipLoc="",Type="Consumable"},["Wizbang's Special Brew"]={SubType="Consumable",Level=15,id=11846,StackCount=20,Rarity=1,MinLevel=0,SellPrice=30,Texture=132801,Type="Consumable",Link="|cffffffff|Hitem:11846::::::::40:::::::|h[Wizbang's Special Brew]|h|r",EquipLoc=""},["Pure Hearts"]={SubType="Quest",Level=1,id=6286,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134343,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6286::::::::40:::::::|h[Pure Hearts]|h|r"},["Recipe: Flask of Supreme Power"]={SubType="Alchemy",Level=60,id=13521,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13521::::::::40:::::::|h[Recipe: Flask of Supreme Power]|h|r"},["Simone's Head"]={SubType="Quest",Level=1,id=18952,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136220,Type="Quest",Link="|cffffffff|Hitem:18952::::::::40:::::::|h[Simone's Head]|h|r",EquipLoc=""},["Tiny Iron Key"]={SubType="Reagent",Level=30,id=5518,StackCount=10,Rarity=1,MinLevel=0,SellPrice=150,Texture=134240,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:5518::::::::40:::::::|h[Tiny Iron Key]|h|r"},["Stonecloth Belt"]={SubType="Cloth",Level=34,id=14414,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1276,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14414::::::::40:::::::|h[Stonecloth Belt]|h|r"},["Bright-Eye Goggles"]={SubType="Cloth",Level=35,id=10499,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2105,Texture=133149,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10499::::::::40:::::::|h[Bright-Eye Goggles]|h|r",Type="Armor"},["Darkbind Fingers"]={SubType="Cloth",Level=62,id=13525,StackCount=1,Rarity=2,MinLevel=57,SellPrice=8698,Texture=132949,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:13525::::::::40:::::::|h[Darkbind Fingers]|h|r"},["Test Fire Res Waist Cloth"]={SubType="Cloth",Level=35,id=16062,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1511,Texture=133693,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:16062::::::::40:::::::|h[Test Fire Res Waist Cloth]|h|r",Type="Armor"},["Shrike Bat Fang"]={SubType="Quest",Level=1,id=7679,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,EquipLoc="",Link="|cffffffff|Hitem:7679::::::::40:::::::|h[Shrike Bat Fang]|h|r",Type="Quest"},["Gloves of the Greatfather"]={SubType="Leather",Level=38,id=17721,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2268,Texture=132955,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:17721::::::::40:::::::|h[Gloves of the Greatfather]|h|r",Type="Armor"},["Deadly Poison V"]={SubType="Consumable",Level=60,id=20844,StackCount=20,Rarity=1,MinLevel=60,SellPrice=150,Texture=132290,Link="|cffffffff|Hitem:20844::::::::40:::::::|h[Deadly Poison V]|h|r",EquipLoc="",Type="Consumable"},["Falchion"]={SubType="One-Handed Swords",Level=46,id=2528,StackCount=1,Rarity=1,MinLevel=41,SellPrice=10367,Texture=135344,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:2528::::::::40:::::::|h[Falchion]|h|r",Type="Weapon"},["Gauntlets of Might"]={SubType="Plate",Level=66,id=16863,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17917,Texture=132944,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16863::::::::40:::::::|h[Gauntlets of Might]|h|r",Type="Armor"},["Flarecore Mantle"]={SubType="Cloth",Level=61,id=16980,StackCount=1,Rarity=4,MinLevel=56,SellPrice=21365,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16980::::::::40:::::::|h[Flarecore Mantle]|h|r",Type="Armor"},["Pattern: Mooncloth Gloves"]={SubType="Tailoring",Level=62,id=18417,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10000,Texture=134941,Type="Recipe",Link="|cff0070dd|Hitem:18417::::::::40:::::::|h[Pattern: Mooncloth Gloves]|h|r",EquipLoc=""},["Shattered Necklace Ruby"]={SubType="Quest",Level=1,id=7669,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134128,EquipLoc="",Link="|cffffffff|Hitem:7669::::::::40:::::::|h[Shattered Necklace Ruby]|h|r",Type="Quest"},["Windfelt Gloves"]={SubType="Leather",Level=20,id=5630,StackCount=1,Rarity=2,MinLevel=0,SellPrice=348,Texture=132939,Link="|cff1eff00|Hitem:5630::::::::40:::::::|h[Windfelt Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Tablet of Healing Totem IV"]={SubType="Book",Level=28,id=5710,StackCount=1,Rarity=1,MinLevel=28,SellPrice=1750,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:5710::::::::40:::::::|h[Tablet of Healing Totem IV]|h|r",Type="Recipe"},["Red Leather C03 Bracers"]={SubType="Leather",Level=1,id=3535,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132603,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:3535::::::::40:::::::|h[Red Leather C03 Bracers]|h|r"},["Tablet of Strength of Earth Totem IV"]={SubType="Book",Level=52,id=9150,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9150::::::::40:::::::|h[Tablet of Strength of Earth Totem IV]|h|r"},["Monster - Item, Mutton Offhand"]={SubType="Miscellaneous",Level=1,id=13406,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=133974,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13406::::::::40:::::::|h[Monster - Item, Mutton Offhand]|h|r"},["Rectangular Shield"]={SubType="Shields",Level=17,id=2217,StackCount=1,Rarity=0,MinLevel=12,SellPrice=243,Texture=134949,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff9d9d9d|Hitem:2217::::::::40:::::::|h[Rectangular Shield]|h|r"},["Warsong Scout Update"]={SubType="Quest",Level=1,id=16764,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133468,EquipLoc="",Link="|cffffffff|Hitem:16764::::::::40:::::::|h[Warsong Scout Update]|h|r",Type="Quest"},["Craftsman's Writ - Thorium Grenade"]={SubType="Junk",Level=60,id=22614,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22614::::::::40:::::::|h[Craftsman's Writ - Thorium Grenade]|h|r",EquipLoc="",Type="Miscellaneous"},["Corpselight Greaves"]={SubType="Plate",Level=62,id=14537,StackCount=1,Rarity=3,MinLevel=57,SellPrice=17001,Texture=132590,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:14537::::::::40:::::::|h[Corpselight Greaves]|h|r"},["Regal Boots"]={SubType="Cloth",Level=41,id=7472,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3423,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7472::::::::40:::::::|h[Regal Boots]|h|r",Type="Armor"},["Living Root"]={SubType="Staves",Level=25,id=6631,StackCount=1,Rarity=3,MinLevel=20,SellPrice=4053,Texture=135162,Link="|cff0070dd|Hitem:6631::::::::40:::::::|h[Living Root]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["The Untamed Blade"]={SubType="Two-Handed Swords",Level=73,id=19334,StackCount=1,Rarity=4,MinLevel=60,SellPrice=160453,Texture=135360,Link="|cffa335ee|Hitem:19334::::::::40:::::::|h[The Untamed Blade]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Widow's Clutch"]={SubType="Cloth",Level=63,id=13080,StackCount=1,Rarity=3,MinLevel=58,SellPrice=22512,Texture=132643,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:13080::::::::40:::::::|h[Widow's Clutch]|h|r"},["Mok'Morokk's Strongbox"]={SubType="Quest",Level=1,id=5836,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132595,EquipLoc="",Link="|cffffffff|Hitem:5836::::::::40:::::::|h[Mok'Morokk's Strongbox]|h|r",Type="Quest"},["Eye of Orgrimmar"]={SubType="Miscellaneous",Level=60,id=12545,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7082,Texture=133347,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:12545::::::::40:::::::|h[Eye of Orgrimmar]|h|r"},["10 Pound Mud Snapper"]={SubType="Junk",Level=15,id=6292,StackCount=1,Rarity=1,MinLevel=0,SellPrice=8,Texture=133919,Type="Miscellaneous",Link="|cffffffff|Hitem:6292::::::::40:::::::|h[10 Pound Mud Snapper]|h|r",EquipLoc="INVTYPE_HOLDABLE"},["The Arcanist's Cookbook"]={SubType="Junk",Level=60,id=18358,StackCount=1,Rarity=3,MinLevel=54,SellPrice=0,Texture=133733,Type="Miscellaneous",Link="|cff0070dd|Hitem:18358::::::::40:::::::|h[The Arcanist's Cookbook]|h|r",EquipLoc=""},["Sayge's Fortune #20"]={SubType="Junk",Level=1,id=19266,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:19266::::::::40:::::::|h[Sayge's Fortune #20]|h|r",EquipLoc="",Type="Miscellaneous"},["Wanderer's Cloak"]={SubType="Cloth",Level=53,id=10108,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8203,Texture=133762,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10108::::::::40:::::::|h[Wanderer's Cloak]|h|r",Type="Armor"},["Grizzly Tunic"]={SubType="Leather",Level=28,id=7335,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1937,Texture=132721,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7335::::::::40:::::::|h[Grizzly Tunic]|h|r",Type="Armor"},["Superior Healing Draught"]={SubType="Consumable",Level=45,id=17349,StackCount=10,Rarity=1,MinLevel=35,SellPrice=125,Texture=134819,EquipLoc="",Link="|cffffffff|Hitem:17349::::::::40:::::::|h[Superior Healing Draught]|h|r",Type="Consumable"},["Canvas Gloves"]={SubType="Cloth",Level=19,id=1767,StackCount=1,Rarity=0,MinLevel=14,SellPrice=101,Texture=132952,Type="Armor",Link="|cff9d9d9d|Hitem:1767::::::::40:::::::|h[Canvas Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Fiery War Axe"]={SubType="Two-Handed Axes",Level=40,id=870,StackCount=1,Rarity=4,MinLevel=35,SellPrice=21528,Texture=132393,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:870::::::::40:::::::|h[Fiery War Axe]|h|r"},["Linken's Sword of Mastery"]={SubType="One-Handed Swords",Level=56,id=11902,StackCount=1,Rarity=2,MinLevel=0,SellPrice=34194,Texture=135349,Type="Weapon",Link="|cff1eff00|Hitem:11902::::::::40:::::::|h[Linken's Sword of Mastery]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Demon's Claw"]={SubType="One-Handed Axes",Level=64,id=15240,StackCount=1,Rarity=2,MinLevel=59,SellPrice=49281,Texture=132407,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:15240::::::::40:::::::|h[Demon's Claw]|h|r",Type="Weapon"},["Gossamer Belt"]={SubType="Cloth",Level=46,id=7526,StackCount=1,Rarity=2,MinLevel=41,SellPrice=3367,Texture=132496,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:7526::::::::40:::::::|h[Gossamer Belt]|h|r",Type="Armor"},["Vermilion Necklace"]={SubType="Miscellaneous",Level=35,id=7467,StackCount=1,Rarity=2,MinLevel=30,SellPrice=5658,Texture=133290,Link="|cff1eff00|Hitem:7467::::::::40:::::::|h[Vermilion Necklace]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Level 50 Test Gear Mail - Hunter 2"]={SubType="Junk",Level=1,id=17846,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17846::::::::40:::::::|h[Level 50 Test Gear Mail - Hunter 2]|h|r",Type="Miscellaneous"},["Lavender Mageweave Shirt"]={SubType="Miscellaneous",Level=46,id=10054,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=135028,EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:10054::::::::40:::::::|h[Lavender Mageweave Shirt]|h|r",Type="Armor"},["Bloodbone Band"]={SubType="Miscellaneous",Level=35,id=4135,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1130,Texture=133722,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:4135::::::::40:::::::|h[Bloodbone Band]|h|r"},["Stonecloth Robe"]={SubType="Cloth",Level=39,id=14413,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3947,Texture=132646,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14413::::::::40:::::::|h[Stonecloth Robe]|h|r"},["Monster - Item, Mutton"]={SubType="One-Handed Maces",Level=1,id=2196,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133974,Type="Weapon",Link="|cff9d9d9d|Hitem:2196::::::::40:::::::|h[Monster - Item, Mutton]|h|r",EquipLoc="INVTYPE_WEAPON"},["Bag of Gold"]={SubType="Quest",Level=1,id=21041,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133650,Link="|cffffffff|Hitem:21041::::::::40:::::::|h[Bag of Gold]|h|r",EquipLoc="",Type="Quest"},["Smolderweb's Eye"]={SubType="Miscellaneous",Level=60,id=13213,StackCount=1,Rarity=3,MinLevel=55,SellPrice=9633,Texture=134120,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:13213::::::::40:::::::|h[Smolderweb's Eye]|h|r"},["Raw Glossy Mightfish"]={SubType="Consumable",Level=45,id=13754,StackCount=20,Rarity=1,MinLevel=35,SellPrice=6,Texture=134301,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13754::::::::40:::::::|h[Raw Glossy Mightfish]|h|r"},["Seal of the Dawn"]={SubType="Miscellaneous",Level=61,id=13209,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133612,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:13209::::::::40:::::::|h[Seal of the Dawn]|h|r"},["Deprecated Ceremonial Leather Mantle"]={SubType="Leather",Level=15,id=4691,StackCount=1,Rarity=0,MinLevel=10,SellPrice=103,Texture=135039,Type="Armor",Link="|cff9d9d9d|Hitem:4691::::::::40:::::::|h[Deprecated Ceremonial Leather Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Discolored Worg Heart"]={SubType="Trade Goods",Level=1,id=3164,StackCount=10,Rarity=1,MinLevel=0,SellPrice=33,Texture=134339,Type="Trade Goods",Link="|cffffffff|Hitem:3164::::::::40:::::::|h[Discolored Worg Heart]|h|r",EquipLoc=""},["Red Linen Sash"]={SubType="Cloth",Level=9,id=983,StackCount=1,Rarity=1,MinLevel=0,SellPrice=21,Texture=133694,Link="|cffffffff|Hitem:983::::::::40:::::::|h[Red Linen Sash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Deprecated Shard of Myzrael"]={SubType="Quest",Level=35,id=4431,StackCount=20,Rarity=1,MinLevel=25,SellPrice=0,Texture=134133,Link="|cffffffff|Hitem:4431::::::::40:::::::|h[Deprecated Shard of Myzrael]|h|r",EquipLoc="",Type="Quest"},["2100 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19185,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19185::::::::40:::::::|h[2100 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Troll Tribal Necklace"]={SubType="Junk",Level=0,id=9259,StackCount=20,Rarity=1,MinLevel=0,SellPrice=64,Texture=133296,Link="|cffffffff|Hitem:9259::::::::40:::::::|h[Troll Tribal Necklace]|h|r",EquipLoc="",Type="Miscellaneous"},["Stormrage Cover"]={SubType="Leather",Level=76,id=16900,StackCount=1,Rarity=4,MinLevel=60,SellPrice=54111,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16900::::::::40:::::::|h[Stormrage Cover]|h|r",Type="Armor"},["2900 Test sword 80 purple"]={SubType="One-Handed Swords",Level=80,id=19456,StackCount=1,Rarity=4,MinLevel=60,SellPrice=167843,Texture=135637,Link="|cffa335ee|Hitem:19456::::::::40:::::::|h[2900 Test sword 80 purple]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Elemental Water"]={SubType="Reagent",Level=25,id=7070,StackCount=10,Rarity=1,MinLevel=0,SellPrice=400,Texture=134714,EquipLoc="",Link="|cffffffff|Hitem:7070::::::::40:::::::|h[Elemental Water]|h|r",Type="Reagent"},["Elegant Cloak"]={SubType="Cloth",Level=57,id=10212,StackCount=1,Rarity=2,MinLevel=52,SellPrice=11069,Texture=133758,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10212::::::::40:::::::|h[Elegant Cloak]|h|r",Type="Armor"},["Recipe: Flask of Petrification"]={SubType="Alchemy",Level=60,id=13518,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13518::::::::40:::::::|h[Recipe: Flask of Petrification]|h|r"},["Ebon Hilt of Marduk"]={SubType="One-Handed Swords",Level=59,id=14576,StackCount=1,Rarity=3,MinLevel=54,SellPrice=48770,Texture=135313,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:14576::::::::40:::::::|h[Ebon Hilt of Marduk]|h|r"},["Deprecated Scarlet Captain's Pauldrons"]={SubType="Mail",Level=11,id=3333,StackCount=1,Rarity=1,MinLevel=6,SellPrice=82,Texture=135038,Link="|cffffffff|Hitem:3333::::::::40:::::::|h[Deprecated Scarlet Captain's Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Major Healing Draught"]={SubType="Consumable",Level=55,id=17348,StackCount=10,Rarity=1,MinLevel=45,SellPrice=250,Texture=134818,EquipLoc="",Link="|cffffffff|Hitem:17348::::::::40:::::::|h[Major Healing Draught]|h|r",Type="Consumable"},["Monster - Item, Shovel"]={SubType="Polearms",Level=1,id=3346,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=134435,Link="|cff9d9d9d|Hitem:3346::::::::40:::::::|h[Monster - Item, Shovel]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Ring of the Martyr"]={SubType="Miscellaneous",Level=78,id=21620,StackCount=1,Rarity=4,MinLevel=60,SellPrice=88661,Texture=133423,Link="|cffa335ee|Hitem:21620::::::::40:::::::|h[Ring of the Martyr]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Instant Toxin"]={SubType="Consumable",Level=24,id=5654,StackCount=10,Rarity=1,MinLevel=24,SellPrice=100,Texture=134799,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:5654::::::::40:::::::|h[Instant Toxin]|h|r"},["Recipe: Scorpid Surprise"]={SubType="Cooking",Level=8,id=5483,StackCount=1,Rarity=1,MinLevel=0,SellPrice=35,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:5483::::::::40:::::::|h[Recipe: Scorpid Surprise]|h|r",Type="Recipe"},["Yellow Dye"]={SubType="Trade Goods",Level=25,id=4341,StackCount=10,Rarity=1,MinLevel=0,SellPrice=125,Texture=134743,EquipLoc="",Link="|cffffffff|Hitem:4341::::::::40:::::::|h[Yellow Dye]|h|r",Type="Trade Goods"},["PVP TEST Horde Ear"]={SubType="Consumable",Level=1,id=18106,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133857,Type="Consumable",Link="|cffffffff|Hitem:18106::::::::40:::::::|h[PVP TEST Horde Ear]|h|r",EquipLoc=""},["Empty Red Waterskin"]={SubType="Quest",Level=0,id=7768,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132829,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7768::::::::40:::::::|h[Empty Red Waterskin]|h|r"},["Embossed Plate Armor"]={SubType="Plate",Level=45,id=9966,StackCount=1,Rarity=2,MinLevel=40,SellPrice=6743,Texture=132722,Link="|cff1eff00|Hitem:9966::::::::40:::::::|h[Embossed Plate Armor]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Filled Crystal Phial"]={SubType="Quest",Level=1,id=5184,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134797,EquipLoc="",Link="|cffffffff|Hitem:5184::::::::40:::::::|h[Filled Crystal Phial]|h|r",Type="Quest"},["Stormpike Insignia Rank 5"]={SubType="Miscellaneous",Level=60,id=17903,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=133432,EquipLoc="INVTYPE_TRINKET",Link="|cff0070dd|Hitem:17903::::::::40:::::::|h[Stormpike Insignia Rank 5]|h|r",Type="Armor"},["High Warlord's Shield Wall"]={SubType="Shields",Level=78,id=18826,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31917,Texture=134965,Type="Armor",Link="|cffa335ee|Hitem:18826::::::::40:::::::|h[High Warlord's Shield Wall]|h|r",EquipLoc="INVTYPE_SHIELD"},["Emblazoned Hat"]={SubType="Leather",Level=31,id=4048,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1767,Texture=133117,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:4048::::::::40:::::::|h[Emblazoned Hat]|h|r"},["Red Dragonscale"]={SubType="Junk",Level=60,id=15414,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1500,Texture=134317,EquipLoc="",Link="|cffffffff|Hitem:15414::::::::40:::::::|h[Red Dragonscale]|h|r",Type="Miscellaneous"},["Crate of Power Stones"]={SubType="Quest",Level=1,id=6091,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132766,Link="|cffffffff|Hitem:6091::::::::40:::::::|h[Crate of Power Stones]|h|r",EquipLoc="",Type="Quest"},["Funeral Cuffs"]={SubType="Cloth",Level=59,id=12626,StackCount=1,Rarity=3,MinLevel=54,SellPrice=9191,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:12626::::::::40:::::::|h[Funeral Cuffs]|h|r"},["Obsidian Greaves"]={SubType="Plate",Level=42,id=13068,StackCount=1,Rarity=3,MinLevel=40,SellPrice=4785,Texture=132590,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13068::::::::40:::::::|h[Obsidian Greaves]|h|r"},["Defiler's Leather Girdle"]={SubType="Leather",Level=63,id=20190,StackCount=1,Rarity=3,MinLevel=58,SellPrice=14356,Texture=132506,Link="|cff0070dd|Hitem:20190::::::::40:::::::|h[Defiler's Leather Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Venomshroud Mask"]={SubType="Cloth",Level=50,id=14441,StackCount=1,Rarity=2,MinLevel=45,SellPrice=7166,Texture=133134,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14441::::::::40:::::::|h[Venomshroud Mask]|h|r"},["Soldier's Wristguards"]={SubType="Mail",Level=15,id=6550,StackCount=1,Rarity=2,MinLevel=10,SellPrice=204,Texture=132611,Link="|cff1eff00|Hitem:6550::::::::40:::::::|h[Soldier's Wristguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Grimoire of Devour Magic (Rank 4)"]={SubType="Book",Level=54,id=16383,StackCount=1,Rarity=1,MinLevel=54,SellPrice=5000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16383::::::::40:::::::|h[Grimoire of Devour Magic (Rank 4)]|h|r",Type="Recipe"},["Frostmane Shortsword"]={SubType="One-Handed Swords",Level=8,id=2258,StackCount=1,Rarity=1,MinLevel=3,SellPrice=83,Texture=135274,Type="Weapon",Link="|cffffffff|Hitem:2258::::::::40:::::::|h[Frostmane Shortsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Warlord's Satin Robes"]={SubType="Cloth",Level=74,id=17624,StackCount=1,Rarity=4,MinLevel=60,SellPrice=27444,Texture=132716,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:17624::::::::40:::::::|h[Warlord's Satin Robes]|h|r",Type="Armor"},["Windchaser Cinch"]={SubType="Cloth",Level=43,id=14435,StackCount=1,Rarity=2,MinLevel=38,SellPrice=2778,Texture=132512,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14435::::::::40:::::::|h[Windchaser Cinch]|h|r"},["Wristguards of Vengeance"]={SubType="Plate",Level=83,id=22936,StackCount=1,Rarity=4,MinLevel=60,SellPrice=40803,Texture=132616,Link="|cffa335ee|Hitem:22936::::::::40:::::::|h[Wristguards of Vengeance]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Emerald Vambraces"]={SubType="Plate",Level=56,id=10282,StackCount=1,Rarity=2,MinLevel=51,SellPrice=6712,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10282::::::::40:::::::|h[Emerald Vambraces]|h|r",Type="Armor"},["Legionnaire's Dragonhide Chestpiece"]={SubType="Leather",Level=68,id=22877,StackCount=1,Rarity=3,MinLevel=60,SellPrice=17987,Texture=132722,Link="|cff0070dd|Hitem:22877::::::::40:::::::|h[Legionnaire's Dragonhide Chestpiece]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Ashbringer"]={SubType="Two-Handed Swords",Level=76,id=13262,StackCount=1,Rarity=5,MinLevel=60,SellPrice=261407,Texture=135358,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffff8000|Hitem:13262::::::::40:::::::|h[Ashbringer]|h|r"},["Optomatic Deflector"]={SubType="Shields",Level=51,id=9643,StackCount=1,Rarity=2,MinLevel=0,SellPrice=15988,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9643::::::::40:::::::|h[Optomatic Deflector]|h|r"},["War Paint Chestpiece"]={SubType="Mail",Level=23,id=14730,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1223,Texture=132624,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14730::::::::40:::::::|h[War Paint Chestpiece]|h|r"},["Barbaric Bracers"]={SubType="Leather",Level=32,id=18948,StackCount=1,Rarity=3,MinLevel=27,SellPrice=1589,Texture=132614,Type="Armor",Link="|cff0070dd|Hitem:18948::::::::40:::::::|h[Barbaric Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Hawkeye's Helm"]={SubType="Leather",Level=40,id=14591,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4180,Texture=133117,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14591::::::::40:::::::|h[Hawkeye's Helm]|h|r"},["Hive'Regal Rubbing"]={SubType="Quest",Level=1,id=20456,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134944,Link="|cffffffff|Hitem:20456::::::::40:::::::|h[Hive'Regal Rubbing]|h|r",EquipLoc="",Type="Quest"},["Deprecated Perenolde's Head"]={SubType="Quest",Level=1,id=3584,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Type="Quest",Link="|cffffffff|Hitem:3584::::::::40:::::::|h[Deprecated Perenolde's Head]|h|r",EquipLoc=""},["Highlander's Runecloth Bandage"]={SubType="Consumable",Level=55,id=20243,StackCount=20,Rarity=1,MinLevel=45,SellPrice=100,Texture=133682,Link="|cffffffff|Hitem:20243::::::::40:::::::|h[Highlander's Runecloth Bandage]|h|r",EquipLoc="",Type="Consumable"},["Highlander's Silk Bandage"]={SubType="Consumable",Level=35,id=20244,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=133672,Link="|cffffffff|Hitem:20244::::::::40:::::::|h[Highlander's Silk Bandage]|h|r",EquipLoc="",Type="Consumable"},["Glorious Headdress"]={SubType="Plate",Level=59,id=14969,StackCount=1,Rarity=2,MinLevel=54,SellPrice=12241,Texture=133073,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14969::::::::40:::::::|h[Glorious Headdress]|h|r"},["Head of Argelmach"]={SubType="Quest",Level=1,id=11268,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134159,Type="Quest",Link="|cffffffff|Hitem:11268::::::::40:::::::|h[Head of Argelmach]|h|r",EquipLoc=""},["Tome of Arcane Intellect IV"]={SubType="Book",Level=42,id=8852,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=133739,Link="|cffffffff|Hitem:8852::::::::40:::::::|h[Tome of Arcane Intellect IV]|h|r",EquipLoc="",Type="Recipe"},["Monster - Item, Scepter - Gold Offhand"]={SubType="Miscellaneous",Level=1,id=12749,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135471,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:12749::::::::40:::::::|h[Monster - Item, Scepter - Gold Offhand]|h|r"},["Solomon's Plea to Westfall"]={SubType="Quest",Level=1,id=1407,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133460,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1407::::::::40:::::::|h[Solomon's Plea to Westfall]|h|r"},["Defiler's Leather Shoulders"]={SubType="Leather",Level=65,id=20194,StackCount=1,Rarity=4,MinLevel=60,SellPrice=32123,Texture=135055,Link="|cffa335ee|Hitem:20194::::::::40:::::::|h[Defiler's Leather Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Haunting Specter Leggings"]={SubType="Cloth",Level=57,id=11929,StackCount=1,Rarity=3,MinLevel=52,SellPrice=16581,Texture=134591,Type="Armor",Link="|cff0070dd|Hitem:11929::::::::40:::::::|h[Haunting Specter Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Raw Spotted Yellowtail"]={SubType="Consumable",Level=45,id=4603,StackCount=20,Rarity=1,MinLevel=35,SellPrice=4,Texture=133887,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:4603::::::::40:::::::|h[Raw Spotted Yellowtail]|h|r"},["Monster - Sword1H, Dark Short Sword"]={SubType="One-Handed Swords",Level=1,id=12892,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135280,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12892::::::::40:::::::|h[Monster - Sword1H, Dark Short Sword]|h|r"},["Vinehedge Cinch"]={SubType="Leather",Level=49,id=9657,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5333,Texture=132506,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9657::::::::40:::::::|h[Vinehedge Cinch]|h|r"},["Encrusted Silithid Object"]={SubType="Quest",Level=1,id=17346,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134967,EquipLoc="",Link="|cffffffff|Hitem:17346::::::::40:::::::|h[Encrusted Silithid Object]|h|r",Type="Quest"},["Purple Hakkari Bijou"]={SubType="Quest",Level=61,id=19712,StackCount=250,Rarity=3,MinLevel=58,SellPrice=0,Texture=132531,Link="|cff0070dd|Hitem:19712::::::::40:::::::|h[Purple Hakkari Bijou]|h|r",EquipLoc="",Type="Quest"},["Sully Balloo's Letter"]={SubType="Quest",Level=1,id=4432,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",Link="|cffffffff|Hitem:4432::::::::40:::::::|h[Sully Balloo's Letter]|h|r",EquipLoc=""},["Guild Tabard"]={SubType="Miscellaneous",Level=1,id=5976,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=135026,Link="|cffffffff|Hitem:5976::::::::40:::::::|h[Guild Tabard]|h|r",EquipLoc="INVTYPE_TABARD",Type="Armor"},["Jang'thraze the Protector"]={SubType="One-Handed Swords",Level=50,id=9380,StackCount=1,Rarity=3,MinLevel=45,SellPrice=28334,Texture=135353,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9380::::::::40:::::::|h[Jang'thraze the Protector]|h|r"},["Dusky Boots"]={SubType="Leather",Level=40,id=7390,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4237,Texture=132541,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7390::::::::40:::::::|h[Dusky Boots]|h|r",Type="Armor"},["Pinto Bridle"]={SubType="Junk",Level=40,id=2414,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132261,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:2414::::::::40:::::::|h[Pinto Bridle]|h|r"},["Boots of Thero-shan"]={SubType="Leather",Level=36,id=7952,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3025,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7952::::::::40:::::::|h[Boots of Thero-shan]|h|r",Type="Armor"},["Recipe: Ghost Dye"]={SubType="Alchemy",Level=49,id=9302,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2250,Texture=134941,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9302::::::::40:::::::|h[Recipe: Ghost Dye]|h|r"},["Unconscious Dig Rat"]={SubType="Junk",Level=1,id=5052,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134361,EquipLoc="",Link="|cffffffff|Hitem:5052::::::::40:::::::|h[Unconscious Dig Rat]|h|r",Type="Miscellaneous"},["Dark Iron Leather"]={SubType="Leather",Level=32,id=5108,StackCount=1,Rarity=1,MinLevel=27,SellPrice=1616,Texture=132725,Link="|cffffffff|Hitem:5108::::::::40:::::::|h[Dark Iron Leather]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Hooded Cowl"]={SubType="Cloth",Level=30,id=3732,StackCount=1,Rarity=1,MinLevel=0,SellPrice=801,Texture=133136,EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:3732::::::::40:::::::|h[Hooded Cowl]|h|r",Type="Armor"},["Monster - Spear, Cool Blue"]={SubType="Polearms",Level=1,id=14535,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135130,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14535::::::::40:::::::|h[Monster - Spear, Cool Blue]|h|r"},["Flaming Incinerator"]={SubType="Wands",Level=49,id=9483,StackCount=1,Rarity=3,MinLevel=44,SellPrice=19139,Texture=135432,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:9483::::::::40:::::::|h[Flaming Incinerator]|h|r"},["Rugged Cape"]={SubType="Cloth",Level=15,id=2240,StackCount=1,Rarity=1,MinLevel=0,SellPrice=151,Texture=133753,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:2240::::::::40:::::::|h[Rugged Cape]|h|r"},["Talisman of Binding Fragment"]={SubType="Miscellaneous",Level=80,id=17783,StackCount=1,Rarity=5,MinLevel=60,SellPrice=33625,Texture=133279,EquipLoc="INVTYPE_NECK",Link="|cffff8000|Hitem:17783::::::::40:::::::|h[Talisman of Binding Fragment]|h|r",Type="Armor"},["Blacksteel Bar"]={SubType="Trade Goods",Level=45,id=3861,StackCount=10,Rarity=1,MinLevel=0,SellPrice=125,Texture=133218,EquipLoc="",Link="|cffffffff|Hitem:3861::::::::40:::::::|h[Blacksteel Bar]|h|r",Type="Trade Goods"},["Obsidian Pendant"]={SubType="Miscellaneous",Level=57,id=12035,StackCount=1,Rarity=2,MinLevel=52,SellPrice=5513,Texture=133293,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12035::::::::40:::::::|h[Obsidian Pendant]|h|r"},["Pattern: Barbaric Gloves"]={SubType="Leatherworking",Level=30,id=4297,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:4297::::::::40:::::::|h[Pattern: Barbaric Gloves]|h|r",Type="Recipe"},["Deathmist Mask"]={SubType="Cloth",Level=60,id=22074,StackCount=1,Rarity=4,MinLevel=0,SellPrice=20067,Texture=133131,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:22074::::::::40:::::::|h[Deathmist Mask]|h|r"},["90 Green Warrior Cloak"]={SubType="Cloth",Level=90,id=20241,StackCount=1,Rarity=2,MinLevel=60,SellPrice=25902,Texture=133759,Link="|cff1eff00|Hitem:20241::::::::40:::::::|h[90 Green Warrior Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Monster - Sword, Thick/Fat Blade"]={SubType="One-Handed Swords",Level=1,id=12142,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135316,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12142::::::::40:::::::|h[Monster - Sword, Thick/Fat Blade]|h|r"},["Shadowy Laced Handwraps"]={SubType="Cloth",Level=60,id=18730,StackCount=1,Rarity=3,MinLevel=55,SellPrice=10250,Texture=132950,Type="Armor",Link="|cff0070dd|Hitem:18730::::::::40:::::::|h[Shadowy Laced Handwraps]|h|r",EquipLoc="INVTYPE_HAND"},["90 Green Rogue Ring"]={SubType="Miscellaneous",Level=90,id=20307,StackCount=1,Rarity=2,MinLevel=60,SellPrice=7102,Texture=133347,Link="|cff1eff00|Hitem:20307::::::::40:::::::|h[90 Green Rogue Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Bloodtinged Gloves"]={SubType="Cloth",Level=71,id=19929,StackCount=1,Rarity=3,MinLevel=60,SellPrice=16834,Texture=132950,Link="|cff0070dd|Hitem:19929::::::::40:::::::|h[Bloodtinged Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Recipe: Gingerbread Cookie"]={SubType="Cooking",Level=5,id=17200,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:17200::::::::40:::::::|h[Recipe: Gingerbread Cookie]|h|r",Type="Recipe"},["63 Green Rogue Bow"]={SubType="Bows",Level=63,id=20313,StackCount=1,Rarity=2,MinLevel=58,SellPrice=37212,Texture=135492,Link="|cff1eff00|Hitem:20313::::::::40:::::::|h[63 Green Rogue Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Goblin Construction Helmet"]={SubType="Cloth",Level=41,id=10543,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3517,Texture=133162,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10543::::::::40:::::::|h[Goblin Construction Helmet]|h|r",Type="Armor"},["Prismatic Shell"]={SubType="Junk",Level=1,id=23250,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133797,Link="|cffffffff|Hitem:23250::::::::40:::::::|h[Prismatic Shell]|h|r",EquipLoc="",Type="Miscellaneous"},["Old Greatsword"]={SubType="Two-Handed Swords",Level=14,id=1513,StackCount=1,Rarity=0,MinLevel=9,SellPrice=293,Texture=135276,Type="Weapon",Link="|cff9d9d9d|Hitem:1513::::::::40:::::::|h[Old Greatsword]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Mug'thol's Head"]={SubType="Quest",Level=1,id=3553,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,EquipLoc="",Link="|cffffffff|Hitem:3553::::::::40:::::::|h[Mug'thol's Head]|h|r",Type="Quest"},["Tigule's Harpoon"]={SubType="Polearms",Level=68,id=19946,StackCount=1,Rarity=3,MinLevel=60,SellPrice=89871,Texture=135127,Link="|cff0070dd|Hitem:19946::::::::40:::::::|h[Tigule's Harpoon]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Greatfather's Winter Ale"]={SubType="Consumable",Level=35,id=17402,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=132800,EquipLoc="",Link="|cffffffff|Hitem:17402::::::::40:::::::|h[Greatfather's Winter Ale]|h|r",Type="Consumable"},["Fish Scale"]={SubType="Trade Goods",Level=10,id=6987,StackCount=10,Rarity=1,MinLevel=0,SellPrice=13,Texture=134304,Type="Trade Goods",Link="|cffffffff|Hitem:6987::::::::40:::::::|h[Fish Scale]|h|r",EquipLoc=""},["Bonescythe Bracers"]={SubType="Leather",Level=88,id=22483,StackCount=1,Rarity=4,MinLevel=60,SellPrice=63132,Texture=132614,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:22483::::::::40:::::::|h[Bonescythe Bracers]|h|r"},["Recipe: Monster Omelet"]={SubType="Cooking",Level=45,id=16110,StackCount=1,Rarity=1,MinLevel=0,SellPrice=3000,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:16110::::::::40:::::::|h[Recipe: Monster Omelet]|h|r",Type="Recipe"},["Claw of the Frost Wyrm"]={SubType="Fist Weapons",Level=88,id=23242,StackCount=1,Rarity=4,MinLevel=60,SellPrice=267143,Texture=135594,Link="|cffa335ee|Hitem:23242::::::::40:::::::|h[Claw of the Frost Wyrm]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND",Type="Weapon"},["Plans: Thorium Shield Spike"]={SubType="Blacksmithing",Level=55,id=12692,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12692::::::::40:::::::|h[Plans: Thorium Shield Spike]|h|r"},["Lieutenant Commander's Plate Pauldrons"]={SubType="Plate",Level=63,id=16432,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8736,Texture=135051,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16432::::::::40:::::::|h[Lieutenant Commander's Plate Pauldrons]|h|r",Type="Armor"},["Deprecated Shadowmaw Fang"]={SubType="Quest",Level=1,id=1692,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1692::::::::40:::::::|h[Deprecated Shadowmaw Fang]|h|r"},["Defiler's Standard Care Package"]={SubType="Consumable",Level=1,id=20230,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134143,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20230::::::::40:::::::|h[Defiler's Standard Care Package]|h|r"},["Gripsteel Wristguards"]={SubType="Mail",Level=38,id=16794,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2705,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:16794::::::::40:::::::|h[Gripsteel Wristguards]|h|r",Type="Armor"},["Zandalar Madcap's Bracers"]={SubType="Leather",Level=61,id=19836,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132613,Link="|cffa335ee|Hitem:19836::::::::40:::::::|h[Zandalar Madcap's Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Windsong Drape"]={SubType="Cloth",Level=29,id=15468,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1207,Texture=133757,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15468::::::::40:::::::|h[Windsong Drape]|h|r",Type="Armor"},["Rawhide Cloak"]={SubType="Cloth",Level=22,id=1798,StackCount=1,Rarity=0,MinLevel=17,SellPrice=279,Texture=133759,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff9d9d9d|Hitem:1798::::::::40:::::::|h[Rawhide Cloak]|h|r"},["Base of Atiesh"]={SubType="Quest",Level=1,id=22734,StackCount=1,Rarity=5,MinLevel=0,SellPrice=0,Texture=134909,Link="|cffff8000|Hitem:22734::::::::40:::::::|h[Base of Atiesh]|h|r",EquipLoc="",Type="Quest"},["Silvered Bronze Shoulders"]={SubType="Mail",Level=25,id=3481,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1284,Texture=135040,Link="|cff1eff00|Hitem:3481::::::::40:::::::|h[Silvered Bronze Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Recipe: Discolored Healing Potion"]={SubType="Alchemy",Level=10,id=4597,StackCount=1,Rarity=2,MinLevel=0,SellPrice=250,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:4597::::::::40:::::::|h[Recipe: Discolored Healing Potion]|h|r",Type="Recipe"},["Ebonlocke's Response to Solomon"]={SubType="Quest",Level=1,id=1410,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133460,Type="Quest",Link="|cffffffff|Hitem:1410::::::::40:::::::|h[Ebonlocke's Response to Solomon]|h|r",EquipLoc=""},["Militia Quarterstaff"]={SubType="Staves",Level=5,id=1159,StackCount=1,Rarity=1,MinLevel=0,SellPrice=32,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:1159::::::::40:::::::|h[Militia Quarterstaff]|h|r"},["Ironshod Bludgeon"]={SubType="Staves",Level=42,id=9408,StackCount=1,Rarity=3,MinLevel=37,SellPrice=18639,Texture=135165,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:9408::::::::40:::::::|h[Ironshod Bludgeon]|h|r"},["Deprecated Iron Key"]={SubType="Key",Level=1,id=3580,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134235,Type="Key",Link="|cffffffff|Hitem:3580::::::::40:::::::|h[Deprecated Iron Key]|h|r",EquipLoc=""},["Vital Shoulders"]={SubType="Cloth",Level=35,id=14212,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2194,Texture=135049,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14212::::::::40:::::::|h[Vital Shoulders]|h|r"},["Coyote Meat"]={SubType="Trade Goods",Level=10,id=2673,StackCount=10,Rarity=1,MinLevel=0,SellPrice=10,Texture=134025,Type="Trade Goods",Link="|cffffffff|Hitem:2673::::::::40:::::::|h[Coyote Meat]|h|r",EquipLoc=""},["63 Green Frost Belt"]={SubType="Cloth",Level=63,id=20351,StackCount=1,Rarity=2,MinLevel=58,SellPrice=9144,Texture=132497,Link="|cff1eff00|Hitem:20351::::::::40:::::::|h[63 Green Frost Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Philosopher's Stone"]={SubType="Trade Goods",Level=45,id=9149,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=134333,Link="|cffffffff|Hitem:9149::::::::40:::::::|h[Philosopher's Stone]|h|r",EquipLoc="",Type="Trade Goods"},["Long Elegant Feather"]={SubType="Junk",Level=1,id=4589,StackCount=10,Rarity=1,MinLevel=0,SellPrice=530,Texture=135992,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:4589::::::::40:::::::|h[Long Elegant Feather]|h|r"},["Searing Golden Blade"]={SubType="Daggers",Level=39,id=12260,StackCount=1,Rarity=2,MinLevel=34,SellPrice=10395,Texture=135641,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:12260::::::::40:::::::|h[Searing Golden Blade]|h|r"},["Chief Architect's Monocle"]={SubType="Cloth",Level=55,id=11839,StackCount=1,Rarity=3,MinLevel=50,SellPrice=11191,Texture=133146,Type="Armor",Link="|cff0070dd|Hitem:11839::::::::40:::::::|h[Chief Architect's Monocle]|h|r",EquipLoc="INVTYPE_HEAD"},["Arcanite Barding"]={SubType="Quest",Level=1,id=18753,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135061,Type="Quest",Link="|cffffffff|Hitem:18753::::::::40:::::::|h[Arcanite Barding]|h|r",EquipLoc=""},["Thick Bark Buckler"]={SubType="Shields",Level=5,id=4911,StackCount=1,Rarity=1,MinLevel=0,SellPrice=15,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:4911::::::::40:::::::|h[Thick Bark Buckler]|h|r",Type="Armor"},["Crossroads' Supply Crates"]={SubType="Quest",Level=1,id=12708,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12708::::::::40:::::::|h[Crossroads' Supply Crates]|h|r"},["Neltharion's Tear"]={SubType="Miscellaneous",Level=83,id=19379,StackCount=1,Rarity=4,MinLevel=60,SellPrice=205863,Texture=135241,Link="|cffa335ee|Hitem:19379::::::::40:::::::|h[Neltharion's Tear]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Rugged Leather"]={SubType="Trade Goods",Level=50,id=8170,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134251,Link="|cffffffff|Hitem:8170::::::::40:::::::|h[Rugged Leather]|h|r",EquipLoc="",Type="Trade Goods"},["Gorilla Fang"]={SubType="Quest",Level=1,id=2799,StackCount=20,Rarity=1,MinLevel=0,SellPrice=67,Texture=134298,Type="Quest",Link="|cffffffff|Hitem:2799::::::::40:::::::|h[Gorilla Fang]|h|r",EquipLoc=""},["Blackforge Greaves"]={SubType="Mail",Level=45,id=6423,StackCount=1,Rarity=2,MinLevel=40,SellPrice=7233,Texture=132539,Link="|cff1eff00|Hitem:6423::::::::40:::::::|h[Blackforge Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Tablet of Molten Blast"]={SubType="Book",Level=6,id=1031,StackCount=1,Rarity=1,MinLevel=6,SellPrice=20,Texture=134459,Link="|cffffffff|Hitem:1031::::::::40:::::::|h[Tablet of Molten Blast]|h|r",EquipLoc="",Type="Recipe"},["Coyote Steak"]={SubType="Consumable",Level=15,id=2684,StackCount=20,Rarity=1,MinLevel=5,SellPrice=20,Texture=134021,Link="|cffffffff|Hitem:2684::::::::40:::::::|h[Coyote Steak]|h|r",EquipLoc="",Type="Consumable"},["Howling Blade"]={SubType="Daggers",Level=36,id=6331,StackCount=1,Rarity=3,MinLevel=31,SellPrice=9466,Texture=135651,Type="Weapon",Link="|cff0070dd|Hitem:6331::::::::40:::::::|h[Howling Blade]|h|r",EquipLoc="INVTYPE_WEAPON"},["Light Plate Boots"]={SubType="Plate",Level=52,id=8082,StackCount=1,Rarity=0,MinLevel=47,SellPrice=3189,Texture=132589,Link="|cff9d9d9d|Hitem:8082::::::::40:::::::|h[Light Plate Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Vile Protector"]={SubType="Shields",Level=41,id=7747,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7754,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:7747::::::::40:::::::|h[Vile Protector]|h|r"},["Wanderer's Belt"]={SubType="Leather",Level=54,id=10109,StackCount=1,Rarity=2,MinLevel=49,SellPrice=7273,Texture=132500,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10109::::::::40:::::::|h[Wanderer's Belt]|h|r",Type="Armor"},["Beaded Sandals"]={SubType="Cloth",Level=10,id=14086,StackCount=1,Rarity=1,MinLevel=5,SellPrice=45,Texture=132543,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:14086::::::::40:::::::|h[Beaded Sandals]|h|r"},["Saltstone Legplates"]={SubType="Plate",Level=40,id=14900,StackCount=1,Rarity=2,MinLevel=40,SellPrice=4298,Texture=134587,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14900::::::::40:::::::|h[Saltstone Legplates]|h|r"},["Explosive Shotgun"]={SubType="Guns",Level=37,id=8188,StackCount=1,Rarity=2,MinLevel=32,SellPrice=6414,Texture=135617,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:8188::::::::40:::::::|h[Explosive Shotgun]|h|r"},["Magnificent Belt"]={SubType="Mail",Level=58,id=15673,StackCount=1,Rarity=2,MinLevel=53,SellPrice=11075,Texture=132500,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15673::::::::40:::::::|h[Magnificent Belt]|h|r",Type="Armor"},["Linen Bandage"]={SubType="Consumable",Level=1,id=1251,StackCount=20,Rarity=1,MinLevel=0,SellPrice=10,Texture=133685,EquipLoc="",Link="|cffffffff|Hitem:1251::::::::40:::::::|h[Linen Bandage]|h|r",Type="Consumable"},["Cloaked Hood"]={SubType="Leather",Level=38,id=1280,StackCount=1,Rarity=2,MinLevel=33,SellPrice=3696,Texture=133132,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:1280::::::::40:::::::|h[Cloaked Hood]|h|r",Type="Armor"},["90 Epic Frost Robes"]={SubType="Cloth",Level=90,id=20331,StackCount=1,Rarity=4,MinLevel=60,SellPrice=117706,Texture=132666,Link="|cffa335ee|Hitem:20331::::::::40:::::::|h[90 Epic Frost Robes]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Grimoire of Fire Shield (Rank 1)"]={SubType="Book",Level=14,id=16326,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16326::::::::40:::::::|h[Grimoire of Fire Shield (Rank 1)]|h|r",Type="Recipe"},["Zandalar Illusionist's Robe"]={SubType="Cloth",Level=65,id=20034,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132653,Link="|cffa335ee|Hitem:20034::::::::40:::::::|h[Zandalar Illusionist's Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Five of Portals"]={SubType="Junk",Level=1,id=19281,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134492,Link="|cff0070dd|Hitem:19281::::::::40:::::::|h[Five of Portals]|h|r",EquipLoc="",Type="Miscellaneous"},["Dark Iron Bracers"]={SubType="Plate",Level=59,id=17014,StackCount=1,Rarity=4,MinLevel=54,SellPrice=12637,Texture=132606,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:17014::::::::40:::::::|h[Dark Iron Bracers]|h|r",Type="Armor"},["Spinel Ring"]={SubType="Miscellaneous",Level=34,id=11970,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1710,Texture=133353,Type="Armor",Link="|cff1eff00|Hitem:11970::::::::40:::::::|h[Spinel Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Ryedol's Hammer"]={SubType="One-Handed Maces",Level=36,id=4978,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7976,Texture=133041,Link="|cff1eff00|Hitem:4978::::::::40:::::::|h[Ryedol's Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Goblin Engineer's Renewal Gift"]={SubType="Junk",Level=1,id=11422,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134143,Type="Miscellaneous",Link="|cffffffff|Hitem:11422::::::::40:::::::|h[Goblin Engineer's Renewal Gift]|h|r",EquipLoc=""},["Elder's Amber Stave"]={SubType="Miscellaneous",Level=35,id=7609,StackCount=1,Rarity=2,MinLevel=30,SellPrice=4210,Texture=135144,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:7609::::::::40:::::::|h[Elder's Amber Stave]|h|r"},["Raw Greater Sagefish"]={SubType="Consumable",Level=40,id=21153,StackCount=20,Rarity=1,MinLevel=30,SellPrice=125,Texture=133907,Type="Consumable",Link="|cffffffff|Hitem:21153::::::::40:::::::|h[Raw Greater Sagefish]|h|r",EquipLoc=""},["Fine Leather Tunic"]={SubType="Leather",Level=17,id=4243,StackCount=1,Rarity=2,MinLevel=12,SellPrice=461,Texture=132724,Link="|cff1eff00|Hitem:4243::::::::40:::::::|h[Fine Leather Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Stonelash Flayer Stinger"]={SubType="Quest",Level=0,id=20375,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132274,Link="|cffffffff|Hitem:20375::::::::40:::::::|h[Stonelash Flayer Stinger]|h|r",EquipLoc="",Type="Quest"},["Scouting Tunic"]={SubType="Leather",Level=25,id=6584,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1416,Texture=132725,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:6584::::::::40:::::::|h[Scouting Tunic]|h|r"},["Monster - Item, Book - B02 Black Glowing"]={SubType="Miscellaneous",Level=1,id=12866,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133741,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12866::::::::40:::::::|h[Monster - Item, Book - B02 Black Glowing]|h|r"},["Sprite Darter Egg"]={SubType="Junk",Level=47,id=11474,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=132833,Type="Miscellaneous",Link="|cffffffff|Hitem:11474::::::::40:::::::|h[Sprite Darter Egg]|h|r",EquipLoc=""},["Small Green Rocket"]={SubType="Consumable",Level=1,id=21559,StackCount=20,Rarity=1,MinLevel=0,SellPrice=6,Texture=134283,Link="|cffffffff|Hitem:21559::::::::40:::::::|h[Small Green Rocket]|h|r",EquipLoc="",Type="Consumable"},["Marshal's Chain Boots"]={SubType="Mail",Level=71,id=16462,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24982,Texture=132588,EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:16462::::::::40:::::::|h[Marshal's Chain Boots]|h|r",Type="Armor"},["Forsaken Dagger"]={SubType="Daggers",Level=5,id=3268,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=135641,Type="Weapon",Link="|cffffffff|Hitem:3268::::::::40:::::::|h[Forsaken Dagger]|h|r",EquipLoc="INVTYPE_WEAPON"},["Deprecated Brown Leather Satchel"]={SubType="Bag",Level=15,id=806,StackCount=1,Rarity=1,MinLevel=0,SellPrice=625,Texture=133634,Link="|cffffffff|Hitem:806::::::::40:::::::|h[Deprecated Brown Leather Satchel]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Minshina's Skull"]={SubType="Quest",Level=1,id=4864,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=133730,Type="Quest",Link="|cffffffff|Hitem:4864::::::::40:::::::|h[Minshina's Skull]|h|r",EquipLoc=""},["Beaded Cloak"]={SubType="Cloth",Level=8,id=14088,StackCount=1,Rarity=1,MinLevel=3,SellPrice=24,Texture=133762,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:14088::::::::40:::::::|h[Beaded Cloak]|h|r"},["Curve-bladed Ripper"]={SubType="One-Handed Axes",Level=45,id=2815,StackCount=1,Rarity=3,MinLevel=40,SellPrice=19778,Texture=132417,Link="|cff0070dd|Hitem:2815::::::::40:::::::|h[Curve-bladed Ripper]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Verdant Note"]={SubType="Quest",Level=1,id=9581,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134327,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9581::::::::40:::::::|h[Verdant Note]|h|r"},["Pattern: Wizardweave Leggings"]={SubType="Tailoring",Level=55,id=14485,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14485::::::::40:::::::|h[Pattern: Wizardweave Leggings]|h|r"},["Warden's Wraps"]={SubType="Leather",Level=44,id=14601,StackCount=1,Rarity=2,MinLevel=39,SellPrice=7307,Texture=132719,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14601::::::::40:::::::|h[Warden's Wraps]|h|r"},["Libram: Holy Light VII"]={SubType="Book",Level=46,id=8933,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=133740,Link="|cffffffff|Hitem:8933::::::::40:::::::|h[Libram: Holy Light VII]|h|r",EquipLoc="",Type="Recipe"},["Spinner Fang"]={SubType="Daggers",Level=18,id=2664,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1073,Texture=134298,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:2664::::::::40:::::::|h[Spinner Fang]|h|r",Type="Weapon"},["Iridescent Pearl"]={SubType="Trade Goods",Level=25,id=5500,StackCount=20,Rarity=2,MinLevel=0,SellPrice=750,Texture=134121,EquipLoc="",Link="|cff1eff00|Hitem:5500::::::::40:::::::|h[Iridescent Pearl]|h|r",Type="Trade Goods"},["[PH] Cloth Boots of the Brilliant Dawn"]={SubType="Cloth",Level=100,id=13798,StackCount=1,Rarity=1,MinLevel=100,SellPrice=52721,Texture=132579,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:13798::::::::40:::::::|h[[PH] Cloth Boots of the Brilliant Dawn]|h|r"},["Ringo's Blizzard Boots"]={SubType="Cloth",Level=71,id=19438,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33805,Texture=132573,Link="|cffa335ee|Hitem:19438::::::::40:::::::|h[Ringo's Blizzard Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Exalted Harness"]={SubType="Plate",Level=65,id=14975,StackCount=1,Rarity=2,MinLevel=60,SellPrice=20219,Texture=132745,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14975::::::::40:::::::|h[Exalted Harness]|h|r"},["Cross-stitched Sandals"]={SubType="Cloth",Level=29,id=1780,StackCount=1,Rarity=0,MinLevel=24,SellPrice=489,Texture=132579,EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:1780::::::::40:::::::|h[Cross-stitched Sandals]|h|r",Type="Armor"},["Frostwolf Legionnaire's Pendant"]={SubType="Miscellaneous",Level=60,id=19095,StackCount=1,Rarity=3,MinLevel=55,SellPrice=17912,Texture=133303,Link="|cff0070dd|Hitem:19095::::::::40:::::::|h[Frostwolf Legionnaire's Pendant]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Light Mail Belt"]={SubType="Mail",Level=10,id=2393,StackCount=1,Rarity=1,MinLevel=5,SellPrice=41,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:2393::::::::40:::::::|h[Light Mail Belt]|h|r",Type="Armor"},["Trelane's Orb"]={SubType="Quest",Level=1,id=4531,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134333,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4531::::::::40:::::::|h[Trelane's Orb]|h|r"},["Necropile Boots"]={SubType="Cloth",Level=61,id=14631,StackCount=1,Rarity=3,MinLevel=56,SellPrice=16251,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:14631::::::::40:::::::|h[Necropile Boots]|h|r"},["Battleborn Armbraces"]={SubType="Plate",Level=63,id=12936,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11640,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:12936::::::::40:::::::|h[Battleborn Armbraces]|h|r"},["Warleader's Shield"]={SubType="Shields",Level=63,id=15991,StackCount=1,Rarity=2,MinLevel=58,SellPrice=29230,Texture=134953,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15991::::::::40:::::::|h[Warleader's Shield]|h|r",Type="Armor"},["Charged Scale of Onyxia"]={SubType="Trade Goods",Level=60,id=17968,StackCount=20,Rarity=3,MinLevel=0,SellPrice=5000,Texture=134309,EquipLoc="",Link="|cff0070dd|Hitem:17968::::::::40:::::::|h[Charged Scale of Onyxia]|h|r",Type="Trade Goods"},["Musty Missive"]={SubType="Quest",Level=1,id=6280,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Link="|cffffffff|Hitem:6280::::::::40:::::::|h[Musty Missive]|h|r",EquipLoc="",Type="Quest"},["Codex of Shadow Word: Pain VII"]={SubType="Book",Level=50,id=9011,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9011::::::::40:::::::|h[Codex of Shadow Word: Pain VII]|h|r"},["Cap of Harmony"]={SubType="Leather",Level=40,id=4124,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3991,Texture=133117,Link="|cff1eff00|Hitem:4124::::::::40:::::::|h[Cap of Harmony]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Flowing Ritual Robes DEPRECATED"]={SubType="Cloth",Level=63,id=19926,StackCount=1,Rarity=4,MinLevel=60,SellPrice=30047,Texture=132666,Link="|cffa335ee|Hitem:19926::::::::40:::::::|h[Flowing Ritual Robes DEPRECATED]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Greenstone Circle"]={SubType="Miscellaneous",Level=38,id=11997,StackCount=1,Rarity=2,MinLevel=33,SellPrice=6469,Texture=133350,Type="Armor",Link="|cff1eff00|Hitem:11997::::::::40:::::::|h[Greenstone Circle]|h|r",EquipLoc="INVTYPE_FINGER"},["Defiler's Mail Pauldrons"]={SubType="Mail",Level=65,id=20203,StackCount=1,Rarity=4,MinLevel=60,SellPrice=39985,Texture=135050,Link="|cffa335ee|Hitem:20203::::::::40:::::::|h[Defiler's Mail Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Ironforge Chain"]={SubType="Mail",Level=16,id=6730,StackCount=1,Rarity=2,MinLevel=11,SellPrice=496,Texture=132624,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:6730::::::::40:::::::|h[Ironforge Chain]|h|r"},["Quiver of the Night Watch"]={SubType="Quiver",Level=25,id=3605,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=134404,Type="Quiver",EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:3605::::::::40:::::::|h[Quiver of the Night Watch]|h|r"},["Daffodil Bouquet"]={SubType="Quest",Level=1,id=1325,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133938,Type="Quest",Link="|cffffffff|Hitem:1325::::::::40:::::::|h[Daffodil Bouquet]|h|r",EquipLoc=""},["Hakkari Shroud"]={SubType="Cloth",Level=55,id=10782,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4539,Texture=133140,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10782::::::::40:::::::|h[Hakkari Shroud]|h|r",Type="Armor"},["Defiler's Field Ration"]={SubType="Consumable",Level=35,id=20223,StackCount=20,Rarity=1,MinLevel=25,SellPrice=50,Texture=133951,Link="|cffffffff|Hitem:20223::::::::40:::::::|h[Defiler's Field Ration]|h|r",EquipLoc="",Type="Consumable"},["Giantstalker's Leggings"]={SubType="Mail",Level=66,id=16847,StackCount=1,Rarity=4,MinLevel=60,SellPrice=54543,Texture=134655,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16847::::::::40:::::::|h[Giantstalker's Leggings]|h|r",Type="Armor"},["Hand of Edward the Odd"]={SubType="One-Handed Maces",Level=62,id=2243,StackCount=1,Rarity=4,MinLevel=57,SellPrice=70554,Texture=133489,Type="Weapon",Link="|cffa335ee|Hitem:2243::::::::40:::::::|h[Hand of Edward the Odd]|h|r",EquipLoc="INVTYPE_WEAPON"},["Sentinel Girdle"]={SubType="Leather",Level=36,id=7448,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2076,Texture=132493,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:7448::::::::40:::::::|h[Sentinel Girdle]|h|r"},["Radiant Relic Hammer"]={SubType="Miscellaneous",Level=50,id=4032,StackCount=1,Rarity=1,MinLevel=45,SellPrice=5000,Texture=133039,Link="|cffffffff|Hitem:4032::::::::40:::::::|h[Radiant Relic Hammer]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Smoked Desert Dumplings"]={SubType="Consumable",Level=55,id=20452,StackCount=20,Rarity=1,MinLevel=45,SellPrice=250,Texture=134020,Link="|cffffffff|Hitem:20452::::::::40:::::::|h[Smoked Desert Dumplings]|h|r",EquipLoc="",Type="Consumable"},["Altered Snapjaw Shell"]={SubType="Quest",Level=1,id=5098,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134303,Link="|cffffffff|Hitem:5098::::::::40:::::::|h[Altered Snapjaw Shell]|h|r",EquipLoc="",Type="Quest"},["Sidegunner Shottie"]={SubType="Guns",Level=38,id=15691,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6909,Texture=135613,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15691::::::::40:::::::|h[Sidegunner Shottie]|h|r",Type="Weapon"},["Ribbly's Quiver"]={SubType="Quiver",Level=55,id=2662,StackCount=1,Rarity=2,MinLevel=50,SellPrice=8750,Texture=134406,Type="Quiver",EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:2662::::::::40:::::::|h[Ribbly's Quiver]|h|r"},["Lar'korwi's Head"]={SubType="Quest",Level=1,id=11510,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132193,Type="Quest",Link="|cffffffff|Hitem:11510::::::::40:::::::|h[Lar'korwi's Head]|h|r",EquipLoc=""},["Tablet of Ethereal Form II"]={SubType="Book",Level=34,id=4180,StackCount=1,Rarity=1,MinLevel=34,SellPrice=3000,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:4180::::::::40:::::::|h[Tablet of Ethereal Form II]|h|r",Type="Recipe"},["Naga Heartpiercer"]={SubType="Bows",Level=26,id=3078,StackCount=1,Rarity=2,MinLevel=21,SellPrice=2314,Texture=135492,Type="Weapon",Link="|cff1eff00|Hitem:3078::::::::40:::::::|h[Naga Heartpiercer]|h|r",EquipLoc="INVTYPE_RANGED"},["Mistvale Giblets"]={SubType="Quest",Level=1,id=3919,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134341,Link="|cffffffff|Hitem:3919::::::::40:::::::|h[Mistvale Giblets]|h|r",EquipLoc="",Type="Quest"},["Ogremind Ring"]={SubType="Miscellaneous",Level=36,id=1993,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2100,Texture=132524,Type="Armor",Link="|cff1eff00|Hitem:1993::::::::40:::::::|h[Ogremind Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Beguiler Robes"]={SubType="Cloth",Level=34,id=7728,StackCount=1,Rarity=3,MinLevel=29,SellPrice=3223,Texture=132666,Link="|cff0070dd|Hitem:7728::::::::40:::::::|h[Beguiler Robes]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Boots of Valor"]={SubType="Plate",Level=59,id=16734,StackCount=1,Rarity=3,MinLevel=54,SellPrice=14536,Texture=132584,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:16734::::::::40:::::::|h[Boots of Valor]|h|r",Type="Armor"},["Bloodstone Shard"]={SubType="Quest",Level=1,id=3690,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134084,Link="|cffffffff|Hitem:3690::::::::40:::::::|h[Bloodstone Shard]|h|r",EquipLoc="",Type="Quest"},["Righteous Boots"]={SubType="Leather",Level=51,id=10068,StackCount=1,Rarity=2,MinLevel=46,SellPrice=9128,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:10068::::::::40:::::::|h[Righteous Boots]|h|r",Type="Armor"},["Captain's Gauntlets"]={SubType="Mail",Level=41,id=7489,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3740,Texture=132938,Link="|cff1eff00|Hitem:7489::::::::40:::::::|h[Captain's Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Vital Cape"]={SubType="Cloth",Level=32,id=14210,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1636,Texture=133767,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14210::::::::40:::::::|h[Vital Cape]|h|r"},["Greenweave Sash"]={SubType="Cloth",Level=22,id=9766,StackCount=1,Rarity=2,MinLevel=17,SellPrice=361,Texture=132494,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9766::::::::40:::::::|h[Greenweave Sash]|h|r"},["Shadow Panther Hide Belt"]={SubType="Leather",Level=65,id=20261,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15295,Texture=132515,Link="|cff0070dd|Hitem:20261::::::::40:::::::|h[Shadow Panther Hide Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Tome of Scorch IV"]={SubType="Book",Level=40,id=8899,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133739,Link="|cffffffff|Hitem:8899::::::::40:::::::|h[Tome of Scorch IV]|h|r",EquipLoc="",Type="Recipe"},["Enamored Water Spirit"]={SubType="Miscellaneous",Level=52,id=20503,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=135463,Link="|cff0070dd|Hitem:20503::::::::40:::::::|h[Enamored Water Spirit]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Burning Essence"]={SubType="Quest",Level=1,id=11751,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=135819,Type="Quest",Link="|cffffffff|Hitem:11751::::::::40:::::::|h[Burning Essence]|h|r",EquipLoc=""},["Lightheel Boots"]={SubType="Cloth",Level=25,id=15461,StackCount=1,Rarity=2,MinLevel=0,SellPrice=841,Texture=132542,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15461::::::::40:::::::|h[Lightheel Boots]|h|r",Type="Armor"},["Greasy Tinker's Pants"]={SubType="Leather",Level=18,id=5327,StackCount=1,Rarity=2,MinLevel=0,SellPrice=519,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:5327::::::::40:::::::|h[Greasy Tinker's Pants]|h|r",Type="Armor"},["Mantle of Prophecy"]={SubType="Cloth",Level=66,id=16816,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25490,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16816::::::::40:::::::|h[Mantle of Prophecy]|h|r",Type="Armor"},["Leggings of the Ursa"]={SubType="Plate",Level=55,id=21316,StackCount=1,Rarity=2,MinLevel=0,SellPrice=12407,Texture=134662,Link="|cff1eff00|Hitem:21316::::::::40:::::::|h[Leggings of the Ursa]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Redpath's Shield"]={SubType="Quest",Level=1,id=12955,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134951,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12955::::::::40:::::::|h[Redpath's Shield]|h|r"},["Aged Kodo Hide"]={SubType="Quest",Level=1,id=6249,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134250,Link="|cffffffff|Hitem:6249::::::::40:::::::|h[Aged Kodo Hide]|h|r",EquipLoc="",Type="Quest"},["Thick-shelled Clam"]={SubType="Junk",Level=20,id=5524,StackCount=1,Rarity=1,MinLevel=0,SellPrice=21,Texture=134432,EquipLoc="",Link="|cffffffff|Hitem:5524::::::::40:::::::|h[Thick-shelled Clam]|h|r",Type="Miscellaneous"},["90 Epic Rogue Ring"]={SubType="Miscellaneous",Level=90,id=20277,StackCount=1,Rarity=4,MinLevel=60,SellPrice=7102,Texture=133347,Link="|cffa335ee|Hitem:20277::::::::40:::::::|h[90 Epic Rogue Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Sunscorched Shell"]={SubType="Quest",Level=1,id=6849,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132835,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6849::::::::40:::::::|h[Sunscorched Shell]|h|r"},["Level 45 Test Gear Leather - Druid"]={SubType="Junk",Level=1,id=13669,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13669::::::::40:::::::|h[Level 45 Test Gear Leather - Druid]|h|r"},["Burnt Cloak"]={SubType="Cloth",Level=8,id=4665,StackCount=1,Rarity=1,MinLevel=3,SellPrice=22,Texture=133763,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:4665::::::::40:::::::|h[Burnt Cloak]|h|r"},["Flame of Darnassus"]={SubType="Quest",Level=1,id=23184,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135824,Link="|cffffffff|Hitem:23184::::::::40:::::::|h[Flame of Darnassus]|h|r",EquipLoc="",Type="Quest"},["Scroll of Spirit IV"]={SubType="Consumable",Level=55,id=10306,StackCount=5,Rarity=1,MinLevel=45,SellPrice=100,Texture=134937,EquipLoc="",Link="|cffffffff|Hitem:10306::::::::40:::::::|h[Scroll of Spirit IV]|h|r",Type="Consumable"},["Pattern: Spitfire Breastplate"]={SubType="Leatherworking",Level=62,id=20508,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134939,Link="|cffffffff|Hitem:20508::::::::40:::::::|h[Pattern: Spitfire Breastplate]|h|r",EquipLoc="",Type="Recipe"},["Sorcerer Mantle"]={SubType="Cloth",Level=41,id=9881,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3464,Texture=135033,Link="|cff1eff00|Hitem:9881::::::::40:::::::|h[Sorcerer Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Necklace of Calisea"]={SubType="Miscellaneous",Level=43,id=1714,StackCount=1,Rarity=3,MinLevel=38,SellPrice=2535,Texture=133297,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:1714::::::::40:::::::|h[Necklace of Calisea]|h|r"},["Darkmoon Dog"]={SubType="Consumable",Level=5,id=19223,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=134022,Link="|cffffffff|Hitem:19223::::::::40:::::::|h[Darkmoon Dog]|h|r",EquipLoc="",Type="Consumable"},["Corpsemaker"]={SubType="Two-Handed Axes",Level=34,id=6687,StackCount=1,Rarity=3,MinLevel=29,SellPrice=9930,Texture=135562,Type="Weapon",Link="|cff0070dd|Hitem:6687::::::::40:::::::|h[Corpsemaker]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Noggle's Satchel"]={SubType="Quest",Level=1,id=20379,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133645,Link="|cffffffff|Hitem:20379::::::::40:::::::|h[Noggle's Satchel]|h|r",EquipLoc="",Type="Quest"},["Wildheart Spaulders"]={SubType="Leather",Level=60,id=16718,StackCount=1,Rarity=3,MinLevel=55,SellPrice=19354,Texture=135032,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16718::::::::40:::::::|h[Wildheart Spaulders]|h|r",Type="Armor"},["Monster - Axe, Doctor Weavil"]={SubType="One-Handed Axes",Level=1,id=21129,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132392,Link="|cff9d9d9d|Hitem:21129::::::::40:::::::|h[Monster - Axe, Doctor Weavil]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Vanadium Talisman"]={SubType="Miscellaneous",Level=50,id=12024,StackCount=1,Rarity=2,MinLevel=45,SellPrice=5396,Texture=133294,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12024::::::::40:::::::|h[Vanadium Talisman]|h|r"},["90 Green Rogue Spaulders"]={SubType="Leather",Level=90,id=20308,StackCount=1,Rarity=2,MinLevel=60,SellPrice=68236,Texture=135038,Link="|cff1eff00|Hitem:20308::::::::40:::::::|h[90 Green Rogue Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Azure Silk Belt"]={SubType="Cloth",Level=35,id=7052,StackCount=1,Rarity=2,MinLevel=30,SellPrice=1488,Texture=132511,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:7052::::::::40:::::::|h[Azure Silk Belt]|h|r"},["Lesser Moonstone"]={SubType="Trade Goods",Level=30,id=1705,StackCount=20,Rarity=2,MinLevel=0,SellPrice=600,Texture=134087,Link="|cff1eff00|Hitem:1705::::::::40:::::::|h[Lesser Moonstone]|h|r",EquipLoc="",Type="Trade Goods"},["Level 60 Test Gear Mail - Shaman"]={SubType="Junk",Level=1,id=13696,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13696::::::::40:::::::|h[Level 60 Test Gear Mail - Shaman]|h|r"},["63 Green Rogue Neck"]={SubType="Miscellaneous",Level=63,id=20319,StackCount=1,Rarity=2,MinLevel=58,SellPrice=15038,Texture=133440,Link="|cff1eff00|Hitem:20319::::::::40:::::::|h[63 Green Rogue Neck]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Blooddrenched Leggings"]={SubType="Leather",Level=71,id=19889,StackCount=1,Rarity=3,MinLevel=60,SellPrice=42099,Texture=134634,Link="|cff0070dd|Hitem:19889::::::::40:::::::|h[Blooddrenched Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Lofty Shoulder Pads"]={SubType="Plate",Level=54,id=14929,StackCount=1,Rarity=2,MinLevel=49,SellPrice=8999,Texture=135059,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14929::::::::40:::::::|h[Lofty Shoulder Pads]|h|r"},["Traveler's Boots"]={SubType="Leather",Level=57,id=8294,StackCount=1,Rarity=2,MinLevel=52,SellPrice=12651,Texture=132535,Link="|cff1eff00|Hitem:8294::::::::40:::::::|h[Traveler's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Smoothbore Gun"]={SubType="Guns",Level=39,id=15322,StackCount=1,Rarity=2,MinLevel=34,SellPrice=7745,Texture=135610,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:15322::::::::40:::::::|h[Smoothbore Gun]|h|r",Type="Weapon"},["Alterac Valley Mark of Honor"]={SubType="Quest",Level=1,id=20560,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=133308,Link="|cff1eff00|Hitem:20560::::::::40:::::::|h[Alterac Valley Mark of Honor]|h|r",EquipLoc="",Type="Quest"},["Pendant of the Sea Lion"]={SubType="Quest",Level=1,id=15885,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133444,EquipLoc="",Link="|cffffffff|Hitem:15885::::::::40:::::::|h[Pendant of the Sea Lion]|h|r",Type="Quest"},["Handstitched Leather Belt"]={SubType="Leather",Level=10,id=4237,StackCount=1,Rarity=1,MinLevel=5,SellPrice=34,Texture=132493,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:4237::::::::40:::::::|h[Handstitched Leather Belt]|h|r"},["Gift of Friendship: Thunder Bluff"]={SubType="Consumable",Level=1,id=22171,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135449,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22171::::::::40:::::::|h[Gift of Friendship: Thunder Bluff]|h|r"},["Lifeless Stone"]={SubType="Junk",Level=1,id=4784,StackCount=5,Rarity=0,MinLevel=0,SellPrice=360,Texture=135236,Link="|cff9d9d9d|Hitem:4784::::::::40:::::::|h[Lifeless Stone]|h|r",EquipLoc="",Type="Miscellaneous"},["Blindweed"]={SubType="Trade Goods",Level=47,id=8839,StackCount=20,Rarity=1,MinLevel=0,SellPrice=375,Texture=134195,Link="|cffffffff|Hitem:8839::::::::40:::::::|h[Blindweed]|h|r",EquipLoc="",Type="Trade Goods"},["Pattern: Sandstalker Gauntlets"]={SubType="Leatherworking",Level=62,id=20510,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134939,Link="|cffffffff|Hitem:20510::::::::40:::::::|h[Pattern: Sandstalker Gauntlets]|h|r",EquipLoc="",Type="Recipe"},["90 Green Rogue Bow"]={SubType="Bows",Level=90,id=20299,StackCount=1,Rarity=2,MinLevel=60,SellPrice=128465,Texture=135492,Link="|cff1eff00|Hitem:20299::::::::40:::::::|h[90 Green Rogue Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Codex of Inner Fire III"]={SubType="Book",Level=30,id=3124,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:3124::::::::40:::::::|h[Codex of Inner Fire III]|h|r"},["Pirate's Footlocker"]={SubType="Junk",Level=45,id=9276,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100,Texture=132596,Link="|cffffffff|Hitem:9276::::::::40:::::::|h[Pirate's Footlocker]|h|r",EquipLoc="",Type="Miscellaneous"},["Recipe: Hot Lion Chops"]={SubType="Cooking",Level=25,id=3735,StackCount=1,Rarity=1,MinLevel=0,SellPrice=450,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:3735::::::::40:::::::|h[Recipe: Hot Lion Chops]|h|r"},["Morlune's Bracer"]={SubType="Plate",Level=61,id=18741,StackCount=1,Rarity=3,MinLevel=56,SellPrice=10416,Texture=132616,Type="Armor",Link="|cff0070dd|Hitem:18741::::::::40:::::::|h[Morlune's Bracer]|h|r",EquipLoc="INVTYPE_WRIST"},["Onyxia Scale Cloak"]={SubType="Cloth",Level=60,id=15138,StackCount=1,Rarity=3,MinLevel=55,SellPrice=15198,Texture=133757,EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:15138::::::::40:::::::|h[Onyxia Scale Cloak]|h|r",Type="Armor"},["Potent Cape"]={SubType="Cloth",Level=46,id=15173,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5387,Texture=133758,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15173::::::::40:::::::|h[Potent Cape]|h|r",Type="Armor"},["Alliance Gift Collection"]={SubType="Junk",Level=1,id=22262,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135449,Link="|cffffffff|Hitem:22262::::::::40:::::::|h[Alliance Gift Collection]|h|r",EquipLoc="",Type="Miscellaneous"},["[PH] Plate Chestguard of the Shining Dawn"]={SubType="Plate",Level=100,id=13773,StackCount=1,Rarity=1,MinLevel=100,SellPrice=67158,Texture=132751,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13773::::::::40:::::::|h[[PH] Plate Chestguard of the Shining Dawn]|h|r"},["90 Green Rogue Tunic"]={SubType="Leather",Level=90,id=20309,StackCount=1,Rarity=2,MinLevel=60,SellPrice=91304,Texture=132722,Link="|cff1eff00|Hitem:20309::::::::40:::::::|h[90 Green Rogue Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["High Warlord's Tome of Destruction"]={SubType="Miscellaneous",Level=78,id=23468,StackCount=1,Rarity=4,MinLevel=60,SellPrice=75452,Texture=133747,Link="|cffa335ee|Hitem:23468::::::::40:::::::|h[High Warlord's Tome of Destruction]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["63 Green Rogue Belt"]={SubType="Leather",Level=63,id=20311,StackCount=1,Rarity=2,MinLevel=58,SellPrice=12316,Texture=132492,Link="|cff1eff00|Hitem:20311::::::::40:::::::|h[63 Green Rogue Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Deprecated Weathered Shoulderpads"]={SubType="Leather",Level=12,id=3459,StackCount=1,Rarity=0,MinLevel=0,SellPrice=61,Texture=135039,Link="|cff9d9d9d|Hitem:3459::::::::40:::::::|h[Deprecated Weathered Shoulderpads]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Formula: Enchant Chest - Greater Stats"]={SubType="Enchanting",Level=62,id=16253,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16253::::::::40:::::::|h[Formula: Enchant Chest - Greater Stats]|h|r",Type="Recipe"},["Sul'thraze the Lasher"]={SubType="Two-Handed Swords",Level=55,id=9372,StackCount=1,Rarity=4,MinLevel=50,SellPrice=61936,Texture=135350,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:9372::::::::40:::::::|h[Sul'thraze the Lasher]|h|r"},["Eagle Eye"]={SubType="Junk",Level=1,id=4591,StackCount=5,Rarity=0,MinLevel=0,SellPrice=413,Texture=133884,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:4591::::::::40:::::::|h[Eagle Eye]|h|r",EquipLoc=""},["Foreman's Head Protector"]={SubType="Plate",Level=55,id=22223,StackCount=1,Rarity=3,MinLevel=50,SellPrice=11291,Texture=133122,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:22223::::::::40:::::::|h[Foreman's Head Protector]|h|r"},["Dirty Leather Boots"]={SubType="Leather",Level=5,id=210,StackCount=1,Rarity=1,MinLevel=1,SellPrice=9,Texture=132540,Link="|cffffffff|Hitem:210::::::::40:::::::|h[Dirty Leather Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Resplendent Gauntlets"]={SubType="Cloth",Level=60,id=14323,StackCount=1,Rarity=2,MinLevel=55,SellPrice=8322,Texture=132937,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14323::::::::40:::::::|h[Resplendent Gauntlets]|h|r"},["Grimoire of Fire Shield (Rank 3)"]={SubType="Book",Level=34,id=16328,StackCount=1,Rarity=1,MinLevel=34,SellPrice=2000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16328::::::::40:::::::|h[Grimoire of Fire Shield (Rank 3)]|h|r",Type="Recipe"},["90 Epic Frost Wand"]={SubType="Wands",Level=90,id=20335,StackCount=1,Rarity=4,MinLevel=60,SellPrice=208038,Texture=135467,Link="|cffa335ee|Hitem:20335::::::::40:::::::|h[90 Epic Frost Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Indurium Flake"]={SubType="Quest",Level=1,id=5797,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134456,EquipLoc="",Link="|cffffffff|Hitem:5797::::::::40:::::::|h[Indurium Flake]|h|r",Type="Quest"},["Mighty Helmet"]={SubType="Leather",Level=62,id=10150,StackCount=1,Rarity=2,MinLevel=57,SellPrice=17254,Texture=133156,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10150::::::::40:::::::|h[Mighty Helmet]|h|r",Type="Armor"},["Sniper Scope"]={SubType="Devices",Level=48,id=10548,StackCount=5,Rarity=1,MinLevel=40,SellPrice=2500,Texture=134441,EquipLoc="",Link="|cffffffff|Hitem:10548::::::::40:::::::|h[Sniper Scope]|h|r",Type="Trade Goods"},["Virtuous Mantle"]={SubType="Cloth",Level=65,id=22082,StackCount=1,Rarity=3,MinLevel=0,SellPrice=19769,Texture=135033,Link="|cff0070dd|Hitem:22082::::::::40:::::::|h[Virtuous Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Headhunter's Cloak"]={SubType="Cloth",Level=32,id=15354,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1600,Texture=133755,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15354::::::::40:::::::|h[Headhunter's Cloak]|h|r",Type="Armor"},["Girdle of the Mentor"]={SubType="Plate",Level=85,id=23219,StackCount=1,Rarity=4,MinLevel=60,SellPrice=44473,Texture=132502,Link="|cffa335ee|Hitem:23219::::::::40:::::::|h[Girdle of the Mentor]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Polished Scale Bracers"]={SubType="Mail",Level=27,id=2150,StackCount=1,Rarity=1,MinLevel=22,SellPrice=586,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:2150::::::::40:::::::|h[Polished Scale Bracers]|h|r"},["Copper Chain Boots"]={SubType="Mail",Level=9,id=3469,StackCount=1,Rarity=1,MinLevel=4,SellPrice=49,Texture=132535,Link="|cffffffff|Hitem:3469::::::::40:::::::|h[Copper Chain Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Highlander's Lamellar Greaves"]={SubType="Plate",Level=63,id=20049,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17995,Texture=132585,Link="|cff0070dd|Hitem:20049::::::::40:::::::|h[Highlander's Lamellar Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Tasty Summer Treat"]={SubType="Consumable",Level=55,id=23175,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133984,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:23175::::::::40:::::::|h[Tasty Summer Treat]|h|r"},["Atiesh, Greatstaff of the Guardian"]={SubType="Staves",Level=90,id=22589,StackCount=1,Rarity=5,MinLevel=60,SellPrice=562016,Texture=135226,Link="|cffff8000|Hitem:22589::::::::40:::::::|h[Atiesh, Greatstaff of the Guardian]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Sack of Spoils"]={SubType="Junk",Level=1,id=20601,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133644,Link="|cffffffff|Hitem:20601::::::::40:::::::|h[Sack of Spoils]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Item, Flower - Red"]={SubType="Miscellaneous",Level=1,id=2706,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133941,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2706::::::::40:::::::|h[Monster - Item, Flower - Red]|h|r"},["Righteous Bracers"]={SubType="Leather",Level=49,id=10069,StackCount=1,Rarity=2,MinLevel=44,SellPrice=5335,Texture=132613,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:10069::::::::40:::::::|h[Righteous Bracers]|h|r",Type="Armor"},["Zulian Stone Axe"]={SubType="Two-Handed Axes",Level=68,id=19900,StackCount=1,Rarity=3,MinLevel=60,SellPrice=87868,Texture=132427,Link="|cff0070dd|Hitem:19900::::::::40:::::::|h[Zulian Stone Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Twilight Cultist Mantle"]={SubType="Cloth",Level=60,id=20406,StackCount=1,Rarity=2,MinLevel=60,SellPrice=1929,Texture=135036,Link="|cff1eff00|Hitem:20406::::::::40:::::::|h[Twilight Cultist Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Red Linen Bandana"]={SubType="Quest",Level=1,id=1019,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133694,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1019::::::::40:::::::|h[Red Linen Bandana]|h|r"},["Blue Ribboned Wrapping Paper"]={SubType="Consumable",Level=5,id=5048,StackCount=10,Rarity=1,MinLevel=0,SellPrice=12,Texture=134147,EquipLoc="",Link="|cffffffff|Hitem:5048::::::::40:::::::|h[Blue Ribboned Wrapping Paper]|h|r",Type="Consumable"},["Mageblood Potion"]={SubType="Consumable",Level=50,id=20007,StackCount=5,Rarity=1,MinLevel=40,SellPrice=1000,Texture=134825,Link="|cffffffff|Hitem:20007::::::::40:::::::|h[Mageblood Potion]|h|r",EquipLoc="",Type="Consumable"},["Grimoire of Curse of the Elements"]={SubType="Book",Level=32,id=9222,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2750,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9222::::::::40:::::::|h[Grimoire of Curse of the Elements]|h|r"},["Document Chest"]={SubType="Junk",Level=1,id=12778,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132762,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:12778::::::::40:::::::|h[Document Chest]|h|r"},["Jagged Star"]={SubType="One-Handed Maces",Level=24,id=15223,StackCount=1,Rarity=2,MinLevel=19,SellPrice=2376,Texture=133045,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:15223::::::::40:::::::|h[Jagged Star]|h|r",Type="Weapon"},["Scroll: Create Crest of Beckoning"]={SubType="Junk",Level=1,id=20518,StackCount=20,Rarity=1,MinLevel=0,SellPrice=500,Texture=134938,Link="|cffffffff|Hitem:20518::::::::40:::::::|h[Scroll: Create Crest of Beckoning]|h|r",EquipLoc="",Type="Miscellaneous"},["Tomes of Alterac"]={SubType="Quest",Level=1,id=3660,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132761,Link="|cffffffff|Hitem:3660::::::::40:::::::|h[Tomes of Alterac]|h|r",EquipLoc="",Type="Quest"},["3500 Test 2h Axe 70 purple"]={SubType="Two-Handed Axes",Level=70,id=19455,StackCount=1,Rarity=4,MinLevel=60,SellPrice=132637,Texture=132392,Link="|cffa335ee|Hitem:19455::::::::40:::::::|h[3500 Test 2h Axe 70 purple]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Test Nature Res Legs Cloth"]={SubType="Cloth",Level=35,id=16118,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2760,Texture=134592,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:16118::::::::40:::::::|h[Test Nature Res Legs Cloth]|h|r",Type="Armor"},["Silkweb Gloves"]={SubType="Cloth",Level=54,id=11634,StackCount=1,Rarity=3,MinLevel=49,SellPrice=7063,Texture=132946,Type="Armor",Link="|cff0070dd|Hitem:11634::::::::40:::::::|h[Silkweb Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Band of the Cultist"]={SubType="Miscellaneous",Level=65,id=20721,StackCount=1,Rarity=3,MinLevel=60,SellPrice=38790,Texture=133369,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:20721::::::::40:::::::|h[Band of the Cultist]|h|r"},["Twilight Cultist Medallion of Station"]={SubType="Junk",Level=1,id=20422,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133281,Link="|cffffffff|Hitem:20422::::::::40:::::::|h[Twilight Cultist Medallion of Station]|h|r",EquipLoc="INVTYPE_NECK",Type="Miscellaneous"},["Primal Hakkari Tabard"]={SubType="Quest",Level=1,id=19722,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=132482,Link="|cffa335ee|Hitem:19722::::::::40:::::::|h[Primal Hakkari Tabard]|h|r",EquipLoc="",Type="Quest"},["Hook Dagger"]={SubType="Daggers",Level=20,id=3184,StackCount=1,Rarity=2,MinLevel=15,SellPrice=1394,Texture=135637,Type="Weapon",Link="|cff1eff00|Hitem:3184::::::::40:::::::|h[Hook Dagger]|h|r",EquipLoc="INVTYPE_WEAPON"},["Level 15 Test Gear Cloth - Mage/Priest/Warlock"]={SubType="Junk",Level=1,id=13642,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13642::::::::40:::::::|h[Level 15 Test Gear Cloth - Mage/Priest/Warlock]|h|r"},["Thallium Hoop"]={SubType="Miscellaneous",Level=39,id=11986,StackCount=1,Rarity=2,MinLevel=34,SellPrice=1745,Texture=133348,Type="Armor",Link="|cff1eff00|Hitem:11986::::::::40:::::::|h[Thallium Hoop]|h|r",EquipLoc="INVTYPE_FINGER"},["Duskwoven Cape"]={SubType="Cloth",Level=49,id=10060,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6667,Texture=133772,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10060::::::::40:::::::|h[Duskwoven Cape]|h|r",Type="Armor"},["Nature's Whisper"]={SubType="Miscellaneous",Level=60,id=20645,StackCount=1,Rarity=2,MinLevel=0,SellPrice=21785,Texture=133288,Link="|cff1eff00|Hitem:20645::::::::40:::::::|h[Nature's Whisper]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Slab of Carrion Worm Meat"]={SubType="Quest",Level=1,id=13853,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134007,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13853::::::::40:::::::|h[Slab of Carrion Worm Meat]|h|r"},["Schematic: Gnomish Universal Remote"]={SubType="Engineering",Level=25,id=7560,StackCount=1,Rarity=1,MinLevel=0,SellPrice=300,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:7560::::::::40:::::::|h[Schematic: Gnomish Universal Remote]|h|r"},["Quarter Staff"]={SubType="Staves",Level=16,id=854,StackCount=1,Rarity=1,MinLevel=11,SellPrice=604,Texture=135154,Type="Weapon",Link="|cffffffff|Hitem:854::::::::40:::::::|h[Quarter Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Wastewalker's Gauntlets"]={SubType="Mail",Level=63,id=20712,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16583,Texture=132945,Link="|cff0070dd|Hitem:20712::::::::40:::::::|h[Wastewalker's Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Bonechill Hammer"]={SubType="One-Handed Maces",Level=62,id=14487,StackCount=1,Rarity=3,MinLevel=57,SellPrice=53222,Texture=133050,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:14487::::::::40:::::::|h[Bonechill Hammer]|h|r"},["Haggard's Hammer"]={SubType="One-Handed Maces",Level=15,id=6983,StackCount=1,Rarity=2,MinLevel=0,SellPrice=685,Texture=133045,Link="|cff1eff00|Hitem:6983::::::::40:::::::|h[Haggard's Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Bear Jaw"]={SubType="Junk",Level=1,id=11408,StackCount=10,Rarity=0,MinLevel=0,SellPrice=898,Texture=133726,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:11408::::::::40:::::::|h[Bear Jaw]|h|r",EquipLoc=""},["White Linen Robe"]={SubType="Cloth",Level=10,id=6241,StackCount=1,Rarity=2,MinLevel=5,SellPrice=99,Texture=132645,Type="Armor",Link="|cff1eff00|Hitem:6241::::::::40:::::::|h[White Linen Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Raptor Heart"]={SubType="Quest",Level=1,id=4513,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,Type="Quest",Link="|cffffffff|Hitem:4513::::::::40:::::::|h[Raptor Heart]|h|r",EquipLoc=""},["Robe of Apprenticeship"]={SubType="Cloth",Level=17,id=2614,StackCount=1,Rarity=1,MinLevel=12,SellPrice=232,Texture=132679,Link="|cffffffff|Hitem:2614::::::::40:::::::|h[Robe of Apprenticeship]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Symbolic Breastplate"]={SubType="Plate",Level=43,id=14821,StackCount=1,Rarity=2,MinLevel=40,SellPrice=5290,Texture=132746,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14821::::::::40:::::::|h[Symbolic Breastplate]|h|r"},["Deathknell Gift Voucher"]={SubType="Quest",Level=1,id=14651,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134140,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14651::::::::40:::::::|h[Deathknell Gift Voucher]|h|r"},["Deep Fried Candybar"]={SubType="Consumable",Level=55,id=19225,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=133983,Link="|cffffffff|Hitem:19225::::::::40:::::::|h[Deep Fried Candybar]|h|r",EquipLoc="",Type="Consumable"},["Spy's Report"]={SubType="Quest",Level=1,id=5917,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:5917::::::::40:::::::|h[Spy's Report]|h|r",EquipLoc="",Type="Quest"},["Lesser Infernal Stone"]={SubType="Quest",Level=1,id=6990,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135230,Type="Quest",Link="|cffffffff|Hitem:6990::::::::40:::::::|h[Lesser Infernal Stone]|h|r",EquipLoc=""},["Enduring Boots"]={SubType="Mail",Level=37,id=14762,StackCount=1,Rarity=2,MinLevel=32,SellPrice=4074,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14762::::::::40:::::::|h[Enduring Boots]|h|r"},["Plated Buckler"]={SubType="Shields",Level=68,id=3991,StackCount=1,Rarity=0,MinLevel=63,SellPrice=15134,Texture=134955,Type="Armor",Link="|cff9d9d9d|Hitem:3991::::::::40:::::::|h[Plated Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Signet of Beckoning: Water"]={SubType="Junk",Level=1,id=20436,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134457,Link="|cffffffff|Hitem:20436::::::::40:::::::|h[Signet of Beckoning: Water]|h|r",EquipLoc="",Type="Miscellaneous"},["Pattern: Runecloth Gloves"]={SubType="Tailoring",Level=55,id=14481,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:14481::::::::40:::::::|h[Pattern: Runecloth Gloves]|h|r"},["Swiftness Potion"]={SubType="Consumable",Level=15,id=2459,StackCount=5,Rarity=1,MinLevel=5,SellPrice=25,Texture=134875,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2459::::::::40:::::::|h[Swiftness Potion]|h|r"},["Tablet of Nature Resistance Totem"]={SubType="Book",Level=30,id=9080,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9080::::::::40:::::::|h[Tablet of Nature Resistance Totem]|h|r"},["Recipe: Baked Salmon"]={SubType="Cooking",Level=55,id=13949,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:13949::::::::40:::::::|h[Recipe: Baked Salmon]|h|r"},["Wrapped Item (PT)"]={SubType="Consumable",Level=0,id=5015,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132907,Link="|cffffffff|Hitem:5015::::::::40:::::::|h[Wrapped Item (PT)]|h|r",EquipLoc="",Type="Consumable"},["White Bone Spear"]={SubType="Polearms",Level=52,id=11864,StackCount=1,Rarity=2,MinLevel=0,SellPrice=34108,Texture=135128,Type="Weapon",Link="|cff1eff00|Hitem:11864::::::::40:::::::|h[White Bone Spear]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Elegant Tunic"]={SubType="Cloth",Level=62,id=10218,StackCount=1,Rarity=2,MinLevel=57,SellPrice=17589,Texture=132649,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10218::::::::40:::::::|h[Elegant Tunic]|h|r",Type="Armor"},["Knight-Captain's Chain Hauberk"]={SubType="Mail",Level=63,id=16425,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16571,Texture=132628,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:16425::::::::40:::::::|h[Knight-Captain's Chain Hauberk]|h|r",Type="Armor"},["The Shaft of Tsol"]={SubType="Quest",Level=1,id=7741,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135225,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7741::::::::40:::::::|h[The Shaft of Tsol]|h|r"},["Small Stone Shard"]={SubType="Quest",Level=1,id=4626,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135233,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:4626::::::::40:::::::|h[Small Stone Shard]|h|r"},["Moonberry Juice"]={SubType="Consumable",Level=45,id=1645,StackCount=20,Rarity=1,MinLevel=35,SellPrice=100,Texture=132789,Type="Consumable",Link="|cffffffff|Hitem:1645::::::::40:::::::|h[Moonberry Juice]|h|r",EquipLoc=""},["Symbolic Gauntlets"]={SubType="Plate",Level=41,id=14826,StackCount=1,Rarity=2,MinLevel=40,SellPrice=2311,Texture=132949,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14826::::::::40:::::::|h[Symbolic Gauntlets]|h|r"},["Formula: Enchant Weapon - Healing Power"]={SubType="Enchanting",Level=60,id=18260,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7500,Texture=134327,Type="Recipe",Link="|cff0070dd|Hitem:18260::::::::40:::::::|h[Formula: Enchant Weapon - Healing Power]|h|r",EquipLoc=""},["Thorium Bracers"]={SubType="Plate",Level=51,id=12408,StackCount=1,Rarity=2,MinLevel=46,SellPrice=4998,Texture=132612,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:12408::::::::40:::::::|h[Thorium Bracers]|h|r"},["The Third Troll Legend"]={SubType="Quest",Level=1,id=2007,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134937,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2007::::::::40:::::::|h[The Third Troll Legend]|h|r"},["Witherbark Coin"]={SubType="Quest",Level=1,id=19703,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=133797,Link="|cff1eff00|Hitem:19703::::::::40:::::::|h[Witherbark Coin]|h|r",EquipLoc="",Type="Quest"},["Dragonstalker's Spaulders"]={SubType="Mail",Level=76,id=16937,StackCount=1,Rarity=4,MinLevel=60,SellPrice=64482,Texture=135041,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16937::::::::40:::::::|h[Dragonstalker's Spaulders]|h|r",Type="Armor"},["Light Mail Gloves"]={SubType="Mail",Level=10,id=2397,StackCount=1,Rarity=1,MinLevel=5,SellPrice=43,Texture=132938,Type="Armor",Link="|cffffffff|Hitem:2397::::::::40:::::::|h[Light Mail Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Firebane Cloak"]={SubType="Cloth",Level=21,id=12979,StackCount=1,Rarity=3,MinLevel=16,SellPrice=617,Texture=133760,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:12979::::::::40:::::::|h[Firebane Cloak]|h|r"},["Field Testing Kit"]={SubType="Quest",Level=1,id=8523,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133632,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:8523::::::::40:::::::|h[Field Testing Kit]|h|r"},["Horn of Hatetalon"]={SubType="Quest",Level=1,id=9530,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134228,Link="|cffffffff|Hitem:9530::::::::40:::::::|h[Horn of Hatetalon]|h|r",EquipLoc="",Type="Quest"},["Nimar's Tribal Headdress"]={SubType="Cloth",Level=37,id=2622,StackCount=1,Rarity=2,MinLevel=32,SellPrice=2603,Texture=133072,Type="Armor",Link="|cff1eff00|Hitem:2622::::::::40:::::::|h[Nimar's Tribal Headdress]|h|r",EquipLoc="INVTYPE_HEAD"},["Scorpashi Venom"]={SubType="Quest",Level=1,id=6248,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134743,Link="|cffffffff|Hitem:6248::::::::40:::::::|h[Scorpashi Venom]|h|r",EquipLoc="",Type="Quest"},["Monster - Dagger, Exotic B01 Green"]={SubType="Daggers",Level=1,id=17282,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135638,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:17282::::::::40:::::::|h[Monster - Dagger, Exotic B01 Green]|h|r",Type="Weapon"},["Clara's Fresh Apple"]={SubType="Quest",Level=1,id=8683,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=133975,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:8683::::::::40:::::::|h[Clara's Fresh Apple]|h|r"},["Knight's Boots"]={SubType="Mail",Level=37,id=7458,StackCount=1,Rarity=2,MinLevel=32,SellPrice=3983,Texture=132535,Link="|cff1eff00|Hitem:7458::::::::40:::::::|h[Knight's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Augural Shroud"]={SubType="Cloth",Level=39,id=2620,StackCount=1,Rarity=2,MinLevel=34,SellPrice=3013,Texture=133756,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:2620::::::::40:::::::|h[Augural Shroud]|h|r"},["Shattered Necklace Topaz"]={SubType="Quest",Level=1,id=7671,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134135,EquipLoc="",Link="|cffffffff|Hitem:7671::::::::40:::::::|h[Shattered Necklace Topaz]|h|r",Type="Quest"},["Scorpashi Wristbands"]={SubType="Leather",Level=44,id=14654,StackCount=1,Rarity=2,MinLevel=39,SellPrice=3931,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14654::::::::40:::::::|h[Scorpashi Wristbands]|h|r"},["Steamsaw"]={SubType="Quest",Level=1,id=17411,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134064,EquipLoc="",Link="|cffffffff|Hitem:17411::::::::40:::::::|h[Steamsaw]|h|r",Type="Quest"},["Blackstone Ring"]={SubType="Miscellaneous",Level=54,id=17713,StackCount=1,Rarity=3,MinLevel=49,SellPrice=14641,Texture=133359,EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:17713::::::::40:::::::|h[Blackstone Ring]|h|r",Type="Armor"},["Tok'kar's Murloc Chopper"]={SubType="Two-Handed Axes",Level=43,id=9679,StackCount=1,Rarity=2,MinLevel=0,SellPrice=17550,Texture=135562,Link="|cff1eff00|Hitem:9679::::::::40:::::::|h[Tok'kar's Murloc Chopper]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Tablet of Flame Shock V"]={SubType="Book",Level=52,id=9151,StackCount=1,Rarity=1,MinLevel=52,SellPrice=10000,Texture=134459,Link="|cffffffff|Hitem:9151::::::::40:::::::|h[Tablet of Flame Shock V]|h|r",EquipLoc="",Type="Recipe"},["Mark of Fordring"]={SubType="Miscellaneous",Level=63,id=15411,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10283,Texture=133440,EquipLoc="INVTYPE_NECK",Link="|cff0070dd|Hitem:15411::::::::40:::::::|h[Mark of Fordring]|h|r",Type="Armor"},["Alabaster Breastplate"]={SubType="Plate",Level=57,id=8312,StackCount=1,Rarity=2,MinLevel=52,SellPrice=14810,Texture=132627,Link="|cff1eff00|Hitem:8312::::::::40:::::::|h[Alabaster Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Yellow Punch Card"]={SubType="Quest",Level=1,id=9280,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133215,EquipLoc="",Link="|cffffffff|Hitem:9280::::::::40:::::::|h[Yellow Punch Card]|h|r",Type="Quest"},["Alterac Ram Hide"]={SubType="Quest",Level=1,id=17642,StackCount=100,Rarity=1,MinLevel=0,SellPrice=0,Texture=134354,EquipLoc="",Link="|cffffffff|Hitem:17642::::::::40:::::::|h[Alterac Ram Hide]|h|r",Type="Quest"},["Tablet of Shock II"]={SubType="Book",Level=12,id=3126,StackCount=1,Rarity=1,MinLevel=12,SellPrice=250,Texture=134459,Type="Recipe",Link="|cffffffff|Hitem:3126::::::::40:::::::|h[Tablet of Shock II]|h|r",EquipLoc=""},["Myrmidon's Bracers"]={SubType="Mail",Level=48,id=8125,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6367,Texture=132602,Link="|cff1eff00|Hitem:8125::::::::40:::::::|h[Myrmidon's Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Pattern: Glacial Vest"]={SubType="Tailoring",Level=80,id=22686,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37500,Texture=134939,Link="|cffffffff|Hitem:22686::::::::40:::::::|h[Pattern: Glacial Vest]|h|r",EquipLoc="",Type="Recipe"},["Filled Tainted Ooze Jar"]={SubType="Quest",Level=1,id=11949,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134857,Type="Quest",Link="|cffffffff|Hitem:11949::::::::40:::::::|h[Filled Tainted Ooze Jar]|h|r",EquipLoc=""},["Bloodspattered Sabatons"]={SubType="Mail",Level=16,id=15489,StackCount=1,Rarity=2,MinLevel=11,SellPrice=363,Texture=132537,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15489::::::::40:::::::|h[Bloodspattered Sabatons]|h|r",Type="Armor"},["Monstrous Crawler Leg"]={SubType="Quest",Level=1,id=6184,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134294,Link="|cffffffff|Hitem:6184::::::::40:::::::|h[Monstrous Crawler Leg]|h|r",EquipLoc="",Type="Quest"},["Plague-Infested Quilboar Mane"]={SubType="Quest",Level=0,id=10650,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134358,EquipLoc="",Link="|cffffffff|Hitem:10650::::::::40:::::::|h[Plague-Infested Quilboar Mane]|h|r",Type="Quest"},["Tactical Assignment"]={SubType="Junk",Level=1,id=20809,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133460,Link="|cffffffff|Hitem:20809::::::::40:::::::|h[Tactical Assignment]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Hot Iron Poker"]={SubType="Miscellaneous",Level=1,id=5532,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135271,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:5532::::::::40:::::::|h[Monster - Hot Iron Poker]|h|r",Type="Weapon"},["Icicle Rod"]={SubType="Staves",Level=25,id=2950,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3476,Texture=135152,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:2950::::::::40:::::::|h[Icicle Rod]|h|r"},["Corruption"]={SubType="Two-Handed Swords",Level=58,id=12782,StackCount=1,Rarity=3,MinLevel=53,SellPrice=56808,Texture=135277,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12782::::::::40:::::::|h[Corruption]|h|r"},["Level 40 Test Gear Mail - Shaman"]={SubType="Junk",Level=1,id=13692,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13692::::::::40:::::::|h[Level 40 Test Gear Mail - Shaman]|h|r"},["Tracker's Leggings"]={SubType="Leather",Level=46,id=9922,StackCount=1,Rarity=2,MinLevel=41,SellPrice=8745,Texture=134594,Link="|cff1eff00|Hitem:9922::::::::40:::::::|h[Tracker's Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Stormpike Insignia Rank 2"]={SubType="Miscellaneous",Level=60,id=17900,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=133429,EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:17900::::::::40:::::::|h[Stormpike Insignia Rank 2]|h|r",Type="Armor"},["Roughshod Pike"]={SubType="Consumable",Level=1,id=12533,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135124,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12533::::::::40:::::::|h[Roughshod Pike]|h|r"},["Battlefell Sabre"]={SubType="One-Handed Swords",Level=62,id=15220,StackCount=1,Rarity=2,MinLevel=57,SellPrice=43493,Texture=135346,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:15220::::::::40:::::::|h[Battlefell Sabre]|h|r",Type="Weapon"},["Magram Hunter's Belt"]={SubType="Leather",Level=42,id=6788,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3331,Texture=132500,Link="|cff1eff00|Hitem:6788::::::::40:::::::|h[Magram Hunter's Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Girdle of Beastial Fury"]={SubType="Leather",Level=55,id=11686,StackCount=1,Rarity=3,MinLevel=50,SellPrice=9329,Texture=132501,Type="Armor",Link="|cff0070dd|Hitem:11686::::::::40:::::::|h[Girdle of Beastial Fury]|h|r",EquipLoc="INVTYPE_WAIST"},["Idol of the Sun"]={SubType="Quest",Level=61,id=20874,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134909,Link="|cff0070dd|Hitem:20874::::::::40:::::::|h[Idol of the Sun]|h|r",EquipLoc="",Type="Quest"},["Sizzle Stick"]={SubType="Wands",Level=23,id=8071,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1534,Texture=135139,Link="|cff1eff00|Hitem:8071::::::::40:::::::|h[Sizzle Stick]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Spiderfang Carapace"]={SubType="Plate",Level=54,id=11633,StackCount=1,Rarity=3,MinLevel=49,SellPrice=14076,Texture=132737,Type="Armor",Link="|cff0070dd|Hitem:11633::::::::40:::::::|h[Spiderfang Carapace]|h|r",EquipLoc="INVTYPE_CHEST"},["White Leather Bag"]={SubType="Bag",Level=15,id=5574,StackCount=1,Rarity=1,MinLevel=0,SellPrice=875,Texture=133627,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:5574::::::::40:::::::|h[White Leather Bag]|h|r"},["Bloodshot Greaves"]={SubType="Mail",Level=54,id=10846,StackCount=1,Rarity=3,MinLevel=49,SellPrice=16143,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:10846::::::::40:::::::|h[Bloodshot Greaves]|h|r",Type="Armor"},["Tunic of Westfall"]={SubType="Leather",Level=24,id=2041,StackCount=1,Rarity=3,MinLevel=0,SellPrice=1412,Texture=132722,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:2041::::::::40:::::::|h[Tunic of Westfall]|h|r"},["Tough Leather Pants"]={SubType="Leather",Level=30,id=1808,StackCount=1,Rarity=0,MinLevel=25,SellPrice=856,Texture=134589,Type="Armor",Link="|cff9d9d9d|Hitem:1808::::::::40:::::::|h[Tough Leather Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Flask of Petrification"]={SubType="Consumable",Level=60,id=13506,StackCount=5,Rarity=1,MinLevel=50,SellPrice=5000,Texture=134806,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13506::::::::40:::::::|h[Flask of Petrification]|h|r"},["Recipe: Roast Raptor"]={SubType="Cooking",Level=35,id=12228,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12228::::::::40:::::::|h[Recipe: Roast Raptor]|h|r"},["Nether Wing"]={SubType="Quest",Level=1,id=6251,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134304,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6251::::::::40:::::::|h[Nether Wing]|h|r"},["Tough Condor Meat"]={SubType="Trade Goods",Level=15,id=1080,StackCount=10,Rarity=1,MinLevel=0,SellPrice=78,Texture=134028,Link="|cffffffff|Hitem:1080::::::::40:::::::|h[Tough Condor Meat]|h|r",EquipLoc="",Type="Trade Goods"},["Light Hunting Bow"]={SubType="Bows",Level=19,id=2780,StackCount=1,Rarity=0,MinLevel=14,SellPrice=374,Texture=135490,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff9d9d9d|Hitem:2780::::::::40:::::::|h[Light Hunting Bow]|h|r"},["Qiraji Bindings of Command"]={SubType="Quest",Level=1,id=20928,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=134880,Link="|cffa335ee|Hitem:20928::::::::40:::::::|h[Qiraji Bindings of Command]|h|r",EquipLoc="",Type="Quest"},["Embossed Leather Gloves"]={SubType="Leather",Level=13,id=4239,StackCount=1,Rarity=1,MinLevel=8,SellPrice=71,Texture=132939,Type="Armor",Link="|cffffffff|Hitem:4239::::::::40:::::::|h[Embossed Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Warleader's Belt"]={SubType="Plate",Level=59,id=14864,StackCount=1,Rarity=2,MinLevel=54,SellPrice=7602,Texture=132511,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14864::::::::40:::::::|h[Warleader's Belt]|h|r"},["Libram: Judgement II"]={SubType="Book",Level=50,id=8935,StackCount=1,Rarity=1,MinLevel=50,SellPrice=8750,Texture=133740,Link="|cffffffff|Hitem:8935::::::::40:::::::|h[Libram: Judgement II]|h|r",EquipLoc="",Type="Recipe"},["Kovork's Rattle"]={SubType="One-Handed Maces",Level=35,id=5256,StackCount=1,Rarity=2,MinLevel=30,SellPrice=7227,Texture=133491,Link="|cff1eff00|Hitem:5256::::::::40:::::::|h[Kovork's Rattle]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Durable Hat"]={SubType="Cloth",Level=32,id=10289,StackCount=1,Rarity=2,MinLevel=27,SellPrice=1557,Texture=133117,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10289::::::::40:::::::|h[Durable Hat]|h|r",Type="Armor"},["Conk Hammer"]={SubType="Two-Handed Maces",Level=48,id=3208,StackCount=1,Rarity=2,MinLevel=43,SellPrice=25378,Texture=133479,Type="Weapon",Link="|cff1eff00|Hitem:3208::::::::40:::::::|h[Conk Hammer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Greenweave Branch"]={SubType="Miscellaneous",Level=27,id=9769,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1637,Texture=135153,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:9769::::::::40:::::::|h[Greenweave Branch]|h|r"},["Mercurial Circlet"]={SubType="Mail",Level=62,id=10160,StackCount=1,Rarity=2,MinLevel=57,SellPrice=19948,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:10160::::::::40:::::::|h[Mercurial Circlet]|h|r",Type="Armor"},["The Velvet Hammer"]={SubType="One-Handed Maces",Level=10,id=2056,StackCount=1,Rarity=0,MinLevel=5,SellPrice=92,Texture=133039,Link="|cff9d9d9d|Hitem:2056::::::::40:::::::|h[The Velvet Hammer]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Large Opal"]={SubType="Trade Goods",Level=55,id=12799,StackCount=20,Rarity=2,MinLevel=0,SellPrice=7000,Texture=134116,Type="Trade Goods",EquipLoc="",Link="|cff1eff00|Hitem:12799::::::::40:::::::|h[Large Opal]|h|r"},["Darkmoon Faire Prize Ticket"]={SubType="Consumable",Level=1,id=19182,StackCount=200,Rarity=1,MinLevel=0,SellPrice=25,Texture=134481,Link="|cffffffff|Hitem:19182::::::::40:::::::|h[Darkmoon Faire Prize Ticket]|h|r",EquipLoc="",Type="Consumable"},["Emerald Dragonfang"]={SubType="Daggers",Level=71,id=20578,StackCount=1,Rarity=4,MinLevel=60,SellPrice=108499,Texture=135658,Link="|cffa335ee|Hitem:20578::::::::40:::::::|h[Emerald Dragonfang]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Monster - Staff, Arugal"]={SubType="Staves",Level=1,id=6322,StackCount=1,Rarity=0,MinLevel=1,SellPrice=4,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:6322::::::::40:::::::|h[Monster - Staff, Arugal]|h|r"},["Primitive Club"]={SubType="One-Handed Maces",Level=5,id=4924,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=133485,Link="|cffffffff|Hitem:4924::::::::40:::::::|h[Primitive Club]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Felhas Ruby"]={SubType="Quest",Level=1,id=12647,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134129,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12647::::::::40:::::::|h[Felhas Ruby]|h|r"},["Foror's Fabled Steed"]={SubType="Junk",Level=60,id=20221,StackCount=1,Rarity=5,MinLevel=60,SellPrice=0,Texture=134154,Type="Miscellaneous",EquipLoc="",Link="|cffff8000|Hitem:20221::::::::40:::::::|h[Foror's Fabled Steed]|h|r"},["Seer's Cuffs"]={SubType="Cloth",Level=17,id=3645,StackCount=1,Rarity=2,MinLevel=12,SellPrice=189,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:3645::::::::40:::::::|h[Seer's Cuffs]|h|r"},["Cabbage Kimchi"]={SubType="Consumable",Level=55,id=21031,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=134019,Link="|cffffffff|Hitem:21031::::::::40:::::::|h[Cabbage Kimchi]|h|r",EquipLoc="",Type="Consumable"},["Deprecated Skeleton Key"]={SubType="Key",Level=1,id=2363,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134237,EquipLoc="",Link="|cffffffff|Hitem:2363::::::::40:::::::|h[Deprecated Skeleton Key]|h|r",Type="Key"},["Gizmotron Megachopper"]={SubType="Two-Handed Swords",Level=29,id=9490,StackCount=1,Rarity=3,MinLevel=24,SellPrice=6121,Texture=135347,Link="|cff0070dd|Hitem:9490::::::::40:::::::|h[Gizmotron Megachopper]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Grimoire of Soul Funnel"]={SubType="Book",Level=12,id=4198,StackCount=1,Rarity=1,MinLevel=12,SellPrice=250,Texture=133738,Link="|cffffffff|Hitem:4198::::::::40:::::::|h[Grimoire of Soul Funnel]|h|r",EquipLoc="",Type="Recipe"},["Grimoire of Soothing Kiss (Rank 1)"]={SubType="Book",Level=22,id=16375,StackCount=1,Rarity=1,MinLevel=22,SellPrice=625,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16375::::::::40:::::::|h[Grimoire of Soothing Kiss (Rank 1)]|h|r",Type="Recipe"},["Codex of Resurrection II"]={SubType="Book",Level=26,id=1657,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:1657::::::::40:::::::|h[Codex of Resurrection II]|h|r"},["Highlander's Epaulets"]={SubType="Cloth",Level=65,id=20061,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25701,Texture=135055,Link="|cffa335ee|Hitem:20061::::::::40:::::::|h[Highlander's Epaulets]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Band of the Fist"]={SubType="Miscellaneous",Level=25,id=17694,StackCount=1,Rarity=2,MinLevel=0,SellPrice=881,Texture=133344,EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:17694::::::::40:::::::|h[Band of the Fist]|h|r",Type="Armor"},["Heavy Dynamite"]={SubType="Explosives",Level=30,id=4378,StackCount=20,Rarity=1,MinLevel=0,SellPrice=350,Texture=133714,Link="|cffffffff|Hitem:4378::::::::40:::::::|h[Heavy Dynamite]|h|r",EquipLoc="",Type="Trade Goods"},["Fist-sized Spinneret"]={SubType="Trade Goods",Level=20,id=878,StackCount=10,Rarity=0,MinLevel=0,SellPrice=56,Texture=134321,Type="Trade Goods",Link="|cff9d9d9d|Hitem:878::::::::40:::::::|h[Fist-sized Spinneret]|h|r",EquipLoc=""},["Narain's Turban"]={SubType="Miscellaneous",Level=1,id=21039,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=133165,Link="|cffffffff|Hitem:21039::::::::40:::::::|h[Narain's Turban]|h|r",EquipLoc="",Type="Armor"},["Libram: Seal of Protection"]={SubType="Book",Level=8,id=4166,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=133740,Link="|cffffffff|Hitem:4166::::::::40:::::::|h[Libram: Seal of Protection]|h|r",EquipLoc="",Type="Recipe"},["Sergeant Major's Silk Cuffs"]={SubType="Cloth",Level=63,id=18456,StackCount=1,Rarity=3,MinLevel=58,SellPrice=5613,Texture=132606,Type="Armor",Link="|cff0070dd|Hitem:18456::::::::40:::::::|h[Sergeant Major's Silk Cuffs]|h|r",EquipLoc="INVTYPE_WRIST"},["Bel'dugur's Note"]={SubType="Quest",Level=1,id=4650,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Quest",Link="|cffffffff|Hitem:4650::::::::40:::::::|h[Bel'dugur's Note]|h|r",EquipLoc=""},["Chunk of Flesh"]={SubType="Junk",Level=15,id=2085,StackCount=5,Rarity=0,MinLevel=0,SellPrice=15,Texture=133972,EquipLoc="",Link="|cff9d9d9d|Hitem:2085::::::::40:::::::|h[Chunk of Flesh]|h|r",Type="Miscellaneous"},["Pattern: Big Voodoo Cloak"]={SubType="Leatherworking",Level=48,id=8390,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:8390::::::::40:::::::|h[Pattern: Big Voodoo Cloak]|h|r"},["zzOLD - QAEnchant Shield +7 Spirit"]={SubType="Consumable",Level=1,id=17890,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17890::::::::40:::::::|h[zzOLD - QAEnchant Shield +7 Spirit]|h|r",Type="Consumable"},["Elementium Ore"]={SubType="Trade Goods",Level=60,id=18562,StackCount=10,Rarity=4,MinLevel=0,SellPrice=100000,Texture=135248,Type="Trade Goods",Link="|cffa335ee|Hitem:18562::::::::40:::::::|h[Elementium Ore]|h|r",EquipLoc=""},["Whirlwind Axe"]={SubType="Two-Handed Axes",Level=40,id=6975,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16766,Texture=132403,Type="Weapon",Link="|cff0070dd|Hitem:6975::::::::40:::::::|h[Whirlwind Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Small Targe"]={SubType="Shields",Level=10,id=1167,StackCount=1,Rarity=1,MinLevel=5,SellPrice=96,Texture=134955,Link="|cffffffff|Hitem:1167::::::::40:::::::|h[Small Targe]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Spring/Summer Evening"]={SubType="Junk",Level=25,id=13848,StackCount=1,Rarity=1,MinLevel=0,SellPrice=375,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13848::::::::40:::::::|h[Spring/Summer Evening]|h|r"},["Cloak of Blight"]={SubType="Cloth",Level=42,id=6832,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3769,Texture=132656,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:6832::::::::40:::::::|h[Cloak of Blight]|h|r"},["Elixir of Poison Resistance"]={SubType="Consumable",Level=55,id=3386,StackCount=5,Rarity=1,MinLevel=14,SellPrice=35,Texture=134743,Type="Consumable",Link="|cffffffff|Hitem:3386::::::::40:::::::|h[Elixir of Poison Resistance]|h|r",EquipLoc=""},["Legionnaire's Sword"]={SubType="One-Handed Swords",Level=63,id=19550,StackCount=1,Rarity=3,MinLevel=58,SellPrice=54922,Texture=135341,Link="|cff0070dd|Hitem:19550::::::::40:::::::|h[Legionnaire's Sword]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Nak's Skull"]={SubType="Quest",Level=1,id=5073,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133732,Link="|cffffffff|Hitem:5073::::::::40:::::::|h[Nak's Skull]|h|r",EquipLoc="",Type="Quest"},["Woestave"]={SubType="Wands",Level=52,id=20082,StackCount=1,Rarity=3,MinLevel=0,SellPrice=24229,Texture=135471,Link="|cff0070dd|Hitem:20082::::::::40:::::::|h[Woestave]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Deprecated Heavy Brass Shoulder"]={SubType="Mail",Level=17,id=4815,StackCount=1,Rarity=0,MinLevel=12,SellPrice=175,Texture=135040,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff9d9d9d|Hitem:4815::::::::40:::::::|h[Deprecated Heavy Brass Shoulder]|h|r"},["Goblin Camera Key"]={SubType="Key",Level=1,id=5937,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134075,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:5937::::::::40:::::::|h[Goblin Camera Key]|h|r"},["Brutish Gauntlets"]={SubType="Plate",Level=45,id=14905,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3217,Texture=132962,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14905::::::::40:::::::|h[Brutish Gauntlets]|h|r"},["Deviate Growth Cap"]={SubType="Leather",Level=72,id=20628,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45535,Texture=133145,Link="|cffa335ee|Hitem:20628::::::::40:::::::|h[Deviate Growth Cap]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Steamed Mandu"]={SubType="Consumable",Level=25,id=16170,StackCount=20,Rarity=1,MinLevel=15,SellPrice=25,Texture=134007,EquipLoc="",Link="|cffffffff|Hitem:16170::::::::40:::::::|h[Steamed Mandu]|h|r",Type="Consumable"},["Alabaster Plate Leggings"]={SubType="Plate",Level=56,id=8318,StackCount=1,Rarity=2,MinLevel=51,SellPrice=12926,Texture=134581,Link="|cff1eff00|Hitem:8318::::::::40:::::::|h[Alabaster Plate Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Mobile Alarm"]={SubType="Devices",Level=41,id=10719,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=132761,EquipLoc="",Link="|cffffffff|Hitem:10719::::::::40:::::::|h[Mobile Alarm]|h|r",Type="Trade Goods"},["Broken Obsidian Club"]={SubType="Junk",Level=1,id=9335,StackCount=5,Rarity=0,MinLevel=0,SellPrice=52,Texture=133476,Link="|cff9d9d9d|Hitem:9335::::::::40:::::::|h[Broken Obsidian Club]|h|r",EquipLoc="",Type="Miscellaneous"},["Jordan's Smithing Hammer"]={SubType="Quest",Level=1,id=6895,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133046,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6895::::::::40:::::::|h[Jordan's Smithing Hammer]|h|r"},["TEST GUN Alliance20 "]={SubType="Guns",Level=52,id=18763,StackCount=1,Rarity=2,MinLevel=47,SellPrice=19966,Texture=135616,Type="Weapon",Link="|cff1eff00|Hitem:18763::::::::40:::::::|h[TEST GUN Alliance20 ]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Boots of Fright"]={SubType="Leather",Level=72,id=20634,StackCount=1,Rarity=4,MinLevel=60,SellPrice=46518,Texture=132542,Link="|cffa335ee|Hitem:20634::::::::40:::::::|h[Boots of Fright]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Silithid Ichor"]={SubType="Junk",Level=1,id=5269,StackCount=5,Rarity=0,MinLevel=0,SellPrice=95,Texture=134437,EquipLoc="",Link="|cff9d9d9d|Hitem:5269::::::::40:::::::|h[Silithid Ichor]|h|r",Type="Miscellaneous"},["Mistwalker Boots"]={SubType="Cloth",Level=50,id=10629,StackCount=1,Rarity=3,MinLevel=45,SellPrice=8066,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:10629::::::::40:::::::|h[Mistwalker Boots]|h|r",Type="Armor"},["Gleaming Claymore"]={SubType="Two-Handed Swords",Level=20,id=15248,StackCount=1,Rarity=2,MinLevel=15,SellPrice=1791,Texture=135324,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15248::::::::40:::::::|h[Gleaming Claymore]|h|r",Type="Weapon"},["Tharg's Shoelace"]={SubType="Leather",Level=43,id=9705,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3586,Texture=132491,Link="|cff1eff00|Hitem:9705::::::::40:::::::|h[Tharg's Shoelace]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Steelscale Crushfish"]={SubType="One-Handed Maces",Level=25,id=6360,StackCount=1,Rarity=2,MinLevel=20,SellPrice=2581,Texture=133890,Type="Weapon",Link="|cff1eff00|Hitem:6360::::::::40:::::::|h[Steelscale Crushfish]|h|r",EquipLoc="INVTYPE_WEAPON"},["Formula: Enchant Boots - Greater Agility"]={SubType="Enchanting",Level=59,id=16245,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16245::::::::40:::::::|h[Formula: Enchant Boots - Greater Agility]|h|r",Type="Recipe"},["Grimoire of Lash of Pain (Rank 4)"]={SubType="Book",Level=44,id=16372,StackCount=1,Rarity=1,MinLevel=44,SellPrice=3000,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16372::::::::40:::::::|h[Grimoire of Lash of Pain (Rank 4)]|h|r",Type="Recipe"},["Remote Detonator (Blue)"]={SubType="Quest",Level=1,id=5693,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132995,Link="|cffffffff|Hitem:5693::::::::40:::::::|h[Remote Detonator (Blue)]|h|r",EquipLoc="",Type="Quest"},["Sleek Feathered Tunic"]={SubType="Leather",Level=10,id=4861,StackCount=1,Rarity=2,MinLevel=5,SellPrice=119,Texture=132715,Link="|cff1eff00|Hitem:4861::::::::40:::::::|h[Sleek Feathered Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Augmented Chain Bracers"]={SubType="Mail",Level=37,id=2421,StackCount=1,Rarity=1,MinLevel=32,SellPrice=1590,Texture=132606,Type="Armor",Link="|cffffffff|Hitem:2421::::::::40:::::::|h[Augmented Chain Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Highland Bow"]={SubType="Bows",Level=51,id=19114,StackCount=1,Rarity=2,MinLevel=0,SellPrice=17887,Texture=135496,Link="|cff1eff00|Hitem:19114::::::::40:::::::|h[Highland Bow]|h|r",EquipLoc="INVTYPE_RANGED",Type="Weapon"},["Deprecated Area Trigger Flag - Darkhollow Mine"]={SubType="Quest",Level=1,id=958,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135005,EquipLoc="",Link="|cffffffff|Hitem:958::::::::40:::::::|h[Deprecated Area Trigger Flag - Darkhollow Mine]|h|r",Type="Quest"},["Pattern: Runic Leather Pants"]={SubType="Leatherworking",Level=60,id=15765,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7500,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:15765::::::::40:::::::|h[Pattern: Runic Leather Pants]|h|r",Type="Recipe"},["Shredder Operating Manual - Page 8"]={SubType="Junk",Level=1,id=16652,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:16652::::::::40:::::::|h[Shredder Operating Manual - Page 8]|h|r",Type="Miscellaneous"},["Desertstalkers's Gauntlets"]={SubType="Mail",Level=63,id=20713,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16647,Texture=132945,Link="|cff0070dd|Hitem:20713::::::::40:::::::|h[Desertstalkers's Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Bright Belt"]={SubType="Cloth",Level=24,id=4708,StackCount=1,Rarity=2,MinLevel=19,SellPrice=461,Texture=132500,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4708::::::::40:::::::|h[Bright Belt]|h|r"},["Earthcalm Orb"]={SubType="Miscellaneous",Level=62,id=21185,StackCount=1,Rarity=4,MinLevel=0,SellPrice=10452,Texture=134125,Link="|cffa335ee|Hitem:21185::::::::40:::::::|h[Earthcalm Orb]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Pattern: Red Linen Robe"]={SubType="Tailoring",Level=10,id=2598,StackCount=1,Rarity=2,MinLevel=0,SellPrice=30,Texture=134942,Type="Recipe",Link="|cff1eff00|Hitem:2598::::::::40:::::::|h[Pattern: Red Linen Robe]|h|r",EquipLoc=""},["Hyena Hide Jerkin"]={SubType="Leather",Level=60,id=18478,StackCount=1,Rarity=2,MinLevel=55,SellPrice=19768,Texture=132721,Type="Armor",Link="|cff1eff00|Hitem:18478::::::::40:::::::|h[Hyena Hide Jerkin]|h|r",EquipLoc="INVTYPE_CHEST"},["Excavation Rod"]={SubType="Wands",Level=30,id=5246,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3490,Texture=135139,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5246::::::::40:::::::|h[Excavation Rod]|h|r",Type="Weapon"},["Runecloth Shoulders"]={SubType="Cloth",Level=61,id=13867,StackCount=1,Rarity=2,MinLevel=56,SellPrice=12570,Texture=135052,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:13867::::::::40:::::::|h[Runecloth Shoulders]|h|r"},["Tome of Blizzard IV"]={SubType="Book",Level=44,id=8857,StackCount=1,Rarity=1,MinLevel=44,SellPrice=6250,Texture=133739,Link="|cffffffff|Hitem:8857::::::::40:::::::|h[Tome of Blizzard IV]|h|r",EquipLoc="",Type="Recipe"},["Monster - Item, Lantern - Square Offhand"]={SubType="Miscellaneous",Level=1,id=13610,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134718,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13610::::::::40:::::::|h[Monster - Item, Lantern - Square Offhand]|h|r"},["Test Enchant Bracer Greater Stamina"]={SubType="Consumable",Level=45,id=16105,StackCount=1,Rarity=1,MinLevel=0,SellPrice=650,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:16105::::::::40:::::::|h[Test Enchant Bracer Greater Stamina]|h|r",Type="Consumable"},["Test Attack Power Chest"]={SubType="Plate",Level=60,id=13711,StackCount=1,Rarity=1,MinLevel=55,SellPrice=9488,Texture=132633,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13711::::::::40:::::::|h[Test Attack Power Chest]|h|r"},["Maiden's Circle"]={SubType="Miscellaneous",Level=61,id=13001,StackCount=1,Rarity=3,MinLevel=55,SellPrice=10648,Texture=133354,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:13001::::::::40:::::::|h[Maiden's Circle]|h|r"},["Glowing Black Orb"]={SubType="Miscellaneous",Level=60,id=20694,StackCount=1,Rarity=2,MinLevel=55,SellPrice=17828,Texture=134336,Link="|cff1eff00|Hitem:20694::::::::40:::::::|h[Glowing Black Orb]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Marble Necklace"]={SubType="Miscellaneous",Level=53,id=12034,StackCount=1,Rarity=2,MinLevel=48,SellPrice=5012,Texture=133294,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12034::::::::40:::::::|h[Marble Necklace]|h|r"},["Jet Chain"]={SubType="Miscellaneous",Level=39,id=12030,StackCount=1,Rarity=2,MinLevel=34,SellPrice=7143,Texture=133293,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12030::::::::40:::::::|h[Jet Chain]|h|r"},["Blood Amber"]={SubType="Quest",Level=0,id=11503,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134085,Type="Quest",Link="|cffffffff|Hitem:11503::::::::40:::::::|h[Blood Amber]|h|r",EquipLoc=""},["Blood Guard's Satin Boots"]={SubType="Cloth",Level=63,id=17616,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8772,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:17616::::::::40:::::::|h[Blood Guard's Satin Boots]|h|r",Type="Armor"},["Grimoire of Sacrifice (Rank 1)"]={SubType="Book",Level=16,id=16351,StackCount=1,Rarity=1,MinLevel=16,SellPrice=300,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16351::::::::40:::::::|h[Grimoire of Sacrifice (Rank 1)]|h|r",Type="Recipe"},["Heavy Lamellar Shield"]={SubType="Shields",Level=55,id=10204,StackCount=1,Rarity=2,MinLevel=50,SellPrice=19888,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:10204::::::::40:::::::|h[Heavy Lamellar Shield]|h|r",Type="Armor"},["Monster - Axe, 2H Battle A03 Red"]={SubType="Two-Handed Axes",Level=1,id=14643,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:14643::::::::40:::::::|h[Monster - Axe, 2H Battle A03 Red]|h|r"},["Plans: Silvered Bronze Leggings"]={SubType="Blacksmithing",Level=31,id=10424,StackCount=1,Rarity=2,MinLevel=0,SellPrice=750,Texture=134942,EquipLoc="",Link="|cff1eff00|Hitem:10424::::::::40:::::::|h[Plans: Silvered Bronze Leggings]|h|r",Type="Recipe"},["Councillor's Shoulders"]={SubType="Cloth",Level=57,id=10100,StackCount=1,Rarity=2,MinLevel=52,SellPrice=11108,Texture=135037,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10100::::::::40:::::::|h[Councillor's Shoulders]|h|r",Type="Armor"},["Leftwitch's Package"]={SubType="Quest",Level=1,id=6253,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132762,Link="|cffffffff|Hitem:6253::::::::40:::::::|h[Leftwitch's Package]|h|r",EquipLoc="",Type="Quest"},["Thorium Helm"]={SubType="Plate",Level=56,id=12410,StackCount=1,Rarity=2,MinLevel=51,SellPrice=10372,Texture=133125,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:12410::::::::40:::::::|h[Thorium Helm]|h|r"},["Polished Scale Gloves"]={SubType="Mail",Level=27,id=2151,StackCount=1,Rarity=1,MinLevel=22,SellPrice=588,Texture=132938,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2151::::::::40:::::::|h[Polished Scale Gloves]|h|r"},["Tarnished Chain Bracers"]={SubType="Mail",Level=5,id=2384,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=132602,Link="|cffffffff|Hitem:2384::::::::40:::::::|h[Tarnished Chain Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Reinforced Chain Boots"]={SubType="Mail",Level=27,id=1755,StackCount=1,Rarity=0,MinLevel=22,SellPrice=597,Texture=132535,Type="Armor",Link="|cff9d9d9d|Hitem:1755::::::::40:::::::|h[Reinforced Chain Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Shimmering Stave"]={SubType="Miscellaneous",Level=25,id=7558,StackCount=1,Rarity=2,MinLevel=20,SellPrice=1609,Texture=135466,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:7558::::::::40:::::::|h[Shimmering Stave]|h|r",Type="Armor"},["Formula: Enchant Gloves - Shadow Power"]={SubType="Enchanting",Level=70,id=20727,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25000,Texture=134327,Link="|cff0070dd|Hitem:20727::::::::40:::::::|h[Formula: Enchant Gloves - Shadow Power]|h|r",EquipLoc="",Type="Recipe"},["Rough Crocolisk Scale"]={SubType="Junk",Level=1,id=3401,StackCount=5,Rarity=0,MinLevel=0,SellPrice=81,Texture=134304,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:3401::::::::40:::::::|h[Rough Crocolisk Scale]|h|r",EquipLoc=""},["Barbaric Belt"]={SubType="Leather",Level=40,id=4264,StackCount=1,Rarity=2,MinLevel=35,SellPrice=2804,Texture=132498,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4264::::::::40:::::::|h[Barbaric Belt]|h|r"},["Pathfinder Shoulder Pads"]={SubType="Leather",Level=31,id=15345,StackCount=1,Rarity=2,MinLevel=26,SellPrice=1894,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15345::::::::40:::::::|h[Pathfinder Shoulder Pads]|h|r",Type="Armor"},["Huge Stone Club"]={SubType="Two-Handed Maces",Level=36,id=1523,StackCount=1,Rarity=2,MinLevel=31,SellPrice=10261,Texture=133489,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:1523::::::::40:::::::|h[Huge Stone Club]|h|r",Type="Weapon"},["Embossed Leather Vest"]={SubType="Leather",Level=12,id=2300,StackCount=1,Rarity=2,MinLevel=7,SellPrice=192,Texture=132724,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:2300::::::::40:::::::|h[Embossed Leather Vest]|h|r"},["Tellurium Band"]={SubType="Miscellaneous",Level=47,id=11988,StackCount=1,Rarity=2,MinLevel=42,SellPrice=7113,Texture=133354,Type="Armor",Link="|cff1eff00|Hitem:11988::::::::40:::::::|h[Tellurium Band]|h|r",EquipLoc="INVTYPE_FINGER"},["Boar Handler Gloves"]={SubType="Mail",Level=5,id=2547,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:2547::::::::40:::::::|h[Boar Handler Gloves]|h|r",Type="Armor"},["Tablet Transcript"]={SubType="Quest",Level=1,id=11470,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134331,Type="Quest",Link="|cffffffff|Hitem:11470::::::::40:::::::|h[Tablet Transcript]|h|r",EquipLoc=""},["Signet Ring of the Bronze Dragonflight"]={SubType="Miscellaneous",Level=60,id=21196,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133382,Link="|cffa335ee|Hitem:21196::::::::40:::::::|h[Signet Ring of the Bronze Dragonflight]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Tome of Fireball VII"]={SubType="Book",Level=36,id=8835,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133739,Link="|cffffffff|Hitem:8835::::::::40:::::::|h[Tome of Fireball VII]|h|r",EquipLoc="",Type="Recipe"},["Shattered Necklace"]={SubType="Quest",Level=37,id=7666,StackCount=1,Rarity=2,MinLevel=37,SellPrice=0,Texture=133289,Link="|cff1eff00|Hitem:7666::::::::40:::::::|h[Shattered Necklace]|h|r",EquipLoc="",Type="Quest"},["Depricated Razor Arrow"]={SubType="Arrow",Level=35,id=3031,StackCount=200,Rarity=1,MinLevel=30,SellPrice=0,Texture=132382,Type="Projectile",EquipLoc="INVTYPE_AMMO",Link="|cffffffff|Hitem:3031::::::::40:::::::|h[Depricated Razor Arrow]|h|r"},["Book of Moonfire IV"]={SubType="Book",Level=22,id=4228,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:4228::::::::40:::::::|h[Book of Moonfire IV]|h|r",Type="Recipe"},["Frostwolf Insignia Rank 6"]={SubType="Miscellaneous",Level=60,id=17909,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=133287,EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:17909::::::::40:::::::|h[Frostwolf Insignia Rank 6]|h|r",Type="Armor"},["Book of Moonfire VIII"]={SubType="Book",Level=46,id=8904,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=133743,Link="|cffffffff|Hitem:8904::::::::40:::::::|h[Book of Moonfire VIII]|h|r",EquipLoc="",Type="Recipe"},["Logistics Task Briefing I"]={SubType="Quest",Level=60,id=20807,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:20807::::::::40:::::::|h[Logistics Task Briefing I]|h|r",EquipLoc="",Type="Quest"},["Recipe: Kaldorei Spider Kabob"]={SubType="Cooking",Level=5,id=5482,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:5482::::::::40:::::::|h[Recipe: Kaldorei Spider Kabob]|h|r",Type="Recipe"},["Worn Axe"]={SubType="One-Handed Axes",Level=2,id=37,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=132402,Type="Weapon",Link="|cffffffff|Hitem:37::::::::40:::::::|h[Worn Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Grimoire of Lash of Pain (Rank 2)"]={SubType="Book",Level=28,id=16368,StackCount=1,Rarity=1,MinLevel=28,SellPrice=1250,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16368::::::::40:::::::|h[Grimoire of Lash of Pain (Rank 2)]|h|r",Type="Recipe"},["Elixir of Ogre's Strength"]={SubType="Consumable",Level=30,id=3391,StackCount=5,Rarity=1,MinLevel=20,SellPrice=20,Texture=134837,EquipLoc="",Link="|cffffffff|Hitem:3391::::::::40:::::::|h[Elixir of Ogre's Strength]|h|r",Type="Consumable"},["Lodestone Hoop"]={SubType="Miscellaneous",Level=46,id=11999,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5538,Texture=133344,Type="Armor",Link="|cff1eff00|Hitem:11999::::::::40:::::::|h[Lodestone Hoop]|h|r",EquipLoc="INVTYPE_FINGER"},["Kovic's Trading Satchel"]={SubType="Junk",Level=50,id=10479,StackCount=1,Rarity=2,MinLevel=0,SellPrice=24,Texture=133629,EquipLoc="",Link="|cff1eff00|Hitem:10479::::::::40:::::::|h[Kovic's Trading Satchel]|h|r",Type="Miscellaneous"},["Iron Bound Trunk"]={SubType="Junk",Level=35,id=21150,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2,Texture=132594,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21150::::::::40:::::::|h[Iron Bound Trunk]|h|r"},["Cozzle's Key"]={SubType="Key",Level=1,id=5851,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134241,Link="|cffffffff|Hitem:5851::::::::40:::::::|h[Cozzle's Key]|h|r",EquipLoc="",Type="Key"},["Tunic of Undead Slaying"]={SubType="Leather",Level=63,id=23089,StackCount=1,Rarity=3,MinLevel=58,SellPrice=28825,Texture=132721,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:23089::::::::40:::::::|h[Tunic of Undead Slaying]|h|r"},["Twisted Sabre"]={SubType="One-Handed Swords",Level=26,id=2011,StackCount=1,Rarity=3,MinLevel=21,SellPrice=3840,Texture=135325,Type="Weapon",Link="|cff0070dd|Hitem:2011::::::::40:::::::|h[Twisted Sabre]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Deadskull Shield"]={SubType="Shields",Level=32,id=3761,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3306,Texture=134947,Link="|cff1eff00|Hitem:3761::::::::40:::::::|h[Deadskull Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Tactical Task Briefing IX"]={SubType="Quest",Level=60,id=20944,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:20944::::::::40:::::::|h[Tactical Task Briefing IX]|h|r",EquipLoc="",Type="Quest"},["Arctic Buckler"]={SubType="Shields",Level=29,id=7002,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3028,Texture=134948,Link="|cff0070dd|Hitem:7002::::::::40:::::::|h[Arctic Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Major Troll's Blood Potion"]={SubType="Consumable",Level=58,id=20004,StackCount=5,Rarity=1,MinLevel=53,SellPrice=1000,Texture=134860,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20004::::::::40:::::::|h[Major Troll's Blood Potion]|h|r"},["Idol of War"]={SubType="Quest",Level=61,id=20882,StackCount=250,Rarity=3,MinLevel=0,SellPrice=0,Texture=134911,Link="|cff0070dd|Hitem:20882::::::::40:::::::|h[Idol of War]|h|r",EquipLoc="",Type="Quest"},["Level 65 Test Gear Leather - Druid"]={SubType="Junk",Level=1,id=13673,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13673::::::::40:::::::|h[Level 65 Test Gear Leather - Druid]|h|r"},["Deprecated Dwarven Novice's Boots"]={SubType="Miscellaneous",Level=1,id=95,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:95::::::::40:::::::|h[Deprecated Dwarven Novice's Boots]|h|r",Type="Armor"},["Hammer of the Titans"]={SubType="Two-Handed Maces",Level=63,id=12796,StackCount=1,Rarity=3,MinLevel=58,SellPrice=70912,Texture=133046,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12796::::::::40:::::::|h[Hammer of the Titans]|h|r"},["Grand Crown"]={SubType="Leather",Level=62,id=15193,StackCount=1,Rarity=2,MinLevel=57,SellPrice=17586,Texture=133074,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15193::::::::40:::::::|h[Grand Crown]|h|r",Type="Armor"},["Meridith's Love Letter"]={SubType="Quest",Level=1,id=21032,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133469,Link="|cffffffff|Hitem:21032::::::::40:::::::|h[Meridith's Love Letter]|h|r",EquipLoc="",Type="Quest"},["Legionnaire's Satin Vestments"]={SubType="Cloth",Level=63,id=17612,StackCount=1,Rarity=3,MinLevel=58,SellPrice=11221,Texture=132716,EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:17612::::::::40:::::::|h[Legionnaire's Satin Vestments]|h|r",Type="Armor"},["Monster - Dagger, Fang Hook Curve"]={SubType="Daggers",Level=1,id=5282,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134298,Link="|cff9d9d9d|Hitem:5282::::::::40:::::::|h[Monster - Dagger, Fang Hook Curve]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Osseous Agitator"]={SubType="Quest",Level=1,id=13357,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136188,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13357::::::::40:::::::|h[Osseous Agitator]|h|r"},["Monster - Item, Bouquet - White & Purple"]={SubType="Miscellaneous",Level=1,id=2708,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133941,Type="Weapon",Link="|cff9d9d9d|Hitem:2708::::::::40:::::::|h[Monster - Item, Bouquet - White & Purple]|h|r",EquipLoc="INVTYPE_WEAPON"},["Plans: Invulnerable Mail"]={SubType="Blacksmithing",Level=63,id=12728,StackCount=1,Rarity=4,MinLevel=0,SellPrice=20000,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffa335ee|Hitem:12728::::::::40:::::::|h[Plans: Invulnerable Mail]|h|r"},["Rock Elemental Shard"]={SubType="Quest",Level=1,id=7848,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134455,Link="|cffffffff|Hitem:7848::::::::40:::::::|h[Rock Elemental Shard]|h|r",EquipLoc="",Type="Quest"},["Councillor's Cloak"]={SubType="Cloth",Level=53,id=10098,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8736,Texture=133769,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:10098::::::::40:::::::|h[Councillor's Cloak]|h|r",Type="Armor"},["Formula: Enchant Bracer - Superior Spirit"]={SubType="Enchanting",Level=54,id=16218,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3500,Texture=134327,EquipLoc="",Link="|cff1eff00|Hitem:16218::::::::40:::::::|h[Formula: Enchant Bracer - Superior Spirit]|h|r",Type="Recipe"},["Fleetfoot Greaves"]={SubType="Mail",Level=53,id=11627,StackCount=1,Rarity=3,MinLevel=48,SellPrice=14668,Texture=132535,Type="Armor",Link="|cff0070dd|Hitem:11627::::::::40:::::::|h[Fleetfoot Greaves]|h|r",EquipLoc="INVTYPE_FEET"},["Dustwind Turban"]={SubType="Cloth",Level=69,id=21472,StackCount=1,Rarity=4,MinLevel=60,SellPrice=30662,Texture=133164,Link="|cffa335ee|Hitem:21472::::::::40:::::::|h[Dustwind Turban]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Compact Harvest Reaper Kit"]={SubType="Devices",Level=35,id=4391,StackCount=5,Rarity=1,MinLevel=30,SellPrice=4000,Texture=133076,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4391::::::::40:::::::|h[Compact Harvest Reaper Kit]|h|r"},["Formula: Enchant Weapon - Agility"]={SubType="Enchanting",Level=58,id=19445,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7500,Texture=134327,Link="|cffffffff|Hitem:19445::::::::40:::::::|h[Formula: Enchant Weapon - Agility]|h|r",EquipLoc="",Type="Recipe"},["Durability Hat"]={SubType="Cloth",Level=1,id=14386,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=133090,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:14386::::::::40:::::::|h[Durability Hat]|h|r"},["Totem of the Storm"]={SubType="Totems",Level=65,id=23199,StackCount=1,Rarity=3,MinLevel=60,SellPrice=18858,Texture=134919,Type="Armor",EquipLoc="INVTYPE_RELIC",Link="|cff0070dd|Hitem:23199::::::::40:::::::|h[Totem of the Storm]|h|r"},["Green Iron Hauberk"]={SubType="Mail",Level=36,id=3844,StackCount=1,Rarity=3,MinLevel=31,SellPrice=5658,Texture=132624,Link="|cff0070dd|Hitem:3844::::::::40:::::::|h[Green Iron Hauberk]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Lunar Vest"]={SubType="Cloth",Level=47,id=14249,StackCount=1,Rarity=2,MinLevel=42,SellPrice=7559,Texture=135017,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14249::::::::40:::::::|h[Lunar Vest]|h|r"},["Tactical Task Briefing V"]={SubType="Quest",Level=60,id=20948,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:20948::::::::40:::::::|h[Tactical Task Briefing V]|h|r",EquipLoc="",Type="Quest"},["Followup Tactical Assignment"]={SubType="Junk",Level=1,id=21133,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133460,Link="|cffffffff|Hitem:21133::::::::40:::::::|h[Followup Tactical Assignment]|h|r",EquipLoc="",Type="Miscellaneous"},["Pattern: Sandstalker Bracers"]={SubType="Leatherworking",Level=62,id=20509,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134939,Link="|cffffffff|Hitem:20509::::::::40:::::::|h[Pattern: Sandstalker Bracers]|h|r",EquipLoc="",Type="Recipe"},["Reedknot Ring"]={SubType="Miscellaneous",Level=35,id=9622,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5665,Texture=132522,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:9622::::::::40:::::::|h[Reedknot Ring]|h|r"},["Dust of Deterioration"]={SubType="Trade Goods",Level=30,id=8924,StackCount=20,Rarity=1,MinLevel=0,SellPrice=25,Texture=133587,Link="|cffffffff|Hitem:8924::::::::40:::::::|h[Dust of Deterioration]|h|r",EquipLoc="",Type="Trade Goods"},["Assassin's Throwing Axe"]={SubType="Thrown",Level=63,id=21135,StackCount=200,Rarity=3,MinLevel=58,SellPrice=1,Texture=135424,Link="|cff0070dd|Hitem:21135::::::::40:::::::|h[Assassin's Throwing Axe]|h|r",EquipLoc="INVTYPE_THROWN",Type="Weapon"},["Nightfall Gloves"]={SubType="Leather",Level=56,id=12114,StackCount=1,Rarity=2,MinLevel=0,SellPrice=8734,Texture=132951,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:12114::::::::40:::::::|h[Nightfall Gloves]|h|r"},["Wormscale Blocker"]={SubType="Shields",Level=81,id=21610,StackCount=1,Rarity=4,MinLevel=60,SellPrice=122759,Texture=134970,Link="|cffa335ee|Hitem:21610::::::::40:::::::|h[Wormscale Blocker]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Deprecated Cowl of Forlorn Spirits"]={SubType="Cloth",Level=30,id=2045,StackCount=1,Rarity=0,MinLevel=0,SellPrice=550,Texture=133074,Link="|cff9d9d9d|Hitem:2045::::::::40:::::::|h[Deprecated Cowl of Forlorn Spirits]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Cutthroat's Boots"]={SubType="Leather",Level=32,id=15131,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2023,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15131::::::::40:::::::|h[Cutthroat's Boots]|h|r",Type="Armor"},["Crypt Stalker Leggings"]={SubType="Leather",Level=61,id=13531,StackCount=1,Rarity=2,MinLevel=56,SellPrice=21191,Texture=134589,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:13531::::::::40:::::::|h[Crypt Stalker Leggings]|h|r"},["Rune of Opening"]={SubType="Quest",Level=1,id=3745,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:3745::::::::40:::::::|h[Rune of Opening]|h|r",EquipLoc="",Type="Quest"},["Trogg Hand Axe"]={SubType="One-Handed Axes",Level=4,id=2054,StackCount=1,Rarity=1,MinLevel=1,SellPrice=16,Texture=132410,Type="Weapon",Link="|cffffffff|Hitem:2054::::::::40:::::::|h[Trogg Hand Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Primitive Walking Stick"]={SubType="Staves",Level=5,id=5778,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30,Texture=135139,Link="|cffffffff|Hitem:5778::::::::40:::::::|h[Primitive Walking Stick]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Disciple's Sash"]={SubType="Cloth",Level=10,id=6513,StackCount=1,Rarity=1,MinLevel=5,SellPrice=28,Texture=132491,Type="Armor",Link="|cffffffff|Hitem:6513::::::::40:::::::|h[Disciple's Sash]|h|r",EquipLoc="INVTYPE_WAIST"},["Festival Dress"]={SubType="Miscellaneous",Level=1,id=21154,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132697,Link="|cffffffff|Hitem:21154::::::::40:::::::|h[Festival Dress]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Worn Hatchet"]={SubType="One-Handed Axes",Level=14,id=1516,StackCount=1,Rarity=0,MinLevel=9,SellPrice=237,Texture=135419,Type="Weapon",Link="|cff9d9d9d|Hitem:1516::::::::40:::::::|h[Worn Hatchet]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Raw Sagefish"]={SubType="Consumable",Level=20,id=21071,StackCount=20,Rarity=1,MinLevel=10,SellPrice=25,Texture=133906,Link="|cffffffff|Hitem:21071::::::::40:::::::|h[Raw Sagefish]|h|r",EquipLoc="",Type="Consumable"},["Speckled Shell Fragment"]={SubType="Junk",Level=1,id=4556,StackCount=5,Rarity=0,MinLevel=0,SellPrice=903,Texture=134309,Link="|cff9d9d9d|Hitem:4556::::::::40:::::::|h[Speckled Shell Fragment]|h|r",EquipLoc="",Type="Miscellaneous"},["Unpopped Darkmist Eye"]={SubType="Quest",Level=1,id=5884,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133884,EquipLoc="",Link="|cffffffff|Hitem:5884::::::::40:::::::|h[Unpopped Darkmist Eye]|h|r",Type="Quest"},["Warlord's Plate Armor"]={SubType="Plate",Level=74,id=16541,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26178,Texture=132751,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16541::::::::40:::::::|h[Warlord's Plate Armor]|h|r",Type="Armor"},["Level 50 Test Gear Leather - Druid"]={SubType="Junk",Level=1,id=13670,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13670::::::::40:::::::|h[Level 50 Test Gear Leather - Druid]|h|r"},["Zandalar Confessor's Bindings"]={SubType="Cloth",Level=61,id=19842,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132497,Link="|cffa335ee|Hitem:19842::::::::40:::::::|h[Zandalar Confessor's Bindings]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Anaya's Pendant"]={SubType="Quest",Level=1,id=5382,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133279,EquipLoc="",Link="|cffffffff|Hitem:5382::::::::40:::::::|h[Anaya's Pendant]|h|r",Type="Quest"},["Braincage"]={SubType="Mail",Level=52,id=12549,StackCount=1,Rarity=3,MinLevel=47,SellPrice=13669,Texture=133078,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:12549::::::::40:::::::|h[Braincage]|h|r"},["Distracting Dagger"]={SubType="Daggers",Level=62,id=18392,StackCount=1,Rarity=3,MinLevel=57,SellPrice=56710,Texture=135641,Type="Weapon",Link="|cff0070dd|Hitem:18392::::::::40:::::::|h[Distracting Dagger]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND"},["Pattern: Dusky Boots"]={SubType="Leatherworking",Level=40,id=7452,StackCount=1,Rarity=3,MinLevel=0,SellPrice=875,Texture=134939,Link="|cff0070dd|Hitem:7452::::::::40:::::::|h[Pattern: Dusky Boots]|h|r",EquipLoc="",Type="Recipe"},["Frost Leather Cloak"]={SubType="Cloth",Level=36,id=7377,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2269,Texture=133756,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:7377::::::::40:::::::|h[Frost Leather Cloak]|h|r"},["Arachnidian Robes"]={SubType="Cloth",Level=57,id=14297,StackCount=1,Rarity=2,MinLevel=52,SellPrice=13556,Texture=132676,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14297::::::::40:::::::|h[Arachnidian Robes]|h|r"},["Striker's Leggings"]={SubType="Mail",Level=81,id=21368,StackCount=1,Rarity=4,MinLevel=60,SellPrice=105630,Texture=134663,Link="|cffa335ee|Hitem:21368::::::::40:::::::|h[Striker's Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Pattern: Felcloth Bag"]={SubType="Tailoring",Level=57,id=21369,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=134939,Link="|cffffffff|Hitem:21369::::::::40:::::::|h[Pattern: Felcloth Bag]|h|r",EquipLoc="",Type="Recipe"},["Spotted Sunfish"]={SubType="Quest",Level=1,id=1467,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133888,Link="|cffffffff|Hitem:1467::::::::40:::::::|h[Spotted Sunfish]|h|r",EquipLoc="",Type="Quest"},["Stormcaller's Footguards"]={SubType="Mail",Level=78,id=21373,StackCount=1,Rarity=4,MinLevel=60,SellPrice=70067,Texture=132550,Link="|cffa335ee|Hitem:21373::::::::40:::::::|h[Stormcaller's Footguards]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Harvest Cloak"]={SubType="Cloth",Level=15,id=4771,StackCount=1,Rarity=2,MinLevel=10,SellPrice=264,Texture=133762,Link="|cff1eff00|Hitem:4771::::::::40:::::::|h[Harvest Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Lethtendris's Web"]={SubType="Quest",Level=1,id=18426,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136113,Type="Quest",Link="|cffffffff|Hitem:18426::::::::40:::::::|h[Lethtendris's Web]|h|r",EquipLoc=""},["Rough Leather Belt"]={SubType="Leather",Level=10,id=1839,StackCount=1,Rarity=1,MinLevel=5,SellPrice=36,Texture=132515,Link="|cffffffff|Hitem:1839::::::::40:::::::|h[Rough Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Cerise Drape"]={SubType="Cloth",Level=56,id=15804,StackCount=1,Rarity=2,MinLevel=0,SellPrice=9574,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15804::::::::40:::::::|h[Cerise Drape]|h|r",Type="Armor"},["D'Sak's Big Sack"]={SubType="Soul Bag",Level=62,id=21194,StackCount=1,Rarity=3,MinLevel=0,SellPrice=40000,Texture=133646,Link="|cff0070dd|Hitem:21194::::::::40:::::::|h[D'Sak's Big Sack]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Dark Iron Pillow"]={SubType="Quest",Level=1,id=18943,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133611,Type="Quest",Link="|cffffffff|Hitem:18943::::::::40:::::::|h[Dark Iron Pillow]|h|r",EquipLoc=""},["Monster - Item, Flower - Rose"]={SubType="Miscellaneous",Level=1,id=2709,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133941,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2709::::::::40:::::::|h[Monster - Item, Flower - Rose]|h|r",Type="Weapon"},["Shaman Voodoo Charm"]={SubType="Quest",Level=0,id=8363,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132502,Link="|cffffffff|Hitem:8363::::::::40:::::::|h[Shaman Voodoo Charm]|h|r",EquipLoc="",Type="Quest"},["Manual: Strong Anti-Venom"]={SubType="First Aid",Level=26,id=6454,StackCount=1,Rarity=2,MinLevel=0,SellPrice=225,Texture=133735,EquipLoc="",Link="|cff1eff00|Hitem:6454::::::::40:::::::|h[Manual: Strong Anti-Venom]|h|r",Type="Recipe"},["Lightning Eel"]={SubType="Reagent",Level=45,id=13757,StackCount=20,Rarity=1,MinLevel=0,SellPrice=10,Texture=133898,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:13757::::::::40:::::::|h[Lightning Eel]|h|r"},["Warmonger's Leggings"]={SubType="Mail",Level=49,id=9964,StackCount=1,Rarity=2,MinLevel=44,SellPrice=13190,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9964::::::::40:::::::|h[Warmonger's Leggings]|h|r"},["Woven Belt"]={SubType="Cloth",Level=10,id=3606,StackCount=1,Rarity=1,MinLevel=5,SellPrice=29,Texture=132513,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:3606::::::::40:::::::|h[Woven Belt]|h|r"},["Cloak of the Gathering Storm"]={SubType="Cloth",Level=67,id=21400,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133768,Link="|cffa335ee|Hitem:21400::::::::40:::::::|h[Cloak of the Gathering Storm]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Opulent Leggings"]={SubType="Cloth",Level=54,id=14283,StackCount=1,Rarity=2,MinLevel=49,SellPrice=11646,Texture=134592,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14283::::::::40:::::::|h[Opulent Leggings]|h|r"},["Refreshing Spring Water"]={SubType="Consumable",Level=5,id=159,StackCount=20,Rarity=1,MinLevel=1,SellPrice=1,Texture=132794,EquipLoc="",Link="|cffffffff|Hitem:159::::::::40:::::::|h[Refreshing Spring Water]|h|r",Type="Consumable"},["Gaze Dreamer Pants"]={SubType="Cloth",Level=28,id=6903,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1549,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:6903::::::::40:::::::|h[Gaze Dreamer Pants]|h|r",Type="Armor"},["[PH] Robe of the Brilliant Dawn"]={SubType="Cloth",Level=100,id=13762,StackCount=1,Rarity=1,MinLevel=100,SellPrice=71339,Texture=132645,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:13762::::::::40:::::::|h[[PH] Robe of the Brilliant Dawn]|h|r"},["Bloodvenom Essence"]={SubType="Junk",Level=1,id=20614,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,Link="|cffffffff|Hitem:20614::::::::40:::::::|h[Bloodvenom Essence]|h|r",EquipLoc="",Type="Miscellaneous"},["Glyphed Crystal Prism"]={SubType="Quest",Level=1,id=20463,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134116,Link="|cffffffff|Hitem:20463::::::::40:::::::|h[Glyphed Crystal Prism]|h|r",EquipLoc="",Type="Quest"},["Bejeweled Legguards"]={SubType="Plate",Level=55,id=11910,StackCount=1,Rarity=2,MinLevel=0,SellPrice=12345,Texture=134584,Type="Armor",Link="|cff1eff00|Hitem:11910::::::::40:::::::|h[Bejeweled Legguards]|h|r",EquipLoc="INVTYPE_LEGS"},["Deprecated Blessed Bracers"]={SubType="Mail",Level=12,id=4773,StackCount=1,Rarity=0,MinLevel=7,SellPrice=47,Texture=132602,Link="|cff9d9d9d|Hitem:4773::::::::40:::::::|h[Deprecated Blessed Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Blood Guard's Leather Grips"]={SubType="Leather",Level=66,id=22864,StackCount=1,Rarity=3,MinLevel=60,SellPrice=8373,Texture=132949,Link="|cff0070dd|Hitem:22864::::::::40:::::::|h[Blood Guard's Leather Grips]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Scorpashi Cape"]={SubType="Cloth",Level=44,id=14656,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4300,Texture=133762,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14656::::::::40:::::::|h[Scorpashi Cape]|h|r"},["Monster - Mace, Hammer Gold Orange"]={SubType="One-Handed Maces",Level=1,id=13312,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133491,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13312::::::::40:::::::|h[Monster - Mace, Hammer Gold Orange]|h|r"},["Helm of the Great Chief"]={SubType="Mail",Level=61,id=12636,StackCount=1,Rarity=3,MinLevel=56,SellPrice=24285,Texture=133126,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:12636::::::::40:::::::|h[Helm of the Great Chief]|h|r"},["The Scepter of the Shifting Sands"]={SubType="Junk",Level=60,id=21175,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133062,Link="|cffffffff|Hitem:21175::::::::40:::::::|h[The Scepter of the Shifting Sands]|h|r",EquipLoc="",Type="Miscellaneous"},["Augmented Chain Leggings"]={SubType="Mail",Level=37,id=2418,StackCount=1,Rarity=1,MinLevel=32,SellPrice=3146,Texture=134583,Link="|cffffffff|Hitem:2418::::::::40:::::::|h[Augmented Chain Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Runed Copper Breastplate"]={SubType="Mail",Level=18,id=2864,StackCount=1,Rarity=2,MinLevel=13,SellPrice=630,Texture=132738,Link="|cff1eff00|Hitem:2864::::::::40:::::::|h[Runed Copper Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Formula: Enchant Cloak - Lesser Agility"]={SubType="Enchanting",Level=45,id=11206,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134327,Type="Recipe",Link="|cff1eff00|Hitem:11206::::::::40:::::::|h[Formula: Enchant Cloak - Lesser Agility]|h|r",EquipLoc=""},["Larval Acid"]={SubType="Reagent",Level=55,id=18512,StackCount=5,Rarity=1,MinLevel=0,SellPrice=4000,Texture=134802,Type="Reagent",Link="|cffffffff|Hitem:18512::::::::40:::::::|h[Larval Acid]|h|r",EquipLoc=""},["Barbed Thorn Necklace"]={SubType="Miscellaneous",Level=56,id=18289,StackCount=1,Rarity=3,MinLevel=51,SellPrice=9701,Texture=133296,Type="Armor",Link="|cff0070dd|Hitem:18289::::::::40:::::::|h[Barbed Thorn Necklace]|h|r",EquipLoc="INVTYPE_NECK"},["Cryptstalker Spaulders"]={SubType="Mail",Level=86,id=22439,StackCount=1,Rarity=4,MinLevel=60,SellPrice=101997,Texture=135045,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:22439::::::::40:::::::|h[Cryptstalker Spaulders]|h|r"},["Deprecated QDROP - Ma'ruk Wyrmscale"]={SubType="Quest",Level=1,id=3624,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Type="Quest",Link="|cffffffff|Hitem:3624::::::::40:::::::|h[Deprecated QDROP - Ma'ruk Wyrmscale]|h|r",EquipLoc=""},["Magnificent Helmet"]={SubType="Mail",Level=61,id=15670,StackCount=1,Rarity=2,MinLevel=56,SellPrice=20455,Texture=133101,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15670::::::::40:::::::|h[Magnificent Helmet]|h|r",Type="Armor"},["Combat Task Briefing V"]={SubType="Quest",Level=60,id=21249,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Link="|cff1eff00|Hitem:21249::::::::40:::::::|h[Combat Task Briefing V]|h|r",EquipLoc="",Type="Quest"},["Monster - Staff, Demon Skull Staff"]={SubType="Staves",Level=1,id=12959,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:12959::::::::40:::::::|h[Monster - Staff, Demon Skull Staff]|h|r"},["Water Elemental Core"]={SubType="Quest",Level=1,id=18958,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135228,Type="Quest",Link="|cffffffff|Hitem:18958::::::::40:::::::|h[Water Elemental Core]|h|r",EquipLoc=""},["Journeyman's Pants"]={SubType="Cloth",Level=10,id=2958,StackCount=1,Rarity=2,MinLevel=5,SellPrice=94,Texture=134590,Link="|cff1eff00|Hitem:2958::::::::40:::::::|h[Journeyman's Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Test Defense Ring +80"]={SubType="Miscellaneous",Level=60,id=20446,StackCount=1,Rarity=3,MinLevel=0,SellPrice=7888,Texture=133368,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:20446::::::::40:::::::|h[Test Defense Ring +80]|h|r"},["Linken's Training Sword"]={SubType="Quest",Level=1,id=11133,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135357,Type="Quest",Link="|cffffffff|Hitem:11133::::::::40:::::::|h[Linken's Training Sword]|h|r",EquipLoc=""},["Captain's Buckler"]={SubType="Shields",Level=44,id=7495,StackCount=1,Rarity=2,MinLevel=39,SellPrice=9558,Texture=134956,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:7495::::::::40:::::::|h[Captain's Buckler]|h|r"},["Hunting Net"]={SubType="Junk",Level=52,id=20084,StackCount=1,Rarity=3,MinLevel=0,SellPrice=0,Texture=134325,Link="|cff0070dd|Hitem:20084::::::::40:::::::|h[Hunting Net]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Miscellaneous"},["Outrider's Plate Legguards"]={SubType="Plate",Level=65,id=22651,StackCount=1,Rarity=4,MinLevel=60,SellPrice=33147,Texture=134696,Link="|cffa335ee|Hitem:22651::::::::40:::::::|h[Outrider's Plate Legguards]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Stylish Black Shirt"]={SubType="Miscellaneous",Level=40,id=3427,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=135022,Type="Armor",EquipLoc="INVTYPE_BODY",Link="|cffffffff|Hitem:3427::::::::40:::::::|h[Stylish Black Shirt]|h|r"},["Monster - Item, Bucket - Metal"]={SubType="Miscellaneous",Level=1,id=13607,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133942,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:13607::::::::40:::::::|h[Monster - Item, Bucket - Metal]|h|r"},["Vital Handwraps"]={SubType="Cloth",Level=34,id=14211,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1325,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14211::::::::40:::::::|h[Vital Handwraps]|h|r"},["Crypt Demon Bracers"]={SubType="Mail",Level=56,id=12112,StackCount=1,Rarity=2,MinLevel=0,SellPrice=10406,Texture=132616,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:12112::::::::40:::::::|h[Crypt Demon Bracers]|h|r"},["Feathered Headdress"]={SubType="Leather",Level=36,id=3011,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2846,Texture=133126,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:3011::::::::40:::::::|h[Feathered Headdress]|h|r"},["Wicked Leather Belt"]={SubType="Leather",Level=60,id=15088,StackCount=1,Rarity=2,MinLevel=55,SellPrice=9901,Texture=132492,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15088::::::::40:::::::|h[Wicked Leather Belt]|h|r",Type="Armor"},["Gut Ripper"]={SubType="Daggers",Level=45,id=2164,StackCount=1,Rarity=4,MinLevel=40,SellPrice=27031,Texture=135311,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:2164::::::::40:::::::|h[Gut Ripper]|h|r"},["Defender Spaulders"]={SubType="Mail",Level=24,id=6579,StackCount=1,Rarity=1,MinLevel=19,SellPrice=667,Texture=135058,Type="Armor",Link="|cffffffff|Hitem:6579::::::::40:::::::|h[Defender Spaulders]|h|r",EquipLoc="INVTYPE_SHOULDER"},["Fast Test Thrown"]={SubType="Thrown",Level=43,id=5559,StackCount=200,Rarity=1,MinLevel=1,SellPrice=1,Texture=135419,Type="Weapon",EquipLoc="INVTYPE_THROWN",Link="|cffffffff|Hitem:5559::::::::40:::::::|h[Fast Test Thrown]|h|r"},["Plans: Dark Iron Leggings"]={SubType="Blacksmithing",Level=60,id=17052,StackCount=1,Rarity=3,MinLevel=0,SellPrice=45000,Texture=134941,EquipLoc="",Link="|cff0070dd|Hitem:17052::::::::40:::::::|h[Plans: Dark Iron Leggings]|h|r",Type="Recipe"},["Arcane Dust"]={SubType="Reagent",Level=42,id=17019,StackCount=20,Rarity=1,MinLevel=0,SellPrice=175,Texture=133849,EquipLoc="",Link="|cffffffff|Hitem:17019::::::::40:::::::|h[Arcane Dust]|h|r",Type="Reagent"},["AHNQIRAJ TEST ITEM A CLOTH HELM"]={SubType="Miscellaneous",Level=1,id=21434,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21434::::::::40:::::::|h[AHNQIRAJ TEST ITEM A CLOTH HELM]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Book of Regrowth VII"]={SubType="Book",Level=48,id=8781,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=133743,Link="|cffffffff|Hitem:8781::::::::40:::::::|h[Book of Regrowth VII]|h|r",EquipLoc="",Type="Recipe"},["Snufflenose Command Stick"]={SubType="Quest",Level=1,id=6684,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135474,Type="Quest",Link="|cffffffff|Hitem:6684::::::::40:::::::|h[Snufflenose Command Stick]|h|r",EquipLoc=""},["Flagongut's Fossil"]={SubType="Quest",Level=1,id=5234,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134434,EquipLoc="",Link="|cffffffff|Hitem:5234::::::::40:::::::|h[Flagongut's Fossil]|h|r",Type="Quest"},["AHNQIRAJ TEST ITEM D PLATE HELM"]={SubType="Miscellaneous",Level=1,id=21439,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21439::::::::40:::::::|h[AHNQIRAJ TEST ITEM D PLATE HELM]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Large Wooden Shield"]={SubType="Shields",Level=5,id=1200,StackCount=1,Rarity=1,MinLevel=1,SellPrice=16,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:1200::::::::40:::::::|h[Large Wooden Shield]|h|r",Type="Armor"},["Tome of Slow II"]={SubType="Book",Level=40,id=4154,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:4154::::::::40:::::::|h[Tome of Slow II]|h|r"},["Councillor's Pants"]={SubType="Cloth",Level=58,id=10101,StackCount=1,Rarity=2,MinLevel=53,SellPrice=15756,Texture=134590,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10101::::::::40:::::::|h[Councillor's Pants]|h|r",Type="Armor"},["Muckrake's Head"]={SubType="Quest",Level=1,id=3551,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,Link="|cffffffff|Hitem:3551::::::::40:::::::|h[Muckrake's Head]|h|r",EquipLoc="",Type="Quest"},["Compact Shotgun"]={SubType="Guns",Level=13,id=4577,StackCount=1,Rarity=2,MinLevel=8,SellPrice=356,Texture=135612,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:4577::::::::40:::::::|h[Compact Shotgun]|h|r",Type="Weapon"},["Tome of Sleep III"]={SubType="Book",Level=40,id=8844,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133739,Link="|cffffffff|Hitem:8844::::::::40:::::::|h[Tome of Sleep III]|h|r",EquipLoc="",Type="Recipe"},["Ironwrought Bracers"]={SubType="Mail",Level=12,id=6177,StackCount=1,Rarity=1,MinLevel=0,SellPrice=69,Texture=132602,Type="Armor",Link="|cffffffff|Hitem:6177::::::::40:::::::|h[Ironwrought Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Broken Elemental Bracer"]={SubType="Junk",Level=1,id=5446,StackCount=20,Rarity=0,MinLevel=0,SellPrice=13,Texture=132606,EquipLoc="",Link="|cff9d9d9d|Hitem:5446::::::::40:::::::|h[Broken Elemental Bracer]|h|r",Type="Miscellaneous"},["Shard of the Flame"]={SubType="Miscellaneous",Level=74,id=17082,StackCount=1,Rarity=4,MinLevel=60,SellPrice=46146,Texture=134337,EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:17082::::::::40:::::::|h[Shard of the Flame]|h|r",Type="Armor"},["Spiced Beef Jerky"]={SubType="Consumable",Level=15,id=19304,StackCount=20,Rarity=1,MinLevel=5,SellPrice=6,Texture=134256,Link="|cffffffff|Hitem:19304::::::::40:::::::|h[Spiced Beef Jerky]|h|r",EquipLoc="",Type="Consumable"},["Collected Dragon Egg"]={SubType="Quest",Level=1,id=12241,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134132,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12241::::::::40:::::::|h[Collected Dragon Egg]|h|r"},["Deprecated Quilted Mantle"]={SubType="Cloth",Level=8,id=3436,StackCount=1,Rarity=1,MinLevel=0,SellPrice=23,Texture=135037,Link="|cffffffff|Hitem:3436::::::::40:::::::|h[Deprecated Quilted Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Lorespinner"]={SubType="Daggers",Level=57,id=18491,StackCount=1,Rarity=3,MinLevel=0,SellPrice=40695,Texture=135657,Type="Weapon",Link="|cff0070dd|Hitem:18491::::::::40:::::::|h[Lorespinner]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Brushwood Blade"]={SubType="Two-Handed Swords",Level=10,id=9602,StackCount=1,Rarity=2,MinLevel=0,SellPrice=301,Texture=135276,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:9602::::::::40:::::::|h[Brushwood Blade]|h|r"},["Egalin's Grimoire"]={SubType="Quest",Level=1,id=6285,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133733,Type="Quest",Link="|cffffffff|Hitem:6285::::::::40:::::::|h[Egalin's Grimoire]|h|r",EquipLoc=""},["Sealed Envelope"]={SubType="Quest",Level=1,id=5735,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133458,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5735::::::::40:::::::|h[Sealed Envelope]|h|r"},["Alterac Signet Ring"]={SubType="Quest",Level=1,id=3505,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133344,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3505::::::::40:::::::|h[Alterac Signet Ring]|h|r"},["Kobold Mining Shovel"]={SubType="Two-Handed Maces",Level=6,id=1195,StackCount=1,Rarity=1,MinLevel=3,SellPrice=47,Texture=134435,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:1195::::::::40:::::::|h[Kobold Mining Shovel]|h|r",Type="Weapon"},["Small Black Pouch"]={SubType="Bag",Level=5,id=5571,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=133635,Link="|cffffffff|Hitem:5571::::::::40:::::::|h[Small Black Pouch]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Codex of Holy Word: Fortitude VI"]={SubType="Book",Level=60,id=9034,StackCount=1,Rarity=1,MinLevel=60,SellPrice=14750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9034::::::::40:::::::|h[Codex of Holy Word: Fortitude VI]|h|r"},["Nori's Mug"]={SubType="Quest",Level=1,id=10440,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132791,EquipLoc="",Link="|cffffffff|Hitem:10440::::::::40:::::::|h[Nori's Mug]|h|r",Type="Quest"},["Ceremonial Leather Bracers"]={SubType="Leather",Level=13,id=3312,StackCount=1,Rarity=1,MinLevel=8,SellPrice=70,Texture=132607,Link="|cffffffff|Hitem:3312::::::::40:::::::|h[Ceremonial Leather Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Tigerstrike Mantle"]={SubType="Cloth",Level=34,id=13108,StackCount=1,Rarity=3,MinLevel=29,SellPrice=2446,Texture=134348,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:13108::::::::40:::::::|h[Tigerstrike Mantle]|h|r"},["Beastwalker Robe"]={SubType="Cloth",Level=34,id=4476,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2734,Texture=132680,Type="Armor",Link="|cff1eff00|Hitem:4476::::::::40:::::::|h[Beastwalker Robe]|h|r",EquipLoc="INVTYPE_ROBE"},["Oscillating Power Hammer"]={SubType="One-Handed Maces",Level=28,id=9488,StackCount=1,Rarity=3,MinLevel=23,SellPrice=4419,Texture=133045,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9488::::::::40:::::::|h[Oscillating Power Hammer]|h|r"},["Explorer's League Lodestar"]={SubType="Miscellaneous",Level=42,id=9627,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2542,Texture=134249,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:9627::::::::40:::::::|h[Explorer's League Lodestar]|h|r"},["Witchwing Talon"]={SubType="Quest",Level=1,id=5064,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136063,EquipLoc="",Link="|cffffffff|Hitem:5064::::::::40:::::::|h[Witchwing Talon]|h|r",Type="Quest"},["Icy Scale Leggings"]={SubType="Mail",Level=80,id=22702,StackCount=1,Rarity=4,MinLevel=0,SellPrice=110409,Texture=134667,Link="|cffa335ee|Hitem:22702::::::::40:::::::|h[Icy Scale Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Heavy Mithril Boots"]={SubType="Plate",Level=47,id=7933,StackCount=1,Rarity=2,MinLevel=42,SellPrice=5769,Texture=132582,Link="|cff1eff00|Hitem:7933::::::::40:::::::|h[Heavy Mithril Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Jadespine Basilisk Scale"]={SubType="Quest",Level=1,id=7680,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134305,Link="|cffffffff|Hitem:7680::::::::40:::::::|h[Jadespine Basilisk Scale]|h|r",EquipLoc="",Type="Quest"},["War Torn Pants"]={SubType="Mail",Level=14,id=15485,StackCount=1,Rarity=2,MinLevel=9,SellPrice=344,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15485::::::::40:::::::|h[War Torn Pants]|h|r",Type="Armor"},["Ghostshroud"]={SubType="Leather",Level=57,id=11925,StackCount=1,Rarity=3,MinLevel=52,SellPrice=16484,Texture=133143,Type="Armor",Link="|cff0070dd|Hitem:11925::::::::40:::::::|h[Ghostshroud]|h|r",EquipLoc="INVTYPE_HEAD"},["Firebeard's Head"]={SubType="Quest",Level=1,id=9246,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9246::::::::40:::::::|h[Firebeard's Head]|h|r"},["Monster - Staff, D01 Flaming Red"]={SubType="Staves",Level=1,id=13069,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135145,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13069::::::::40:::::::|h[Monster - Staff, D01 Flaming Red]|h|r"},["Brown Ram"]={SubType="Junk",Level=40,id=5872,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132248,EquipLoc="",Link="|cff0070dd|Hitem:5872::::::::40:::::::|h[Brown Ram]|h|r",Type="Miscellaneous"},["Gnomish Turban of Psychic Might"]={SubType="Cloth",Level=75,id=21517,StackCount=1,Rarity=4,MinLevel=60,SellPrice=42935,Texture=133165,Link="|cffa335ee|Hitem:21517::::::::40:::::::|h[Gnomish Turban of Psychic Might]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Wicked Chain Waistband"]={SubType="Mail",Level=30,id=15539,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1282,Texture=132515,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15539::::::::40:::::::|h[Wicked Chain Waistband]|h|r",Type="Armor"},["Pattern: Nightscape Shoulders"]={SubType="Leatherworking",Level=42,id=8409,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1000,Texture=134939,Link="|cff1eff00|Hitem:8409::::::::40:::::::|h[Pattern: Nightscape Shoulders]|h|r",EquipLoc="",Type="Recipe"},["Tok'kar's Murloc Basher"]={SubType="Two-Handed Maces",Level=43,id=9678,StackCount=1,Rarity=2,MinLevel=0,SellPrice=17485,Texture=133480,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:9678::::::::40:::::::|h[Tok'kar's Murloc Basher]|h|r"},["Warblade of the Hakkari"]={SubType="One-Handed Swords",Level=68,id=19865,StackCount=1,Rarity=4,MinLevel=60,SellPrice=102760,Texture=135365,Link="|cffa335ee|Hitem:19865::::::::40:::::::|h[Warblade of the Hakkari]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Broken Antler"]={SubType="Junk",Level=1,id=5566,StackCount=5,Rarity=0,MinLevel=0,SellPrice=105,Texture=133721,EquipLoc="",Link="|cff9d9d9d|Hitem:5566::::::::40:::::::|h[Broken Antler]|h|r",Type="Miscellaneous"},["Masterwork Legplates"]={SubType="Mail",Level=64,id=10273,StackCount=1,Rarity=2,MinLevel=59,SellPrice=29323,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:10273::::::::40:::::::|h[Masterwork Legplates]|h|r",Type="Armor"},["Runed Golden Rod"]={SubType="Trade Goods",Level=30,id=11130,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=135147,Type="Trade Goods",Link="|cffffffff|Hitem:11130::::::::40:::::::|h[Runed Golden Rod]|h|r",EquipLoc=""},["High Warlord's Blade"]={SubType="One-Handed Swords",Level=78,id=16345,StackCount=1,Rarity=4,MinLevel=60,SellPrice=49483,Texture=135291,EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:16345::::::::40:::::::|h[High Warlord's Blade]|h|r",Type="Weapon"},["Monster - Claw - Bear Offhand"]={SubType="Fist Weapons",Level=1,id=11505,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=134294,Type="Weapon",Link="|cff9d9d9d|Hitem:11505::::::::40:::::::|h[Monster - Claw - Bear Offhand]|h|r",EquipLoc="INVTYPE_WEAPONOFFHAND"},["29 Pound Salmon"]={SubType="Junk",Level=55,id=13905,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=133888,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13905::::::::40:::::::|h[29 Pound Salmon]|h|r"},["Tablet of Grounding Totem"]={SubType="Book",Level=30,id=9078,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9078::::::::40:::::::|h[Tablet of Grounding Totem]|h|r"},["Dark Phantom Cape"]={SubType="Cloth",Level=55,id=13122,StackCount=1,Rarity=3,MinLevel=50,SellPrice=11489,Texture=133773,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:13122::::::::40:::::::|h[Dark Phantom Cape]|h|r"},["Monster - Shield, Shieldguard"]={SubType="Shields",Level=1,id=21549,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134950,Link="|cff9d9d9d|Hitem:21549::::::::40:::::::|h[Monster - Shield, Shieldguard]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Phytoblade"]={SubType="One-Handed Swords",Level=25,id=2263,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2619,Texture=135321,Link="|cff1eff00|Hitem:2263::::::::40:::::::|h[Phytoblade]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Broodling Essence"]={SubType="Quest",Level=1,id=12283,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134085,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12283::::::::40:::::::|h[Broodling Essence]|h|r"},["Sedge Boots"]={SubType="Leather",Level=63,id=18424,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20595,Texture=132539,Type="Armor",Link="|cff0070dd|Hitem:18424::::::::40:::::::|h[Sedge Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Earthroot"]={SubType="Trade Goods",Level=5,id=2449,StackCount=20,Rarity=1,MinLevel=0,SellPrice=20,Texture=134187,Type="Trade Goods",Link="|cffffffff|Hitem:2449::::::::40:::::::|h[Earthroot]|h|r",EquipLoc=""},["Assassination Note"]={SubType="Quest",Level=23,id=12564,StackCount=1,Rarity=1,MinLevel=23,SellPrice=0,Texture=133473,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12564::::::::40:::::::|h[Assassination Note]|h|r"},["Grand Shoulders"]={SubType="Leather",Level=59,id=15693,StackCount=1,Rarity=2,MinLevel=54,SellPrice=14533,Texture=135055,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:15693::::::::40:::::::|h[Grand Shoulders]|h|r",Type="Armor"},["Southsea Head Bucket"]={SubType="Plate",Level=45,id=20640,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4812,Texture=133122,Link="|cff1eff00|Hitem:20640::::::::40:::::::|h[Southsea Head Bucket]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Supplies for Sven"]={SubType="Quest",Level=1,id=1922,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133629,Type="Quest",Link="|cffffffff|Hitem:1922::::::::40:::::::|h[Supplies for Sven]|h|r",EquipLoc=""},["Ursa's Embrace"]={SubType="Plate",Level=58,id=21322,StackCount=1,Rarity=2,MinLevel=0,SellPrice=15108,Texture=132751,Link="|cff1eff00|Hitem:21322::::::::40:::::::|h[Ursa's Embrace]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Webbed Diemetradon Scale"]={SubType="Quest",Level=1,id=11830,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134318,Type="Quest",Link="|cffffffff|Hitem:11830::::::::40:::::::|h[Webbed Diemetradon Scale]|h|r",EquipLoc=""},["Red Dragonscale Breastplate"]={SubType="Mail",Level=61,id=15047,StackCount=1,Rarity=3,MinLevel=56,SellPrice=29836,Texture=132628,EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:15047::::::::40:::::::|h[Red Dragonscale Breastplate]|h|r",Type="Armor"},["Snapped Spider Limb"]={SubType="Junk",Level=1,id=1476,StackCount=5,Rarity=0,MinLevel=0,SellPrice=6,Texture=134321,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:1476::::::::40:::::::|h[Snapped Spider Limb]|h|r",EquipLoc=""},["Gold Dust"]={SubType="Quest",Level=1,id=773,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133848,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:773::::::::40:::::::|h[Gold Dust]|h|r"},["Book of Faerie Fire"]={SubType="Book",Level=18,id=1328,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=133743,Link="|cffffffff|Hitem:1328::::::::40:::::::|h[Book of Faerie Fire]|h|r",EquipLoc="",Type="Recipe"},["Gavel of Infinite Wisdom"]={SubType="One-Handed Maces",Level=70,id=21410,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133474,Link="|cffa335ee|Hitem:21410::::::::40:::::::|h[Gavel of Infinite Wisdom]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Rough Wooden Staff"]={SubType="Staves",Level=12,id=1515,StackCount=1,Rarity=0,MinLevel=7,SellPrice=196,Texture=135146,Type="Weapon",Link="|cff9d9d9d|Hitem:1515::::::::40:::::::|h[Rough Wooden Staff]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Scorn's Focal Dagger"]={SubType="Daggers",Level=35,id=23168,StackCount=1,Rarity=3,MinLevel=30,SellPrice=2665,Texture=135643,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:23168::::::::40:::::::|h[Scorn's Focal Dagger]|h|r"},["Gyrochronatom"]={SubType="Parts",Level=34,id=4389,StackCount=10,Rarity=1,MinLevel=0,SellPrice=750,Texture=134377,EquipLoc="",Link="|cffffffff|Hitem:4389::::::::40:::::::|h[Gyrochronatom]|h|r",Type="Trade Goods"},["Grimoire of Curse of Recklessness II"]={SubType="Book",Level=26,id=9211,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9211::::::::40:::::::|h[Grimoire of Curse of Recklessness II]|h|r"},["Ring of Infinite Wisdom"]={SubType="Miscellaneous",Level=65,id=21411,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133425,Link="|cffa335ee|Hitem:21411::::::::40:::::::|h[Ring of Infinite Wisdom]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Lieutenant Commander's Silk Spaulders"]={SubType="Cloth",Level=63,id=16415,StackCount=1,Rarity=3,MinLevel=58,SellPrice=8833,Texture=135033,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:16415::::::::40:::::::|h[Lieutenant Commander's Silk Spaulders]|h|r",Type="Armor"},["Staff of Protection"]={SubType="Staves",Level=39,id=12252,StackCount=1,Rarity=2,MinLevel=34,SellPrice=12619,Texture=135144,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:12252::::::::40:::::::|h[Staff of Protection]|h|r"},["Tablet of Unyielding Will II"]={SubType="Book",Level=24,id=4169,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1250,Texture=134459,Link="|cffffffff|Hitem:4169::::::::40:::::::|h[Tablet of Unyielding Will II]|h|r",EquipLoc="",Type="Recipe"},["Enigma Boots"]={SubType="Cloth",Level=78,id=21344,StackCount=1,Rarity=4,MinLevel=60,SellPrice=48453,Texture=132560,Link="|cffa335ee|Hitem:21344::::::::40:::::::|h[Enigma Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Large War Club"]={SubType="Two-Handed Maces",Level=35,id=3782,StackCount=1,Rarity=0,MinLevel=30,SellPrice=3451,Texture=133476,EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:3782::::::::40:::::::|h[Large War Club]|h|r",Type="Weapon"},["Truesilver Shafted Arrow"]={SubType="Junk",Level=1,id=22235,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132382,Link="|cffffffff|Hitem:22235::::::::40:::::::|h[Truesilver Shafted Arrow]|h|r",EquipLoc="",Type="Miscellaneous"},["Hide of Lupos"]={SubType="Cloth",Level=23,id=3018,StackCount=1,Rarity=2,MinLevel=18,SellPrice=781,Texture=134367,Type="Armor",Link="|cff1eff00|Hitem:3018::::::::40:::::::|h[Hide of Lupos]|h|r",EquipLoc="INVTYPE_CLOAK"},["Gaea's Amice"]={SubType="Cloth",Level=48,id=14273,StackCount=1,Rarity=2,MinLevel=43,SellPrice=6374,Texture=135048,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14273::::::::40:::::::|h[Gaea's Amice]|h|r"},["Bloodwoven Boots"]={SubType="Cloth",Level=46,id=14259,StackCount=1,Rarity=2,MinLevel=41,SellPrice=5056,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14259::::::::40:::::::|h[Bloodwoven Boots]|h|r"},["Pillager's Girdle"]={SubType="Mail",Level=33,id=15554,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1853,Texture=132513,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:15554::::::::40:::::::|h[Pillager's Girdle]|h|r",Type="Armor"},["Bard's Bracers"]={SubType="Leather",Level=15,id=6556,StackCount=1,Rarity=2,MinLevel=10,SellPrice=174,Texture=132604,Type="Armor",Link="|cff1eff00|Hitem:6556::::::::40:::::::|h[Bard's Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Judgement Breastplate"]={SubType="Plate",Level=76,id=16958,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58801,Texture=132738,EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:16958::::::::40:::::::|h[Judgement Breastplate]|h|r",Type="Armor"},["Musty Letter"]={SubType="Quest",Level=1,id=6279,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133471,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6279::::::::40:::::::|h[Musty Letter]|h|r"},["Regenerating Belt of Vek'nilash"]={SubType="Leather",Level=81,id=21609,StackCount=1,Rarity=4,MinLevel=60,SellPrice=47782,Texture=132500,Link="|cffa335ee|Hitem:21609::::::::40:::::::|h[Regenerating Belt of Vek'nilash]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Tablet of Ensnaring Totem"]={SubType="Book",Level=16,id=4168,StackCount=1,Rarity=1,MinLevel=16,SellPrice=450,Texture=134459,Link="|cffffffff|Hitem:4168::::::::40:::::::|h[Tablet of Ensnaring Totem]|h|r",EquipLoc="",Type="Recipe"},["AHNQIRAJ TEST ITEM B LEATHER BOOTS"]={SubType="Miscellaneous",Level=1,id=21427,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21427::::::::40:::::::|h[AHNQIRAJ TEST ITEM B LEATHER BOOTS]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Barrage Girdle"]={SubType="Mail",Level=61,id=18721,StackCount=1,Rarity=3,MinLevel=56,SellPrice=14944,Texture=132507,Type="Armor",Link="|cff0070dd|Hitem:18721::::::::40:::::::|h[Barrage Girdle]|h|r",EquipLoc="INVTYPE_WAIST"},["Fang of Bhag'thera"]={SubType="Quest",Level=1,id=3876,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3876::::::::40:::::::|h[Fang of Bhag'thera]|h|r"},["Mechanical Chicken"]={SubType="Junk",Level=40,id=10398,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1000,Texture=135996,EquipLoc="",Link="|cffffffff|Hitem:10398::::::::40:::::::|h[Mechanical Chicken]|h|r",Type="Miscellaneous"},["Belt of Heroism"]={SubType="Plate",Level=65,id=21994,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12476,Texture=132523,Link="|cff0070dd|Hitem:21994::::::::40:::::::|h[Belt of Heroism]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Copper Tube"]={SubType="Parts",Level=10,id=4361,StackCount=10,Rarity=1,MinLevel=0,SellPrice=120,Texture=133025,Type="Trade Goods",Link="|cffffffff|Hitem:4361::::::::40:::::::|h[Copper Tube]|h|r",EquipLoc=""},["Glowing Green Talisman"]={SubType="Miscellaneous",Level=30,id=5002,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1535,Texture=133288,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:5002::::::::40:::::::|h[Glowing Green Talisman]|h|r",Type="Armor"},["Drakefire Amulet (OLD) (UNUSED)"]={SubType="Key",Level=1,id=12186,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134243,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:12186::::::::40:::::::|h[Drakefire Amulet (OLD) (UNUSED)]|h|r"},["Monster - Sword, Short Ornate"]={SubType="One-Handed Swords",Level=1,id=2180,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135277,Type="Weapon",Link="|cff9d9d9d|Hitem:2180::::::::40:::::::|h[Monster - Sword, Short Ornate]|h|r",EquipLoc="INVTYPE_WEAPON"},["Cloak of the Golden Hive"]={SubType="Cloth",Level=78,id=21621,StackCount=1,Rarity=4,MinLevel=60,SellPrice=48118,Texture=133753,Link="|cffa335ee|Hitem:21621::::::::40:::::::|h[Cloak of the Golden Hive]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Sandstorm Boots"]={SubType="Leather",Level=63,id=20714,StackCount=1,Rarity=3,MinLevel=0,SellPrice=20595,Texture=132542,Link="|cff0070dd|Hitem:20714::::::::40:::::::|h[Sandstorm Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Knight-Captain's Silk Cuffs"]={SubType="Cloth",Level=60,id=16370,StackCount=1,Rarity=3,MinLevel=55,SellPrice=4865,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:16370::::::::40:::::::|h[Knight-Captain's Silk Cuffs]|h|r",Type="Armor"},["Hawk Owl"]={SubType="Junk",Level=30,id=8501,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=132150,Link="|cffffffff|Hitem:8501::::::::40:::::::|h[Hawk Owl]|h|r",EquipLoc="",Type="Miscellaneous"},["Schematic: Large Red Rocket"]={SubType="Engineering",Level=35,id=21729,StackCount=1,Rarity=2,MinLevel=0,SellPrice=275,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:21729::::::::40:::::::|h[Schematic: Large Red Rocket]|h|r"},["High Warlord's Pulverizer"]={SubType="Two-Handed Maces",Level=78,id=18868,StackCount=1,Rarity=4,MinLevel=60,SellPrice=62763,Texture=133047,Type="Weapon",Link="|cffa335ee|Hitem:18868::::::::40:::::::|h[High Warlord's Pulverizer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Defender Tunic"]={SubType="Mail",Level=23,id=6580,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1312,Texture=132626,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:6580::::::::40:::::::|h[Defender Tunic]|h|r"},["Band of Vaulted Secrets"]={SubType="Miscellaneous",Level=65,id=21414,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133425,Link="|cffa335ee|Hitem:21414::::::::40:::::::|h[Band of Vaulted Secrets]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Broad Bladed Knife"]={SubType="Daggers",Level=32,id=12247,StackCount=1,Rarity=2,MinLevel=27,SellPrice=5674,Texture=135640,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:12247::::::::40:::::::|h[Broad Bladed Knife]|h|r"},["Horn of the Skeletal Mount"]={SubType="Junk",Level=40,id=8583,StackCount=1,Rarity=1,MinLevel=40,SellPrice=0,Texture=132264,Link="|cffffffff|Hitem:8583::::::::40:::::::|h[Horn of the Skeletal Mount]|h|r",EquipLoc="",Type="Miscellaneous"},["White Leather D03 Breastplate"]={SubType="Leather",Level=1,id=3547,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132715,Type="Armor",Link="|cffffffff|Hitem:3547::::::::40:::::::|h[White Leather D03 Breastplate]|h|r",EquipLoc="INVTYPE_CHEST"},["Belt of the Fang"]={SubType="Leather",Level=21,id=10412,StackCount=1,Rarity=2,MinLevel=16,SellPrice=405,Texture=132519,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10412::::::::40:::::::|h[Belt of the Fang]|h|r",Type="Armor"},["Simple Britches"]={SubType="Cloth",Level=14,id=9747,StackCount=1,Rarity=2,MinLevel=9,SellPrice=227,Texture=134586,Link="|cff1eff00|Hitem:9747::::::::40:::::::|h[Simple Britches]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Rough Copper Vest"]={SubType="Mail",Level=7,id=10421,StackCount=1,Rarity=1,MinLevel=2,SellPrice=32,Texture=132624,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:10421::::::::40:::::::|h[Rough Copper Vest]|h|r",Type="Armor"},["2000 Test sword 63 blue"]={SubType="One-Handed Swords",Level=63,id=21782,StackCount=1,Rarity=3,MinLevel=58,SellPrice=54922,Texture=135637,Link="|cff0070dd|Hitem:21782::::::::40:::::::|h[2000 Test sword 63 blue]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Horn of Awakening"]={SubType="Quest",Level=1,id=13536,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134229,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13536::::::::40:::::::|h[Horn of Awakening]|h|r"},["Wolf Rider's Padded Armor"]={SubType="Leather",Level=46,id=15376,StackCount=1,Rarity=2,MinLevel=41,SellPrice=8653,Texture=132722,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15376::::::::40:::::::|h[Wolf Rider's Padded Armor]|h|r",Type="Armor"},["Winterfall E'ko"]={SubType="Quest",Level=1,id=12431,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135227,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12431::::::::40:::::::|h[Winterfall E'ko]|h|r"},["Nexus Crystal"]={SubType="Trade Goods",Level=60,id=20725,StackCount=20,Rarity=4,MinLevel=0,SellPrice=0,Texture=132880,Link="|cffa335ee|Hitem:20725::::::::40:::::::|h[Nexus Crystal]|h|r",EquipLoc="",Type="Trade Goods"},["Dwarven Kite Shield"]={SubType="Shields",Level=5,id=6176,StackCount=1,Rarity=1,MinLevel=0,SellPrice=15,Texture=134950,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:6176::::::::40:::::::|h[Dwarven Kite Shield]|h|r"},["Thistlefur Robe"]={SubType="Cloth",Level=36,id=14204,StackCount=1,Rarity=2,MinLevel=31,SellPrice=3041,Texture=132661,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14204::::::::40:::::::|h[Thistlefur Robe]|h|r"},["BKP \"Sparrow\" Smallbore"]={SubType="Guns",Level=33,id=3042,StackCount=1,Rarity=2,MinLevel=28,SellPrice=4577,Texture=135610,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:3042::::::::40:::::::|h[BKP \"Sparrow\" Smallbore]|h|r"},["Ice Barbed Spear"]={SubType="Polearms",Level=63,id=19106,StackCount=1,Rarity=3,MinLevel=0,SellPrice=73353,Texture=135127,Link="|cff0070dd|Hitem:19106::::::::40:::::::|h[Ice Barbed Spear]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Ban'thok Sash"]={SubType="Cloth",Level=54,id=11662,StackCount=1,Rarity=3,MinLevel=49,SellPrice=7462,Texture=132518,Type="Armor",Link="|cff0070dd|Hitem:11662::::::::40:::::::|h[Ban'thok Sash]|h|r",EquipLoc="INVTYPE_WAIST"},["Highborne Gloves"]={SubType="Cloth",Level=53,id=14451,StackCount=1,Rarity=2,MinLevel=48,SellPrice=5536,Texture=132951,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14451::::::::40:::::::|h[Highborne Gloves]|h|r"},["Gloves of the Messiah"]={SubType="Cloth",Level=78,id=21619,StackCount=1,Rarity=4,MinLevel=60,SellPrice=31846,Texture=132951,Link="|cffa335ee|Hitem:21619::::::::40:::::::|h[Gloves of the Messiah]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Oilrag Handwraps"]={SubType="Leather",Level=31,id=16741,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1178,Texture=132946,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:16741::::::::40:::::::|h[Oilrag Handwraps]|h|r",Type="Armor"},["Twain Component Test"]={SubType="Miscellaneous",Level=20,id=6896,StackCount=1,Rarity=0,MinLevel=15,SellPrice=1,Texture=135736,Type="Weapon",Link="|cff9d9d9d|Hitem:6896::::::::40:::::::|h[Twain Component Test]|h|r",EquipLoc="INVTYPE_HAND"},["Serpent Gloves"]={SubType="Cloth",Level=23,id=5970,StackCount=1,Rarity=2,MinLevel=18,SellPrice=418,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:5970::::::::40:::::::|h[Serpent Gloves]|h|r",Type="Armor"},["Deprecated Torn Leather Harness"]={SubType="Leather",Level=34,id=1999,StackCount=1,Rarity=0,MinLevel=29,SellPrice=1279,Texture=135006,Type="Armor",Link="|cff9d9d9d|Hitem:1999::::::::40:::::::|h[Deprecated Torn Leather Harness]|h|r",EquipLoc="INVTYPE_CHEST"},["Jangdor's Handcrafted Boots"]={SubType="Leather",Level=45,id=9633,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5847,Texture=132539,Link="|cff1eff00|Hitem:9633::::::::40:::::::|h[Jangdor's Handcrafted Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Pillager's Boots"]={SubType="Mail",Level=33,id=15555,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2802,Texture=132592,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15555::::::::40:::::::|h[Pillager's Boots]|h|r",Type="Armor"},["Festival Suit"]={SubType="Miscellaneous",Level=1,id=21542,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132696,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:21542::::::::40:::::::|h[Festival Suit]|h|r"},["Ragnaros Core"]={SubType="Miscellaneous",Level=65,id=17982,StackCount=1,Rarity=3,MinLevel=60,SellPrice=23961,Texture=133367,EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:17982::::::::40:::::::|h[Ragnaros Core]|h|r",Type="Armor"},["Caliph Scorpidsting's Head"]={SubType="Quest",Level=1,id=8723,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134166,Link="|cffffffff|Hitem:8723::::::::40:::::::|h[Caliph Scorpidsting's Head]|h|r",EquipLoc="",Type="Quest"},["Tome of Fire Blast VII"]={SubType="Book",Level=54,id=8878,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133739,Link="|cffffffff|Hitem:8878::::::::40:::::::|h[Tome of Fire Blast VII]|h|r",EquipLoc="",Type="Recipe"},["Plate Helmet D1 (Test)"]={SubType="Leather",Level=1,id=1025,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=133071,EquipLoc="INVTYPE_HEAD",Link="|cffffffff|Hitem:1025::::::::40:::::::|h[Plate Helmet D1 (Test)]|h|r",Type="Armor"},["Cutthroat's Buckler"]={SubType="Shields",Level=33,id=15133,StackCount=1,Rarity=2,MinLevel=28,SellPrice=3826,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15133::::::::40:::::::|h[Cutthroat's Buckler]|h|r",Type="Armor"},["Scouting Trousers"]={SubType="Leather",Level=24,id=6587,StackCount=1,Rarity=2,MinLevel=19,SellPrice=1146,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:6587::::::::40:::::::|h[Scouting Trousers]|h|r"},["Qiraji Ornate Hilt"]={SubType="Quest",Level=1,id=20890,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=134885,Link="|cffa335ee|Hitem:20890::::::::40:::::::|h[Qiraji Ornate Hilt]|h|r",EquipLoc="",Type="Quest"},["Colossus of Zora's Husk"]={SubType="Quest",Level=1,id=21533,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134311,Link="|cffffffff|Hitem:21533::::::::40:::::::|h[Colossus of Zora's Husk]|h|r",EquipLoc="",Type="Quest"},["Monster - Sword, Horde Jagged w/ Bolts"]={SubType="One-Handed Swords",Level=1,id=11042,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135325,Type="Weapon",Link="|cff9d9d9d|Hitem:11042::::::::40:::::::|h[Monster - Sword, Horde Jagged w/ Bolts]|h|r",EquipLoc="INVTYPE_WEAPON"},["Pattern: Big Voodoo Robe"]={SubType="Leatherworking",Level=43,id=8386,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1000,Texture=134942,Link="|cff1eff00|Hitem:8386::::::::40:::::::|h[Pattern: Big Voodoo Robe]|h|r",EquipLoc="",Type="Recipe"},["[PH] Rising Dawn Mitts"]={SubType="Leather",Level=1,id=13732,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132957,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:13732::::::::40:::::::|h[[PH] Rising Dawn Mitts]|h|r"},["Woven Vest"]={SubType="Cloth",Level=10,id=2364,StackCount=1,Rarity=1,MinLevel=5,SellPrice=59,Texture=135011,Type="Armor",Link="|cffffffff|Hitem:2364::::::::40:::::::|h[Woven Vest]|h|r",EquipLoc="INVTYPE_CHEST"},["Hakkari Urn"]={SubType="Junk",Level=1,id=10773,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=132594,EquipLoc="",Link="|cff1eff00|Hitem:10773::::::::40:::::::|h[Hakkari Urn]|h|r",Type="Miscellaneous"},["Grimoire of Consume Shadows (Rank 4)"]={SubType="Book",Level=42,id=16360,StackCount=1,Rarity=1,MinLevel=42,SellPrice=2750,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16360::::::::40:::::::|h[Grimoire of Consume Shadows (Rank 4)]|h|r",Type="Recipe"},["Brightspark Gloves"]={SubType="Cloth",Level=60,id=18387,StackCount=1,Rarity=3,MinLevel=55,SellPrice=9488,Texture=132950,Type="Armor",Link="|cff0070dd|Hitem:18387::::::::40:::::::|h[Brightspark Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Striped Yellowtail"]={SubType="Consumable",Level=45,id=21552,StackCount=20,Rarity=1,MinLevel=35,SellPrice=5,Texture=133887,Link="|cffffffff|Hitem:21552::::::::40:::::::|h[Striped Yellowtail]|h|r",EquipLoc="",Type="Consumable"},["Woven Pants"]={SubType="Cloth",Level=10,id=2366,StackCount=1,Rarity=1,MinLevel=5,SellPrice=59,Texture=134586,Type="Armor",Link="|cffffffff|Hitem:2366::::::::40:::::::|h[Woven Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["Brock's List"]={SubType="Quest",Level=1,id=16310,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133468,EquipLoc="",Link="|cffffffff|Hitem:16310::::::::40:::::::|h[Brock's List]|h|r",Type="Quest"},["Watcher's Jerkin"]={SubType="Cloth",Level=30,id=14180,StackCount=1,Rarity=2,MinLevel=25,SellPrice=1870,Texture=135010,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14180::::::::40:::::::|h[Watcher's Jerkin]|h|r"},["Wolf Rider's Wristbands"]={SubType="Leather",Level=42,id=15377,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3191,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15377::::::::40:::::::|h[Wolf Rider's Wristbands]|h|r",Type="Armor"},["2600 Test 2h Axe 63 blue"]={SubType="Two-Handed Axes",Level=63,id=19192,StackCount=1,Rarity=3,MinLevel=58,SellPrice=68652,Texture=132392,Link="|cff0070dd|Hitem:19192::::::::40:::::::|h[2600 Test 2h Axe 63 blue]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Fiery Chain Girdle"]={SubType="Mail",Level=59,id=16989,StackCount=1,Rarity=4,MinLevel=54,SellPrice=18610,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:16989::::::::40:::::::|h[Fiery Chain Girdle]|h|r",Type="Armor"},["Greenweave Robe"]={SubType="Cloth",Level=27,id=9773,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1369,Texture=132656,Link="|cff1eff00|Hitem:9773::::::::40:::::::|h[Greenweave Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Crawler Mucus"]={SubType="Quest",Level=1,id=4888,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134799,EquipLoc="",Link="|cffffffff|Hitem:4888::::::::40:::::::|h[Crawler Mucus]|h|r",Type="Quest"},["Shroud of the Exile"]={SubType="Cloth",Level=63,id=15421,StackCount=1,Rarity=3,MinLevel=0,SellPrice=17855,Texture=133759,EquipLoc="INVTYPE_CLOAK",Link="|cff0070dd|Hitem:15421::::::::40:::::::|h[Shroud of the Exile]|h|r",Type="Armor"},["Conjured Muffin"]={SubType="Consumable",Level=5,id=5349,StackCount=20,Rarity=1,MinLevel=1,SellPrice=0,Texture=133952,EquipLoc="",Link="|cffffffff|Hitem:5349::::::::40:::::::|h[Conjured Muffin]|h|r",Type="Consumable"},["Mark of Remulos"]={SubType="Quest",Level=1,id=21515,StackCount=20,Rarity=2,MinLevel=0,SellPrice=0,Texture=133301,Link="|cff1eff00|Hitem:21515::::::::40:::::::|h[Mark of Remulos]|h|r",EquipLoc="",Type="Quest"},["Monster - Sword, Long Basic"]={SubType="One-Handed Swords",Level=1,id=1899,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135274,Link="|cff9d9d9d|Hitem:1899::::::::40:::::::|h[Monster - Sword, Long Basic]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Libram: Redemption"]={SubType="Book",Level=40,id=5685,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133740,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:5685::::::::40:::::::|h[Libram: Redemption]|h|r"},["Barbaric Battle Axe"]={SubType="Two-Handed Axes",Level=18,id=3195,StackCount=1,Rarity=2,MinLevel=13,SellPrice=1372,Texture=132401,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:3195::::::::40:::::::|h[Barbaric Battle Axe]|h|r",Type="Weapon"},["Tablet of Stoneskin Totem II"]={SubType="Book",Level=14,id=9052,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9052::::::::40:::::::|h[Tablet of Stoneskin Totem II]|h|r"},["Ring of Binding"]={SubType="Miscellaneous",Level=73,id=18813,StackCount=1,Rarity=4,MinLevel=60,SellPrice=89103,Texture=133355,Type="Armor",Link="|cffa335ee|Hitem:18813::::::::40:::::::|h[Ring of Binding]|h|r",EquipLoc="INVTYPE_FINGER"},["Gloves of the Swarm"]={SubType="Plate",Level=68,id=21486,StackCount=1,Rarity=4,MinLevel=60,SellPrice=19033,Texture=132964,Link="|cffa335ee|Hitem:21486::::::::40:::::::|h[Gloves of the Swarm]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Masterwork Shield"]={SubType="Shields",Level=65,id=10271,StackCount=1,Rarity=2,MinLevel=60,SellPrice=32592,Texture=134948,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:10271::::::::40:::::::|h[Masterwork Shield]|h|r",Type="Armor"},["Spectral Comb"]={SubType="Quest",Level=1,id=1453,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133800,Type="Quest",Link="|cffffffff|Hitem:1453::::::::40:::::::|h[Spectral Comb]|h|r",EquipLoc=""},["Rejuvenating Gem"]={SubType="Miscellaneous",Level=75,id=19395,StackCount=1,Rarity=4,MinLevel=60,SellPrice=103103,Texture=134136,Link="|cffa335ee|Hitem:19395::::::::40:::::::|h[Rejuvenating Gem]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Resilient Robe"]={SubType="Cloth",Level=33,id=14405,StackCount=1,Rarity=2,MinLevel=28,SellPrice=2480,Texture=132681,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14405::::::::40:::::::|h[Resilient Robe]|h|r"},["Fierce Mauler"]={SubType="Two-Handed Maces",Level=61,id=15266,StackCount=1,Rarity=2,MinLevel=56,SellPrice=54405,Texture=133045,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:15266::::::::40:::::::|h[Fierce Mauler]|h|r",Type="Weapon"},["Coarse Dynamite"]={SubType="Explosives",Level=20,id=4365,StackCount=20,Rarity=1,MinLevel=0,SellPrice=75,Texture=133714,EquipLoc="",Link="|cffffffff|Hitem:4365::::::::40:::::::|h[Coarse Dynamite]|h|r",Type="Trade Goods"},["Primal Hakkari Stanchion"]={SubType="Quest",Level=1,id=19718,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=132613,Link="|cffa335ee|Hitem:19718::::::::40:::::::|h[Primal Hakkari Stanchion]|h|r",EquipLoc="",Type="Quest"},["Eternal Bindings"]={SubType="Cloth",Level=61,id=14330,StackCount=1,Rarity=2,MinLevel=56,SellPrice=8962,Texture=132615,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14330::::::::40:::::::|h[Eternal Bindings]|h|r"},["Large Green Rocket"]={SubType="Consumable",Level=1,id=21590,StackCount=20,Rarity=1,MinLevel=0,SellPrice=12,Texture=134271,Link="|cffffffff|Hitem:21590::::::::40:::::::|h[Large Green Rocket]|h|r",EquipLoc="",Type="Consumable"},["Sacred Frostsaber Meat"]={SubType="Quest",Level=1,id=12733,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133972,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12733::::::::40:::::::|h[Sacred Frostsaber Meat]|h|r"},["Tablet of Lightning Bolt IV"]={SubType="Book",Level=26,id=3129,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1675,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:3129::::::::40:::::::|h[Tablet of Lightning Bolt IV]|h|r",Type="Recipe"},["Harpyclaw Short Bow"]={SubType="Bows",Level=32,id=13019,StackCount=1,Rarity=3,MinLevel=27,SellPrice=4765,Texture=135499,Type="Weapon",EquipLoc="INVTYPE_RANGED",Link="|cff0070dd|Hitem:13019::::::::40:::::::|h[Harpyclaw Short Bow]|h|r"},["Festive Purple Dress"]={SubType="Miscellaneous",Level=1,id=21539,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132700,Link="|cffffffff|Hitem:21539::::::::40:::::::|h[Festive Purple Dress]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Fast-growing Flower"]={SubType="Quest",Level=1,id=15586,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134200,EquipLoc="",Link="|cffffffff|Hitem:15586::::::::40:::::::|h[Fast-growing Flower]|h|r",Type="Quest"},["Umbral Sword"]={SubType="One-Handed Swords",Level=15,id=6984,StackCount=1,Rarity=2,MinLevel=0,SellPrice=688,Texture=135274,Type="Weapon",Link="|cff1eff00|Hitem:6984::::::::40:::::::|h[Umbral Sword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["QAEnchant Bracer +7 Intellect"]={SubType="Consumable",Level=1,id=17830,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,EquipLoc="",Link="|cffffffff|Hitem:17830::::::::40:::::::|h[QAEnchant Bracer +7 Intellect]|h|r",Type="Consumable"},["Ceremonial Leather Belt"]={SubType="Leather",Level=14,id=4693,StackCount=1,Rarity=1,MinLevel=9,SellPrice=86,Texture=132505,Type="Armor",Link="|cffffffff|Hitem:4693::::::::40:::::::|h[Ceremonial Leather Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["15 Pound Mud Snapper"]={SubType="Junk",Level=15,id=6295,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133919,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:6295::::::::40:::::::|h[15 Pound Mud Snapper]|h|r"},["Worn Mail Gloves"]={SubType="Mail",Level=11,id=1734,StackCount=1,Rarity=0,MinLevel=6,SellPrice=39,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff9d9d9d|Hitem:1734::::::::40:::::::|h[Worn Mail Gloves]|h|r",Type="Armor"},["Monster - Item, Potion Green Offhand"]={SubType="Miscellaneous",Level=1,id=3698,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134718,Link="|cff9d9d9d|Hitem:3698::::::::40:::::::|h[Monster - Item, Potion Green Offhand]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Krol Blade"]={SubType="One-Handed Swords",Level=56,id=2244,StackCount=1,Rarity=4,MinLevel=51,SellPrice=51857,Texture=135316,Type="Weapon",Link="|cffa335ee|Hitem:2244::::::::40:::::::|h[Krol Blade]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Gauntlets of Wrath"]={SubType="Plate",Level=76,id=16964,StackCount=1,Rarity=4,MinLevel=60,SellPrice=30040,Texture=132944,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16964::::::::40:::::::|h[Gauntlets of Wrath]|h|r",Type="Armor"},["Deprecated Medivh's Folly"]={SubType="Miscellaneous",Level=20,id=3001,StackCount=1,Rarity=1,MinLevel=15,SellPrice=250,Texture=134189,Link="|cffffffff|Hitem:3001::::::::40:::::::|h[Deprecated Medivh's Folly]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Torchlight Wand"]={SubType="Wands",Level=21,id=5240,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1244,Texture=135139,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:5240::::::::40:::::::|h[Torchlight Wand]|h|r",Type="Weapon"},["Party Grenade"]={SubType="Consumable",Level=1,id=5859,StackCount=10,Rarity=1,MinLevel=0,SellPrice=25,Texture=132385,Link="|cffffffff|Hitem:5859::::::::40:::::::|h[Party Grenade]|h|r",EquipLoc="",Type="Consumable"},["Top Piece of Lord Valthalak's Amulet"]={SubType="Quest",Level=1,id=22047,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133316,Link="|cffffffff|Hitem:22047::::::::40:::::::|h[Top Piece of Lord Valthalak's Amulet]|h|r",EquipLoc="",Type="Quest"},["AHNQIRAJ TEST ITEM C MAIL GLOVES"]={SubType="Miscellaneous",Level=1,id=21450,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21450::::::::40:::::::|h[AHNQIRAJ TEST ITEM C MAIL GLOVES]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Don Julio's Band"]={SubType="Miscellaneous",Level=65,id=19325,StackCount=1,Rarity=4,MinLevel=60,SellPrice=188888,Texture=133377,Link="|cffa335ee|Hitem:19325::::::::40:::::::|h[Don Julio's Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Wintersbite"]={SubType="Trade Goods",Level=39,id=3819,StackCount=20,Rarity=1,MinLevel=0,SellPrice=100,Texture=133940,Type="Trade Goods",Link="|cffffffff|Hitem:3819::::::::40:::::::|h[Wintersbite]|h|r",EquipLoc=""},["Mithril Scale Gloves"]={SubType="Mail",Level=44,id=7925,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4447,Texture=132965,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7925::::::::40:::::::|h[Mithril Scale Gloves]|h|r",Type="Armor"},["Northshire Gift Voucher"]={SubType="Quest",Level=1,id=14646,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134140,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:14646::::::::40:::::::|h[Northshire Gift Voucher]|h|r"},["Egg Nog"]={SubType="Consumable",Level=10,id=17198,StackCount=20,Rarity=1,MinLevel=1,SellPrice=9,Texture=132791,EquipLoc="",Link="|cffffffff|Hitem:17198::::::::40:::::::|h[Egg Nog]|h|r",Type="Consumable"},["Large Red Rocket"]={SubType="Consumable",Level=1,id=21592,StackCount=20,Rarity=1,MinLevel=0,SellPrice=12,Texture=134273,Link="|cffffffff|Hitem:21592::::::::40:::::::|h[Large Red Rocket]|h|r",EquipLoc="",Type="Consumable"},["Soul Harvester"]={SubType="Staves",Level=52,id=20536,StackCount=1,Rarity=3,MinLevel=0,SellPrice=40671,Texture=135358,Link="|cff0070dd|Hitem:20536::::::::40:::::::|h[Soul Harvester]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Glorious Bindings"]={SubType="Plate",Level=55,id=14974,StackCount=1,Rarity=2,MinLevel=50,SellPrice=6009,Texture=132618,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14974::::::::40:::::::|h[Glorious Bindings]|h|r"},["The Hammer of Grace"]={SubType="One-Handed Maces",Level=57,id=11923,StackCount=1,Rarity=3,MinLevel=52,SellPrice=43648,Texture=133044,Type="Weapon",Link="|cff0070dd|Hitem:11923::::::::40:::::::|h[The Hammer of Grace]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Visionary Buckler"]={SubType="Shields",Level=38,id=6828,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6268,Texture=134956,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:6828::::::::40:::::::|h[Visionary Buckler]|h|r"},["Empty Sea Snail Shell"]={SubType="Junk",Level=1,id=10457,StackCount=5,Rarity=0,MinLevel=0,SellPrice=142,Texture=134434,EquipLoc="",Link="|cff9d9d9d|Hitem:10457::::::::40:::::::|h[Empty Sea Snail Shell]|h|r",Type="Miscellaneous"},["Riding Gryphon Reins"]={SubType="Junk",Level=60,id=21736,StackCount=1,Rarity=3,MinLevel=60,SellPrice=250000,Texture=132264,Link="|cff0070dd|Hitem:21736::::::::40:::::::|h[Riding Gryphon Reins]|h|r",EquipLoc="",Type="Miscellaneous"},["Test AQ Resource - Rugged Leather"]={SubType="Junk",Level=1,id=21656,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21656::::::::40:::::::|h[Test AQ Resource - Rugged Leather]|h|r",EquipLoc="",Type="Miscellaneous"},["Twilight Whisker"]={SubType="Quest",Level=1,id=5584,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134324,EquipLoc="",Link="|cffffffff|Hitem:5584::::::::40:::::::|h[Twilight Whisker]|h|r",Type="Quest"},["Grimoire of Mind Bomb"]={SubType="Book",Level=32,id=4208,StackCount=1,Rarity=1,MinLevel=32,SellPrice=2500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:4208::::::::40:::::::|h[Grimoire of Mind Bomb]|h|r",Type="Recipe"},["Gutterblade"]={SubType="One-Handed Axes",Level=31,id=17046,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4796,Texture=132417,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:17046::::::::40:::::::|h[Gutterblade]|h|r",Type="Weapon"},["Sword of Decay"]={SubType="One-Handed Swords",Level=28,id=1727,StackCount=1,Rarity=3,MinLevel=23,SellPrice=4562,Texture=135327,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff0070dd|Hitem:1727::::::::40:::::::|h[Sword of Decay]|h|r"},["Gauntlets of Undead Slaying"]={SubType="Plate",Level=63,id=23078,StackCount=1,Rarity=3,MinLevel=0,SellPrice=11912,Texture=132963,Link="|cff0070dd|Hitem:23078::::::::40:::::::|h[Gauntlets of Undead Slaying]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Calico Shoes"]={SubType="Cloth",Level=13,id=1495,StackCount=1,Rarity=0,MinLevel=8,SellPrice=58,Texture=132539,Link="|cff9d9d9d|Hitem:1495::::::::40:::::::|h[Calico Shoes]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Gauntlets of Steadfast Determination"]={SubType="Plate",Level=76,id=21674,StackCount=1,Rarity=4,MinLevel=60,SellPrice=28340,Texture=132965,Link="|cffa335ee|Hitem:21674::::::::40:::::::|h[Gauntlets of Steadfast Determination]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Samophlange Manual Cover"]={SubType="Quest",Level=1,id=11147,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133735,Type="Quest",Link="|cffffffff|Hitem:11147::::::::40:::::::|h[Samophlange Manual Cover]|h|r",EquipLoc=""},["Carefully Penned Note"]={SubType="Junk",Level=1,id=21921,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135454,Link="|cffffffff|Hitem:21921::::::::40:::::::|h[Carefully Penned Note]|h|r",EquipLoc="",Type="Miscellaneous"},["Monster - Item, Flower - Rose (Black)"]={SubType="Miscellaneous",Level=1,id=6235,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133941,Link="|cff9d9d9d|Hitem:6235::::::::40:::::::|h[Monster - Item, Flower - Rose (Black)]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Jannok's Rose"]={SubType="Quest",Level=0,id=7735,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133941,EquipLoc="",Link="|cffffffff|Hitem:7735::::::::40:::::::|h[Jannok's Rose]|h|r",Type="Quest"},["Nordic Longshank"]={SubType="One-Handed Swords",Level=43,id=9401,StackCount=1,Rarity=3,MinLevel=38,SellPrice=5070,Texture=135325,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:9401::::::::40:::::::|h[Nordic Longshank]|h|r"},["Flowing Ritual Robes"]={SubType="Cloth",Level=65,id=20032,StackCount=1,Rarity=4,MinLevel=60,SellPrice=32257,Texture=132666,Link="|cffa335ee|Hitem:20032::::::::40:::::::|h[Flowing Ritual Robes]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Glowing Magical Bracelets"]={SubType="Cloth",Level=31,id=13106,StackCount=1,Rarity=3,MinLevel=26,SellPrice=1216,Texture=132618,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13106::::::::40:::::::|h[Glowing Magical Bracelets]|h|r"},["Oil-stained Cloak"]={SubType="Cloth",Level=9,id=3153,StackCount=1,Rarity=1,MinLevel=0,SellPrice=33,Texture=133763,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:3153::::::::40:::::::|h[Oil-stained Cloak]|h|r"},["Wraithplate Leggings"]={SubType="Plate",Level=62,id=18690,StackCount=1,Rarity=3,MinLevel=57,SellPrice=22026,Texture=134584,Type="Armor",Link="|cff0070dd|Hitem:18690::::::::40:::::::|h[Wraithplate Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Ghostwalker Gloves"]={SubType="Leather",Level=36,id=15149,StackCount=1,Rarity=2,MinLevel=31,SellPrice=1960,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15149::::::::40:::::::|h[Ghostwalker Gloves]|h|r",Type="Armor"},["Test AQ Resource - Medium Leather"]={SubType="Junk",Level=1,id=21632,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Link="|cffffffff|Hitem:21632::::::::40:::::::|h[Test AQ Resource - Medium Leather]|h|r",EquipLoc="",Type="Miscellaneous"},["Supercharger Battle Axe"]={SubType="Two-Handed Axes",Level=28,id=9486,StackCount=1,Rarity=3,MinLevel=23,SellPrice=5483,Texture=132415,Link="|cff0070dd|Hitem:9486::::::::40:::::::|h[Supercharger Battle Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Chief Brigadier Pauldrons"]={SubType="Mail",Level=40,id=4725,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4736,Texture=135045,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:4725::::::::40:::::::|h[Chief Brigadier Pauldrons]|h|r",Type="Armor"},["Insignia Mantle"]={SubType="Leather",Level=35,id=4721,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2809,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:4721::::::::40:::::::|h[Insignia Mantle]|h|r"},["Hive Tunneler's Boots"]={SubType="Leather",Level=77,id=21645,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58116,Texture=132538,Link="|cffa335ee|Hitem:21645::::::::40:::::::|h[Hive Tunneler's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Fel Elemental Rod"]={SubType="Junk",Level=1,id=21939,StackCount=1,Rarity=1,MinLevel=0,SellPrice=100000,Texture=135155,Link="|cffffffff|Hitem:21939::::::::40:::::::|h[Fel Elemental Rod]|h|r",EquipLoc="",Type="Miscellaneous"},["Aurora Armor"]={SubType="Cloth",Level=41,id=7112,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4547,Texture=135005,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7112::::::::40:::::::|h[Aurora Armor]|h|r"},["Tablet of Lightning Shock II"]={SubType="Book",Level=42,id=9124,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=134459,Link="|cffffffff|Hitem:9124::::::::40:::::::|h[Tablet of Lightning Shock II]|h|r",EquipLoc="",Type="Recipe"},["Level 65 Test Gear Plate - Warrior 3"]={SubType="Junk",Level=1,id=17862,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17862::::::::40:::::::|h[Level 65 Test Gear Plate - Warrior 3]|h|r",Type="Miscellaneous"},["Finkle's Lava Dredger"]={SubType="Two-Handed Maces",Level=70,id=18803,StackCount=1,Rarity=4,MinLevel=60,SellPrice=135594,Texture=132996,Type="Weapon",Link="|cffa335ee|Hitem:18803::::::::40:::::::|h[Finkle's Lava Dredger]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Burnt Leather Breeches"]={SubType="Leather",Level=10,id=2962,StackCount=1,Rarity=2,MinLevel=5,SellPrice=120,Texture=134586,Type="Armor",Link="|cff1eff00|Hitem:2962::::::::40:::::::|h[Burnt Leather Breeches]|h|r",EquipLoc="INVTYPE_LEGS"},["Dark Iron Leggings"]={SubType="Plate",Level=60,id=17013,StackCount=1,Rarity=4,MinLevel=55,SellPrice=26441,Texture=134584,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:17013::::::::40:::::::|h[Dark Iron Leggings]|h|r",Type="Armor"},["Grimoire of Burning Spirit"]={SubType="Book",Level=6,id=3143,StackCount=1,Rarity=1,MinLevel=6,SellPrice=50,Texture=133738,Link="|cffffffff|Hitem:3143::::::::40:::::::|h[Grimoire of Burning Spirit]|h|r",EquipLoc="",Type="Recipe"},["Burst of Knowledge"]={SubType="Miscellaneous",Level=58,id=11832,StackCount=1,Rarity=3,MinLevel=53,SellPrice=10000,Texture=133282,Type="Armor",Link="|cff0070dd|Hitem:11832::::::::40:::::::|h[Burst of Knowledge]|h|r",EquipLoc="INVTYPE_TRINKET"},["Felheart Gloves"]={SubType="Cloth",Level=66,id=16805,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17583,Texture=132953,EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:16805::::::::40:::::::|h[Felheart Gloves]|h|r",Type="Armor"},["Elunarian Sphere"]={SubType="Miscellaneous",Level=64,id=15968,StackCount=1,Rarity=2,MinLevel=59,SellPrice=802,Texture=134337,EquipLoc="INVTYPE_HOLDABLE",Link="|cff1eff00|Hitem:15968::::::::40:::::::|h[Elunarian Sphere]|h|r",Type="Armor"},["Mariner Boots"]={SubType="Leather",Level=25,id=2949,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1039,Texture=132541,Link="|cff1eff00|Hitem:2949::::::::40:::::::|h[Mariner Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Ember of Emberseer"]={SubType="Quest",Level=1,id=21988,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132386,Link="|cffffffff|Hitem:21988::::::::40:::::::|h[Ember of Emberseer]|h|r",EquipLoc="",Type="Quest"},["Mageweave Bag"]={SubType="Bag",Level=35,id=10050,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=133640,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:10050::::::::40:::::::|h[Mageweave Bag]|h|r"},["Ring of the Fallen God"]={SubType="Miscellaneous",Level=88,id=21709,StackCount=1,Rarity=4,MinLevel=60,SellPrice=113642,Texture=133424,Link="|cffa335ee|Hitem:21709::::::::40:::::::|h[Ring of the Fallen God]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Tablet of Magma Totem IV"]={SubType="Book",Level=58,id=9171,StackCount=1,Rarity=1,MinLevel=58,SellPrice=13250,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9171::::::::40:::::::|h[Tablet of Magma Totem IV]|h|r"},["Plans: Ornate Mithril Pants"]={SubType="Blacksmithing",Level=44,id=7983,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:7983::::::::40:::::::|h[Plans: Ornate Mithril Pants]|h|r"},["Barbaric Leggings"]={SubType="Leather",Level=34,id=5963,StackCount=1,Rarity=2,MinLevel=29,SellPrice=3151,Texture=134592,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:5963::::::::40:::::::|h[Barbaric Leggings]|h|r",Type="Armor"},["Mesh Bracers"]={SubType="Cloth",Level=65,id=3954,StackCount=1,Rarity=0,MinLevel=60,SellPrice=4133,Texture=132604,Link="|cff9d9d9d|Hitem:3954::::::::40:::::::|h[Mesh Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Pattern: Guardian Belt"]={SubType="Leatherworking",Level=34,id=4298,StackCount=1,Rarity=3,MinLevel=0,SellPrice=162,Texture=134939,Type="Recipe",Link="|cff0070dd|Hitem:4298::::::::40:::::::|h[Pattern: Guardian Belt]|h|r",EquipLoc=""},["Aurora Gloves"]={SubType="Cloth",Level=39,id=4042,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2107,Texture=132961,Type="Armor",Link="|cff1eff00|Hitem:4042::::::::40:::::::|h[Aurora Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Renegade Cloak"]={SubType="Cloth",Level=33,id=9867,StackCount=1,Rarity=2,MinLevel=28,SellPrice=1778,Texture=133757,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9867::::::::40:::::::|h[Renegade Cloak]|h|r"},["Red Silk Bandana"]={SubType="Quest",Level=1,id=915,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133694,Link="|cffffffff|Hitem:915::::::::40:::::::|h[Red Silk Bandana]|h|r",EquipLoc="",Type="Quest"},["Forest Leather Pants"]={SubType="Leather",Level=26,id=3056,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1532,Texture=134587,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:3056::::::::40:::::::|h[Forest Leather Pants]|h|r",Type="Armor"},["Jagged Arrow"]={SubType="Arrow",Level=45,id=11285,StackCount=200,Rarity=1,MinLevel=40,SellPrice=2,Texture=135661,Type="Projectile",Link="|cffffffff|Hitem:11285::::::::40:::::::|h[Jagged Arrow]|h|r",EquipLoc="INVTYPE_AMMO"},["Monster - Shield, Buckler Metal Damaged"]={SubType="Shields",Level=1,id=2053,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=134955,Link="|cff9d9d9d|Hitem:2053::::::::40:::::::|h[Monster - Shield, Buckler Metal Damaged]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["The Skull of Axtroz"]={SubType="Quest",Level=1,id=16872,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134153,EquipLoc="",Link="|cffffffff|Hitem:16872::::::::40:::::::|h[The Skull of Axtroz]|h|r",Type="Quest"},["Netted Gloves"]={SubType="Cloth",Level=8,id=12299,StackCount=1,Rarity=1,MinLevel=0,SellPrice=16,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:12299::::::::40:::::::|h[Netted Gloves]|h|r"},["Stoutmantle's Response to Solomon"]={SubType="Quest",Level=1,id=1408,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133466,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:1408::::::::40:::::::|h[Stoutmantle's Response to Solomon]|h|r"},["Guise of the Devourer"]={SubType="Leather",Level=75,id=21693,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50412,Texture=133074,Link="|cffa335ee|Hitem:21693::::::::40:::::::|h[Guise of the Devourer]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Hunting Pants"]={SubType="Leather",Level=16,id=2974,StackCount=1,Rarity=2,MinLevel=11,SellPrice=392,Texture=134706,Type="Armor",Link="|cff1eff00|Hitem:2974::::::::40:::::::|h[Hunting Pants]|h|r",EquipLoc="INVTYPE_LEGS"},["[PH] Victorious Standard of the Horde [DEP]"]={SubType="Consumable",Level=60,id=23701,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=132485,Link="|cffffffff|Hitem:23701::::::::40:::::::|h[[PH] Victorious Standard of the Horde [DEP]]|h|r",EquipLoc="",Type="Consumable"},["Simple Buckler"]={SubType="Shields",Level=16,id=2216,StackCount=1,Rarity=0,MinLevel=11,SellPrice=210,Texture=134955,Type="Armor",Link="|cff9d9d9d|Hitem:2216::::::::40:::::::|h[Simple Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Cloak of the Fallen God"]={SubType="Cloth",Level=88,id=21710,StackCount=1,Rarity=4,MinLevel=60,SellPrice=75174,Texture=133762,Link="|cffa335ee|Hitem:21710::::::::40:::::::|h[Cloak of the Fallen God]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Security DELTA Data Access Card"]={SubType="Junk",Level=1,id=9327,StackCount=1,Rarity=2,MinLevel=0,SellPrice=625,Texture=133218,Link="|cff1eff00|Hitem:9327::::::::40:::::::|h[Security DELTA Data Access Card]|h|r",EquipLoc="",Type="Miscellaneous"},["Greater Frost Protection Potion"]={SubType="Consumable",Level=58,id=13456,StackCount=5,Rarity=1,MinLevel=48,SellPrice=750,Texture=134800,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13456::::::::40:::::::|h[Greater Frost Protection Potion]|h|r"},["Mail Combat Gauntlets"]={SubType="Mail",Level=34,id=4075,StackCount=1,Rarity=2,MinLevel=29,SellPrice=1984,Texture=132959,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:4075::::::::40:::::::|h[Mail Combat Gauntlets]|h|r",Type="Armor"},["Symbolic Greaves"]={SubType="Plate",Level=42,id=14828,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3772,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14828::::::::40:::::::|h[Symbolic Greaves]|h|r"},["Recipe: Elixir of Poison Resistance"]={SubType="Alchemy",Level=24,id=3394,StackCount=1,Rarity=1,MinLevel=0,SellPrice=250,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:3394::::::::40:::::::|h[Recipe: Elixir of Poison Resistance]|h|r",Type="Recipe"},["Talon of Tethis"]={SubType="Quest",Level=1,id=3877,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136063,Type="Quest",Link="|cffffffff|Hitem:3877::::::::40:::::::|h[Talon of Tethis]|h|r",EquipLoc=""},["Deviate Scale"]={SubType="Reagent",Level=1,id=6470,StackCount=20,Rarity=1,MinLevel=0,SellPrice=20,Texture=134304,Type="Reagent",Link="|cffffffff|Hitem:6470::::::::40:::::::|h[Deviate Scale]|h|r",EquipLoc=""},["Aegis of the Blood God"]={SubType="Shields",Level=68,id=19862,StackCount=1,Rarity=4,MinLevel=60,SellPrice=65077,Texture=134958,Link="|cffa335ee|Hitem:19862::::::::40:::::::|h[Aegis of the Blood God]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Gold Pickup Schedule"]={SubType="Quest",Level=7,id=1307,StackCount=1,Rarity=1,MinLevel=7,SellPrice=0,Texture=134939,Link="|cffffffff|Hitem:1307::::::::40:::::::|h[Gold Pickup Schedule]|h|r",EquipLoc="",Type="Quest"},["Vile Fin Oracle Staff"]={SubType="Staves",Level=9,id=3327,StackCount=1,Rarity=1,MinLevel=4,SellPrice=141,Texture=135158,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:3327::::::::40:::::::|h[Vile Fin Oracle Staff]|h|r"},["Quel'dorai Guard"]={SubType="Shields",Level=59,id=18342,StackCount=1,Rarity=3,MinLevel=54,SellPrice=29442,Texture=134952,Type="Armor",Link="|cff0070dd|Hitem:18342::::::::40:::::::|h[Quel'dorai Guard]|h|r",EquipLoc="INVTYPE_SHIELD"},["Sorcerer's Mantle"]={SubType="Cloth",Level=65,id=22068,StackCount=1,Rarity=3,MinLevel=0,SellPrice=18788,Texture=135054,Link="|cff0070dd|Hitem:22068::::::::40:::::::|h[Sorcerer's Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Combat Assignment"]={SubType="Junk",Level=1,id=20808,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133460,Link="|cffffffff|Hitem:20808::::::::40:::::::|h[Combat Assignment]|h|r",EquipLoc="",Type="Miscellaneous"},["Red Leather Bag"]={SubType="Bag",Level=15,id=2657,StackCount=1,Rarity=1,MinLevel=0,SellPrice=875,Texture=133623,Link="|cffffffff|Hitem:2657::::::::40:::::::|h[Red Leather Bag]|h|r",EquipLoc="INVTYPE_BAG",Type="Container"},["Monster - Axe, 2H Rev. Bearded Single Bladed"]={SubType="Two-Handed Axes",Level=1,id=5288,StackCount=1,Rarity=0,MinLevel=1,SellPrice=7,Texture=132395,Link="|cff9d9d9d|Hitem:5288::::::::40:::::::|h[Monster - Axe, 2H Rev. Bearded Single Bladed]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Grimoire of Firebolt (Rank 6)"]={SubType="Book",Level=48,id=16319,StackCount=1,Rarity=1,MinLevel=48,SellPrice=3500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16319::::::::40:::::::|h[Grimoire of Firebolt (Rank 6)]|h|r",Type="Recipe"},["Empty Wrapper"]={SubType="Junk",Level=1,id=21830,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134146,Link="|cffffffff|Hitem:21830::::::::40:::::::|h[Empty Wrapper]|h|r",EquipLoc="",Type="Miscellaneous"},["Thunderhawk Saliva Gland"]={SubType="Quest",Level=1,id=4897,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134343,EquipLoc="",Link="|cffffffff|Hitem:4897::::::::40:::::::|h[Thunderhawk Saliva Gland]|h|r",Type="Quest"},["Green Hills of Stranglethorn - Page 26"]={SubType="Junk",Level=1,id=2750,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,Link="|cffffffff|Hitem:2750::::::::40:::::::|h[Green Hills of Stranglethorn - Page 26]|h|r",EquipLoc="",Type="Miscellaneous"},["Speck of Dream Dust"]={SubType="Quest",Level=1,id=5803,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,Link="|cffffffff|Hitem:5803::::::::40:::::::|h[Speck of Dream Dust]|h|r",EquipLoc="",Type="Quest"},["Alabaster Shield"]={SubType="Shields",Level=57,id=8320,StackCount=1,Rarity=2,MinLevel=52,SellPrice=22092,Texture=134950,Link="|cff1eff00|Hitem:8320::::::::40:::::::|h[Alabaster Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Perfume Bottle"]={SubType="Consumable",Level=1,id=21829,StackCount=1,Rarity=1,MinLevel=0,SellPrice=25,Texture=135447,Link="|cffffffff|Hitem:21829::::::::40:::::::|h[Perfume Bottle]|h|r",EquipLoc="",Type="Consumable"},["Soulforge Boots"]={SubType="Plate",Level=60,id=22087,StackCount=1,Rarity=4,MinLevel=0,SellPrice=19552,Texture=132584,Link="|cffa335ee|Hitem:22087::::::::40:::::::|h[Soulforge Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["The Big One"]={SubType="Explosives",Level=45,id=10586,StackCount=10,Rarity=1,MinLevel=0,SellPrice=750,Texture=133712,EquipLoc="",Link="|cffffffff|Hitem:10586::::::::40:::::::|h[The Big One]|h|r",Type="Trade Goods"},["Bard's Buckler"]={SubType="Shields",Level=16,id=6559,StackCount=1,Rarity=2,MinLevel=11,SellPrice=533,Texture=134955,Type="Armor",Link="|cff1eff00|Hitem:6559::::::::40:::::::|h[Bard's Buckler]|h|r",EquipLoc="INVTYPE_SHIELD"},["Homemade Cherry Pie"]={SubType="Consumable",Level=55,id=8950,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=133952,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:8950::::::::40:::::::|h[Homemade Cherry Pie]|h|r"},["Broken Arrow"]={SubType="Junk",Level=1,id=3673,StackCount=100,Rarity=0,MinLevel=0,SellPrice=45,Texture=132381,EquipLoc="",Link="|cff9d9d9d|Hitem:3673::::::::40:::::::|h[Broken Arrow]|h|r",Type="Miscellaneous"},["Mary's Looking Glass"]={SubType="Quest",Level=1,id=1946,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134576,EquipLoc="",Link="|cffffffff|Hitem:1946::::::::40:::::::|h[Mary's Looking Glass]|h|r",Type="Quest"},["Iridium Chain"]={SubType="Miscellaneous",Level=41,id=12022,StackCount=1,Rarity=2,MinLevel=36,SellPrice=4718,Texture=133292,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:12022::::::::40:::::::|h[Iridium Chain]|h|r"},["Soft Willow Cape"]={SubType="Cloth",Level=27,id=16661,StackCount=1,Rarity=2,MinLevel=0,SellPrice=965,Texture=133767,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:16661::::::::40:::::::|h[Soft Willow Cape]|h|r",Type="Armor"},["Drakefang Butcher"]={SubType="Two-Handed Swords",Level=53,id=12463,StackCount=1,Rarity=3,MinLevel=48,SellPrice=42446,Texture=135317,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12463::::::::40:::::::|h[Drakefang Butcher]|h|r"},["Gavel of Qiraji Authority"]={SubType="Two-Handed Maces",Level=71,id=21806,StackCount=1,Rarity=3,MinLevel=60,SellPrice=103686,Texture=133041,Link="|cff0070dd|Hitem:21806::::::::40:::::::|h[Gavel of Qiraji Authority]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Thunder Bluff Gift Collection"]={SubType="Junk",Level=1,id=22135,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134144,Link="|cffffffff|Hitem:22135::::::::40:::::::|h[Thunder Bluff Gift Collection]|h|r",EquipLoc="",Type="Miscellaneous"},["Lofty Gauntlets"]={SubType="Plate",Level=53,id=14926,StackCount=1,Rarity=2,MinLevel=48,SellPrice=5598,Texture=132963,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14926::::::::40:::::::|h[Lofty Gauntlets]|h|r"},[" Glyphic Rune"]={SubType="Quest",Level=1,id=9572,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134414,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9572::::::::40:::::::|h[ Glyphic Rune]|h|r"},["Knight-Lieutenant's Lamellar Gauntlets"]={SubType="Plate",Level=63,id=16410,StackCount=1,Rarity=3,MinLevel=58,SellPrice=5630,Texture=132963,EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:16410::::::::40:::::::|h[Knight-Lieutenant's Lamellar Gauntlets]|h|r",Type="Armor"},["Deprecated Glowing Shrunken Skull"]={SubType="Quest",Level=1,id=5372,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=136224,Link="|cffffffff|Hitem:5372::::::::40:::::::|h[Deprecated Glowing Shrunken Skull]|h|r",EquipLoc="",Type="Quest"},["Pledge of Friendship: Orgrimmar"]={SubType="Consumable",Level=1,id=22161,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135449,Link="|cffffffff|Hitem:22161::::::::40:::::::|h[Pledge of Friendship: Orgrimmar]|h|r",EquipLoc="",Type="Consumable"},["Cured Leather Gloves"]={SubType="Leather",Level=22,id=239,StackCount=1,Rarity=1,MinLevel=17,SellPrice=282,Texture=132955,Type="Armor",Link="|cffffffff|Hitem:239::::::::40:::::::|h[Cured Leather Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Worn Running Shoes"]={SubType="Junk",Level=1,id=18225,StackCount=5,Rarity=0,MinLevel=0,SellPrice=140,Texture=132536,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:18225::::::::40:::::::|h[Worn Running Shoes]|h|r",EquipLoc=""},["Pledge of Friendship: Undercity"]={SubType="Consumable",Level=1,id=22163,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135449,Link="|cffffffff|Hitem:22163::::::::40:::::::|h[Pledge of Friendship: Undercity]|h|r",EquipLoc="",Type="Consumable"},["Cryptstalker Girdle"]={SubType="Mail",Level=88,id=22442,StackCount=1,Rarity=4,MinLevel=60,SellPrice=75494,Texture=132511,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:22442::::::::40:::::::|h[Cryptstalker Girdle]|h|r"},["Garb of Royal Ascension"]={SubType="Cloth",Level=71,id=21838,StackCount=1,Rarity=4,MinLevel=60,SellPrice=47433,Texture=132689,Link="|cffa335ee|Hitem:21838::::::::40:::::::|h[Garb of Royal Ascension]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Plans: Dark Iron Plate"]={SubType="Blacksmithing",Level=57,id=11612,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3000,Texture=134939,Type="Recipe",Link="|cff0070dd|Hitem:11612::::::::40:::::::|h[Plans: Dark Iron Plate]|h|r",EquipLoc=""},["Plain Robe"]={SubType="Cloth",Level=8,id=2612,StackCount=1,Rarity=1,MinLevel=3,SellPrice=32,Texture=132674,EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:2612::::::::40:::::::|h[Plain Robe]|h|r",Type="Armor"},["Windchaser Cloak"]={SubType="Cloth",Level=42,id=14430,StackCount=1,Rarity=2,MinLevel=37,SellPrice=3686,Texture=133765,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14430::::::::40:::::::|h[Windchaser Cloak]|h|r"},["Immaculate Letter"]={SubType="Junk",Level=1,id=21925,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135454,Link="|cffffffff|Hitem:21925::::::::40:::::::|h[Immaculate Letter]|h|r",EquipLoc="",Type="Miscellaneous"},["Plans: Iron Shield Spike"]={SubType="Blacksmithing",Level=30,id=6044,StackCount=1,Rarity=2,MinLevel=0,SellPrice=450,Texture=134942,Link="|cff1eff00|Hitem:6044::::::::40:::::::|h[Plans: Iron Shield Spike]|h|r",EquipLoc="",Type="Recipe"},["Hetaera's Bloodied Head"]={SubType="Quest",Level=1,id=10598,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134299,EquipLoc="",Link="|cffffffff|Hitem:10598::::::::40:::::::|h[Hetaera's Bloodied Head]|h|r",Type="Quest"},["Duskwoven Tunic"]={SubType="Cloth",Level=55,id=10057,StackCount=1,Rarity=2,MinLevel=50,SellPrice=12711,Texture=132724,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:10057::::::::40:::::::|h[Duskwoven Tunic]|h|r",Type="Armor"},["Worn Dagger"]={SubType="Daggers",Level=2,id=2092,StackCount=1,Rarity=1,MinLevel=1,SellPrice=7,Texture=135641,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffffffff|Hitem:2092::::::::40:::::::|h[Worn Dagger]|h|r"},["Antipodean Rod"]={SubType="Miscellaneous",Level=22,id=2879,StackCount=1,Rarity=3,MinLevel=17,SellPrice=3121,Texture=135466,EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:2879::::::::40:::::::|h[Antipodean Rod]|h|r",Type="Armor"},["Deprecated Orc Apprentice Belt"]={SubType="Miscellaneous",Level=1,id=126,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132494,Type="Armor",Link="|cffffffff|Hitem:126::::::::40:::::::|h[Deprecated Orc Apprentice Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Spaulders of the Unseen"]={SubType="Leather",Level=61,id=13116,StackCount=1,Rarity=3,MinLevel=56,SellPrice=19370,Texture=135049,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13116::::::::40:::::::|h[Spaulders of the Unseen]|h|r"},["Lunar Leggings"]={SubType="Cloth",Level=45,id=14257,StackCount=1,Rarity=2,MinLevel=40,SellPrice=6194,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14257::::::::40:::::::|h[Lunar Leggings]|h|r"},["Black Steel Bindings"]={SubType="Plate",Level=57,id=22205,StackCount=1,Rarity=3,MinLevel=52,SellPrice=8522,Texture=132613,Link="|cff0070dd|Hitem:22205::::::::40:::::::|h[Black Steel Bindings]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Cask of Shimmer Stout"]={SubType="Quest",Level=1,id=3086,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132620,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3086::::::::40:::::::|h[Cask of Shimmer Stout]|h|r"},["Flask of Distilled Wisdom"]={SubType="Consumable",Level=60,id=13511,StackCount=5,Rarity=1,MinLevel=50,SellPrice=5000,Texture=134877,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13511::::::::40:::::::|h[Flask of Distilled Wisdom]|h|r"},["Beaded Britches"]={SubType="Cloth",Level=11,id=14090,StackCount=1,Rarity=2,MinLevel=6,SellPrice=119,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:14090::::::::40:::::::|h[Beaded Britches]|h|r"},["Plans: Serenity"]={SubType="Blacksmithing",Level=57,id=12827,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:12827::::::::40:::::::|h[Plans: Serenity]|h|r"},["Tablet of Serpent Totem"]={SubType="Book",Level=4,id=1029,StackCount=1,Rarity=1,MinLevel=4,SellPrice=20,Texture=134459,Type="Recipe",Link="|cffffffff|Hitem:1029::::::::40:::::::|h[Tablet of Serpent Totem]|h|r",EquipLoc=""},["Monster - Dagger, Bonescraper"]={SubType="Daggers",Level=1,id=22215,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135638,Link="|cff9d9d9d|Hitem:22215::::::::40:::::::|h[Monster - Dagger, Bonescraper]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Jeering Spectre's Essence"]={SubType="Quest",Level=1,id=22224,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134711,Link="|cffffffff|Hitem:22224::::::::40:::::::|h[Jeering Spectre's Essence]|h|r",EquipLoc="",Type="Quest"},["Overseer's Whistle"]={SubType="Quest",Level=1,id=7333,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133942,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7333::::::::40:::::::|h[Overseer's Whistle]|h|r"},["Serrated Knife"]={SubType="Daggers",Level=18,id=3581,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1046,Texture=135637,Type="Weapon",Link="|cff1eff00|Hitem:3581::::::::40:::::::|h[Serrated Knife]|h|r",EquipLoc="INVTYPE_WEAPON"},["Jagged Obsidian Shield"]={SubType="Shields",Level=70,id=22198,StackCount=1,Rarity=4,MinLevel=60,SellPrice=67440,Texture=134968,Link="|cffa335ee|Hitem:22198::::::::40:::::::|h[Jagged Obsidian Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Short Sabre"]={SubType="One-Handed Swords",Level=9,id=3319,StackCount=1,Rarity=1,MinLevel=4,SellPrice=110,Texture=135325,Type="Weapon",Link="|cffffffff|Hitem:3319::::::::40:::::::|h[Short Sabre]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Slayer's Shoulder Pads"]={SubType="Mail",Level=31,id=14758,StackCount=1,Rarity=2,MinLevel=26,SellPrice=2267,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14758::::::::40:::::::|h[Slayer's Shoulder Pads]|h|r"},["Mistscape Cloak"]={SubType="Cloth",Level=41,id=4735,StackCount=1,Rarity=2,MinLevel=36,SellPrice=3621,Texture=133765,Link="|cff1eff00|Hitem:4735::::::::40:::::::|h[Mistscape Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Chillnail Splinter"]={SubType="Wands",Level=46,id=10704,StackCount=1,Rarity=2,MinLevel=0,SellPrice=13649,Texture=135463,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:10704::::::::40:::::::|h[Chillnail Splinter]|h|r",Type="Weapon"},["Jagged Piece of Stone"]={SubType="Junk",Level=1,id=4553,StackCount=5,Rarity=0,MinLevel=0,SellPrice=411,Texture=135239,EquipLoc="",Link="|cff9d9d9d|Hitem:4553::::::::40:::::::|h[Jagged Piece of Stone]|h|r",Type="Miscellaneous"},["Gnomish Mechanic's Gloves"]={SubType="Leather",Level=38,id=6732,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2421,Texture=132949,Link="|cff1eff00|Hitem:6732::::::::40:::::::|h[Gnomish Mechanic's Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Bloody Brass Knuckles"]={SubType="Fist Weapons",Level=34,id=7683,StackCount=1,Rarity=1,MinLevel=29,SellPrice=3958,Texture=132945,Link="|cffffffff|Hitem:7683::::::::40:::::::|h[Bloody Brass Knuckles]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["OLDBrawler's Belt"]={SubType="Miscellaneous",Level=1,id=141,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132491,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:141::::::::40:::::::|h[OLDBrawler's Belt]|h|r",Type="Armor"},["Ruined Boar Pelt"]={SubType="Junk",Level=1,id=2890,StackCount=5,Rarity=1,MinLevel=0,SellPrice=5,Texture=134363,EquipLoc="",Link="|cffffffff|Hitem:2890::::::::40:::::::|h[Ruined Boar Pelt]|h|r",Type="Miscellaneous"},["Patched Pants"]={SubType="Leather",Level=10,id=2237,StackCount=1,Rarity=1,MinLevel=0,SellPrice=75,Texture=134582,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:2237::::::::40:::::::|h[Patched Pants]|h|r"},["Love Fool"]={SubType="Junk",Level=1,id=22261,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=132763,Link="|cffffffff|Hitem:22261::::::::40:::::::|h[Love Fool]|h|r",EquipLoc="",Type="Miscellaneous"},["Boots of the Full Moon"]={SubType="Cloth",Level=62,id=18507,StackCount=1,Rarity=3,MinLevel=57,SellPrice=15692,Texture=132539,Type="Armor",Link="|cff0070dd|Hitem:18507::::::::40:::::::|h[Boots of the Full Moon]|h|r",EquipLoc="INVTYPE_FEET"},["Hammer of Expertise"]={SubType="One-Handed Maces",Level=50,id=8708,StackCount=1,Rarity=4,MinLevel=40,SellPrice=0,Texture=133061,Link="|cffa335ee|Hitem:8708::::::::40:::::::|h[Hammer of Expertise]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Twill Belt"]={SubType="Cloth",Level=53,id=3944,StackCount=1,Rarity=0,MinLevel=48,SellPrice=2277,Texture=132491,EquipLoc="INVTYPE_WAIST",Link="|cff9d9d9d|Hitem:3944::::::::40:::::::|h[Twill Belt]|h|r",Type="Armor"},["Revenant Gauntlets"]={SubType="Plate",Level=50,id=10129,StackCount=1,Rarity=2,MinLevel=45,SellPrice=4689,Texture=132965,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10129::::::::40:::::::|h[Revenant Gauntlets]|h|r",Type="Armor"},["Steadfast Gloves"]={SubType="Mail",Level=39,id=15595,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2950,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15595::::::::40:::::::|h[Steadfast Gloves]|h|r",Type="Armor"},["Blackforge Leggings"]={SubType="Mail",Level=46,id=4084,StackCount=1,Rarity=2,MinLevel=41,SellPrice=10136,Texture=134583,Type="Armor",Link="|cff1eff00|Hitem:4084::::::::40:::::::|h[Blackforge Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Darkmantle Boots"]={SubType="Leather",Level=60,id=22003,StackCount=1,Rarity=4,MinLevel=0,SellPrice=25261,Texture=132542,Link="|cffa335ee|Hitem:22003::::::::40:::::::|h[Darkmantle Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Boots of Displacement"]={SubType="Leather",Level=83,id=23073,StackCount=1,Rarity=4,MinLevel=60,SellPrice=77614,Texture=132542,Link="|cffa335ee|Hitem:23073::::::::40:::::::|h[Boots of Displacement]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Red Dinner Suit"]={SubType="Miscellaneous",Level=1,id=22277,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135029,Link="|cffffffff|Hitem:22277::::::::40:::::::|h[Red Dinner Suit]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Frostwolf Mail Belt"]={SubType="Mail",Level=60,id=19088,StackCount=1,Rarity=3,MinLevel=55,SellPrice=15319,Texture=132507,Link="|cff0070dd|Hitem:19088::::::::40:::::::|h[Frostwolf Mail Belt]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Wood Frog Box"]={SubType="Junk",Level=35,id=11027,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=132762,Type="Miscellaneous",Link="|cffffffff|Hitem:11027::::::::40:::::::|h[Wood Frog Box]|h|r",EquipLoc=""},["Hallowed Rune"]={SubType="Quest",Level=1,id=9556,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134419,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9556::::::::40:::::::|h[Hallowed Rune]|h|r"},["Gold Scarab"]={SubType="Quest",Level=1,id=20859,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=134933,Link="|cff1eff00|Hitem:20859::::::::40:::::::|h[Gold Scarab]|h|r",EquipLoc="",Type="Quest"},["Libram of Truth"]={SubType="Librams",Level=57,id=22400,StackCount=1,Rarity=3,MinLevel=52,SellPrice=13208,Texture=134917,Link="|cff0070dd|Hitem:22400::::::::40:::::::|h[Libram of Truth]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Monster - Sword, Short Basic"]={SubType="One-Handed Swords",Level=1,id=1896,StackCount=1,Rarity=0,MinLevel=1,SellPrice=3,Texture=135274,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:1896::::::::40:::::::|h[Monster - Sword, Short Basic]|h|r",Type="Weapon"},["Bloody Leather Boot"]={SubType="Junk",Level=1,id=4876,StackCount=5,Rarity=0,MinLevel=0,SellPrice=78,Texture=132538,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:4876::::::::40:::::::|h[Bloody Leather Boot]|h|r"},["Zandalar Vindicator's Armguards"]={SubType="Plate",Level=61,id=19824,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132613,Link="|cffa335ee|Hitem:19824::::::::40:::::::|h[Zandalar Vindicator's Armguards]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Monster - Mace2H, Basic Wooden Hammer"]={SubType="Two-Handed Maces",Level=1,id=5292,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133040,Link="|cff9d9d9d|Hitem:5292::::::::40:::::::|h[Monster - Mace2H, Basic Wooden Hammer]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Anthion's Pouch"]={SubType="Junk",Level=1,id=22152,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133636,Link="|cffffffff|Hitem:22152::::::::40:::::::|h[Anthion's Pouch]|h|r",EquipLoc="",Type="Miscellaneous"},["Pagan Belt"]={SubType="Cloth",Level=21,id=14164,StackCount=1,Rarity=2,MinLevel=16,SellPrice=312,Texture=132513,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14164::::::::40:::::::|h[Pagan Belt]|h|r"},["Raptor Head"]={SubType="Quest",Level=1,id=5062,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136217,EquipLoc="",Link="|cffffffff|Hitem:5062::::::::40:::::::|h[Raptor Head]|h|r",Type="Quest"},["Claymore"]={SubType="Two-Handed Swords",Level=15,id=1198,StackCount=1,Rarity=1,MinLevel=10,SellPrice=535,Texture=135350,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:1198::::::::40:::::::|h[Claymore]|h|r"},["Magically Sealed Bracers"]={SubType="Plate",Level=61,id=18351,StackCount=1,Rarity=2,MinLevel=56,SellPrice=8740,Texture=132617,Type="Armor",Link="|cff1eff00|Hitem:18351::::::::40:::::::|h[Magically Sealed Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Centaur Longbow"]={SubType="Bows",Level=16,id=5748,StackCount=1,Rarity=2,MinLevel=11,SellPrice=609,Texture=135495,EquipLoc="INVTYPE_RANGED",Link="|cff1eff00|Hitem:5748::::::::40:::::::|h[Centaur Longbow]|h|r",Type="Weapon"},["Guardian Leather Bracers"]={SubType="Leather",Level=39,id=4260,StackCount=1,Rarity=2,MinLevel=34,SellPrice=2559,Texture=132609,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:4260::::::::40:::::::|h[Guardian Leather Bracers]|h|r",Type="Armor"},["Libram: Holy Light VIII"]={SubType="Book",Level=54,id=8941,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133740,Link="|cffffffff|Hitem:8941::::::::40:::::::|h[Libram: Holy Light VIII]|h|r",EquipLoc="",Type="Recipe"},["Signet of Beckoning: Thunder"]={SubType="Junk",Level=1,id=20433,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134457,Link="|cffffffff|Hitem:20433::::::::40:::::::|h[Signet of Beckoning: Thunder]|h|r",EquipLoc="",Type="Miscellaneous"},["zzOLD - QAEnchant Weapon +5 Damage"]={SubType="Consumable",Level=1,id=22027,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133434,Link="|cffffffff|Hitem:22027::::::::40:::::::|h[zzOLD - QAEnchant Weapon +5 Damage]|h|r",EquipLoc="",Type="Consumable"},["Impenetrable Sabatons"]={SubType="Mail",Level=59,id=15658,StackCount=1,Rarity=2,MinLevel=54,SellPrice=17850,Texture=132589,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15658::::::::40:::::::|h[Impenetrable Sabatons]|h|r",Type="Armor"},["Pattern: Nightscape Cloak"]={SubType="Leatherworking",Level=46,id=8388,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=134939,Link="|cff1eff00|Hitem:8388::::::::40:::::::|h[Pattern: Nightscape Cloak]|h|r",EquipLoc="",Type="Recipe"},["Slamshot Shoulders"]={SubType="Plate",Level=60,id=13166,StackCount=1,Rarity=3,MinLevel=55,SellPrice=14204,Texture=135054,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:13166::::::::40:::::::|h[Slamshot Shoulders]|h|r"},["Rigid Tunic"]={SubType="Leather",Level=26,id=15118,StackCount=1,Rarity=2,MinLevel=21,SellPrice=1562,Texture=132725,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15118::::::::40:::::::|h[Rigid Tunic]|h|r",Type="Armor"},["Knowledge: South Seas Pirate Disguise"]={SubType="Book",Level=13,id=5127,StackCount=1,Rarity=1,MinLevel=13,SellPrice=162,Texture=134941,EquipLoc="",Link="|cffffffff|Hitem:5127::::::::40:::::::|h[Knowledge: South Seas Pirate Disguise]|h|r",Type="Recipe"},["Elixir of Brute Force"]={SubType="Consumable",Level=55,id=13453,StackCount=5,Rarity=1,MinLevel=45,SellPrice=1250,Texture=134820,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13453::::::::40:::::::|h[Elixir of Brute Force]|h|r"},["Strapped Gloves"]={SubType="Leather",Level=68,id=3981,StackCount=1,Rarity=0,MinLevel=63,SellPrice=6137,Texture=132955,Type="Armor",Link="|cff9d9d9d|Hitem:3981::::::::40:::::::|h[Strapped Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Nether-lace Tunic"]={SubType="Cloth",Level=31,id=9515,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2011,Texture=135011,Link="|cff1eff00|Hitem:9515::::::::40:::::::|h[Nether-lace Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Crystal Pylon User's Manual"]={SubType="Quest",Level=1,id=11482,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133740,Type="Quest",Link="|cffffffff|Hitem:11482::::::::40:::::::|h[Crystal Pylon User's Manual]|h|r",EquipLoc=""},["Level 25 Test Gear Leather - Druid/Shaman"]={SubType="Junk",Level=1,id=13661,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13661::::::::40:::::::|h[Level 25 Test Gear Leather - Druid/Shaman]|h|r"},["Empyrean Demolisher"]={SubType="One-Handed Maces",Level=66,id=17112,StackCount=1,Rarity=4,MinLevel=60,SellPrice=90558,Texture=133042,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffa335ee|Hitem:17112::::::::40:::::::|h[Empyrean Demolisher]|h|r",Type="Weapon"},["Shroud of Domination"]={SubType="Cloth",Level=63,id=22337,StackCount=1,Rarity=3,MinLevel=58,SellPrice=16476,Texture=133771,Link="|cff0070dd|Hitem:22337::::::::40:::::::|h[Shroud of Domination]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Journeyman's Cloak"]={SubType="Cloth",Level=8,id=4662,StackCount=1,Rarity=1,MinLevel=3,SellPrice=24,Texture=133767,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:4662::::::::40:::::::|h[Journeyman's Cloak]|h|r",Type="Armor"},["Crystal Infused Bandage"]={SubType="Consumable",Level=60,id=23684,StackCount=20,Rarity=1,MinLevel=0,SellPrice=1500,Texture=133686,Link="|cffffffff|Hitem:23684::::::::40:::::::|h[Crystal Infused Bandage]|h|r",EquipLoc="",Type="Consumable"},["Unyielding Maul"]={SubType="Two-Handed Maces",Level=62,id=18531,StackCount=1,Rarity=3,MinLevel=57,SellPrice=65383,Texture=133059,Type="Weapon",Link="|cff0070dd|Hitem:18531::::::::40:::::::|h[Unyielding Maul]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Garona: A Study on Stealth and Treachery"]={SubType="Junk",Level=60,id=18356,StackCount=1,Rarity=3,MinLevel=54,SellPrice=0,Texture=133738,Type="Miscellaneous",Link="|cff0070dd|Hitem:18356::::::::40:::::::|h[Garona: A Study on Stealth and Treachery]|h|r",EquipLoc=""},["Warmonger's Circlet"]={SubType="Mail",Level=48,id=9963,StackCount=1,Rarity=2,MinLevel=43,SellPrice=9211,Texture=132767,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9963::::::::40:::::::|h[Warmonger's Circlet]|h|r"},["Felheart Horns"]={SubType="Cloth",Level=66,id=16808,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26668,Texture=133076,EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:16808::::::::40:::::::|h[Felheart Horns]|h|r",Type="Armor"},["Cabalist Gloves"]={SubType="Leather",Level=46,id=7530,StackCount=1,Rarity=2,MinLevel=41,SellPrice=4273,Texture=132956,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:7530::::::::40:::::::|h[Cabalist Gloves]|h|r"},["Tome of Remove Lesser Curse"]={SubType="Book",Level=18,id=8806,StackCount=1,Rarity=1,MinLevel=18,SellPrice=550,Texture=133739,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:8806::::::::40:::::::|h[Tome of Remove Lesser Curse]|h|r"},["Desecrated Helmet"]={SubType="Junk",Level=60,id=22353,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133833,Link="|cffa335ee|Hitem:22353::::::::40:::::::|h[Desecrated Helmet]|h|r",EquipLoc="",Type="Miscellaneous"},["Ironbound Locked Chest"]={SubType="Junk",Level=45,id=13875,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132594,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13875::::::::40:::::::|h[Ironbound Locked Chest]|h|r"},["Enchanted Azsharite Felbane Sword"]={SubType="One-Handed Swords",Level=60,id=10696,StackCount=1,Rarity=2,MinLevel=0,SellPrice=41890,Texture=135662,EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cff1eff00|Hitem:10696::::::::40:::::::|h[Enchanted Azsharite Felbane Sword]|h|r",Type="Weapon"},["Hoof of Lakota'mani"]={SubType="Quest",Level=10,id=5099,StackCount=1,Rarity=1,MinLevel=10,SellPrice=0,Texture=132318,Link="|cffffffff|Hitem:5099::::::::40:::::::|h[Hoof of Lakota'mani]|h|r",EquipLoc="",Type="Quest"},["Burnished Gold Key"]={SubType="Key",Level=1,id=3499,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134238,Type="Key",EquipLoc="",Link="|cffffffff|Hitem:3499::::::::40:::::::|h[Burnished Gold Key]|h|r"},["Hallowed Wand - Leper Gnome"]={SubType="Consumable",Level=1,id=20399,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135474,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20399::::::::40:::::::|h[Hallowed Wand - Leper Gnome]|h|r"},["Dustfeather Sash"]={SubType="Cloth",Level=61,id=12589,StackCount=1,Rarity=3,MinLevel=56,SellPrice=10251,Texture=132500,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:12589::::::::40:::::::|h[Dustfeather Sash]|h|r"},["Warmonger's Buckler"]={SubType="Shields",Level=50,id=9958,StackCount=1,Rarity=2,MinLevel=45,SellPrice=14724,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:9958::::::::40:::::::|h[Warmonger's Buckler]|h|r"},["Bingles' Cog Inverter"]={SubType="Quest",Level=1,id=7347,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132997,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:7347::::::::40:::::::|h[Bingles' Cog Inverter]|h|r"},["Desecrated Spaulders"]={SubType="Junk",Level=60,id=22361,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133827,Link="|cffa335ee|Hitem:22361::::::::40:::::::|h[Desecrated Spaulders]|h|r",EquipLoc="",Type="Miscellaneous"},["[PH] Legendary Arcane Amalgamation (Melee)"]={SubType="Quest",Level=50,id=11676,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=134094,Type="Quest",Link="|cffa335ee|Hitem:11676::::::::40:::::::|h[[PH] Legendary Arcane Amalgamation (Melee)]|h|r",EquipLoc=""},["Deprecated Ogre Head"]={SubType="Quest",Level=1,id=1672,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134170,EquipLoc="",Link="|cffffffff|Hitem:1672::::::::40:::::::|h[Deprecated Ogre Head]|h|r",Type="Quest"},["Green Hills of Stranglethorn - Page 20"]={SubType="Junk",Level=1,id=2744,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,Link="|cffffffff|Hitem:2744::::::::40:::::::|h[Green Hills of Stranglethorn - Page 20]|h|r",EquipLoc="",Type="Miscellaneous"},["Cabalist Spaulders"]={SubType="Leather",Level=47,id=7532,StackCount=1,Rarity=2,MinLevel=42,SellPrice=6975,Texture=135032,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7532::::::::40:::::::|h[Cabalist Spaulders]|h|r",Type="Armor"},["Draped Cloak"]={SubType="Cloth",Level=5,id=5405,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=133763,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:5405::::::::40:::::::|h[Draped Cloak]|h|r"},["Shadowhide Mace"]={SubType="One-Handed Maces",Level=22,id=1457,StackCount=1,Rarity=2,MinLevel=17,SellPrice=1850,Texture=133476,Type="Weapon",Link="|cff1eff00|Hitem:1457::::::::40:::::::|h[Shadowhide Mace]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Plans: Heavy Timbermaw Boots"]={SubType="Blacksmithing",Level=64,id=19204,StackCount=1,Rarity=1,MinLevel=0,SellPrice=10000,Texture=134939,Link="|cffffffff|Hitem:19204::::::::40:::::::|h[Plans: Heavy Timbermaw Boots]|h|r",EquipLoc="",Type="Recipe"},["Empty Pure Sample Jar"]={SubType="Consumable",Level=1,id=11953,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134864,Type="Consumable",Link="|cffffffff|Hitem:11953::::::::40:::::::|h[Empty Pure Sample Jar]|h|r",EquipLoc=""},["Forest Leather Bracers"]={SubType="Leather",Level=24,id=3202,StackCount=1,Rarity=2,MinLevel=19,SellPrice=584,Texture=132605,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:3202::::::::40:::::::|h[Forest Leather Bracers]|h|r",Type="Armor"},["Jom Gabbar"]={SubType="Miscellaneous",Level=81,id=23570,StackCount=1,Rarity=4,MinLevel=60,SellPrice=1807,Texture=133877,Link="|cffa335ee|Hitem:23570::::::::40:::::::|h[Jom Gabbar]|h|r",EquipLoc="INVTYPE_TRINKET",Type="Armor"},["Belt of Shrunken Heads"]={SubType="Plate",Level=70,id=20213,StackCount=1,Rarity=3,MinLevel=0,SellPrice=16337,Texture=132502,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:20213::::::::40:::::::|h[Belt of Shrunken Heads]|h|r"},["Hardened Leather Tunic"]={SubType="Leather",Level=33,id=3807,StackCount=1,Rarity=0,MinLevel=28,SellPrice=1162,Texture=132724,Link="|cff9d9d9d|Hitem:3807::::::::40:::::::|h[Hardened Leather Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Bloodspattered Surcoat"]={SubType="Mail",Level=21,id=15488,StackCount=1,Rarity=2,MinLevel=16,SellPrice=967,Texture=132629,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15488::::::::40:::::::|h[Bloodspattered Surcoat]|h|r",Type="Armor"},["Prospector's Mitts"]={SubType="Leather",Level=19,id=14564,StackCount=1,Rarity=2,MinLevel=14,SellPrice=304,Texture=132952,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14564::::::::40:::::::|h[Prospector's Mitts]|h|r"},["Sentry's Gloves"]={SubType="Mail",Level=27,id=15527,StackCount=1,Rarity=2,MinLevel=22,SellPrice=1020,Texture=132956,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15527::::::::40:::::::|h[Sentry's Gloves]|h|r",Type="Armor"},["Defender of the Timbermaw"]={SubType="Miscellaneous",Level=62,id=21326,StackCount=1,Rarity=4,MinLevel=0,SellPrice=8991,Texture=134227,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffa335ee|Hitem:21326::::::::40:::::::|h[Defender of the Timbermaw]|h|r"},["Reinforced Locked Chest"]={SubType="Junk",Level=55,id=13918,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132594,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13918::::::::40:::::::|h[Reinforced Locked Chest]|h|r"},["Broken Binding Bracer"]={SubType="Junk",Level=1,id=6439,StackCount=5,Rarity=0,MinLevel=0,SellPrice=237,Texture=132609,Type="Miscellaneous",Link="|cff9d9d9d|Hitem:6439::::::::40:::::::|h[Broken Binding Bracer]|h|r",EquipLoc=""},["Battle Chain Girdle"]={SubType="Mail",Level=10,id=4669,StackCount=1,Rarity=1,MinLevel=5,SellPrice=41,Texture=132492,Link="|cffffffff|Hitem:4669::::::::40:::::::|h[Battle Chain Girdle]|h|r",EquipLoc="INVTYPE_WAIST",Type="Armor"},["Banded Leggings"]={SubType="Mail",Level=32,id=9841,StackCount=1,Rarity=2,MinLevel=27,SellPrice=3163,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:9841::::::::40:::::::|h[Banded Leggings]|h|r"},["Protector's Sword"]={SubType="One-Handed Swords",Level=63,id=19554,StackCount=1,Rarity=3,MinLevel=58,SellPrice=54922,Texture=135328,Link="|cff0070dd|Hitem:19554::::::::40:::::::|h[Protector's Sword]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Blackvenom Blade"]={SubType="Daggers",Level=26,id=4446,StackCount=1,Rarity=3,MinLevel=21,SellPrice=3594,Texture=135638,Link="|cff0070dd|Hitem:4446::::::::40:::::::|h[Blackvenom Blade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Mourning Shawl"]={SubType="Cloth",Level=30,id=6751,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1411,Texture=133763,Type="Armor",Link="|cff1eff00|Hitem:6751::::::::40:::::::|h[Mourning Shawl]|h|r",EquipLoc="INVTYPE_CLOAK"},["Praetorian Cloak"]={SubType="Cloth",Level=50,id=15183,StackCount=1,Rarity=2,MinLevel=45,SellPrice=6751,Texture=133770,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:15183::::::::40:::::::|h[Praetorian Cloak]|h|r",Type="Armor"},["Deprecated Amulet of the White Stallion"]={SubType="Miscellaneous",Level=45,id=1122,StackCount=1,Rarity=1,MinLevel=40,SellPrice=25000,Texture=133279,Type="Armor",Link="|cffffffff|Hitem:1122::::::::40:::::::|h[Deprecated Amulet of the White Stallion]|h|r",EquipLoc="INVTYPE_NECK"},["Spiked Club"]={SubType="Two-Handed Maces",Level=13,id=4564,StackCount=1,Rarity=2,MinLevel=8,SellPrice=610,Texture=133489,Type="Weapon",Link="|cff1eff00|Hitem:4564::::::::40:::::::|h[Spiked Club]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Heavy Stock"]={SubType="Parts",Level=25,id=4400,StackCount=10,Rarity=1,MinLevel=0,SellPrice=500,Texture=133486,Link="|cffffffff|Hitem:4400::::::::40:::::::|h[Heavy Stock]|h|r",EquipLoc="",Type="Trade Goods"},["Grimoire of Inferno"]={SubType="Book",Level=50,id=9214,StackCount=1,Rarity=2,MinLevel=50,SellPrice=2500,Texture=133738,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:9214::::::::40:::::::|h[Grimoire of Inferno]|h|r"},["Grand Marshal's Repeater"]={SubType="Crossbows",Level=78,id=18836,StackCount=1,Rarity=4,MinLevel=60,SellPrice=35130,Texture=135533,Type="Weapon",Link="|cffa335ee|Hitem:18836::::::::40:::::::|h[Grand Marshal's Repeater]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Opulent Crown"]={SubType="Cloth",Level=53,id=14281,StackCount=1,Rarity=2,MinLevel=48,SellPrice=8178,Texture=132505,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:14281::::::::40:::::::|h[Opulent Crown]|h|r"},["Flagon of Dwarven Honeymead"]={SubType="Consumable",Level=25,id=2594,StackCount=20,Rarity=1,MinLevel=0,SellPrice=375,Texture=132792,EquipLoc="",Link="|cffffffff|Hitem:2594::::::::40:::::::|h[Flagon of Dwarven Honeymead]|h|r",Type="Consumable"},["Gnomish Universal Remote"]={SubType="Devices",Level=25,id=7506,StackCount=1,Rarity=2,MinLevel=0,SellPrice=500,Texture=134376,Type="Trade Goods",EquipLoc="INVTYPE_TRINKET",Link="|cff1eff00|Hitem:7506::::::::40:::::::|h[Gnomish Universal Remote]|h|r"},["Buzzard Talon"]={SubType="Junk",Level=1,id=1464,StackCount=5,Rarity=0,MinLevel=0,SellPrice=71,Texture=134294,EquipLoc="",Link="|cff9d9d9d|Hitem:1464::::::::40:::::::|h[Buzzard Talon]|h|r",Type="Miscellaneous"},["Shoni's Disarming Tool"]={SubType="One-Handed Axes",Level=31,id=9608,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5028,Texture=134520,Type="Weapon",EquipLoc="INVTYPE_WEAPONOFFHAND",Link="|cff1eff00|Hitem:9608::::::::40:::::::|h[Shoni's Disarming Tool]|h|r"},["Heart of Obsidion"]={SubType="Quest",Level=1,id=10446,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134120,EquipLoc="",Link="|cffffffff|Hitem:10446::::::::40:::::::|h[Heart of Obsidion]|h|r",Type="Quest"},["Aquamarine"]={SubType="Trade Goods",Level=45,id=7909,StackCount=20,Rarity=2,MinLevel=0,SellPrice=1000,Texture=134088,Link="|cff1eff00|Hitem:7909::::::::40:::::::|h[Aquamarine]|h|r",EquipLoc="",Type="Trade Goods"},["Samophlange Manual Page"]={SubType="Consumable",Level=1,id=11148,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134332,Type="Consumable",Link="|cffffffff|Hitem:11148::::::::40:::::::|h[Samophlange Manual Page]|h|r",EquipLoc=""},["Blackforge Gauntlets"]={SubType="Mail",Level=44,id=4083,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4328,Texture=132966,Link="|cff1eff00|Hitem:4083::::::::40:::::::|h[Blackforge Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Sterling Chain Boots"]={SubType="Mail",Level=65,id=4009,StackCount=1,Rarity=0,MinLevel=60,SellPrice=9161,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff9d9d9d|Hitem:4009::::::::40:::::::|h[Sterling Chain Boots]|h|r"},["Remedy of Arugal"]={SubType="Quest",Level=1,id=3155,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:3155::::::::40:::::::|h[Remedy of Arugal]|h|r",Type="Quest"},["Highlander's Enriched Ration"]={SubType="Consumable",Level=55,id=20225,StackCount=20,Rarity=1,MinLevel=45,SellPrice=100,Texture=133989,Link="|cffffffff|Hitem:20225::::::::40:::::::|h[Highlander's Enriched Ration]|h|r",EquipLoc="",Type="Consumable"},["Sanguine Cuffs"]={SubType="Cloth",Level=25,id=14375,StackCount=1,Rarity=2,MinLevel=20,SellPrice=528,Texture=132601,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:14375::::::::40:::::::|h[Sanguine Cuffs]|h|r"},["Mercurial Pauldrons"]={SubType="Mail",Level=62,id=10163,StackCount=1,Rarity=2,MinLevel=57,SellPrice=20264,Texture=135054,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10163::::::::40:::::::|h[Mercurial Pauldrons]|h|r",Type="Armor"},["Pyrewood Shackle"]={SubType="Quest",Level=1,id=3218,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132602,EquipLoc="",Link="|cffffffff|Hitem:3218::::::::40:::::::|h[Pyrewood Shackle]|h|r",Type="Quest"},["Defender Leggings"]={SubType="Mail",Level=23,id=6578,StackCount=1,Rarity=2,MinLevel=18,SellPrice=1302,Texture=134583,Type="Armor",Link="|cff1eff00|Hitem:6578::::::::40:::::::|h[Defender Leggings]|h|r",EquipLoc="INVTYPE_LEGS"},["Threshadon Fang"]={SubType="Daggers",Level=16,id=5516,StackCount=1,Rarity=0,MinLevel=11,SellPrice=317,Texture=133723,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:5516::::::::40:::::::|h[Threshadon Fang]|h|r",Type="Weapon"},["Gothic Plate Girdle"]={SubType="Plate",Level=45,id=10088,StackCount=1,Rarity=2,MinLevel=40,SellPrice=3154,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10088::::::::40:::::::|h[Gothic Plate Girdle]|h|r",Type="Armor"},["Broad Axe"]={SubType="Two-Handed Axes",Level=4,id=2479,StackCount=1,Rarity=1,MinLevel=1,SellPrice=21,Texture=132402,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:2479::::::::40:::::::|h[Broad Axe]|h|r",Type="Weapon"},["Zulian Coin"]={SubType="Quest",Level=1,id=19698,StackCount=250,Rarity=2,MinLevel=0,SellPrice=0,Texture=133606,Link="|cff1eff00|Hitem:19698::::::::40:::::::|h[Zulian Coin]|h|r",EquipLoc="",Type="Quest"},["Kurinnaxx's Venom Sac"]={SubType="Quest",Level=1,id=22217,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134341,Link="|cffffffff|Hitem:22217::::::::40:::::::|h[Kurinnaxx's Venom Sac]|h|r",EquipLoc="",Type="Quest"},["Grimtotem Horn"]={SubType="Quest",Level=1,id=9460,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133721,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9460::::::::40:::::::|h[Grimtotem Horn]|h|r"},["Warm Winter Robe"]={SubType="Cloth",Level=10,id=3216,StackCount=1,Rarity=1,MinLevel=0,SellPrice=55,Texture=132682,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:3216::::::::40:::::::|h[Warm Winter Robe]|h|r"},["Rexxar's Testament"]={SubType="Quest",Level=1,id=16785,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134331,EquipLoc="",Link="|cffffffff|Hitem:16785::::::::40:::::::|h[Rexxar's Testament]|h|r",Type="Quest"},["Frostfire Robe"]={SubType="Cloth",Level=92,id=22496,StackCount=1,Rarity=4,MinLevel=60,SellPrice=132173,Texture=132684,Link="|cffa335ee|Hitem:22496::::::::40:::::::|h[Frostfire Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["Test Shadow Res Shoulders Leather"]={SubType="Leather",Level=35,id=16148,StackCount=1,Rarity=2,MinLevel=30,SellPrice=2587,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:16148::::::::40:::::::|h[Test Shadow Res Shoulders Leather]|h|r",Type="Armor"},["Earthen Vest"]={SubType="Cloth",Level=34,id=7051,StackCount=1,Rarity=2,MinLevel=29,SellPrice=2696,Texture=135008,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:7051::::::::40:::::::|h[Earthen Vest]|h|r",Type="Armor"},["Magister's Leggings"]={SubType="Cloth",Level=61,id=16687,StackCount=1,Rarity=3,MinLevel=56,SellPrice=20281,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:16687::::::::40:::::::|h[Magister's Leggings]|h|r",Type="Armor"},["Rot Hide Ichor"]={SubType="Quest",Level=1,id=3236,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134717,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:3236::::::::40:::::::|h[Rot Hide Ichor]|h|r"},["Red Rose"]={SubType="Miscellaneous",Level=20,id=3419,StackCount=1,Rarity=1,MinLevel=0,SellPrice=125,Texture=133436,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:3419::::::::40:::::::|h[Red Rose]|h|r"},["Orb of the Forgotten Seer"]={SubType="Miscellaneous",Level=38,id=7685,StackCount=1,Rarity=3,MinLevel=33,SellPrice=5468,Texture=134334,Link="|cff0070dd|Hitem:7685::::::::40:::::::|h[Orb of the Forgotten Seer]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Greaves of Withering Despair"]={SubType="Mail",Level=53,id=22240,StackCount=1,Rarity=3,MinLevel=48,SellPrice=14972,Texture=132547,Link="|cff0070dd|Hitem:22240::::::::40:::::::|h[Greaves of Withering Despair]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Deprecated Pattern: Forest Silk Gloves"]={SubType="Leatherworking",Level=9,id=2599,StackCount=1,Rarity=1,MinLevel=0,SellPrice=30,Texture=134939,Link="|cffffffff|Hitem:2599::::::::40:::::::|h[Deprecated Pattern: Forest Silk Gloves]|h|r",EquipLoc="",Type="Recipe"},["Grimoire of Immolate VIII"]={SubType="Book",Level=60,id=21282,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133738,Link="|cff0070dd|Hitem:21282::::::::40:::::::|h[Grimoire of Immolate VIII]|h|r",EquipLoc="",Type="Recipe"},["Faith Healer's Boots"]={SubType="Cloth",Level=63,id=22247,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17874,Texture=132560,Link="|cff0070dd|Hitem:22247::::::::40:::::::|h[Faith Healer's Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Clay Ring"]={SubType="Miscellaneous",Level=22,id=11993,StackCount=1,Rarity=2,MinLevel=17,SellPrice=874,Texture=133356,Type="Armor",Link="|cff1eff00|Hitem:11993::::::::40:::::::|h[Clay Ring]|h|r",EquipLoc="INVTYPE_FINGER"},["Major Soulstone"]={SubType="Consumable",Level=60,id=16896,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134336,EquipLoc="",Link="|cffffffff|Hitem:16896::::::::40:::::::|h[Major Soulstone]|h|r",Type="Consumable"},["Hunting Knife"]={SubType="Daggers",Level=23,id=2765,StackCount=1,Rarity=0,MinLevel=18,SellPrice=811,Texture=135651,EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:2765::::::::40:::::::|h[Hunting Knife]|h|r",Type="Weapon"},["Freezing Band"]={SubType="Miscellaneous",Level=52,id=942,StackCount=1,Rarity=4,MinLevel=47,SellPrice=4500,Texture=133349,Link="|cffa335ee|Hitem:942::::::::40:::::::|h[Freezing Band]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Hypercapacitor Gizmo"]={SubType="Quest",Level=1,id=12946,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133002,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12946::::::::40:::::::|h[Hypercapacitor Gizmo]|h|r"},["Frostsaber Boots"]={SubType="Leather",Level=55,id=15071,StackCount=1,Rarity=2,MinLevel=50,SellPrice=11443,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15071::::::::40:::::::|h[Frostsaber Boots]|h|r",Type="Armor"},["Gaea's Raiment"]={SubType="Cloth",Level=52,id=14275,StackCount=1,Rarity=2,MinLevel=47,SellPrice=11115,Texture=132670,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:14275::::::::40:::::::|h[Gaea's Raiment]|h|r"},["Monster - Spear, Rusty"]={SubType="Polearms",Level=1,id=2023,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135130,Type="Weapon",Link="|cff9d9d9d|Hitem:2023::::::::40:::::::|h[Monster - Spear, Rusty]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Gloves of Brawn"]={SubType="Mail",Level=24,id=2230,StackCount=1,Rarity=2,MinLevel=0,SellPrice=714,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:2230::::::::40:::::::|h[Gloves of Brawn]|h|r",Type="Armor"},["OLDPrimitive Leather Belt"]={SubType="Miscellaneous",Level=1,id=152,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=132494,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:152::::::::40:::::::|h[OLDPrimitive Leather Belt]|h|r",Type="Armor"},["Sagefish Delight"]={SubType="Consumable",Level=40,id=21217,StackCount=20,Rarity=1,MinLevel=30,SellPrice=125,Texture=133907,Link="|cffffffff|Hitem:21217::::::::40:::::::|h[Sagefish Delight]|h|r",EquipLoc="",Type="Consumable"},["[PH] Cloth Bracers of the Rising Dawn"]={SubType="Cloth",Level=100,id=13739,StackCount=1,Rarity=1,MinLevel=100,SellPrice=34359,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:13739::::::::40:::::::|h[[PH] Cloth Bracers of the Rising Dawn]|h|r"},["Diabolist's Blade"]={SubType="Daggers",Level=25,id=10049,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2653,Texture=135638,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:10049::::::::40:::::::|h[Diabolist's Blade]|h|r",Type="Weapon"},["Craftsman's Writ - Rugged Armor Kit"]={SubType="Junk",Level=60,id=22606,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Link="|cffffffff|Hitem:22606::::::::40:::::::|h[Craftsman's Writ - Rugged Armor Kit]|h|r",EquipLoc="",Type="Miscellaneous"},["Tasty Lion Steak"]={SubType="Consumable",Level=30,id=3728,StackCount=20,Rarity=1,MinLevel=20,SellPrice=300,Texture=133970,EquipLoc="",Link="|cffffffff|Hitem:3728::::::::40:::::::|h[Tasty Lion Steak]|h|r",Type="Consumable"},["Codex of Mind Rot"]={SubType="Book",Level=38,id=4275,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4250,Texture=133741,Type="Recipe",Link="|cffffffff|Hitem:4275::::::::40:::::::|h[Codex of Mind Rot]|h|r",EquipLoc=""},["Arclight Spanner"]={SubType="Miscellaneous",Level=10,id=6219,StackCount=1,Rarity=1,MinLevel=0,SellPrice=144,Texture=134520,Type="Weapon",Link="|cffffffff|Hitem:6219::::::::40:::::::|h[Arclight Spanner]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Superior Tunic"]={SubType="Leather",Level=28,id=9809,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1855,Texture=132725,Link="|cff1eff00|Hitem:9809::::::::40:::::::|h[Superior Tunic]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Bear Bracers"]={SubType="Leather",Level=25,id=4795,StackCount=1,Rarity=2,MinLevel=20,SellPrice=705,Texture=132606,Type="Armor",Link="|cff1eff00|Hitem:4795::::::::40:::::::|h[Bear Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Durability Bracers"]={SubType="Cloth",Level=1,id=14383,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffffffff|Hitem:14383::::::::40:::::::|h[Durability Bracers]|h|r"},["Journeyman's Boots"]={SubType="Cloth",Level=9,id=2959,StackCount=1,Rarity=1,MinLevel=4,SellPrice=32,Texture=132543,Type="Armor",Link="|cffffffff|Hitem:2959::::::::40:::::::|h[Journeyman's Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Resilience of the Scourge"]={SubType="Quest",Level=60,id=23547,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=136143,Link="|cffa335ee|Hitem:23547::::::::40:::::::|h[Resilience of the Scourge]|h|r",EquipLoc="",Type="Quest"},["Tome of Frost Ward"]={SubType="Book",Level=22,id=967,StackCount=1,Rarity=1,MinLevel=22,SellPrice=1050,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:967::::::::40:::::::|h[Tome of Frost Ward]|h|r",EquipLoc=""},["Recipe: Murloc Fin Soup"]={SubType="Cooking",Level=25,id=3680,StackCount=1,Rarity=1,MinLevel=0,SellPrice=400,Texture=134939,EquipLoc="",Link="|cffffffff|Hitem:3680::::::::40:::::::|h[Recipe: Murloc Fin Soup]|h|r",Type="Recipe"},["Scorpashi Breastplate"]={SubType="Leather",Level=49,id=14655,StackCount=1,Rarity=2,MinLevel=44,SellPrice=10392,Texture=132722,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14655::::::::40:::::::|h[Scorpashi Breastplate]|h|r"},["Plans: Massive Iron Axe"]={SubType="Blacksmithing",Level=37,id=12164,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1100,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:12164::::::::40:::::::|h[Plans: Massive Iron Axe]|h|r"},["Corrosive Sap"]={SubType="Quest",Level=1,id=5681,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,EquipLoc="",Link="|cffffffff|Hitem:5681::::::::40:::::::|h[Corrosive Sap]|h|r",Type="Quest"},["Northridge Crowbar"]={SubType="Key",Level=1,id=16308,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134520,EquipLoc="",Link="|cffffffff|Hitem:16308::::::::40:::::::|h[Northridge Crowbar]|h|r",Type="Key"},["Chimeric Leggings"]={SubType="Leather",Level=56,id=15072,StackCount=1,Rarity=2,MinLevel=51,SellPrice=16233,Texture=134582,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15072::::::::40:::::::|h[Chimeric Leggings]|h|r",Type="Armor"},["Mageweave Bandage"]={SubType="Consumable",Level=1,id=8544,StackCount=20,Rarity=1,MinLevel=0,SellPrice=400,Texture=133689,Link="|cffffffff|Hitem:8544::::::::40:::::::|h[Mageweave Bandage]|h|r",EquipLoc="",Type="Consumable"},["Level 65 Test Gear Mail - Hunter"]={SubType="Junk",Level=1,id=13691,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13691::::::::40:::::::|h[Level 65 Test Gear Mail - Hunter]|h|r"},["Test Crossbow"]={SubType="Crossbows",Level=25,id=4899,StackCount=1,Rarity=0,MinLevel=20,SellPrice=798,Texture=135530,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:4899::::::::40:::::::|h[Test Crossbow]|h|r",Type="Weapon"},["Upperdeck Tabard #3"]={SubType="Miscellaneous",Level=1,id=23710,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=135026,Link="|cffffffff|Hitem:23710::::::::40:::::::|h[Upperdeck Tabard #3]|h|r",EquipLoc="INVTYPE_TABARD",Type="Armor"},["Pattern: Shifting Cloak"]={SubType="Leatherworking",Level=62,id=18519,StackCount=1,Rarity=4,MinLevel=0,SellPrice=40000,Texture=134940,Type="Recipe",Link="|cffa335ee|Hitem:18519::::::::40:::::::|h[Pattern: Shifting Cloak]|h|r",EquipLoc=""},["90 Green Rogue Cap"]={SubType="Leather",Level=90,id=20301,StackCount=1,Rarity=2,MinLevel=60,SellPrice=66510,Texture=133143,Link="|cff1eff00|Hitem:20301::::::::40:::::::|h[90 Green Rogue Cap]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["White Woolen Dress"]={SubType="Cloth",Level=22,id=6787,StackCount=1,Rarity=1,MinLevel=17,SellPrice=466,Texture=135016,Type="Armor",Link="|cffffffff|Hitem:6787::::::::40:::::::|h[White Woolen Dress]|h|r",EquipLoc="INVTYPE_ROBE"},["Zandalar Vindicator's Breastplate"]={SubType="Plate",Level=65,id=19822,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132742,Link="|cffa335ee|Hitem:19822::::::::40:::::::|h[Zandalar Vindicator's Breastplate]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Glacial Wrists"]={SubType="Cloth",Level=80,id=22655,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34973,Texture=132606,Link="|cffa335ee|Hitem:22655::::::::40:::::::|h[Glacial Wrists]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Field Marshal's Dreadweave Robe"]={SubType="Cloth",Level=74,id=17581,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26465,Texture=132650,EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:17581::::::::40:::::::|h[Field Marshal's Dreadweave Robe]|h|r",Type="Armor"},["Grimoire of Mana Funnel"]={SubType="Book",Level=40,id=5727,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133738,Link="|cffffffff|Hitem:5727::::::::40:::::::|h[Grimoire of Mana Funnel]|h|r",EquipLoc="",Type="Recipe"},["Sungrass"]={SubType="Trade Goods",Level=46,id=8838,StackCount=20,Rarity=1,MinLevel=0,SellPrice=60,Texture=134199,Link="|cffffffff|Hitem:8838::::::::40:::::::|h[Sungrass]|h|r",EquipLoc="",Type="Trade Goods"},["Gaea's Embrace"]={SubType="Cloth",Level=70,id=22660,StackCount=1,Rarity=3,MinLevel=60,SellPrice=24601,Texture=133769,Link="|cff0070dd|Hitem:22660::::::::40:::::::|h[Gaea's Embrace]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Ornate Mithril Boots"]={SubType="Plate",Level=49,id=7936,StackCount=1,Rarity=2,MinLevel=44,SellPrice=6739,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:7936::::::::40:::::::|h[Ornate Mithril Boots]|h|r",Type="Armor"},["Green Scepter Shard"]={SubType="Quest",Level=1,id=21139,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134106,Link="|cffffffff|Hitem:21139::::::::40:::::::|h[Green Scepter Shard]|h|r",EquipLoc="",Type="Quest"},["Golden Scale Cuirass"]={SubType="Mail",Level=40,id=3845,StackCount=1,Rarity=2,MinLevel=35,SellPrice=6558,Texture=132628,Type="Armor",Link="|cff1eff00|Hitem:3845::::::::40:::::::|h[Golden Scale Cuirass]|h|r",EquipLoc="INVTYPE_CHEST"},["Skullsplitter Tusk"]={SubType="Quest",Level=1,id=1524,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134298,Type="Quest",Link="|cffffffff|Hitem:1524::::::::40:::::::|h[Skullsplitter Tusk]|h|r",EquipLoc=""},["Ritual Tunic"]={SubType="Cloth",Level=24,id=14133,StackCount=1,Rarity=2,MinLevel=19,SellPrice=950,Texture=135009,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14133::::::::40:::::::|h[Ritual Tunic]|h|r"},["Grimoire of Blood Boil II"]={SubType="Book",Level=18,id=3140,StackCount=1,Rarity=1,MinLevel=18,SellPrice=625,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:3140::::::::40:::::::|h[Grimoire of Blood Boil II]|h|r"},["Tranquil Orb"]={SubType="Miscellaneous",Level=43,id=4125,StackCount=1,Rarity=2,MinLevel=0,SellPrice=3142,Texture=134333,Link="|cff1eff00|Hitem:4125::::::::40:::::::|h[Tranquil Orb]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Heart of Zeal"]={SubType="Quest",Level=1,id=5805,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134339,Link="|cffffffff|Hitem:5805::::::::40:::::::|h[Heart of Zeal]|h|r",EquipLoc="",Type="Quest"},["Dragonscale Gauntlets"]={SubType="Mail",Level=45,id=8347,StackCount=1,Rarity=3,MinLevel=40,SellPrice=5979,Texture=132944,Link="|cff0070dd|Hitem:8347::::::::40:::::::|h[Dragonscale Gauntlets]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Feeble Sword"]={SubType="One-Handed Swords",Level=8,id=1413,StackCount=1,Rarity=0,MinLevel=3,SellPrice=55,Texture=135274,Type="Weapon",Link="|cff9d9d9d|Hitem:1413::::::::40:::::::|h[Feeble Sword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Arcanist Bindings"]={SubType="Cloth",Level=66,id=16799,StackCount=1,Rarity=4,MinLevel=60,SellPrice=17192,Texture=132518,EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:16799::::::::40:::::::|h[Arcanist Bindings]|h|r",Type="Armor"},["Tablet of Frost Shock III"]={SubType="Book",Level=46,id=9135,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9135::::::::40:::::::|h[Tablet of Frost Shock III]|h|r"},["70 Pound Mightfish"]={SubType="Junk",Level=55,id=13914,StackCount=1,Rarity=1,MinLevel=0,SellPrice=125,Texture=134300,Type="Miscellaneous",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13914::::::::40:::::::|h[70 Pound Mightfish]|h|r"},["Band of the Steadfast Hero"]={SubType="Miscellaneous",Level=62,id=22331,StackCount=1,Rarity=3,MinLevel=57,SellPrice=36253,Texture=133375,Link="|cff0070dd|Hitem:22331::::::::40:::::::|h[Band of the Steadfast Hero]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Icebane Leggings"]={SubType="Plate",Level=80,id=22699,StackCount=1,Rarity=4,MinLevel=0,SellPrice=72832,Texture=134584,Link="|cffa335ee|Hitem:22699::::::::40:::::::|h[Icebane Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Jade Inlaid Vestments"]={SubType="Cloth",Level=71,id=20635,StackCount=1,Rarity=4,MinLevel=60,SellPrice=47424,Texture=132680,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:20635::::::::40:::::::|h[Jade Inlaid Vestments]|h|r"},["Stormrage Legguards"]={SubType="Leather",Level=76,id=16901,StackCount=1,Rarity=4,MinLevel=60,SellPrice=72415,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:16901::::::::40:::::::|h[Stormrage Legguards]|h|r",Type="Armor"},["Book of Healing Touch VII"]={SubType="Book",Level=38,id=8774,StackCount=1,Rarity=1,MinLevel=38,SellPrice=4500,Texture=133743,Link="|cffffffff|Hitem:8774::::::::40:::::::|h[Book of Healing Touch VII]|h|r",EquipLoc="",Type="Recipe"},["Charger's Belt"]={SubType="Mail",Level=9,id=15472,StackCount=1,Rarity=1,MinLevel=4,SellPrice=33,Texture=132511,EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:15472::::::::40:::::::|h[Charger's Belt]|h|r",Type="Armor"},["Ornate Shield"]={SubType="Shields",Level=58,id=10362,StackCount=1,Rarity=2,MinLevel=53,SellPrice=24760,Texture=135940,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:10362::::::::40:::::::|h[Ornate Shield]|h|r",Type="Armor"},["Greater Mark of the Dawn"]={SubType="Consumable",Level=60,id=23196,StackCount=3,Rarity=1,MinLevel=1,SellPrice=0,Texture=134501,Link="|cffffffff|Hitem:23196::::::::40:::::::|h[Greater Mark of the Dawn]|h|r",EquipLoc="",Type="Consumable"},["Pattern: Herbalist's Gloves"]={SubType="Leatherworking",Level=26,id=7361,StackCount=1,Rarity=2,MinLevel=0,SellPrice=450,Texture=134939,Link="|cff1eff00|Hitem:7361::::::::40:::::::|h[Pattern: Herbalist's Gloves]|h|r",EquipLoc="",Type="Recipe"},["Lupine Leggings"]={SubType="Leather",Level=19,id=15017,StackCount=1,Rarity=2,MinLevel=14,SellPrice=611,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15017::::::::40:::::::|h[Lupine Leggings]|h|r",Type="Armor"},["Succulent Pork Ribs"]={SubType="Consumable",Level=20,id=2685,StackCount=20,Rarity=1,MinLevel=10,SellPrice=75,Texture=133972,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:2685::::::::40:::::::|h[Succulent Pork Ribs]|h|r"},["Monster - Wand, Horde Red Feathered"]={SubType="Wands",Level=1,id=13291,StackCount=1,Rarity=0,MinLevel=1,SellPrice=1,Texture=135463,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff9d9d9d|Hitem:13291::::::::40:::::::|h[Monster - Wand, Horde Red Feathered]|h|r"},["Tablet of Rockbiter Weapon IV"]={SubType="Book",Level=44,id=9129,StackCount=1,Rarity=1,MinLevel=44,SellPrice=6250,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9129::::::::40:::::::|h[Tablet of Rockbiter Weapon IV]|h|r"},["Wicked Dagger"]={SubType="Daggers",Level=19,id=3222,StackCount=1,Rarity=2,MinLevel=14,SellPrice=1203,Texture=135640,EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:3222::::::::40:::::::|h[Wicked Dagger]|h|r",Type="Weapon"},["Battered Cloak"]={SubType="Cloth",Level=5,id=11847,StackCount=1,Rarity=1,MinLevel=0,SellPrice=7,Texture=133753,Type="Armor",Link="|cffffffff|Hitem:11847::::::::40:::::::|h[Battered Cloak]|h|r",EquipLoc="INVTYPE_CLOAK"},["Padded Boots"]={SubType="Cloth",Level=27,id=2156,StackCount=1,Rarity=1,MinLevel=22,SellPrice=615,Texture=132543,Type="Armor",Link="|cffffffff|Hitem:2156::::::::40:::::::|h[Padded Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Warrior's Shield"]={SubType="Shields",Level=9,id=1438,StackCount=1,Rarity=1,MinLevel=4,SellPrice=70,Texture=134949,Link="|cffffffff|Hitem:1438::::::::40:::::::|h[Warrior's Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Southsea Mojo Boots"]={SubType="Cloth",Level=45,id=20641,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4829,Texture=132539,Link="|cff1eff00|Hitem:20641::::::::40:::::::|h[Southsea Mojo Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Tablet of Restoration IV"]={SubType="Book",Level=24,id=3130,StackCount=1,Rarity=1,MinLevel=24,SellPrice=1250,Texture=134459,Link="|cffffffff|Hitem:3130::::::::40:::::::|h[Tablet of Restoration IV]|h|r",EquipLoc="",Type="Recipe"},["Tome of Arcane Missiles II"]={SubType="Book",Level=16,id=1559,StackCount=1,Rarity=1,MinLevel=16,SellPrice=325,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:1559::::::::40:::::::|h[Tome of Arcane Missiles II]|h|r",EquipLoc=""},["Lawbringer Spaulders"]={SubType="Plate",Level=66,id=16856,StackCount=1,Rarity=4,MinLevel=60,SellPrice=25485,Texture=135051,EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:16856::::::::40:::::::|h[Lawbringer Spaulders]|h|r",Type="Armor"},["Onyxia Tooth Pendant"]={SubType="Miscellaneous",Level=74,id=18404,StackCount=1,Rarity=4,MinLevel=0,SellPrice=6714,Texture=133296,Type="Armor",Link="|cffa335ee|Hitem:18404::::::::40:::::::|h[Onyxia Tooth Pendant]|h|r",EquipLoc="INVTYPE_NECK"},["Twilight Cultist Ring of Lordship"]={SubType="Junk",Level=60,id=20451,StackCount=1,Rarity=1,MinLevel=60,SellPrice=0,Texture=133359,Type="Miscellaneous",EquipLoc="INVTYPE_FINGER",Link="|cffffffff|Hitem:20451::::::::40:::::::|h[Twilight Cultist Ring of Lordship]|h|r"},["Battered Leather Belt"]={SubType="Leather",Level=10,id=2371,StackCount=1,Rarity=1,MinLevel=5,SellPrice=37,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:2371::::::::40:::::::|h[Battered Leather Belt]|h|r"},["Watch Master's Cloak"]={SubType="Cloth",Level=33,id=2953,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2321,Texture=133757,Link="|cff1eff00|Hitem:2953::::::::40:::::::|h[Watch Master's Cloak]|h|r",EquipLoc="INVTYPE_CLOAK",Type="Armor"},["Bloodsail Shirt"]={SubType="Miscellaneous",Level=1,id=22742,StackCount=1,Rarity=1,MinLevel=1,SellPrice=1,Texture=135012,Link="|cffffffff|Hitem:22742::::::::40:::::::|h[Bloodsail Shirt]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Tome of Conjure Water IV"]={SubType="Book",Level=30,id=4150,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2425,Texture=133739,Type="Recipe",Link="|cffffffff|Hitem:4150::::::::40:::::::|h[Tome of Conjure Water IV]|h|r",EquipLoc=""},["Thick Scale Sabatons"]={SubType="Mail",Level=32,id=15544,StackCount=1,Rarity=2,MinLevel=27,SellPrice=2448,Texture=132539,EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:15544::::::::40:::::::|h[Thick Scale Sabatons]|h|r",Type="Armor"},["Toasted Smorc"]={SubType="Consumable",Level=1,id=23211,StackCount=20,Rarity=1,MinLevel=1,SellPrice=0,Texture=135267,Link="|cffffffff|Hitem:23211::::::::40:::::::|h[Toasted Smorc]|h|r",EquipLoc="",Type="Consumable"},["Codex of Mana Burn IV"]={SubType="Book",Level=48,id=9005,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=133741,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9005::::::::40:::::::|h[Codex of Mana Burn IV]|h|r"},["Vigorsteel Vambraces"]={SubType="Plate",Level=62,id=13951,StackCount=1,Rarity=3,MinLevel=57,SellPrice=11005,Texture=132617,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13951::::::::40:::::::|h[Vigorsteel Vambraces]|h|r"},["Legionnaire's Satin Sash"]={SubType="Cloth",Level=60,id=17614,StackCount=1,Rarity=3,MinLevel=55,SellPrice=4744,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:17614::::::::40:::::::|h[Legionnaire's Satin Sash]|h|r",Type="Armor"},["Whirlwind Warhammer"]={SubType="Two-Handed Maces",Level=40,id=6976,StackCount=1,Rarity=3,MinLevel=0,SellPrice=17264,Texture=133045,Type="Weapon",Link="|cff0070dd|Hitem:6976::::::::40:::::::|h[Whirlwind Warhammer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Qiraji Engraved Jewel"]={SubType="Quest",Level=1,id=20887,StackCount=250,Rarity=4,MinLevel=0,SellPrice=0,Texture=132617,Type="Quest",EquipLoc="",Link="|cffa335ee|Hitem:20887::::::::40:::::::|h[Qiraji Engraved Jewel]|h|r"},["Large Stone Mace"]={SubType="Two-Handed Maces",Level=3,id=2486,StackCount=1,Rarity=1,MinLevel=1,SellPrice=13,Texture=133046,EquipLoc="INVTYPE_2HWEAPON",Link="|cffffffff|Hitem:2486::::::::40:::::::|h[Large Stone Mace]|h|r",Type="Weapon"},["Sylvan Crown"]={SubType="Cloth",Level=70,id=22757,StackCount=1,Rarity=3,MinLevel=60,SellPrice=24961,Texture=132767,Link="|cff0070dd|Hitem:22757::::::::40:::::::|h[Sylvan Crown]|h|r",EquipLoc="INVTYPE_HEAD",Type="Armor"},["Blue Skeletal Horse"]={SubType="Junk",Level=40,id=13332,StackCount=1,Rarity=3,MinLevel=40,SellPrice=0,Texture=132264,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:13332::::::::40:::::::|h[Blue Skeletal Horse]|h|r"},["The Thunderwood Poker"]={SubType="Daggers",Level=65,id=22377,StackCount=1,Rarity=3,MinLevel=0,SellPrice=64976,Texture=135315,Link="|cff0070dd|Hitem:22377::::::::40:::::::|h[The Thunderwood Poker]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Grimoire of Corruption IV"]={SubType="Book",Level=40,id=9231,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133738,Link="|cffffffff|Hitem:9231::::::::40:::::::|h[Grimoire of Corruption IV]|h|r",EquipLoc="",Type="Recipe"},["Deprecated Copper Ingot"]={SubType="Trade Goods",Level=1,id=741,StackCount=5,Rarity=1,MinLevel=0,SellPrice=5,Texture=133216,EquipLoc="",Link="|cffffffff|Hitem:741::::::::40:::::::|h[Deprecated Copper Ingot]|h|r",Type="Trade Goods"},["Bloodfire Talons"]={SubType="Leather",Level=53,id=12464,StackCount=1,Rarity=3,MinLevel=48,SellPrice=8520,Texture=132953,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:12464::::::::40:::::::|h[Bloodfire Talons]|h|r"},["Elunite Axe"]={SubType="One-Handed Axes",Level=15,id=6966,StackCount=1,Rarity=2,MinLevel=0,SellPrice=693,Texture=132395,Type="Weapon",Link="|cff1eff00|Hitem:6966::::::::40:::::::|h[Elunite Axe]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Icefury Wand"]={SubType="Wands",Level=40,id=7514,StackCount=1,Rarity=3,MinLevel=0,SellPrice=9842,Texture=135467,EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff0070dd|Hitem:7514::::::::40:::::::|h[Icefury Wand]|h|r",Type="Weapon"},["Relic Stone of Piety"]={SubType="Miscellaneous",Level=35,id=3789,StackCount=1,Rarity=1,MinLevel=30,SellPrice=2000,Texture=134335,Type="Armor",EquipLoc="INVTYPE_TRINKET",Link="|cffffffff|Hitem:3789::::::::40:::::::|h[Relic Stone of Piety]|h|r"},["Glowing Leather Bracers"]={SubType="Leather",Level=28,id=2017,StackCount=1,Rarity=2,MinLevel=23,SellPrice=895,Texture=132602,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:2017::::::::40:::::::|h[Glowing Leather Bracers]|h|r"},["Oil of Olaf"]={SubType="Consumable",Level=8,id=1177,StackCount=10,Rarity=1,MinLevel=0,SellPrice=3,Texture=134743,Type="Consumable",Link="|cffffffff|Hitem:1177::::::::40:::::::|h[Oil of Olaf]|h|r",EquipLoc=""},["Copper Bar"]={SubType="Trade Goods",Level=10,id=2840,StackCount=20,Rarity=1,MinLevel=0,SellPrice=10,Texture=133216,Link="|cffffffff|Hitem:2840::::::::40:::::::|h[Copper Bar]|h|r",EquipLoc="",Type="Trade Goods"},["Large Rope Net"]={SubType="Consumable",Level=12,id=835,StackCount=1,Rarity=1,MinLevel=2,SellPrice=23,Texture=134325,EquipLoc="",Link="|cffffffff|Hitem:835::::::::40:::::::|h[Large Rope Net]|h|r",Type="Consumable"},["Level 45 Test Gear Plate - Paladin/Warrior"]={SubType="Junk",Level=1,id=13681,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13681::::::::40:::::::|h[Level 45 Test Gear Plate - Paladin/Warrior]|h|r"},["Book of Soothe Animal III"]={SubType="Book",Level=54,id=8789,StackCount=1,Rarity=1,MinLevel=54,SellPrice=11000,Texture=133743,Link="|cffffffff|Hitem:8789::::::::40:::::::|h[Book of Soothe Animal III]|h|r",EquipLoc="",Type="Recipe"},["Toxin Injector"]={SubType="Guns",Level=81,id=22810,StackCount=1,Rarity=4,MinLevel=60,SellPrice=142362,Texture=135620,Link="|cffa335ee|Hitem:22810::::::::40:::::::|h[Toxin Injector]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT",Type="Weapon"},["Mutilator"]={SubType="Two-Handed Swords",Level=47,id=12469,StackCount=1,Rarity=3,MinLevel=42,SellPrice=29179,Texture=135272,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:12469::::::::40:::::::|h[Mutilator]|h|r"},["Crescent Staff"]={SubType="Staves",Level=24,id=6505,StackCount=1,Rarity=3,MinLevel=0,SellPrice=3680,Texture=135141,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:6505::::::::40:::::::|h[Crescent Staff]|h|r"},["Courser Eye"]={SubType="Quest",Level=1,id=5585,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133884,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5585::::::::40:::::::|h[Courser Eye]|h|r"},["Grimoire of Curse of Agony"]={SubType="Book",Level=8,id=9194,StackCount=1,Rarity=1,MinLevel=8,SellPrice=50,Texture=133738,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9194::::::::40:::::::|h[Grimoire of Curse of Agony]|h|r"},["Loose Chain Boots"]={SubType="Mail",Level=9,id=2642,StackCount=1,Rarity=0,MinLevel=4,SellPrice=33,Texture=132535,Link="|cff9d9d9d|Hitem:2642::::::::40:::::::|h[Loose Chain Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Tablet of Nullify Poison II"]={SubType="Book",Level=26,id=1061,StackCount=1,Rarity=1,MinLevel=26,SellPrice=1500,Texture=134459,EquipLoc="",Link="|cffffffff|Hitem:1061::::::::40:::::::|h[Tablet of Nullify Poison II]|h|r",Type="Recipe"},["Idol of Health"]={SubType="Idols",Level=78,id=22399,StackCount=1,Rarity=4,MinLevel=60,SellPrice=49354,Texture=134913,Link="|cffa335ee|Hitem:22399::::::::40:::::::|h[Idol of Health]|h|r",EquipLoc="INVTYPE_RELIC",Type="Armor"},["Finely Woven Cloak"]={SubType="Cloth",Level=15,id=1270,StackCount=1,Rarity=2,MinLevel=0,SellPrice=213,Texture=133767,EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:1270::::::::40:::::::|h[Finely Woven Cloak]|h|r",Type="Armor"},["Blood Guard's Chain Greaves"]={SubType="Mail",Level=66,id=22843,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15084,Texture=132539,Link="|cff0070dd|Hitem:22843::::::::40:::::::|h[Blood Guard's Chain Greaves]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Small Purple Rocket"]={SubType="Consumable",Level=1,id=21560,StackCount=20,Rarity=1,MinLevel=0,SellPrice=2,Texture=134284,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:21560::::::::40:::::::|h[Small Purple Rocket]|h|r"},["Phalanx Leggings"]={SubType="Mail",Level=34,id=7423,StackCount=1,Rarity=2,MinLevel=29,SellPrice=3941,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:7423::::::::40:::::::|h[Phalanx Leggings]|h|r"},["Ridgewell's Crate"]={SubType="Quest",Level=1,id=12437,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132763,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12437::::::::40:::::::|h[Ridgewell's Crate]|h|r"},["Pledge of Adoration: Ironforge"]={SubType="Consumable",Level=1,id=22154,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135450,Link="|cffffffff|Hitem:22154::::::::40:::::::|h[Pledge of Adoration: Ironforge]|h|r",EquipLoc="",Type="Consumable"},["Blue Pearl"]={SubType="Reagent",Level=1,id=4611,StackCount=20,Rarity=1,MinLevel=0,SellPrice=50,Texture=134564,Link="|cffffffff|Hitem:4611::::::::40:::::::|h[Blue Pearl]|h|r",EquipLoc="",Type="Reagent"},["Winter Veil Roast"]={SubType="Consumable",Level=55,id=21235,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134006,Link="|cffffffff|Hitem:21235::::::::40:::::::|h[Winter Veil Roast]|h|r",EquipLoc="",Type="Consumable"},["Berylline Pads"]={SubType="Cloth",Level=36,id=4197,StackCount=1,Rarity=3,MinLevel=0,SellPrice=2765,Texture=135036,EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:4197::::::::40:::::::|h[Berylline Pads]|h|r",Type="Armor"},["Shredder Operating Manual - Page 6"]={SubType="Junk",Level=1,id=16650,StackCount=1,Rarity=1,MinLevel=0,SellPrice=62,Texture=134332,EquipLoc="",Link="|cffffffff|Hitem:16650::::::::40:::::::|h[Shredder Operating Manual - Page 6]|h|r",Type="Miscellaneous"},["Mystical Mantle"]={SubType="Cloth",Level=55,id=10172,StackCount=1,Rarity=2,MinLevel=50,SellPrice=9603,Texture=135052,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:10172::::::::40:::::::|h[Mystical Mantle]|h|r",Type="Armor"},["Test AQ Resource - Rainbow Fin Albacore"]={SubType="Junk",Level=1,id=21641,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21641::::::::40:::::::|h[Test AQ Resource - Rainbow Fin Albacore]|h|r"},["Breastplate of Heroism"]={SubType="Plate",Level=60,id=21997,StackCount=1,Rarity=4,MinLevel=0,SellPrice=26359,Texture=132738,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:21997::::::::40:::::::|h[Breastplate of Heroism]|h|r"},["Heroic Commendation Medal"]={SubType="Miscellaneous",Level=58,id=15799,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7108,Texture=133278,EquipLoc="INVTYPE_NECK",Link="|cff1eff00|Hitem:15799::::::::40:::::::|h[Heroic Commendation Medal]|h|r",Type="Armor"},["Arathi Basin Iron Ration"]={SubType="Consumable",Level=45,id=20064,StackCount=20,Rarity=1,MinLevel=35,SellPrice=75,Texture=133950,Link="|cffffffff|Hitem:20064::::::::40:::::::|h[Arathi Basin Iron Ration]|h|r",EquipLoc="",Type="Consumable"},["Test AQ Resource - Lean Wolf Steak"]={SubType="Junk",Level=1,id=21659,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21659::::::::40:::::::|h[Test AQ Resource - Lean Wolf Steak]|h|r"},["Monster - Axe, 2H Horde Red War Axe"]={SubType="Two-Handed Axes",Level=1,id=18419,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",Link="|cff9d9d9d|Hitem:18419::::::::40:::::::|h[Monster - Axe, 2H Horde Red War Axe]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["Globe of Water"]={SubType="Reagent",Level=45,id=7079,StackCount=10,Rarity=1,MinLevel=0,SellPrice=400,Texture=134333,EquipLoc="",Link="|cffffffff|Hitem:7079::::::::40:::::::|h[Globe of Water]|h|r",Type="Reagent"},["Breakwater Legguards"]={SubType="Plate",Level=58,id=18305,StackCount=1,Rarity=2,MinLevel=53,SellPrice=14375,Texture=134584,Type="Armor",Link="|cff1eff00|Hitem:18305::::::::40:::::::|h[Breakwater Legguards]|h|r",EquipLoc="INVTYPE_LEGS"},["Robes of the Triumvirate"]={SubType="Cloth",Level=75,id=21696,StackCount=1,Rarity=4,MinLevel=60,SellPrice=54379,Texture=132663,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:21696::::::::40:::::::|h[Robes of the Triumvirate]|h|r"},["Heart of the Wild"]={SubType="Reagent",Level=45,id=10286,StackCount=10,Rarity=1,MinLevel=0,SellPrice=400,Texture=134188,EquipLoc="",Link="|cffffffff|Hitem:10286::::::::40:::::::|h[Heart of the Wild]|h|r",Type="Reagent"},["Stormstrike Hammer"]={SubType="One-Handed Maces",Level=65,id=19104,StackCount=1,Rarity=3,MinLevel=60,SellPrice=64227,Texture=133058,Link="|cff0070dd|Hitem:19104::::::::40:::::::|h[Stormstrike Hammer]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Deprecated Forboding Document"]={SubType="Junk",Level=1,id=3503,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:3503::::::::40:::::::|h[Deprecated Forboding Document]|h|r"},["Comar's Heart"]={SubType="Quest",Level=1,id=6313,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134338,Type="Quest",Link="|cffffffff|Hitem:6313::::::::40:::::::|h[Comar's Heart]|h|r",EquipLoc=""},["Felstalker Hoof"]={SubType="Quest",Level=1,id=6640,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132368,Link="|cffffffff|Hitem:6640::::::::40:::::::|h[Felstalker Hoof]|h|r",EquipLoc="",Type="Quest"},["Blackrock Mace"]={SubType="One-Handed Maces",Level=21,id=1296,StackCount=1,Rarity=2,MinLevel=16,SellPrice=1681,Texture=133481,Type="Weapon",Link="|cff1eff00|Hitem:1296::::::::40:::::::|h[Blackrock Mace]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Don Mauricio's Band of Domination"]={SubType="Miscellaneous",Level=63,id=22433,StackCount=1,Rarity=3,MinLevel=58,SellPrice=15282,Texture=133358,Link="|cff0070dd|Hitem:22433::::::::40:::::::|h[Don Mauricio's Band of Domination]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Uncloven Satyr Hoof"]={SubType="Quest",Level=1,id=7128,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132368,Link="|cffffffff|Hitem:7128::::::::40:::::::|h[Uncloven Satyr Hoof]|h|r",EquipLoc="",Type="Quest"},["Bloodcap"]={SubType="Junk",Level=1,id=22434,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134528,Link="|cffffffff|Hitem:22434::::::::40:::::::|h[Bloodcap]|h|r",EquipLoc="",Type="Miscellaneous"},["Beady Eye Stalk"]={SubType="Junk",Level=1,id=5506,StackCount=5,Rarity=0,MinLevel=0,SellPrice=71,Texture=133884,EquipLoc="",Link="|cff9d9d9d|Hitem:5506::::::::40:::::::|h[Beady Eye Stalk]|h|r",Type="Miscellaneous"},["Darkmantle Tunic"]={SubType="Leather",Level=60,id=22009,StackCount=1,Rarity=4,MinLevel=0,SellPrice=31970,Texture=132722,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:22009::::::::40:::::::|h[Darkmantle Tunic]|h|r"},["Monster - Orb"]={SubType="One-Handed Maces",Level=1,id=6618,StackCount=1,Rarity=0,MinLevel=1,SellPrice=6,Texture=134333,Type="Weapon",Link="|cff9d9d9d|Hitem:6618::::::::40:::::::|h[Monster - Orb]|h|r",EquipLoc="INVTYPE_WEAPON"},["Tyranis' Pendant (old)"]={SubType="Quest",Level=1,id=6683,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133290,Type="Quest",Link="|cffffffff|Hitem:6683::::::::40:::::::|h[Tyranis' Pendant (old)]|h|r",EquipLoc=""},["Level 50 Test Gear Cloth - Mage/Priest/Warlock 2"]={SubType="Junk",Level=1,id=17843,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17843::::::::40:::::::|h[Level 50 Test Gear Cloth - Mage/Priest/Warlock 2]|h|r",Type="Miscellaneous"},["Smoking Heart of the Mountain"]={SubType="Miscellaneous",Level=55,id=11811,StackCount=1,Rarity=3,MinLevel=50,SellPrice=1500,Texture=134084,Type="Armor",Link="|cff0070dd|Hitem:11811::::::::40:::::::|h[Smoking Heart of the Mountain]|h|r",EquipLoc="INVTYPE_TRINKET"},["Deviate Hide"]={SubType="Quest",Level=1,id=6443,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134370,Type="Quest",Link="|cffffffff|Hitem:6443::::::::40:::::::|h[Deviate Hide]|h|r",EquipLoc=""},["Bindings of The Five Thunders"]={SubType="Mail",Level=65,id=22095,StackCount=1,Rarity=3,MinLevel=0,SellPrice=19275,Texture=132601,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:22095::::::::40:::::::|h[Bindings of The Five Thunders]|h|r"},["Glorious Shoulders"]={SubType="Mail",Level=28,id=4833,StackCount=1,Rarity=2,MinLevel=23,SellPrice=1731,Texture=135036,Link="|cff1eff00|Hitem:4833::::::::40:::::::|h[Glorious Shoulders]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Necrotic Rune"]={SubType="Junk",Level=1,id=22484,StackCount=100,Rarity=2,MinLevel=0,SellPrice=0,Texture=135228,Link="|cff1eff00|Hitem:22484::::::::40:::::::|h[Necrotic Rune]|h|r",EquipLoc="",Type="Miscellaneous"},["Recipe: Transmute Earth to Water"]={SubType="Alchemy",Level=55,id=13484,StackCount=1,Rarity=2,MinLevel=0,SellPrice=0,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13484::::::::40:::::::|h[Recipe: Transmute Earth to Water]|h|r"},["Unused Feathered Gauntlets"]={SubType="Leather",Level=27,id=4192,StackCount=1,Rarity=1,MinLevel=22,SellPrice=516,Texture=132939,EquipLoc="INVTYPE_HAND",Link="|cffffffff|Hitem:4192::::::::40:::::::|h[Unused Feathered Gauntlets]|h|r",Type="Armor"},["Deprecated Nomadic Shoulderpads"]={SubType="Leather",Level=4,id=4955,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=135039,EquipLoc="INVTYPE_SHOULDER",Link="|cffffffff|Hitem:4955::::::::40:::::::|h[Deprecated Nomadic Shoulderpads]|h|r",Type="Armor"},["Superior Belt"]={SubType="Leather",Level=25,id=9801,StackCount=1,Rarity=2,MinLevel=20,SellPrice=708,Texture=132491,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:9801::::::::40:::::::|h[Superior Belt]|h|r"},["General's Dreadweave Belt"]={SubType="Cloth",Level=65,id=17589,StackCount=1,Rarity=4,MinLevel=60,SellPrice=8155,Texture=132502,EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:17589::::::::40:::::::|h[General's Dreadweave Belt]|h|r",Type="Armor"},["Greater Firestone"]={SubType="Miscellaneous",Level=46,id=13700,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134085,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffffffff|Hitem:13700::::::::40:::::::|h[Greater Firestone]|h|r"},["Plans: Black Grasp of the Destroyer"]={SubType="Blacksmithing",Level=70,id=22220,StackCount=1,Rarity=3,MinLevel=0,SellPrice=12500,Texture=134941,Type="Recipe",EquipLoc="",Link="|cff0070dd|Hitem:22220::::::::40:::::::|h[Plans: Black Grasp of the Destroyer]|h|r"},["Outfitter Belt"]={SubType="Leather",Level=5,id=2186,StackCount=1,Rarity=1,MinLevel=0,SellPrice=6,Texture=132495,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:2186::::::::40:::::::|h[Outfitter Belt]|h|r"},["Defias Renegade Ring"]={SubType="Miscellaneous",Level=25,id=1076,StackCount=1,Rarity=2,MinLevel=20,SellPrice=650,Texture=133344,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:1076::::::::40:::::::|h[Defias Renegade Ring]|h|r"},["Word of Thawing"]={SubType="Junk",Level=1,id=23055,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134938,Link="|cffffffff|Hitem:23055::::::::40:::::::|h[Word of Thawing]|h|r",EquipLoc="",Type="Miscellaneous"},["Level 45 Test Gear Leather - Rogue"]={SubType="Junk",Level=1,id=13675,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13675::::::::40:::::::|h[Level 45 Test Gear Leather - Rogue]|h|r"},["Bonescythe Ring"]={SubType="Miscellaneous",Level=92,id=23060,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133393,Link="|cffa335ee|Hitem:23060::::::::40:::::::|h[Bonescythe Ring]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Ring of Faith"]={SubType="Miscellaneous",Level=92,id=23061,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133393,Link="|cffa335ee|Hitem:23061::::::::40:::::::|h[Ring of Faith]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Nimboya's Mystical Staff"]={SubType="Staves",Level=46,id=4134,StackCount=1,Rarity=2,MinLevel=0,SellPrice=22495,Texture=135150,EquipLoc="INVTYPE_2HWEAPON",Link="|cff1eff00|Hitem:4134::::::::40:::::::|h[Nimboya's Mystical Staff]|h|r",Type="Weapon"},["Imperial Plate Chest"]={SubType="Plate",Level=60,id=12422,StackCount=1,Rarity=2,MinLevel=55,SellPrice=16204,Texture=132745,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:12422::::::::40:::::::|h[Imperial Plate Chest]|h|r"},["Writ of Safe Passage"]={SubType="Junk",Level=1,id=22593,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134941,Link="|cffffffff|Hitem:22593::::::::40:::::::|h[Writ of Safe Passage]|h|r",EquipLoc="",Type="Miscellaneous"},["Relentless Scythe"]={SubType="Two-Handed Swords",Level=62,id=13163,StackCount=1,Rarity=3,MinLevel=57,SellPrice=69537,Texture=135316,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:13163::::::::40:::::::|h[Relentless Scythe]|h|r"},["Lei of Lilies"]={SubType="Miscellaneous",Level=51,id=1315,StackCount=1,Rarity=4,MinLevel=46,SellPrice=13000,Texture=133938,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:1315::::::::40:::::::|h[Lei of Lilies]|h|r"},["Chestguard of Undead Slaying"]={SubType="Mail",Level=63,id=23088,StackCount=1,Rarity=3,MinLevel=58,SellPrice=34463,Texture=132630,Link="|cff0070dd|Hitem:23088::::::::40:::::::|h[Chestguard of Undead Slaying]|h|r",EquipLoc="INVTYPE_CHEST",Type="Armor"},["Blue-feathered Amulet"]={SubType="Quest",Level=1,id=12524,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132925,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12524::::::::40:::::::|h[Blue-feathered Amulet]|h|r"},["Defias Script"]={SubType="Quest",Level=1,id=6846,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133472,Type="Quest",Link="|cffffffff|Hitem:6846::::::::40:::::::|h[Defias Script]|h|r",EquipLoc=""},["Vicious Night Web Spider Venom"]={SubType="Quest",Level=1,id=2872,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134437,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:2872::::::::40:::::::|h[Vicious Night Web Spider Venom]|h|r"},["Praetorian Leggings"]={SubType="Leather",Level=55,id=15186,StackCount=1,Rarity=2,MinLevel=50,SellPrice=15373,Texture=134586,EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:15186::::::::40:::::::|h[Praetorian Leggings]|h|r",Type="Armor"},["Councillor's Gloves"]={SubType="Cloth",Level=55,id=10099,StackCount=1,Rarity=2,MinLevel=50,SellPrice=6567,Texture=132955,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:10099::::::::40:::::::|h[Councillor's Gloves]|h|r",Type="Armor"},["Putrid Vine"]={SubType="Junk",Level=1,id=22444,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=132106,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22444::::::::40:::::::|h[Putrid Vine]|h|r"},["Regal Robe"]={SubType="Cloth",Level=45,id=7468,StackCount=1,Rarity=2,MinLevel=40,SellPrice=6763,Texture=132677,EquipLoc="INVTYPE_ROBE",Link="|cff1eff00|Hitem:7468::::::::40:::::::|h[Regal Robe]|h|r",Type="Armor"},["Filled Jade Phial"]={SubType="Quest",Level=1,id=5639,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134721,EquipLoc="",Link="|cffffffff|Hitem:5639::::::::40:::::::|h[Filled Jade Phial]|h|r",Type="Quest"},["Bone Fragments"]={SubType="Junk",Level=1,id=22526,StackCount=250,Rarity=1,MinLevel=0,SellPrice=0,Texture=133724,Link="|cffffffff|Hitem:22526::::::::40:::::::|h[Bone Fragments]|h|r",EquipLoc="",Type="Miscellaneous"},["Champion's Leather Headguard"]={SubType="Leather",Level=63,id=16506,StackCount=1,Rarity=3,MinLevel=58,SellPrice=10676,Texture=133077,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16506::::::::40:::::::|h[Champion's Leather Headguard]|h|r",Type="Armor"},["Corrupted Felwood Sample"]={SubType="Quest",Level=1,id=12234,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134815,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12234::::::::40:::::::|h[Corrupted Felwood Sample]|h|r"},["Feathered Boots"]={SubType="Leather",Level=27,id=4195,StackCount=1,Rarity=1,MinLevel=22,SellPrice=727,Texture=132539,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:4195::::::::40:::::::|h[Feathered Boots]|h|r"},["Bindings of the Windseeker"]={SubType="Junk",Level=70,id=18563,StackCount=1,Rarity=5,MinLevel=0,SellPrice=0,Texture=135988,Type="Miscellaneous",Link="|cffff8000|Hitem:18563::::::::40:::::::|h[Bindings of the Windseeker]|h|r",EquipLoc=""},["Somatic Intensifier"]={SubType="Quest",Level=1,id=13356,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=136134,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:13356::::::::40:::::::|h[Somatic Intensifier]|h|r"},["Champion's Mail Pauldrons"]={SubType="Mail",Level=71,id=23260,StackCount=1,Rarity=3,MinLevel=60,SellPrice=19611,Texture=135035,Link="|cff0070dd|Hitem:23260::::::::40:::::::|h[Champion's Mail Pauldrons]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Disciple's Gloves"]={SubType="Cloth",Level=11,id=6515,StackCount=1,Rarity=1,MinLevel=6,SellPrice=37,Texture=132955,Type="Armor",Link="|cffffffff|Hitem:6515::::::::40:::::::|h[Disciple's Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Purified Moonwell Water"]={SubType="Quest",Level=1,id=12906,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134754,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12906::::::::40:::::::|h[Purified Moonwell Water]|h|r"},["Recipe: Greater Holy Protection Potion"]={SubType="Alchemy",Level=58,id=13500,StackCount=1,Rarity=2,MinLevel=0,SellPrice=6000,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:13500::::::::40:::::::|h[Recipe: Greater Holy Protection Potion]|h|r"},["Black Silk Pack"]={SubType="Bag",Level=25,id=5765,StackCount=1,Rarity=1,MinLevel=0,SellPrice=4000,Texture=133629,EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:5765::::::::40:::::::|h[Black Silk Pack]|h|r",Type="Container"},["Beastmaster's Girdle"]={SubType="Leather",Level=28,id=5355,StackCount=1,Rarity=2,MinLevel=0,SellPrice=947,Texture=132493,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:5355::::::::40:::::::|h[Beastmaster's Girdle]|h|r"},["Simple Sigil"]={SubType="Quest",Level=1,id=9545,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134415,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9545::::::::40:::::::|h[Simple Sigil]|h|r"},["Grand Marshal's Bullseye"]={SubType="Bows",Level=78,id=18833,StackCount=1,Rarity=4,MinLevel=60,SellPrice=34731,Texture=135500,Type="Weapon",Link="|cffa335ee|Hitem:18833::::::::40:::::::|h[Grand Marshal's Bullseye]|h|r",EquipLoc="INVTYPE_RANGED"},["Mire Lord Fungus"]={SubType="Quest",Level=1,id=6081,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134186,EquipLoc="",Link="|cffffffff|Hitem:6081::::::::40:::::::|h[Mire Lord Fungus]|h|r",Type="Quest"},["Severance"]={SubType="Two-Handed Axes",Level=81,id=22815,StackCount=1,Rarity=4,MinLevel=60,SellPrice=241520,Texture=132416,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:22815::::::::40:::::::|h[Severance]|h|r"},["Hetaera's Bruised Head"]={SubType="Quest",Level=1,id=10600,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134302,EquipLoc="",Link="|cffffffff|Hitem:10600::::::::40:::::::|h[Hetaera's Bruised Head]|h|r",Type="Quest"},["Wrapped Gift"]={SubType="Consumable",Level=1,id=13367,StackCount=1,Rarity=0,MinLevel=0,SellPrice=0,Texture=134140,Type="Consumable",EquipLoc="",Link="|cff9d9d9d|Hitem:13367::::::::40:::::::|h[Wrapped Gift]|h|r"},["Wand of Fates"]={SubType="Wands",Level=83,id=22820,StackCount=1,Rarity=4,MinLevel=60,SellPrice=147283,Texture=135481,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffa335ee|Hitem:22820::::::::40:::::::|h[Wand of Fates]|h|r"},["Ring of Pure Silver"]={SubType="Miscellaneous",Level=31,id=1116,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1250,Texture=133343,Link="|cff1eff00|Hitem:1116::::::::40:::::::|h[Ring of Pure Silver]|h|r",EquipLoc="INVTYPE_FINGER",Type="Armor"},["Fire Oil"]={SubType="Reagent",Level=25,id=6371,StackCount=20,Rarity=1,MinLevel=0,SellPrice=12,Texture=134818,Type="Reagent",Link="|cffffffff|Hitem:6371::::::::40:::::::|h[Fire Oil]|h|r",EquipLoc=""},["Eternal Cord"]={SubType="Cloth",Level=61,id=14337,StackCount=1,Rarity=2,MinLevel=56,SellPrice=8546,Texture=132499,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:14337::::::::40:::::::|h[Eternal Cord]|h|r"},["Rift Bracers"]={SubType="Mail",Level=25,id=5943,StackCount=1,Rarity=2,MinLevel=20,SellPrice=840,Texture=132602,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:5943::::::::40:::::::|h[Rift Bracers]|h|r",Type="Armor"},["Grand Marshal's Demolisher"]={SubType="Two-Handed Maces",Level=78,id=23455,StackCount=1,Rarity=4,MinLevel=60,SellPrice=57053,Texture=133060,Link="|cffa335ee|Hitem:23455::::::::40:::::::|h[Grand Marshal's Demolisher]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Scroll of Agility II"]={SubType="Consumable",Level=35,id=1477,StackCount=5,Rarity=1,MinLevel=25,SellPrice=87,Texture=134938,EquipLoc="",Link="|cffffffff|Hitem:1477::::::::40:::::::|h[Scroll of Agility II]|h|r",Type="Consumable"},["Olaf's All Purpose Shield"]={SubType="Shields",Level=42,id=9404,StackCount=1,Rarity=3,MinLevel=37,SellPrice=2819,Texture=134948,Link="|cff0070dd|Hitem:9404::::::::40:::::::|h[Olaf's All Purpose Shield]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Resplendent Boots"]={SubType="Cloth",Level=59,id=14319,StackCount=1,Rarity=2,MinLevel=54,SellPrice=11401,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14319::::::::40:::::::|h[Resplendent Boots]|h|r"},["Thorium Shackles"]={SubType="Quest",Level=1,id=11286,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132507,Type="Quest",Link="|cffffffff|Hitem:11286::::::::40:::::::|h[Thorium Shackles]|h|r",EquipLoc=""},["Crumpled Note"]={SubType="Junk",Level=1,id=4100,StackCount=10,Rarity=0,MinLevel=0,SellPrice=23,Texture=133471,Link="|cff9d9d9d|Hitem:4100::::::::40:::::::|h[Crumpled Note]|h|r",EquipLoc="",Type="Miscellaneous"},["Ring of the Dreamwalker"]={SubType="Miscellaneous",Level=92,id=23064,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133393,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:23064::::::::40:::::::|h[Ring of the Dreamwalker]|h|r"},["Durability Chestpiece"]={SubType="Cloth",Level=1,id=14382,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135017,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:14382::::::::40:::::::|h[Durability Chestpiece]|h|r"},["Bracers of Arcane Accuracy"]={SubType="Cloth",Level=75,id=19374,StackCount=1,Rarity=4,MinLevel=60,SellPrice=26268,Texture=132606,Link="|cffa335ee|Hitem:19374::::::::40:::::::|h[Bracers of Arcane Accuracy]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["JEFF TEST SWORD"]={SubType="One-Handed Swords",Level=50,id=12971,StackCount=1,Rarity=1,MinLevel=0,SellPrice=14281,Texture=135271,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffffffff|Hitem:12971::::::::40:::::::|h[JEFF TEST SWORD]|h|r"},["Rageclaw Chestguard"]={SubType="Leather",Level=51,id=15381,StackCount=1,Rarity=2,MinLevel=46,SellPrice=12593,Texture=132720,EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:15381::::::::40:::::::|h[Rageclaw Chestguard]|h|r",Type="Armor"},["Venom Bottle"]={SubType="Quest",Level=1,id=9321,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134799,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9321::::::::40:::::::|h[Venom Bottle]|h|r"},["Dazzling Longsword"]={SubType="One-Handed Swords",Level=41,id=869,StackCount=1,Rarity=4,MinLevel=36,SellPrice=18529,Texture=135326,Type="Weapon",Link="|cffa335ee|Hitem:869::::::::40:::::::|h[Dazzling Longsword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Mystic Crystal"]={SubType="Consumable",Level=1,id=13156,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134095,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:13156::::::::40:::::::|h[Mystic Crystal]|h|r"},["Shinsollo"]={SubType="Consumable",Level=55,id=16171,StackCount=20,Rarity=1,MinLevel=45,SellPrice=200,Texture=134019,EquipLoc="",Link="|cffffffff|Hitem:16171::::::::40:::::::|h[Shinsollo]|h|r",Type="Consumable"},["Tablet of Chain Heal III"]={SubType="Book",Level=54,id=9157,StackCount=1,Rarity=1,MinLevel=54,SellPrice=8750,Texture=134459,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:9157::::::::40:::::::|h[Tablet of Chain Heal III]|h|r"},["Etched Tablet"]={SubType="Quest",Level=1,id=9564,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134455,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9564::::::::40:::::::|h[Etched Tablet]|h|r"},["Kingsfall"]={SubType="Daggers",Level=89,id=22802,StackCount=1,Rarity=4,MinLevel=60,SellPrice=265185,Texture=135672,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:22802::::::::40:::::::|h[Kingsfall]|h|r"},["Fine Loose Hair"]={SubType="Junk",Level=1,id=5119,StackCount=10,Rarity=0,MinLevel=0,SellPrice=118,Texture=134323,Link="|cff9d9d9d|Hitem:5119::::::::40:::::::|h[Fine Loose Hair]|h|r",EquipLoc="",Type="Miscellaneous"},["Rugged Trapper's Boots"]={SubType="Miscellaneous",Level=1,id=129,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132540,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:129::::::::40:::::::|h[Rugged Trapper's Boots]|h|r",Type="Armor"},["Grimoire of Tainted Blood (Rank 4)"]={SubType="Book",Level=56,id=16387,StackCount=1,Rarity=1,MinLevel=56,SellPrice=5500,Texture=133738,EquipLoc="",Link="|cffffffff|Hitem:16387::::::::40:::::::|h[Grimoire of Tainted Blood (Rank 4)]|h|r",Type="Recipe"},["Nether Force Wand"]={SubType="Wands",Level=40,id=11263,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10103,Texture=135469,Type="Weapon",Link="|cff0070dd|Hitem:11263::::::::40:::::::|h[Nether Force Wand]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Monster - Sword 1H - Widow's Remorse"]={SubType="One-Handed Swords",Level=1,id=23743,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135370,Link="|cff9d9d9d|Hitem:23743::::::::40:::::::|h[Monster - Sword 1H - Widow's Remorse]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Khan's Cloak"]={SubType="Cloth",Level=44,id=14781,StackCount=1,Rarity=2,MinLevel=39,SellPrice=4617,Texture=133760,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:14781::::::::40:::::::|h[Khan's Cloak]|h|r"},["Hillman's Belt"]={SubType="Leather",Level=25,id=4250,StackCount=1,Rarity=2,MinLevel=20,SellPrice=705,Texture=132495,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:4250::::::::40:::::::|h[Hillman's Belt]|h|r",Type="Armor"},["The Postmaster's Seal"]={SubType="Miscellaneous",Level=61,id=13392,StackCount=1,Rarity=3,MinLevel=56,SellPrice=12211,Texture=133365,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff0070dd|Hitem:13392::::::::40:::::::|h[The Postmaster's Seal]|h|r"},["Beastslayer"]={SubType="Two-Handed Axes",Level=55,id=11907,StackCount=1,Rarity=2,MinLevel=0,SellPrice=41050,Texture=132401,Type="Weapon",Link="|cff1eff00|Hitem:11907::::::::40:::::::|h[Beastslayer]|h|r",EquipLoc="INVTYPE_2HWEAPON"},["For the Light!"]={SubType="Junk",Level=1,id=20009,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133739,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:20009::::::::40:::::::|h[For the Light!]|h|r"},["Zandalar Demoniac's Robe"]={SubType="Cloth",Level=65,id=20033,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=132653,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:20033::::::::40:::::::|h[Zandalar Demoniac's Robe]|h|r"},["Swiftness of Zanza"]={SubType="Consumable",Level=65,id=20081,StackCount=1,Rarity=2,MinLevel=55,SellPrice=0,Texture=134811,Type="Consumable",EquipLoc="",Link="|cff1eff00|Hitem:20081::::::::40:::::::|h[Swiftness of Zanza]|h|r"},["90 Epic Warrior Breastplate"]={SubType="Plate",Level=90,id=20136,StackCount=1,Rarity=4,MinLevel=60,SellPrice=113877,Texture=132751,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cffa335ee|Hitem:20136::::::::40:::::::|h[90 Epic Warrior Breastplate]|h|r"},["Enchanted Kodo Bracers"]={SubType="Leather",Level=39,id=13119,StackCount=1,Rarity=3,MinLevel=34,SellPrice=3063,Texture=132608,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff0070dd|Hitem:13119::::::::40:::::::|h[Enchanted Kodo Bracers]|h|r"},["Xorothian Firestick"]={SubType="Guns",Level=62,id=18755,StackCount=1,Rarity=3,MinLevel=57,SellPrice=43129,Texture=135612,Type="Weapon",Link="|cff0070dd|Hitem:18755::::::::40:::::::|h[Xorothian Firestick]|h|r",EquipLoc="INVTYPE_RANGEDRIGHT"},["Abyssal Leather Leggings"]={SubType="Leather",Level=62,id=20665,StackCount=1,Rarity=3,MinLevel=57,SellPrice=27645,Texture=134630,Link="|cff0070dd|Hitem:20665::::::::40:::::::|h[Abyssal Leather Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Ez-Thro Dynamite"]={SubType="Explosives",Level=25,id=6714,StackCount=20,Rarity=1,MinLevel=10,SellPrice=75,Texture=133714,Type="Trade Goods",Link="|cffffffff|Hitem:6714::::::::40:::::::|h[Ez-Thro Dynamite]|h|r",EquipLoc=""},["Captain's Bracers"]={SubType="Mail",Level=40,id=7493,StackCount=1,Rarity=2,MinLevel=35,SellPrice=3268,Texture=132611,Link="|cff1eff00|Hitem:7493::::::::40:::::::|h[Captain's Bracers]|h|r",EquipLoc="INVTYPE_WRIST",Type="Armor"},["Arathor Advanced Care Package"]={SubType="Consumable",Level=1,id=20231,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134144,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20231::::::::40:::::::|h[Arathor Advanced Care Package]|h|r"},["Monster - Item, Bucket - Metal Offhand"]={SubType="Miscellaneous",Level=1,id=13606,StackCount=1,Rarity=0,MinLevel=1,SellPrice=0,Texture=134718,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff9d9d9d|Hitem:13606::::::::40:::::::|h[Monster - Item, Bucket - Metal Offhand]|h|r"},["Arathor Standard Care Package"]={SubType="Consumable",Level=1,id=20236,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134144,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20236::::::::40:::::::|h[Arathor Standard Care Package]|h|r"},["Slaghammer"]={SubType="Two-Handed Maces",Level=29,id=1976,StackCount=1,Rarity=3,MinLevel=24,SellPrice=6340,Texture=133053,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff0070dd|Hitem:1976::::::::40:::::::|h[Slaghammer]|h|r"},["Windborne Belt"]={SubType="Leather",Level=30,id=6719,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1097,Texture=132504,Type="Armor",Link="|cff1eff00|Hitem:6719::::::::40:::::::|h[Windborne Belt]|h|r",EquipLoc="INVTYPE_WAIST"},["Owl Bracers"]={SubType="Leather",Level=25,id=4796,StackCount=1,Rarity=2,MinLevel=20,SellPrice=708,Texture=132603,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:4796::::::::40:::::::|h[Owl Bracers]|h|r",Type="Armor"},["Shadow Panther Hide Gloves"]={SubType="Leather",Level=65,id=20259,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15179,Texture=132959,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:20259::::::::40:::::::|h[Shadow Panther Hide Gloves]|h|r"},["[PH] Picnic Parcel"]={SubType="Consumable",Level=1,id=21923,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133625,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:21923::::::::40:::::::|h[[PH] Picnic Parcel]|h|r"},["90 Epic Rogue Cap"]={SubType="Leather",Level=90,id=20270,StackCount=1,Rarity=4,MinLevel=60,SellPrice=109995,Texture=133143,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:20270::::::::40:::::::|h[90 Epic Rogue Cap]|h|r"},["63 Green Warrior Sabatons"]={SubType="Plate",Level=63,id=20291,StackCount=1,Rarity=2,MinLevel=58,SellPrice=14781,Texture=132585,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:20291::::::::40:::::::|h[63 Green Warrior Sabatons]|h|r"},["90 Green Rogue Dagger"]={SubType="Daggers",Level=90,id=20303,StackCount=1,Rarity=2,MinLevel=60,SellPrice=178668,Texture=132797,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff1eff00|Hitem:20303::::::::40:::::::|h[90 Green Rogue Dagger]|h|r"},["Knight-Captain's Satin Tunic"]={SubType="Cloth",Level=68,id=23303,StackCount=1,Rarity=3,MinLevel=60,SellPrice=15149,Texture=132716,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cff0070dd|Hitem:23303::::::::40:::::::|h[Knight-Captain's Satin Tunic]|h|r"},["Pattern: Enchanted Mageweave Pouch"]={SubType="Tailoring",Level=45,id=22307,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:22307::::::::40:::::::|h[Pattern: Enchanted Mageweave Pouch]|h|r"},["63 Green Rogue Bracers"]={SubType="Leather",Level=63,id=20314,StackCount=1,Rarity=2,MinLevel=58,SellPrice=12448,Texture=132606,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:20314::::::::40:::::::|h[63 Green Rogue Bracers]|h|r"},["63 Green Rogue Tunic"]={SubType="Leather",Level=63,id=20323,StackCount=1,Rarity=2,MinLevel=58,SellPrice=23925,Texture=132722,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:20323::::::::40:::::::|h[63 Green Rogue Tunic]|h|r"},["90 Epic Frost Gloves"]={SubType="Cloth",Level=90,id=20328,StackCount=1,Rarity=4,MinLevel=60,SellPrice=58217,Texture=132951,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:20328::::::::40:::::::|h[90 Epic Frost Gloves]|h|r"},["90 Epic Frost Ring"]={SubType="Miscellaneous",Level=90,id=20333,StackCount=1,Rarity=4,MinLevel=60,SellPrice=15457,Texture=133358,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:20333::::::::40:::::::|h[90 Epic Frost Ring]|h|r"},["Tears of the Hederine"]={SubType="Quest",Level=1,id=18604,StackCount=5,Rarity=1,MinLevel=0,SellPrice=0,Texture=134076,Type="Quest",Link="|cffffffff|Hitem:18604::::::::40:::::::|h[Tears of the Hederine]|h|r",EquipLoc=""},["Test Arcane Res Head Mail"]={SubType="Mail",Level=35,id=16159,StackCount=1,Rarity=2,MinLevel=30,SellPrice=3124,Texture=132767,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:16159::::::::40:::::::|h[Test Arcane Res Head Mail]|h|r",Type="Armor"},["63 Green Frost Crown"]={SubType="Cloth",Level=63,id=20354,StackCount=1,Rarity=2,MinLevel=58,SellPrice=13875,Texture=132768,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:20354::::::::40:::::::|h[63 Green Frost Crown]|h|r"},["63 Green Frost Ring"]={SubType="Miscellaneous",Level=63,id=20359,StackCount=1,Rarity=2,MinLevel=58,SellPrice=15457,Texture=133358,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:20359::::::::40:::::::|h[63 Green Frost Ring]|h|r"},["Wrathtail Head"]={SubType="Quest",Level=1,id=5490,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134300,EquipLoc="",Link="|cffffffff|Hitem:5490::::::::40:::::::|h[Wrathtail Head]|h|r",Type="Quest"},["Twilight Lexicon - Chapter 1"]={SubType="Quest",Level=0,id=20394,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133738,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:20394::::::::40:::::::|h[Twilight Lexicon - Chapter 1]|h|r"},["Handbook of Backstab IX"]={SubType="Book",Level=60,id=21300,StackCount=1,Rarity=3,MinLevel=60,SellPrice=100000,Texture=133742,Link="|cff0070dd|Hitem:21300::::::::40:::::::|h[Handbook of Backstab IX]|h|r",EquipLoc="",Type="Recipe"},["Desecrated Wristguards"]={SubType="Junk",Level=60,id=22362,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133822,Link="|cffa335ee|Hitem:22362::::::::40:::::::|h[Desecrated Wristguards]|h|r",EquipLoc="",Type="Miscellaneous"},["Aura Proc Damage Sword"]={SubType="One-Handed Swords",Level=30,id=3278,StackCount=1,Rarity=0,MinLevel=25,SellPrice=1720,Texture=135274,Type="Weapon",Link="|cff9d9d9d|Hitem:3278::::::::40:::::::|h[Aura Proc Damage Sword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Gem of Trapped Innocents"]={SubType="Miscellaneous",Level=92,id=23057,StackCount=1,Rarity=4,MinLevel=60,SellPrice=102777,Texture=133319,Link="|cffa335ee|Hitem:23057::::::::40:::::::|h[Gem of Trapped Innocents]|h|r",EquipLoc="INVTYPE_NECK",Type="Armor"},["Light Silithid Carapace"]={SubType="Junk",Level=55,id=20500,StackCount=20,Rarity=1,MinLevel=0,SellPrice=2000,Texture=134316,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:20500::::::::40:::::::|h[Light Silithid Carapace]|h|r"},["Pattern: Runed Stygian Leggings"]={SubType="Tailoring",Level=62,id=20546,StackCount=1,Rarity=3,MinLevel=0,SellPrice=10000,Texture=134941,Link="|cff0070dd|Hitem:20546::::::::40:::::::|h[Pattern: Runed Stygian Leggings]|h|r",EquipLoc="",Type="Recipe"},["Musty Note"]={SubType="Quest",Level=1,id=6276,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133472,Type="Quest",Link="|cffffffff|Hitem:6276::::::::40:::::::|h[Musty Note]|h|r",EquipLoc=""},["Black Whelp Tunic"]={SubType="Leather",Level=20,id=20575,StackCount=1,Rarity=2,MinLevel=15,SellPrice=743,Texture=132686,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:20575::::::::40:::::::|h[Black Whelp Tunic]|h|r"},["Deprecated Book of Rejuvenation VI"]={SubType="Book",Level=40,id=4229,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133743,Link="|cffffffff|Hitem:4229::::::::40:::::::|h[Deprecated Book of Rejuvenation VI]|h|r",EquipLoc="",Type="Recipe"},["Sturdy Male Nightelf Mask"]={SubType="Miscellaneous",Level=45,id=20594,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5064,Texture=132089,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:20594::::::::40:::::::|h[Sturdy Male Nightelf Mask]|h|r"},["Lord General's Sword"]={SubType="One-Handed Swords",Level=56,id=11817,StackCount=1,Rarity=3,MinLevel=51,SellPrice=39254,Texture=135326,Type="Weapon",Link="|cff0070dd|Hitem:11817::::::::40:::::::|h[Lord General's Sword]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND"},["Thin Cloth Bracers"]={SubType="Cloth",Level=5,id=3600,StackCount=1,Rarity=1,MinLevel=1,SellPrice=4,Texture=132602,Type="Armor",Link="|cffffffff|Hitem:3600::::::::40:::::::|h[Thin Cloth Bracers]|h|r",EquipLoc="INVTYPE_WRIST"},["Boots of the Endless Moor"]={SubType="Mail",Level=71,id=20621,StackCount=1,Rarity=4,MinLevel=60,SellPrice=49595,Texture=132554,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:20621::::::::40:::::::|h[Boots of the Endless Moor]|h|r"},["Ring of the Unliving"]={SubType="Miscellaneous",Level=72,id=20624,StackCount=1,Rarity=4,MinLevel=60,SellPrice=143303,Texture=133380,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:20624::::::::40:::::::|h[Ring of the Unliving]|h|r"},["Antiquated Nobleman's Tunic"]={SubType="Cloth",Level=47,id=20642,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7539,Texture=132688,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:20642::::::::40:::::::|h[Antiquated Nobleman's Tunic]|h|r"},["Undercity Reservist's Cap"]={SubType="Leather",Level=47,id=20643,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7094,Texture=133117,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:20643::::::::40:::::::|h[Undercity Reservist's Cap]|h|r"},["Level 15 Test Gear Mail - Paladin/Warrior"]={SubType="Junk",Level=1,id=13645,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:13645::::::::40:::::::|h[Level 15 Test Gear Mail - Paladin/Warrior]|h|r"},["Abyssal Plate Legplates"]={SubType="Plate",Level=62,id=20671,StackCount=1,Rarity=3,MinLevel=57,SellPrice=20984,Texture=134688,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:20671::::::::40:::::::|h[Abyssal Plate Legplates]|h|r"},["Handstitched Leather Cloak"]={SubType="Cloth",Level=9,id=7276,StackCount=1,Rarity=1,MinLevel=4,SellPrice=34,Texture=133150,EquipLoc="INVTYPE_CLOAK",Link="|cffffffff|Hitem:7276::::::::40:::::::|h[Handstitched Leather Cloak]|h|r",Type="Armor"},["Wavefront Necklace"]={SubType="Miscellaneous",Level=65,id=20685,StackCount=1,Rarity=4,MinLevel=60,SellPrice=61617,Texture=133308,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:20685::::::::40:::::::|h[Wavefront Necklace]|h|r"},["Windshear Cape"]={SubType="Cloth",Level=65,id=20691,StackCount=1,Rarity=4,MinLevel=60,SellPrice=24289,Texture=133772,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffa335ee|Hitem:20691::::::::40:::::::|h[Windshear Cape]|h|r"},["Codex of Prayer of Healing II"]={SubType="Book",Level=40,id=4286,StackCount=1,Rarity=1,MinLevel=40,SellPrice=5000,Texture=133741,EquipLoc="",Link="|cffffffff|Hitem:4286::::::::40:::::::|h[Codex of Prayer of Healing II]|h|r",Type="Recipe"},["Book of Wrath VII"]={SubType="Book",Level=46,id=8784,StackCount=1,Rarity=1,MinLevel=46,SellPrice=7000,Texture=133743,Link="|cffffffff|Hitem:8784::::::::40:::::::|h[Book of Wrath VII]|h|r",EquipLoc="",Type="Recipe"},["Ranger Shoulders"]={SubType="Leather",Level=42,id=7482,StackCount=1,Rarity=2,MinLevel=37,SellPrice=4926,Texture=135049,EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:7482::::::::40:::::::|h[Ranger Shoulders]|h|r",Type="Armor"},["Wizard Oil"]={SubType="Trade Goods",Level=50,id=20750,StackCount=1,Rarity=1,MinLevel=40,SellPrice=1000,Texture=134726,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:20750::::::::40:::::::|h[Wizard Oil]|h|r"},["Oozing Bag"]={SubType="Junk",Level=50,id=20768,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133645,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:20768::::::::40:::::::|h[Oozing Bag]|h|r"},["Champion's Plate Helm"]={SubType="Plate",Level=71,id=23244,StackCount=1,Rarity=3,MinLevel=60,SellPrice=13205,Texture=133077,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:23244::::::::40:::::::|h[Champion's Plate Helm]|h|r"},["Hearthstone"]={SubType="Junk",Level=1,id=6948,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134414,Link="|cffffffff|Hitem:6948::::::::40:::::::|h[Hearthstone]|h|r",EquipLoc="",Type="Miscellaneous"},["Deprecated Old Boots"]={SubType="Miscellaneous",Level=1,id=87,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132535,EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:87::::::::40:::::::|h[Deprecated Old Boots]|h|r",Type="Armor"},["Codex: Prayer of Fortitude II"]={SubType="Book",Level=60,id=17414,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14750,Texture=133741,EquipLoc="",Link="|cff0070dd|Hitem:17414::::::::40:::::::|h[Codex: Prayer of Fortitude II]|h|r",Type="Recipe"},["Festival of Nian Firework"]={SubType="Consumable",Level=1,id=20908,StackCount=20,Rarity=1,MinLevel=0,SellPrice=3,Texture=135434,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:20908::::::::40:::::::|h[Festival of Nian Firework]|h|r"},["Earthshatter Boots"]={SubType="Mail",Level=86,id=22468,StackCount=1,Rarity=4,MinLevel=60,SellPrice=105504,Texture=132548,Link="|cffa335ee|Hitem:22468::::::::40:::::::|h[Earthshatter Boots]|h|r",EquipLoc="INVTYPE_FEET",Type="Armor"},["Grunt's Bracers"]={SubType="Mail",Level=19,id=15507,StackCount=1,Rarity=2,MinLevel=14,SellPrice=364,Texture=132608,EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:15507::::::::40:::::::|h[Grunt's Bracers]|h|r",Type="Armor"},["Draconic For Dummies: Volume II"]={SubType="Quest",Level=1,id=21111,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133738,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:21111::::::::40:::::::|h[Draconic For Dummies: Volume II]|h|r"},["Tome of Conjure Mana Gem III"]={SubType="Book",Level=48,id=8861,StackCount=1,Rarity=1,MinLevel=48,SellPrice=7750,Texture=133739,Link="|cffffffff|Hitem:8861::::::::40:::::::|h[Tome of Conjure Mana Gem III]|h|r",EquipLoc="",Type="Recipe"},["Red Scepter Shard"]={SubType="Quest",Level=1,id=21138,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134130,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:21138::::::::40:::::::|h[Red Scepter Shard]|h|r"},["Auction Stationery"]={SubType="Consumable",Level=0,id=21140,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134939,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:21140::::::::40:::::::|h[Auction Stationery]|h|r"},["Timbermaw Offering of Peace"]={SubType="Quest",Level=1,id=21155,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133474,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:21155::::::::40:::::::|h[Timbermaw Offering of Peace]|h|r"},["Monster - Sword, Green Gold Scimitar"]={SubType="One-Handed Swords",Level=1,id=12993,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135277,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:12993::::::::40:::::::|h[Monster - Sword, Green Gold Scimitar]|h|r"},["Earthpower Vest"]={SubType="Cloth",Level=66,id=21183,StackCount=1,Rarity=3,MinLevel=0,SellPrice=25495,Texture=132647,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff0070dd|Hitem:21183::::::::40:::::::|h[Earthpower Vest]|h|r"},["Pioneer Buckler"]={SubType="Shields",Level=9,id=7109,StackCount=1,Rarity=1,MinLevel=4,SellPrice=74,Texture=134955,Link="|cffffffff|Hitem:7109::::::::40:::::::|h[Pioneer Buckler]|h|r",EquipLoc="INVTYPE_SHIELD",Type="Armor"},["Level 55 Test Gear Leather - Druid 2"]={SubType="Junk",Level=1,id=17838,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,EquipLoc="",Link="|cffffffff|Hitem:17838::::::::40:::::::|h[Level 55 Test Gear Leather - Druid 2]|h|r",Type="Miscellaneous"},["Alien Egg"]={SubType="Quest",Level=1,id=12467,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=135231,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12467::::::::40:::::::|h[Alien Egg]|h|r"},["Combat Task Briefing VII"]={SubType="Quest",Level=60,id=21251,StackCount=1,Rarity=2,MinLevel=60,SellPrice=0,Texture=134939,Type="Quest",EquipLoc="",Link="|cff1eff00|Hitem:21251::::::::40:::::::|h[Combat Task Briefing VII]|h|r"},["Heavy Crocolisk Stew"]={SubType="Consumable",Level=30,id=20074,StackCount=20,Rarity=1,MinLevel=20,SellPrice=300,Texture=134020,Link="|cffffffff|Hitem:20074::::::::40:::::::|h[Heavy Crocolisk Stew]|h|r",EquipLoc="",Type="Consumable"},["Blessed Qiraji Augur Staff"]={SubType="Staves",Level=79,id=21275,StackCount=1,Rarity=4,MinLevel=60,SellPrice=199583,Texture=135157,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:21275::::::::40:::::::|h[Blessed Qiraji Augur Staff]|h|r"},["Monster - Axe, 2H Large Double Bladed, Gold"]={SubType="Two-Handed Axes",Level=1,id=21286,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=132395,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:21286::::::::40:::::::|h[Monster - Axe, 2H Large Double Bladed, Gold]|h|r"},["Plans: Icebane Breastplate"]={SubType="Blacksmithing",Level=80,id=22703,StackCount=1,Rarity=1,MinLevel=0,SellPrice=37500,Texture=134939,Link="|cffffffff|Hitem:22703::::::::40:::::::|h[Plans: Icebane Breastplate]|h|r",EquipLoc="",Type="Recipe"},["Hyjal Nectar"]={SubType="Consumable",Level=65,id=18300,StackCount=20,Rarity=1,MinLevel=55,SellPrice=200,Texture=132801,Type="Consumable",Link="|cffffffff|Hitem:18300::::::::40:::::::|h[Hyjal Nectar]|h|r",EquipLoc=""},["Earth Warder's Gloves"]={SubType="Cloth",Level=58,id=21318,StackCount=1,Rarity=2,MinLevel=0,SellPrice=7444,Texture=132958,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:21318::::::::40:::::::|h[Earth Warder's Gloves]|h|r"},["The Frostwolf Artichoke"]={SubType="Junk",Level=1,id=19484,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133736,Link="|cffffffff|Hitem:19484::::::::40:::::::|h[The Frostwolf Artichoke]|h|r",EquipLoc="",Type="Miscellaneous"},["Core Felcloth Bag"]={SubType="Soul Bag",Level=60,id=21342,StackCount=1,Rarity=4,MinLevel=0,SellPrice=80000,Texture=133664,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffa335ee|Hitem:21342::::::::40:::::::|h[Core Felcloth Bag]|h|r"},["Maelstrom Leggings"]={SubType="Mail",Level=62,id=14522,StackCount=1,Rarity=3,MinLevel=57,SellPrice=31318,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:14522::::::::40:::::::|h[Maelstrom Leggings]|h|r"},["Barkmail Vest"]={SubType="Mail",Level=5,id=10656,StackCount=1,Rarity=1,MinLevel=0,SellPrice=14,Texture=132624,EquipLoc="INVTYPE_CHEST",Link="|cffffffff|Hitem:10656::::::::40:::::::|h[Barkmail Vest]|h|r",Type="Armor"},["Festive Gift"]={SubType="Junk",Level=1,id=21363,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=133202,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21363::::::::40:::::::|h[Festive Gift]|h|r"},["Stormcaller's Leggings"]={SubType="Mail",Level=81,id=21375,StackCount=1,Rarity=4,MinLevel=60,SellPrice=108479,Texture=134662,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:21375::::::::40:::::::|h[Stormcaller's Leggings]|h|r"},["Blade of Eternal Justice"]={SubType="One-Handed Swords",Level=70,id=21395,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=135367,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffa335ee|Hitem:21395::::::::40:::::::|h[Blade of Eternal Justice]|h|r"},["Huntsman's Cape"]={SubType="Cloth",Level=38,id=9890,StackCount=1,Rarity=2,MinLevel=33,SellPrice=2919,Texture=133761,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9890::::::::40:::::::|h[Huntsman's Cape]|h|r"},["Cloak of Unending Life"]={SubType="Cloth",Level=67,id=21409,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133767,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cffa335ee|Hitem:21409::::::::40:::::::|h[Cloak of Unending Life]|h|r"},["AHNQIRAJ TEST ITEM A CLOTH BELT"]={SubType="Miscellaneous",Level=1,id=21429,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffffffff|Hitem:21429::::::::40:::::::|h[AHNQIRAJ TEST ITEM A CLOTH BELT]|h|r"},["AHNQIRAJ TEST ITEM A CLOTH FEET"]={SubType="Miscellaneous",Level=1,id=21431,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffffffff|Hitem:21431::::::::40:::::::|h[AHNQIRAJ TEST ITEM A CLOTH FEET]|h|r"},["Zandalar Predator's Mantle"]={SubType="Mail",Level=68,id=19831,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=135053,Link="|cffa335ee|Hitem:19831::::::::40:::::::|h[Zandalar Predator's Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Righteous Waistguard"]={SubType="Leather",Level=49,id=10067,StackCount=1,Rarity=2,MinLevel=44,SellPrice=5295,Texture=132505,EquipLoc="INVTYPE_WAIST",Link="|cff1eff00|Hitem:10067::::::::40:::::::|h[Righteous Waistguard]|h|r",Type="Armor"},["Goblin Rocket Fuel"]={SubType="Reagent",Level=42,id=9061,StackCount=20,Rarity=1,MinLevel=0,SellPrice=250,Texture=132621,Type="Reagent",EquipLoc="",Link="|cffffffff|Hitem:9061::::::::40:::::::|h[Goblin Rocket Fuel]|h|r"},["Agamand Family Dagger"]={SubType="Quest",Level=1,id=7568,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135641,Link="|cffffffff|Hitem:7568::::::::40:::::::|h[Agamand Family Dagger]|h|r",EquipLoc="",Type="Quest"},["Boots of the Maharishi"]={SubType="Cloth",Level=43,id=9658,StackCount=1,Rarity=2,MinLevel=0,SellPrice=4086,Texture=132536,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:9658::::::::40:::::::|h[Boots of the Maharishi]|h|r"},["Skullsplitter Helm"]={SubType="Mail",Level=43,id=1624,StackCount=1,Rarity=2,MinLevel=38,SellPrice=6172,Texture=133071,Type="Armor",Link="|cff1eff00|Hitem:1624::::::::40:::::::|h[Skullsplitter Helm]|h|r",EquipLoc="INVTYPE_HEAD"},["Pattern: Barbaric Bracers"]={SubType="Leatherworking",Level=31,id=18949,StackCount=1,Rarity=1,MinLevel=0,SellPrice=500,Texture=134939,Type="Recipe",Link="|cffffffff|Hitem:18949::::::::40:::::::|h[Pattern: Barbaric Bracers]|h|r",EquipLoc=""},["Book of Healing Touch III"]={SubType="Book",Level=14,id=5150,StackCount=1,Rarity=1,MinLevel=14,SellPrice=225,Texture=133743,EquipLoc="",Link="|cffffffff|Hitem:5150::::::::40:::::::|h[Book of Healing Touch III]|h|r",Type="Recipe"},["Codex of Holy Word: Fortitude IV"]={SubType="Book",Level=36,id=4285,StackCount=1,Rarity=1,MinLevel=36,SellPrice=3750,Texture=133741,Link="|cffffffff|Hitem:4285::::::::40:::::::|h[Codex of Holy Word: Fortitude IV]|h|r",EquipLoc="",Type="Recipe"},["Dreadmist Mask"]={SubType="Cloth",Level=62,id=16698,StackCount=1,Rarity=3,MinLevel=57,SellPrice=16636,Texture=133131,EquipLoc="INVTYPE_HEAD",Link="|cff0070dd|Hitem:16698::::::::40:::::::|h[Dreadmist Mask]|h|r",Type="Armor"},["Boots of the Shrieker"]={SubType="Leather",Level=62,id=13398,StackCount=1,Rarity=3,MinLevel=57,SellPrice=20028,Texture=132542,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:13398::::::::40:::::::|h[Boots of the Shrieker]|h|r"},["Sparkleshell Headwrap"]={SubType="Mail",Level=40,id=15580,StackCount=1,Rarity=2,MinLevel=35,SellPrice=4871,Texture=133141,EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:15580::::::::40:::::::|h[Sparkleshell Headwrap]|h|r",Type="Armor"},["Wormhide Protector"]={SubType="Leather",Level=81,id=21614,StackCount=1,Rarity=4,MinLevel=60,SellPrice=66012,Texture=133077,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:21614::::::::40:::::::|h[Wormhide Protector]|h|r"},["Barb of the Sand Reaver"]={SubType="Polearms",Level=77,id=21635,StackCount=1,Rarity=4,MinLevel=60,SellPrice=186728,Texture=135591,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:21635::::::::40:::::::|h[Barb of the Sand Reaver]|h|r"},["Test AQ Resource - Silk Bandage"]={SubType="Junk",Level=1,id=21636,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21636::::::::40:::::::|h[Test AQ Resource - Silk Bandage]|h|r"},["Discolored Fang"]={SubType="Junk",Level=1,id=4814,StackCount=5,Rarity=0,MinLevel=0,SellPrice=6,Texture=133723,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:4814::::::::40:::::::|h[Discolored Fang]|h|r"},["Test AQ Resource - Purple Lotus"]={SubType="Junk",Level=1,id=21646,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134344,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:21646::::::::40:::::::|h[Test AQ Resource - Purple Lotus]|h|r"},["AHNQIRAJ TEST ITEM D PLATE LEGS"]={SubType="Miscellaneous",Level=1,id=21440,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=135725,Link="|cffffffff|Hitem:21440::::::::40:::::::|h[AHNQIRAJ TEST ITEM D PLATE LEGS]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Sunscale Spaulders"]={SubType="Plate",Level=51,id=14851,StackCount=1,Rarity=2,MinLevel=46,SellPrice=7416,Texture=135051,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14851::::::::40:::::::|h[Sunscale Spaulders]|h|r"},["Green Hills of Stranglethorn - Page 25"]={SubType="Junk",Level=1,id=2749,StackCount=10,Rarity=1,MinLevel=0,SellPrice=375,Texture=134332,Type="Miscellaneous",Link="|cffffffff|Hitem:2749::::::::40:::::::|h[Green Hills of Stranglethorn - Page 25]|h|r",EquipLoc=""},["Reinforced Chain Pants"]={SubType="Mail",Level=26,id=1759,StackCount=1,Rarity=0,MinLevel=21,SellPrice=732,Texture=134583,Link="|cff9d9d9d|Hitem:1759::::::::40:::::::|h[Reinforced Chain Pants]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Lesser Soulstone"]={SubType="Consumable",Level=30,id=16892,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134336,EquipLoc="",Link="|cffffffff|Hitem:16892::::::::40:::::::|h[Lesser Soulstone]|h|r",Type="Consumable"},["Robes of the Battleguard"]={SubType="Cloth",Level=76,id=21671,StackCount=1,Rarity=4,MinLevel=60,SellPrice=56044,Texture=132667,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:21671::::::::40:::::::|h[Robes of the Battleguard]|h|r"},["Ring of the Qiraji Fury"]={SubType="Miscellaneous",Level=78,id=21677,StackCount=1,Rarity=4,MinLevel=60,SellPrice=96853,Texture=133423,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:21677::::::::40:::::::|h[Ring of the Qiraji Fury]|h|r"},["Necklace of Purity"]={SubType="Miscellaneous",Level=76,id=21678,StackCount=1,Rarity=4,MinLevel=60,SellPrice=99641,Texture=133342,Type="Armor",EquipLoc="INVTYPE_NECK",Link="|cffa335ee|Hitem:21678::::::::40:::::::|h[Necklace of Purity]|h|r"},["Pattern: Gem-studded Leather Belt"]={SubType="Leatherworking",Level=37,id=14635,StackCount=1,Rarity=1,MinLevel=0,SellPrice=750,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:14635::::::::40:::::::|h[Pattern: Gem-studded Leather Belt]|h|r"},["Blood Stained Pike"]={SubType="Quest",Level=1,id=12848,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135129,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12848::::::::40:::::::|h[Blood Stained Pike]|h|r"},["Slime Kickers"]={SubType="Plate",Level=73,id=21490,StackCount=1,Rarity=3,MinLevel=60,SellPrice=28487,Texture=132585,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:21490::::::::40:::::::|h[Slime Kickers]|h|r"},["Strange Smelling Powder"]={SubType="Quest",Level=1,id=2563,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133849,EquipLoc="",Link="|cffffffff|Hitem:2563::::::::40:::::::|h[Strange Smelling Powder]|h|r",Type="Quest"},["Light Chain Leggings"]={SubType="Mail",Level=10,id=2400,StackCount=1,Rarity=1,MinLevel=5,SellPrice=87,Texture=134583,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:2400::::::::40:::::::|h[Light Chain Leggings]|h|r"},["Forged Seal of Ascension"]={SubType="Quest",Level=1,id=12324,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133276,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12324::::::::40:::::::|h[Forged Seal of Ascension]|h|r"},["Scepter of the False Prophet"]={SubType="One-Handed Maces",Level=84,id=21839,StackCount=1,Rarity=4,MinLevel=60,SellPrice=224399,Texture=133474,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffa335ee|Hitem:21839::::::::40:::::::|h[Scepter of the False Prophet]|h|r"},["Helm of Heroism"]={SubType="Plate",Level=60,id=21999,StackCount=1,Rarity=4,MinLevel=0,SellPrice=19916,Texture=133070,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cffa335ee|Hitem:21999::::::::40:::::::|h[Helm of Heroism]|h|r"},["Large Copper Bomb"]={SubType="Explosives",Level=26,id=4370,StackCount=10,Rarity=1,MinLevel=0,SellPrice=175,Texture=133709,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:4370::::::::40:::::::|h[Large Copper Bomb]|h|r"},["Conjurer's Hood"]={SubType="Cloth",Level=36,id=9849,StackCount=1,Rarity=2,MinLevel=31,SellPrice=2385,Texture=133134,Type="Armor",EquipLoc="INVTYPE_HEAD",Link="|cff1eff00|Hitem:9849::::::::40:::::::|h[Conjurer's Hood]|h|r"},["Bandit Cloak"]={SubType="Cloth",Level=18,id=9779,StackCount=1,Rarity=2,MinLevel=13,SellPrice=334,Texture=133771,Type="Armor",EquipLoc="INVTYPE_CLOAK",Link="|cff1eff00|Hitem:9779::::::::40:::::::|h[Bandit Cloak]|h|r"},["Wolfmane Wristguards"]={SubType="Leather",Level=20,id=1306,StackCount=1,Rarity=2,MinLevel=0,SellPrice=352,Texture=132603,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cff1eff00|Hitem:1306::::::::40:::::::|h[Wolfmane Wristguards]|h|r"},["Bonelink Wall Shield"]={SubType="Shields",Level=47,id=15618,StackCount=1,Rarity=2,MinLevel=42,SellPrice=11782,Texture=134949,EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:15618::::::::40:::::::|h[Bonelink Wall Shield]|h|r",Type="Armor"},["Band of the Great Tortoise"]={SubType="Miscellaneous",Level=50,id=9642,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2092,Texture=133352,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cff1eff00|Hitem:9642::::::::40:::::::|h[Band of the Great Tortoise]|h|r"},["Vanguard Breastplate"]={SubType="Plate",Level=59,id=14854,StackCount=1,Rarity=2,MinLevel=54,SellPrice=16204,Texture=132744,Type="Armor",EquipLoc="INVTYPE_CHEST",Link="|cff1eff00|Hitem:14854::::::::40:::::::|h[Vanguard Breastplate]|h|r"},["Extraordinary Egg"]={SubType="Quest",Level=1,id=8643,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=132834,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:8643::::::::40:::::::|h[Extraordinary Egg]|h|r"},["Feralheart Belt"]={SubType="Leather",Level=65,id=22106,StackCount=1,Rarity=3,MinLevel=0,SellPrice=15536,Texture=132504,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cff0070dd|Hitem:22106::::::::40:::::::|h[Feralheart Belt]|h|r"},["Feralheart Gloves"]={SubType="Leather",Level=55,id=22110,StackCount=1,Rarity=4,MinLevel=0,SellPrice=12546,Texture=132951,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cffa335ee|Hitem:22110::::::::40:::::::|h[Feralheart Gloves]|h|r"},["Cindercloth Gloves"]={SubType="Cloth",Level=54,id=14043,StackCount=1,Rarity=2,MinLevel=49,SellPrice=5955,Texture=132939,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:14043::::::::40:::::::|h[Cindercloth Gloves]|h|r"},["Pledge of Loyalty: Ironforge"]={SubType="Consumable",Level=1,id=22119,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=134329,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22119::::::::40:::::::|h[Pledge of Loyalty: Ironforge]|h|r"},["Mutton Chop"]={SubType="Consumable",Level=25,id=3770,StackCount=20,Rarity=1,MinLevel=15,SellPrice=25,Texture=133970,Link="|cffffffff|Hitem:3770::::::::40:::::::|h[Mutton Chop]|h|r",EquipLoc="",Type="Consumable"},["Ironforge Gift Collection"]={SubType="Junk",Level=1,id=22132,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134140,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22132::::::::40:::::::|h[Ironforge Gift Collection]|h|r"},["Undercity Gift Collection"]={SubType="Junk",Level=1,id=22134,StackCount=1,Rarity=1,MinLevel=1,SellPrice=0,Texture=134143,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22134::::::::40:::::::|h[Undercity Gift Collection]|h|r"},["Pledge of Adoration: Undercity"]={SubType="Consumable",Level=1,id=22157,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135450,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22157::::::::40:::::::|h[Pledge of Adoration: Undercity]|h|r"},["Monster - Sword2H, Claymore Silver Yellow Glow"]={SubType="Two-Handed Swords",Level=1,id=13316,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=135274,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cff9d9d9d|Hitem:13316::::::::40:::::::|h[Monster - Sword2H, Claymore Silver Yellow Glow]|h|r"},["Pledge of Friendship: Darnassus"]={SubType="Consumable",Level=1,id=22159,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135449,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22159::::::::40:::::::|h[Pledge of Friendship: Darnassus]|h|r"},["Twilight Lexicon - Chapter 3"]={SubType="Quest",Level=0,id=20396,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133737,Link="|cffffffff|Hitem:20396::::::::40:::::::|h[Twilight Lexicon - Chapter 3]|h|r",EquipLoc="",Type="Quest"},["Pledge of Friendship: Stormwind"]={SubType="Consumable",Level=1,id=22178,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=135449,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22178::::::::40:::::::|h[Pledge of Friendship: Stormwind]|h|r"},["Monster - Mace, Hand of Edward the Odd"]={SubType="One-Handed Maces",Level=1,id=22213,StackCount=1,Rarity=0,MinLevel=1,SellPrice=2,Texture=133483,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff9d9d9d|Hitem:22213::::::::40:::::::|h[Monster - Mace, Hand of Edward the Odd]|h|r"},["Crispy Bat Wing"]={SubType="Consumable",Level=7,id=12224,StackCount=20,Rarity=1,MinLevel=1,SellPrice=10,Texture=134002,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:12224::::::::40:::::::|h[Crispy Bat Wing]|h|r"},["Pattern: Ghostweave Pants"]={SubType="Tailoring",Level=58,id=14495,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5500,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:14495::::::::40:::::::|h[Pattern: Ghostweave Pants]|h|r"},["Zigris' Footlocker"]={SubType="Bag",Level=60,id=22233,StackCount=1,Rarity=2,MinLevel=0,SellPrice=5837,Texture=132594,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cff1eff00|Hitem:22233::::::::40:::::::|h[Zigris' Footlocker]|h|r"},["Dark Desire"]={SubType="Consumable",Level=1,id=22237,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=135460,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:22237::::::::40:::::::|h[Dark Desire]|h|r"},["Dark Warder's Pauldrons"]={SubType="Leather",Level=57,id=22241,StackCount=1,Rarity=3,MinLevel=52,SellPrice=15739,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff0070dd|Hitem:22241::::::::40:::::::|h[Dark Warder's Pauldrons]|h|r"},["Durability Leggings"]={SubType="Cloth",Level=1,id=14388,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=134593,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffffffff|Hitem:14388::::::::40:::::::|h[Durability Leggings]|h|r"},["Lovely Red Dress"]={SubType="Miscellaneous",Level=1,id=22276,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1,Texture=132665,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffffffff|Hitem:22276::::::::40:::::::|h[Lovely Red Dress]|h|r"},["Bard's Gloves"]={SubType="Leather",Level=17,id=6554,StackCount=1,Rarity=2,MinLevel=12,SellPrice=229,Texture=132949,Type="Armor",Link="|cff1eff00|Hitem:6554::::::::40:::::::|h[Bard's Gloves]|h|r",EquipLoc="INVTYPE_HAND"},["Lethargy Root"]={SubType="Trade Goods",Level=28,id=3777,StackCount=20,Rarity=0,MinLevel=0,SellPrice=10,Texture=133849,Type="Trade Goods",EquipLoc="",Link="|cff9d9d9d|Hitem:3777::::::::40:::::::|h[Lethargy Root]|h|r"},["Divination Scryer"]={SubType="Quest",Level=1,id=18746,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133866,Type="Quest",Link="|cffffffff|Hitem:18746::::::::40:::::::|h[Divination Scryer]|h|r",EquipLoc=""},["Tome of Divine Right"]={SubType="Miscellaneous",Level=61,id=22319,StackCount=1,Rarity=3,MinLevel=56,SellPrice=38664,Texture=133739,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cff0070dd|Hitem:22319::::::::40:::::::|h[Tome of Divine Right]|h|r"},["Triumphant Gauntlets"]={SubType="Mail",Level=63,id=15682,StackCount=1,Rarity=2,MinLevel=58,SellPrice=14610,Texture=132938,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:15682::::::::40:::::::|h[Triumphant Gauntlets]|h|r",Type="Armor"},["Desecrated Legplates"]={SubType="Junk",Level=60,id=22352,StackCount=1,Rarity=4,MinLevel=60,SellPrice=0,Texture=133834,Type="Miscellaneous",EquipLoc="",Link="|cffa335ee|Hitem:22352::::::::40:::::::|h[Desecrated Legplates]|h|r"},["Gemmed Gloves"]={SubType="Cloth",Level=35,id=4121,StackCount=1,Rarity=2,MinLevel=0,SellPrice=1380,Texture=132940,EquipLoc="INVTYPE_HAND",Link="|cff1eff00|Hitem:4121::::::::40:::::::|h[Gemmed Gloves]|h|r",Type="Armor"},["Glyphic Tablet"]={SubType="Quest",Level=1,id=9575,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134455,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:9575::::::::40:::::::|h[Glyphic Tablet]|h|r"},["Ravenholdt Slicer"]={SubType="One-Handed Swords",Level=65,id=22378,StackCount=1,Rarity=3,MinLevel=0,SellPrice=65211,Texture=135348,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cff0070dd|Hitem:22378::::::::40:::::::|h[Ravenholdt Slicer]|h|r"},["Sageblade"]={SubType="One-Handed Swords",Level=64,id=22383,StackCount=1,Rarity=4,MinLevel=59,SellPrice=84291,Texture=135361,Type="Weapon",EquipLoc="INVTYPE_WEAPONMAINHAND",Link="|cffa335ee|Hitem:22383::::::::40:::::::|h[Sageblade]|h|r"},["Gaffer Jack"]={SubType="Quest",Level=1,id=6717,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=132996,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:6717::::::::40:::::::|h[Gaffer Jack]|h|r"},["Gauntlets of Deftness"]={SubType="Mail",Level=63,id=22410,StackCount=1,Rarity=3,MinLevel=58,SellPrice=17231,Texture=132945,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:22410::::::::40:::::::|h[Gauntlets of Deftness]|h|r"},["Dreadnaught Bracers"]={SubType="Plate",Level=88,id=22423,StackCount=1,Rarity=4,MinLevel=60,SellPrice=50527,Texture=132614,Type="Armor",EquipLoc="INVTYPE_WRIST",Link="|cffa335ee|Hitem:22423::::::::40:::::::|h[Dreadnaught Bracers]|h|r"},["Tome of Righteousness"]={SubType="Quest",Level=20,id=6777,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133743,Type="Quest",Link="|cffffffff|Hitem:6777::::::::40:::::::|h[Tome of Righteousness]|h|r",EquipLoc=""},["Tablet of Flametongue Totem II"]={SubType="Book",Level=42,id=9126,StackCount=1,Rarity=1,MinLevel=42,SellPrice=5500,Texture=134459,Link="|cffffffff|Hitem:9126::::::::40:::::::|h[Tablet of Flametongue Totem II]|h|r",EquipLoc="",Type="Recipe"},["Whispersilk Leggings"]={SubType="Cloth",Level=60,id=12107,StackCount=1,Rarity=2,MinLevel=0,SellPrice=16885,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff1eff00|Hitem:12107::::::::40:::::::|h[Whispersilk Leggings]|h|r"},["Earthshatter Legguards"]={SubType="Mail",Level=88,id=22465,StackCount=1,Rarity=4,MinLevel=60,SellPrice=152688,Texture=134667,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cffa335ee|Hitem:22465::::::::40:::::::|h[Earthshatter Legguards]|h|r"},["Bonescythe Sabatons"]={SubType="Leather",Level=86,id=22480,StackCount=1,Rarity=4,MinLevel=60,SellPrice=84922,Texture=132587,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cffa335ee|Hitem:22480::::::::40:::::::|h[Bonescythe Sabatons]|h|r"},["Rawhide Boots"]={SubType="Leather",Level=25,id=1796,StackCount=1,Rarity=0,MinLevel=20,SellPrice=400,Texture=132540,Type="Armor",Link="|cff9d9d9d|Hitem:1796::::::::40:::::::|h[Rawhide Boots]|h|r",EquipLoc="INVTYPE_FEET"},["Plagueheart Belt"]={SubType="Cloth",Level=88,id=22510,StackCount=1,Rarity=4,MinLevel=60,SellPrice=53215,Texture=132492,Type="Armor",EquipLoc="INVTYPE_WAIST",Link="|cffa335ee|Hitem:22510::::::::40:::::::|h[Plagueheart Belt]|h|r"},["Craftsman's Writ - Wicked Leather Headband"]={SubType="Junk",Level=60,id=22605,StackCount=1,Rarity=1,MinLevel=55,SellPrice=0,Texture=134328,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22605::::::::40:::::::|h[Craftsman's Writ - Wicked Leather Headband]|h|r"},["Bloodlust Boots"]={SubType="Mail",Level=58,id=14799,StackCount=1,Rarity=2,MinLevel=53,SellPrice=17308,Texture=132535,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff1eff00|Hitem:14799::::::::40:::::::|h[Bloodlust Boots]|h|r"},["Primal Hakkari Idol"]={SubType="Junk",Level=60,id=22637,StackCount=1,Rarity=3,MinLevel=58,SellPrice=0,Texture=135723,Type="Miscellaneous",EquipLoc="",Link="|cff0070dd|Hitem:22637::::::::40:::::::|h[Primal Hakkari Idol]|h|r"},["Hive'Ashi Dossier"]={SubType="Junk",Level=1,id=22648,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12,Texture=133460,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:22648::::::::40:::::::|h[Hive'Ashi Dossier]|h|r"},["Sentinel's Blade"]={SubType="Daggers",Level=63,id=19546,StackCount=1,Rarity=3,MinLevel=58,SellPrice=56143,Texture=135650,Link="|cff0070dd|Hitem:19546::::::::40:::::::|h[Sentinel's Blade]|h|r",EquipLoc="INVTYPE_WEAPON",Type="Weapon"},["Fate of Ramaladni"]={SubType="Quest",Level=1,id=22708,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133377,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:22708::::::::40:::::::|h[Fate of Ramaladni]|h|r"},["Hibernal Robe"]={SubType="Cloth",Level=51,id=8113,StackCount=1,Rarity=2,MinLevel=46,SellPrice=9694,Texture=132642,Link="|cff1eff00|Hitem:8113::::::::40:::::::|h[Hibernal Robe]|h|r",EquipLoc="INVTYPE_ROBE",Type="Armor"},["A Letter from the Keeper of the Rolls"]={SubType="Quest",Level=1,id=22723,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=133461,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:22723::::::::40:::::::|h[A Letter from the Keeper of the Rolls]|h|r"},["Frame of Atiesh"]={SubType="Junk",Level=60,id=22727,StackCount=1,Rarity=5,MinLevel=60,SellPrice=0,Texture=135157,Type="Miscellaneous",EquipLoc="",Link="|cffff8000|Hitem:22727::::::::40:::::::|h[Frame of Atiesh]|h|r"},["Steam Tonk Controller"]={SubType="Devices",Level=55,id=22728,StackCount=1,Rarity=1,MinLevel=0,SellPrice=5000,Texture=133878,Type="Trade Goods",EquipLoc="",Link="|cffffffff|Hitem:22728::::::::40:::::::|h[Steam Tonk Controller]|h|r"},["Un'Goro Thunderer Pelt"]={SubType="Quest",Level=1,id=11480,StackCount=10,Rarity=1,MinLevel=0,SellPrice=0,Texture=134367,Type="Quest",Link="|cffffffff|Hitem:11480::::::::40:::::::|h[Un'Goro Thunderer Pelt]|h|r",EquipLoc=""},["Pattern: Bramblewood Belt"]={SubType="Leatherworking",Level=70,id=22769,StackCount=1,Rarity=1,MinLevel=0,SellPrice=12500,Texture=134939,Type="Recipe",EquipLoc="",Link="|cffffffff|Hitem:22769::::::::40:::::::|h[Pattern: Bramblewood Belt]|h|r"},["Soulseeker"]={SubType="Staves",Level=89,id=22799,StackCount=1,Rarity=4,MinLevel=60,SellPrice=327728,Texture=135152,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:22799::::::::40:::::::|h[Soulseeker]|h|r"},["Myrmidon's Defender"]={SubType="Shields",Level=51,id=8134,StackCount=1,Rarity=2,MinLevel=46,SellPrice=15993,Texture=134948,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cff1eff00|Hitem:8134::::::::40:::::::|h[Myrmidon's Defender]|h|r"},["Naxxramas Sword 1H 1 [PH]"]={SubType="One-Handed Swords",Level=77,id=22805,StackCount=1,Rarity=4,MinLevel=60,SellPrice=149352,Texture=135370,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:22805::::::::40:::::::|h[Naxxramas Sword 1H 1 [PH]]|h|r"},["Claymore of Unholy Might"]={SubType="Two-Handed Swords",Level=81,id=22813,StackCount=1,Rarity=4,MinLevel=60,SellPrice=239811,Texture=135356,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:22813::::::::40:::::::|h[Claymore of Unholy Might]|h|r"},["Warstrike Shoulder Pads"]={SubType="Mail",Level=62,id=14817,StackCount=1,Rarity=2,MinLevel=57,SellPrice=20883,Texture=135033,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cff1eff00|Hitem:14817::::::::40:::::::|h[Warstrike Shoulder Pads]|h|r"},["Naxxramas Polearm [PH]"]={SubType="Polearms",Level=77,id=22817,StackCount=1,Rarity=4,MinLevel=60,SellPrice=181237,Texture=135574,Type="Weapon",EquipLoc="INVTYPE_2HWEAPON",Link="|cffa335ee|Hitem:22817::::::::40:::::::|h[Naxxramas Polearm [PH]]|h|r"},["High Warlord's Bludgeon"]={SubType="One-Handed Maces",Level=78,id=18866,StackCount=1,Rarity=4,MinLevel=60,SellPrice=49861,Texture=133057,Type="Weapon",Link="|cffa335ee|Hitem:18866::::::::40:::::::|h[High Warlord's Bludgeon]|h|r",EquipLoc="INVTYPE_WEAPON"},["Handcrafted Mastersmith Leggings"]={SubType="Plate",Level=60,id=13498,StackCount=1,Rarity=3,MinLevel=55,SellPrice=19890,Texture=134584,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:13498::::::::40:::::::|h[Handcrafted Mastersmith Leggings]|h|r"},["Zandalar Illusionist's Mantle"]={SubType="Cloth",Level=61,id=19845,StackCount=1,Rarity=4,MinLevel=0,SellPrice=0,Texture=135048,Link="|cffa335ee|Hitem:19845::::::::40:::::::|h[Zandalar Illusionist's Mantle]|h|r",EquipLoc="INVTYPE_SHOULDER",Type="Armor"},["Legionnaire's Plate Leggings"]={SubType="Plate",Level=68,id=22873,StackCount=1,Rarity=3,MinLevel=60,SellPrice=14175,Texture=134586,Type="Armor",EquipLoc="INVTYPE_LEGS",Link="|cff0070dd|Hitem:22873::::::::40:::::::|h[Legionnaire's Plate Leggings]|h|r"},["Tigole's Boomstick (TEST)"]={SubType="One-Handed Maces",Level=100,id=2189,StackCount=1,Rarity=6,MinLevel=95,SellPrice=1152569,Texture=135613,Link="|cffe6cc80|Hitem:2189::::::::40:::::::|h[Tigole's Boomstick (TEST)]|h|r",EquipLoc="INVTYPE_WEAPONMAINHAND",Type="Weapon"},["Polar Shoulder Pads"]={SubType="Leather",Level=83,id=22941,StackCount=1,Rarity=4,MinLevel=60,SellPrice=77904,Texture=135038,Type="Armor",EquipLoc="INVTYPE_SHOULDER",Link="|cffa335ee|Hitem:22941::::::::40:::::::|h[Polar Shoulder Pads]|h|r"},["Crate of Crash Helmets"]={SubType="Quest",Level=1,id=5849,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=132765,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:5849::::::::40:::::::|h[Crate of Crash Helmets]|h|r"},["Charging Buckler"]={SubType="Shields",Level=9,id=4937,StackCount=1,Rarity=1,MinLevel=0,SellPrice=71,Texture=134955,Type="Armor",EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:4937::::::::40:::::::|h[Charging Buckler]|h|r"},["Tabard of the Argent Dawn"]={SubType="Miscellaneous",Level=60,id=22999,StackCount=1,Rarity=1,MinLevel=0,SellPrice=2500,Texture=135026,Type="Armor",EquipLoc="INVTYPE_TABARD",Link="|cffffffff|Hitem:22999::::::::40:::::::|h[Tabard of the Argent Dawn]|h|r"},["Thick Cloth Gloves"]={SubType="Cloth",Level=22,id=203,StackCount=1,Rarity=1,MinLevel=17,SellPrice=229,Texture=132955,Link="|cffffffff|Hitem:203::::::::40:::::::|h[Thick Cloth Gloves]|h|r",EquipLoc="INVTYPE_HAND",Type="Armor"},["Captain Sander's Booty Bag"]={SubType="Bag",Level=15,id=3343,StackCount=1,Rarity=1,MinLevel=0,SellPrice=450,Texture=133639,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:3343::::::::40:::::::|h[Captain Sander's Booty Bag]|h|r"},["Plagueheart Ring"]={SubType="Miscellaneous",Level=92,id=23063,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133393,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:23063::::::::40:::::::|h[Plagueheart Ring]|h|r"},["Deathguard Buckler"]={SubType="Shields",Level=5,id=3276,StackCount=1,Rarity=1,MinLevel=0,SellPrice=15,Texture=134955,EquipLoc="INVTYPE_SHIELD",Link="|cffffffff|Hitem:3276::::::::40:::::::|h[Deathguard Buckler]|h|r",Type="Armor"},["Ring of the Earthshatterer"]={SubType="Miscellaneous",Level=92,id=23065,StackCount=1,Rarity=4,MinLevel=60,SellPrice=60256,Texture=133393,Type="Armor",EquipLoc="INVTYPE_FINGER",Link="|cffa335ee|Hitem:23065::::::::40:::::::|h[Ring of the Earthshatterer]|h|r"},["Necro-Knight's Garb"]={SubType="Cloth",Level=85,id=23069,StackCount=1,Rarity=4,MinLevel=60,SellPrice=89953,Texture=132687,Type="Armor",EquipLoc="INVTYPE_ROBE",Link="|cffa335ee|Hitem:23069::::::::40:::::::|h[Necro-Knight's Garb]|h|r"},["Gloves of Undead Cleansing"]={SubType="Cloth",Level=63,id=23084,StackCount=1,Rarity=3,MinLevel=0,SellPrice=11318,Texture=132950,Type="Armor",EquipLoc="INVTYPE_HAND",Link="|cff0070dd|Hitem:23084::::::::40:::::::|h[Gloves of Undead Cleansing]|h|r"},["Ahn'Qiraj Staff [PH]"]={SubType="Staves",Level=75,id=21125,StackCount=1,Rarity=4,MinLevel=60,SellPrice=166145,Texture=135138,Link="|cffa335ee|Hitem:21125::::::::40:::::::|h[Ahn'Qiraj Staff [PH]]|h|r",EquipLoc="INVTYPE_2HWEAPON",Type="Weapon"},["Foror's Crate of Endless Resist Gear Storage"]={SubType="Bag",Level=60,id=23162,StackCount=1,Rarity=1,MinLevel=60,SellPrice=0,Texture=132764,Type="Container",EquipLoc="INVTYPE_BAG",Link="|cffffffff|Hitem:23162::::::::40:::::::|h[Foror's Crate of Endless Resist Gear Storage]|h|r"},["Refreshing Red Apple"]={SubType="Consumable",Level=55,id=23172,StackCount=20,Rarity=1,MinLevel=0,SellPrice=0,Texture=133975,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:23172::::::::40:::::::|h[Refreshing Red Apple]|h|r"},["Sentinel's Chain Leggings"]={SubType="Mail",Level=65,id=22748,StackCount=1,Rarity=4,MinLevel=60,SellPrice=48441,Texture=134583,Link="|cffa335ee|Hitem:22748::::::::40:::::::|h[Sentinel's Chain Leggings]|h|r",EquipLoc="INVTYPE_LEGS",Type="Armor"},["Deadly Blunderbuss"]={SubType="Guns",Level=21,id=4369,StackCount=1,Rarity=2,MinLevel=16,SellPrice=1179,Texture=135616,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cff1eff00|Hitem:4369::::::::40:::::::|h[Deadly Blunderbuss]|h|r"},["Knight-Lieutenant's Plate Greaves"]={SubType="Plate",Level=66,id=23287,StackCount=1,Rarity=3,MinLevel=60,SellPrice=10454,Texture=132590,Type="Armor",EquipLoc="INVTYPE_FEET",Link="|cff0070dd|Hitem:23287::::::::40:::::::|h[Knight-Lieutenant's Plate Greaves]|h|r"},["Ribbed Breastplate"]={SubType="Leather",Level=30,id=3750,StackCount=1,Rarity=2,MinLevel=0,SellPrice=2209,Texture=132724,Type="Armor",Link="|cff1eff00|Hitem:3750::::::::40:::::::|h[Ribbed Breastplate]|h|r",EquipLoc="INVTYPE_CHEST"},["Midsummer Sausage"]={SubType="Consumable",Level=1,id=23326,StackCount=20,Rarity=1,MinLevel=1,SellPrice=0,Texture=134009,Type="Consumable",EquipLoc="",Link="|cffffffff|Hitem:23326::::::::40:::::::|h[Midsummer Sausage]|h|r"},["Orb of Power"]={SubType="Miscellaneous",Level=26,id=4838,StackCount=1,Rarity=2,MinLevel=21,SellPrice=2000,Texture=134564,Link="|cff1eff00|Hitem:4838::::::::40:::::::|h[Orb of Power]|h|r",EquipLoc="INVTYPE_HOLDABLE",Type="Armor"},["Grand Marshal's Mageblade"]={SubType="Daggers",Level=78,id=23451,StackCount=1,Rarity=4,MinLevel=60,SellPrice=45671,Texture=135662,Type="Weapon",EquipLoc="INVTYPE_WEAPON",Link="|cffa335ee|Hitem:23451::::::::40:::::::|h[Grand Marshal's Mageblade]|h|r"},["Grand Marshal's Tome of Power"]={SubType="Miscellaneous",Level=78,id=23452,StackCount=1,Rarity=4,MinLevel=60,SellPrice=75452,Texture=133744,Type="Armor",EquipLoc="INVTYPE_HOLDABLE",Link="|cffa335ee|Hitem:23452::::::::40:::::::|h[Grand Marshal's Tome of Power]|h|r"},["Pattern: Fine Leather Boots"]={SubType="Leatherworking",Level=15,id=2406,StackCount=1,Rarity=2,MinLevel=0,SellPrice=25,Texture=134942,Type="Recipe",EquipLoc="",Link="|cff1eff00|Hitem:2406::::::::40:::::::|h[Pattern: Fine Leather Boots]|h|r"},["Dalson Outhouse Key"]={SubType="Quest",Level=1,id=12738,StackCount=1,Rarity=1,MinLevel=0,SellPrice=0,Texture=134240,Type="Quest",EquipLoc="",Link="|cffffffff|Hitem:12738::::::::40:::::::|h[Dalson Outhouse Key]|h|r"},["Larvae of the Great Worm"]={SubType="Guns",Level=81,id=23557,StackCount=1,Rarity=4,MinLevel=60,SellPrice=132177,Texture=135619,Type="Weapon",EquipLoc="INVTYPE_RANGEDRIGHT",Link="|cffa335ee|Hitem:23557::::::::40:::::::|h[Larvae of the Great Worm]|h|r"},["White Tiger Cub"]={SubType="Junk",Level=1,id=23712,StackCount=1,Rarity=1,MinLevel=0,SellPrice=1250,Texture=134176,Type="Miscellaneous",EquipLoc="",Link="|cffffffff|Hitem:23712::::::::40:::::::|h[White Tiger Cub]|h|r"},["Rogue's Diary"]={SubType="Junk",Level=1,id=24282,StackCount=5,Rarity=0,MinLevel=0,SellPrice=256,Texture=133741,Type="Miscellaneous",EquipLoc="",Link="|cff9d9d9d|Hitem:24282::::::::40:::::::|h[Rogue's Diary]|h|r"}} diff --git a/KiwiItemInfo.lua b/KiwiItemInfo.lua new file mode 100644 index 0000000..53f3a97 --- /dev/null +++ b/KiwiItemInfo.lua @@ -0,0 +1,278 @@ +--[[ + * KiwiItemInfo + * + * MIT License + * + * Copyright (c) 2017-2019 Cody Tilkins + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * +--]] + + + +local printi = KiwiItemInfo.printi +local L = KiwiItemInfo.LocaleStrings() + +KiwiItemInfo.LoadVars = function() + if(KiwiItemInfo_Vars == nil) then + KiwiItemInfo_Vars = { + ["vars"] = {} + } + end + for i, v in next, KiwiItemInfo._DEFAULT_VARS do + if(i ~= "vars" and KiwiItemInfo_Vars[i] == nil) then + KiwiItemInfo_Vars[i] = v + end + end + for i, v in next, KiwiItemInfo._DEFAULT_VARS.vars do + if(KiwiItemInfo_Vars.vars[i] == nil) then + KiwiItemInfo_Vars.vars[i] = v + end + end + -- check if anything removed + for i, v in next, KiwiItemInfo_Vars do + if(i ~= "vars" and KiwiItemInfo._DEFAULT_VARS[i] == nil) then + KiwiItemInfo_Vars[i] = nil + end + end + for i, v in next, KiwiItemInfo_Vars.vars do + if(KiwiItemInfo._DEFAULT_VARS.vars[i] == nil) then + KiwiItemInfo_Vars.vars[i] = nil + end + end + KiwiItemInfo_Vars.VERSION = KiwiItemInfo._VERSION +end + +-- Disables the plugin +KiwiItemInfo.Disable = function() + + SlashCmdList["KIWIITEMINFO_CMD"] = nil + SLASH_KIWIITEMINFO_CMD1 = nil + + KiwiItemInfo.EventFrame:UnregisterEvent("MODIFIER_STATE_CHANGED") + KiwiItemInfo.Events["MODIFIER_STATE_CHANGED"] = nil + +end + +-- Enables the plugin +KiwiItemInfo.Enable = function() + + KiwiItemInfo.LoadVars() + + if(KiwiItemInfo_Vars["first_run"]) then + KiwiItemInfo_Vars["first_run"] = false + + printi(0, L["KII_THANKS"]) + printi(0, L["KII_HELP"]) + end + + -- ensure database is present, if user wants it + KiwiItemInfo_Vars["search_cmd_state"] = true + if(KiwiItemInfo.Database == nil) then + printi(1, L["KII_BAD_DB"]) + KiwiItemInfo_Vars["search_cmd_state"] = false + end + + -- commands + SlashCmdList["KIWIITEMINFO_CMD"] = KiwiItemInfo.Command + SLASH_KIWIITEMINFO_CMD1 = "/kiwiii" + + -- bag events + KiwiItemInfo.Events["MODIFIER_STATE_CHANGED"] = function(key, state) + if(key == KiwiItemInfo_Vars.vars["flash_hotkey"] and state == 1) then + KiwiItemInfo.ShowJunk() + return + end + end + + KiwiItemInfo.EventFrame:RegisterEvent("MODIFIER_STATE_CHANGED") + +end + + + +-- Default event dispatcher +local ADDON_LOADED = function(addon) + if(addon ~= "KiwiItemInfo") then + return + end + + KiwiItemInfo.Enable() + + local VarsUI = KiwiItemInfo.VarsUI + VarsUI.Init() + VarsUI.AddComponent(3, L["VUI_FLASH_GREY_ITEMS"], + function(self) + self:SetChecked(KiwiItemInfo_Vars.vars["flash_grey_items"]) + end, + function(self, button, down) + KiwiItemInfo_Vars.vars["flash_grey_items"] = self:GetChecked() + end + ) + VarsUI.AddComponent(2, L["VUI_FLASH_HOTKEY"], + function(self) + self:SetText(KiwiItemInfo_Vars.vars["flash_hotkey"]) + end, + function(self) + self:ClearFocus() + KiwiItemInfo_Vars.vars["flash_hotkey"] = self:GetText() + end + ) + VarsUI.Blank() + VarsUI.AddComponent(3, L["VUI_ITEM_COMPARE"], + function(self) + self:SetChecked(KiwiItemInfo_Vars.vars["item_compare_on"]) + end, + function(self, button, down) + KiwiItemInfo_Vars.vars["item_compare_on"] = self:GetChecked() + end + ) + VarsUI.AddComponent(3, L["VUI_IC_VERBOSE"], + function(self) + self:SetChecked(KiwiItemInfo_Vars.vars["item_compare_extra"]) + end, + function(self, button, down) + KiwiItemInfo_Vars.vars["item_compare_extra"] = self:GetChecked() + end + ) + VarsUI.Blank() + VarsUI.AddComponent(3, L["VUI_VENDOR_PRICE"], + function(self) + self:SetChecked(KiwiItemInfo_Vars.vars["tooltip_price_on"]) + end, + function(self, button, down) + KiwiItemInfo_Vars.vars["tooltip_price_on"] = self:GetChecked() + end + ) + VarsUI.Blank() + VarsUI.AddComponent(3, L["VUI_SHOW_ILVL"], + function(self) + self:SetChecked(KiwiItemInfo_Vars.vars["tooltip_ilvl_on"]) + end, + function(self, button, down) + KiwiItemInfo_Vars.vars["tooltip_ilvl_on"] = self:GetChecked() + end + ) + VarsUI.AddComponent(3, L["VUI_ITEM_ILVL"], + function(self) + self:SetChecked(not KiwiItemInfo_Vars.vars["ilvl_only_equips"]) + end, + function(self, button, down) + KiwiItemInfo_Vars.vars["ilvl_only_equips"] = not self:GetChecked() + end + ) + VarsUI.AddComponent(3, L["VUI_DEFAULT_ILVL_COLOR"], + function(self) + self:SetChecked(KiwiItemInfo_Vars.vars["tooltip_ilvl_colors"]) + end, + function(self, button, down) + KiwiItemInfo_Vars.vars["tooltip_ilvl_colors"] = self:GetChecked() + end + ) + VarsUI.AddComponent(2, L["VUI_CUSTOM_ILVL_COLOR"], + function(self) + self:SetText(KiwiItemInfo_Vars.vars["tooltip_ilvl_nocolors_rgb"]) + end, + function(self) + self:ClearFocus() + local text = self:GetText() + if(text:match("%d+%s%d+%s%d+") or text:match("%d+%.%d+%s%d+%.%d+%s%d+%.%d+")) then + KiwiItemInfo_Vars.vars["tooltip_ilvl_nocolors_rgb"] = self:GetText() + else + printi(2, L["VUI_FORMAT_ERROR"]) + end + end + ) + VarsUI:Hide() + + -- tooltip events + GameTooltip:HookScript("OnTooltipSetItem", KiwiItemInfo.ShowItemInfo) + ShoppingTooltip1:HookScript("OnTooltipSetItem", KiwiItemInfo.ShowItemInfo) + ShoppingTooltip2:HookScript("OnTooltipSetItem", KiwiItemInfo.ShowItemInfo) + ItemRefTooltip:HookScript("OnTooltipSetItem", KiwiItemInfo.ShowItemInfo) + ItemRefShoppingTooltip1:HookScript("OnTooltipSetItem", KiwiItemInfo.ShowItemInfo) + ItemRefShoppingTooltip2:HookScript("OnTooltipSetItem", KiwiItemInfo.ShowItemInfo) + + -- item compare + GameTooltip:HookScript("OnTooltipSetItem", function(tooltip) + KiwiItemInfo.SetItemCompare(1, tooltip, tooltip:GetName() .. "Text") + end) + GameTooltip:HookScript("OnTooltipCleared", function(tooltip) + KiwiItemInfo.ClearItemCompare(1, tooltip) + end) + + ShoppingTooltip1:HookScript("OnTooltipSetItem", function(tooltip) + KiwiItemInfo.SetItemCompare(2, tooltip, tooltip:GetName() .. "Text") + KiwiItemInfo.DisplayItemCompare(GameTooltip, ShoppingTooltip1, 1) + KiwiItemInfo.ShowEffectiveStats(tooltip) + end) + ShoppingTooltip1:HookScript("OnTooltipCleared", function(tooltip) + KiwiItemInfo.ClearItemCompare(2, tooltip) + end) + + ShoppingTooltip2:HookScript("OnTooltipSetItem", function(tooltip) + KiwiItemInfo.SetItemCompare(3, tooltip, tooltip:GetName() .. "Text") + end) + ShoppingTooltip2:HookScript("OnTooltipCleared", function(tooltip) + KiwiItemInfo.ClearItemCompare(3, tooltip) + end) + + ItemRefTooltip:HookScript("OnTooltipSetItem", function(tooltip) + KiwiItemInfo.SetItemCompare(4, tooltip, tooltip:GetName() .. "Text") + end) + ItemRefTooltip:HookScript("OnTooltipCleared", function(tooltip) + KiwiItemInfo.ClearItemCompare(4, tooltip) + end) + + ItemRefShoppingTooltip1:HookScript("OnTooltipSetItem", function(tooltip) + KiwiItemInfo.SetItemCompare(5, tooltip, tooltip:GetName() .. "Text") + KiwiItemInfo.DisplayItemCompare(ItemRefTooltip, ItemRefShoppingTooltip1, 2) + end) + ItemRefShoppingTooltip1:HookScript("OnTooltipCleared", function(tooltip) + KiwiItemInfo.ClearItemCompare(5, tooltip) + end) + + ItemRefShoppingTooltip2:HookScript("OnTooltipSetItem", function(tooltip) + KiwiItemInfo.SetItemCompare(6, tooltip, tooltip:GetName() .. "Text") + KiwiItemInfo.DisplayItemCompare(ItemRefTooltip, ItemRefShoppingTooltip1, 2) + end) + ItemRefShoppingTooltip2:HookScript("OnTooltipCleared", function(tooltip) + KiwiItemInfo.ClearItemCompare(6, tooltip) + end) + +end + +-- hooks and events +KiwiItemInfo.Events = { + ["ADDON_LOADED"] = ADDON_LOADED +} + + +local KiwiItemInfo_EventFrame = CreateFrame("Frame") +KiwiItemInfo.EventFrame = KiwiItemInfo_EventFrame + +KiwiItemInfo_EventFrame:RegisterEvent("ADDON_LOADED") +KiwiItemInfo_EventFrame:SetScript("OnEvent", function(self, event, ...) + KiwiItemInfo.Events[event](...) +end) + + + + diff --git a/KiwiItemInfo.toc b/KiwiItemInfo.toc new file mode 100644 index 0000000..0fc9586 --- /dev/null +++ b/KiwiItemInfo.toc @@ -0,0 +1,26 @@ +## Interface: 11500 +## Title: |cFFFFFFFFKiwi Item Info|r|cFF00FF00 v2.3.6|r|cFF000088 Release|r +## Version: v2.3.7 +## Author: PoliteKiwi +## Notes: Displays sell value, iLvls, provides itemdb +## SavedVariablesPerCharacter: KiwiItemInfo_Vars +## Dependencies: +Init.lua +ItemDB.lua +Locale.lua +Locale\deDE\deDE.lua +Locale\enUS\enUS.lua +Locale\esES\esES.lua +Locale\frFR\frFR.lua +Locale\itIT\itIT.lua +Locale\koKR\koKR.lua +Locale\ptBR\ptBR.lua +Locale\ruRU\ruRU.lua +Locale\zhCN\zhCN.lua +Locale\zhTW\zhTW.lua +Database.lua +Tooltip.lua +Bags.lua +VarsUI.lua +Command.lua +KiwiItemInfo.lua diff --git a/Locale.lua b/Locale.lua new file mode 100644 index 0000000..23154fb --- /dev/null +++ b/Locale.lua @@ -0,0 +1,55 @@ +--[[ + * KiwiItemInfo + * + * MIT License + * + * Copyright (c) 2017-2019 Cody Tilkins + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * +--]] + + + +KiwiItemInfo.Locale = {} + + +KiwiItemInfo.LocaleStrings = function() + local locale = GetLocale() + + if(locale == "enGB") then + locale = "enUS" + end + + if(locale == "esMX") then + locale = "esES" + end + + local toret = KiwiItemInfo.Locale[locale] + if(toret == nil) then + return + end + + return toret +end + +KiwiItemInfo.LF = function(str) + return KiwiItemInfo.Locale["enUS"][str] +end + diff --git a/Locale/deDE/deDE.lua b/Locale/deDE/deDE.lua new file mode 100644 index 0000000..29b4593 --- /dev/null +++ b/Locale/deDE/deDE.lua @@ -0,0 +1,143 @@ + +KiwiItemInfo.Locale["deDE"] = { + ["TOOLTIP_UNIT"] = "Einheit: ", + ["TOOLTIP_STACK"] = "Stapel:", + ["TOOLTIP_ILVL"] = "iLvl ", + ["TOOLTIP_PRY_EQUIP"] = "ANLEGEN: ", + ["TOOLTIP_PRY_USE"] = "BENUTZEN: ", + ["TOOLTIP_PRY_CHANCE"] = "TREFFERCHANCE: ", + ["TOOLTIP_CMP_AGILITY"] = "[+-]%d+%s[BEWEGLICHKEIT]+", + ["TOOLTIP_PRY_AGILITY"] = "BEWEGLICHKEIT", + ["TOOLTIP_IC_AGILITY"] = "Beweglichkeit", + ["TOOLTIP_CMP_STAMINA"] = "[+-]%d+%s[AUSDAUER]+", + ["TOOLTIP_PRY_STAMINA"] = "AUSDAUER", + ["TOOLTIP_IC_STAMINA"] = "Ausdauer", + ["TOOLTIP_CMP_STRENGTH"] = "[+-]%d+%s[STÄRKE]+", + ["TOOLTIP_PRY_STRENGTH"] = "STÄRKE", + ["TOOLTIP_IC_STRENGTH"] = "Stärke", + ["TOOLTIP_CMP_INTELLECT"] = "[+-]%d+%s[INTELLIGENZ]+", + ["TOOLTIP_PRY_INTELLECT"] = "INTELLIGENZ", + ["TOOLTIP_IC_INTELLECT"] = "Intelligenz", + ["TOOLTIP_CMP_SPIRIT"] = "[+-]%d+%s[WILLENSKRAFT]+", + ["TOOLTIP_PRY_SPIRIT"] = "WILLENSKRAFT", + ["TOOLTIP_IC_SPIRIT"] = "Willenskraft", + ["TOOLTIP_CMP_ARMOR"] = "%d+%s[RÜSTUNG]+", + ["TOOLTIP_PRY_ARMOR"] = "RÜSTUNG", + ["TOOLTIP_IC_ARMOR"] = "Rüstung", + ["TOOLTIP_CMP_BLOCK"] = "%d+%s[BLOCKEN]+", + ["TOOLTIP_PRY_BLOCK"] = "BLOCKEN", + ["TOOLTIP_IC_BLOCK"] = "Blocken", + ["TOOLTIP_CMP_DURABILITY"] = "[HALTBARKEIT]+%s%d+%s/%s%d+", + ["TOOLTIP_PRY_DURABILITY"] = "HALTBARKEIT", + ["TOOLTIP_IC_DURABILITY"] = "Haltbarkeit", + ["TOOLTIP_CMP_DPS"] = "%(%d+%.%d+%s[SCHADEN PRO SEUKUNDE]+%)", + ["TOOLTIP_PRY_DPS"] = "SCHADEN PRO SEUKUNDE", + ["TOOLTIP_IC_DPS"] = "DPS", + ["TOOLTIP_CMP_DAMAGE"] = "%d+%s%-%s%d+%s[SCHADEN]+", + ["TOOLTIP_PRY_DAMAGE"] = "SCHADEN", + ["TOOLTIP_IC_DAMAGE"] = "Schaden", + ["TOOLTIP_CMP_DODGE"] = "[+-]%d+%%%s[AUSWEICHEN]+", + ["TOOLTIP_PRY_DODGE"] = "AUSWEICHEN", + ["TOOLTIP_IC_DODGE"] = "Ausweichen", + ["TOOLTIP_CMP_ARCANE"] = "[+-]%d+%s[ARKANWIDERSTAND]+", + ["TOOLTIP_PRY_ARCANE"] = "ARKANWIDERSTAND", + ["TOOLTIP_IC_ARCANE"] = "Arkanwiderstand", + ["TOOLTIP_CMP_FIRE"] = "[+-]%d+%s[FEUERWIDERSTANDS]+", + ["TOOLTIP_PRY_FIRE"] = "FEUERWIDERSTANDS", + ["TOOLTIP_IC_FIRE"] = "Feuerwiderstand", + ["TOOLTIP_CMP_FROST"] = "[+-]%d+%s[FROSTWIDERSTAND]+", + ["TOOLTIP_PRY_FROST"] = "FROSTWIDERSTAND", + ["TOOLTIP_IC_FROST"] = "Frostwiderstand", + ["TOOLTIP_CMP_NATURE"] = "[+-]%d+%s[NATURWIDERSTANDS]+", + ["TOOLTIP_PRY_NATURE"] = "NATURWIDERSTANDS", + ["TOOLTIP_IC_NATURE"] = "Naturwiderstand", + ["TOOLTIP_CMP_SHADOW"] = "[+-]%d+%s[SCHATTENWIDERSTANDS]+", + ["TOOLTIP_PRY_SHADOW"] = "SCHATTENWIDERSTANDS", + ["TOOLTIP_IC_SHADOW"] = "Schattenwiderstand", + ["TOOLTIP_IC_DAMAGE_DELTA"] = " Schaden (delta: ", + ["TOOLTIP_ITEM_COMPARE"] = "Kiwi sagt, dass dies durch Ausrüstung erreicht wird:", + ["TOOLTIP_ITEM_CONTRIB"] = "Stat Beitrag:", + ["TOOLTIP_EX_AGI_M_AP"] = "Beweglichkeit N. AS: ", + ["TOOLTIP_EX_AGI_R_AP"] = "Beweglichkeit R. AS: ", + ["TOOLTIP_EX_AGI_CRIT"] = "Beweglichkeit Krit: ", + ["TOOLTIP_EX_AGI_DODGE"] = "Beweglichkeit Ausweichen: ", + ["TOOLTIP_EX_AGI_AR"] = "Beweglichkeit Rüstung: ", + ["TOOLTIP_EX_AGI_M_CAT_AP"] = "Beweglichkeit Katzenform AS: ", + ["TOOLTIP_EX_STM_HP"] = "Ausdauer Gesundheit: ", + ["TOOLTIP_EX_STR_M_AP"] = "Stärke N. AS: ", + ["TOOLTIP_EX_STR_BLOCK"] = "Stärke Blocken: ", + ["TOOLTIP_EX_INT_MANA"] = "Intelligenz Mana: ", + ["TOOLTIP_EX_INT_CRIT"] = "Intelligenz Krit: ", + ["TOOLTIP_EX_SPT_HP5"] = "Willenskraft G/5: ", + ["TOOLTIP_EX_SPT_MP5"] = "Willenskraft M/5: ", + ["TOOLTIP_EX_RES_ARCANE"] = "Arkanwiderstand: ", + ["TOOLTIP_EX_RES_FIRE"] = "Feuerwiderstand: ", + ["TOOLTIP_EX_RES_FROST"] = "Frostwiderstand: ", + ["TOOLTIP_EX_RES_NATURE"] = "Naturwiderstand: ", + ["TOOLTIP_EX_RES_SHADOW"] = "Schattenwiderstand: ", + ["COMMAND_ERROR_ARG_LEN"] = "Kiwi Item Info: Ungültige Argumentlänge.", + ["COMMAND_RELOAD"] = "KiwiItemInfo wird neu geladen...", + ["COMMAND_RELOAD_DONE"] = "Fertig! :D Kiwi funktioniert!", + ["COMMAND_RESET"] = "KiwiItemInfo wird zurückgesetzt...", + ["COMMAND_VARS_DUMP"] = "Ausgeben der Benutzereinstellungen...", + ["COMMAND_VARS_DONE"] = "Fertig!", + ["COMMAND_SET_ERROR_BOOLEAN"] = "Kiwi braucht einen Nummerwert. (true/false). Es tut mir leid.", + ["COMMAND_SET_ERROR_NUMBER"] = "Kiwi braucht einen Nummerwert. Es tut mir leid.", + ["COMMAND_SET_ERROR_STRING"] = "Kiwi braucht einen Stringwert. Es tut mir leid.", + ["COMMAND_SET_ERROR_VAR"] = "Kiwi hat diese Variable nicht. Es tut mir leid.", + ["COMMAND_SET_ERROR_VALUE"] = "Kiwi braucht einen Wert, um die Variable zu setzen...", + ["COMMAND_SET_ERROR_INDEX"] = "Kiwi braucht eine Variable zum Setzen...", + ["COMMAND_SEARCH_ARG_LEN"] = "Kiwi Item Info: Ungültiges Argument Länge des Arguments ", + ["COMMAND_SEARCH_ONE_HANDED"] = "One-Handed ", + ["COMMAND_SEARCH_TWO_HANDED"] = "Two-Handed ", + ["COMMAND_SEARCH_1H"] = "One", + ["COMMAND_SEARCH_2H"] = "Two", + ["COMMAND_SEARCH_DONE"] = "Kiwi sagt `das ist dein Item`:", + ["COMMAND_SEARCH_DONE1"] = "Kiwi ist cool. Kiwi ist cool. kiwi fand ", + ["COMMAND_SEARCH_FAIL"] = "Kiwi fand keinen Items! :(", + ["KIWIII_HELP"] = "hilfe", + ["KIWIII_RELOAD"] = "reload", + ["KIWIII_RESET"] = "reset", + ["KIWIII_VARS"] = "vars", + ["KIWIII_SET"] = "setzen", + ["KIWIII_ACI"] = "aci", + ["KIWIII_SEARCH"] = "suchen", + ["VUI_FLASH_GREY_ITEMS"] = "Blinken Grau Items:", + ["VUI_FLASH_HOTKEY"] = "Blinken Hotkey:", + ["VUI_ITEM_COMPARE"] = "Item Vergleichen Am:", + ["VUI_IC_VERBOSE"] = "Ausführlicher Itemvergleich:", + ["VUI_VENDOR_PRICE"] = "Item Händlerpreis:", + ["VUI_SHOW_ILVL"] = "Zeige iLvl:", + ["VUI_ITEM_ILVL"] = "Zeige iLvl auf Items:", + ["VUI_DEFAULT_ILVL_COLOR"] = "Standardmäßige iLvl-Färbung:", + ["VUI_CUSTOM_ILVL_COLOR"] = "Benutzerdefinierte iLvl-Färbung:", + ["VUI_FORMAT_ERROR"] = "Ungültiges Farbformat eingegeben.", +} + + +local temp = KiwiItemInfo.Locale["deDE"] + +temp["COMMAND_SEARCH_ERROR_DB"] = "Kiwi lehnt die Verwendung von `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` ab. (mangels laden der datenbank?)" +temp["KII_BAD_DB"] = "Kiwi's Item Info Datenbank wurde nicht geladen! Nicht mit Das `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` Befehl." +temp["KII_HELP"] = "Bitte benutzen Das `/kiwiii " .. temp["KIWIII_HELP"] .. "` für eine Befehlsliste!" +temp["KII_THANKS"] = "Kiwi dankt Ihnen für die Installation von KiwiItemInfo " .. KiwiItemInfo._VERSION .. "! <3" +temp["COMMAND_HELP1"] = "Kiwi Item Info " .. KiwiItemInfo._VERSION .. " -- hilfe" +temp["COMMAND_HELP2"] = "https://github.com/tilkinsc/KiwiItemInfo - für Problem/Fehlerberichte" +temp["COMMAND_HELP3"] = "Usage: /kiwiii [" .. temp["KIWIII_RELOAD"] .. "] [" .. temp["KIWIII_RESET"] .. "] [" .. temp["KIWIII_VARS"] .. "] [" .. temp["KIWIII_ACI"] .. "]" +temp["COMMAND_HELP4"] = " [" .. temp["KIWIII_SET"] .. " variable_name Wert]" +temp["COMMAND_HELP5"] = " [" .. temp["KIWIII_SEARCH"] .. " ${=,>,<}num, #Typ, @Unteryp, {itemid, itemname}]" +temp["COMMAND_HELP6"] = " > |cFF888888" .. temp["KIWIII_HELP"] .. "|r -- für diese Nachricht" +temp["COMMAND_HELP7"] = " > |cFF888888" .. temp["KIWIII_RELOAD"] .. "|r -- lädt das Addon neu" +temp["COMMAND_HELP8"] = " > |cFF888888" .. temp["KIWIII_RESET"] .. "|r -- setzt alle gespeicherten Variablen zurück und lädt sie neu" +temp["COMMAND_HELP9"] = " > |cFF888888" .. temp["KIWIII_VARS"] .. "|r -- zeigt alle Einstellvariablen" +temp["COMMAND_HELP10"] = " > |cFF888888" .. temp["KIWIII_SET"] .. "|r -- schaltet eine Einstellung um" +temp["COMMAND_HELP11"] = " * |cFFBBBBBBvariable_name|r -- Variable in `/kiwiii " .. temp["KIWIII_VARS"] .. "` gezeigt" +temp["COMMAND_HELP12"] = " * |cFFBBBBBBWert|r -- entweder true, false, string, oder number" +temp["COMMAND_HELP13"] = " > |cFF888888" .. temp["KIWIII_ACI"] .. "|r -- schaltet alwaysCompareItems CVar um" +temp["COMMAND_HELP14"] = " > |cFF888888" .. temp["KIWIII_SEARCH"] .. "|r -- durchsucht die Itematenbank nach Items" +temp["COMMAND_HELP15"] = " * |cFFBBBBBB${=,>,<}num|r -- zeige nur ilvls 'num' von Operation" +temp["COMMAND_HELP16"] = " * |cFFBBBBBB#Typ|r -- zeigt nach Typ an (Armor, Weapon, etc)" +temp["COMMAND_HELP17"] = " * |cFFBBBBBB@Untertyp|r -- zeigt nach Untertyp an (Mail, 1HSwords, 2HSwords, etc)" +temp["COMMAND_HELP18"] = " * |cFFBBBBBBitemid|r -- nach Items suchen" +temp["COMMAND_HELP19"] = " * |cFFBBBBBBitemname|r -- nach Items suchen" + diff --git a/Locale/enUS/enUS.lua b/Locale/enUS/enUS.lua new file mode 100644 index 0000000..1275175 --- /dev/null +++ b/Locale/enUS/enUS.lua @@ -0,0 +1,143 @@ + +KiwiItemInfo.Locale["enUS"] = { + ["TOOLTIP_UNIT"] = "Unit: ", + ["TOOLTIP_STACK"] = "Stack:", + ["TOOLTIP_ILVL"] = "iLvl ", + ["TOOLTIP_PRY_EQUIP"] = "EQUIP: ", + ["TOOLTIP_PRY_USE"] = "USE: ", + ["TOOLTIP_PRY_CHANCE"] = "CHANCE ON HIT: ", + ["TOOLTIP_CMP_AGILITY"] = "[+-]%d+%s[AGILITY]+", + ["TOOLTIP_PRY_AGILITY"] = "AGILITY", + ["TOOLTIP_IC_AGILITY"] = "Agility", + ["TOOLTIP_CMP_STAMINA"] = "[+-]%d+%s[STAMINA]+", + ["TOOLTIP_PRY_STAMINA"] = "STAMINA", + ["TOOLTIP_IC_STAMINA"] = "Stamina", + ["TOOLTIP_CMP_STRENGTH"] = "[+-]%d+%s[STRENGTH]+", + ["TOOLTIP_PRY_STRENGTH"] = "STRENGTH", + ["TOOLTIP_IC_STRENGTH"] = "Strength", + ["TOOLTIP_CMP_INTELLECT"] = "[+-]%d+%s[INTELLECT]+", + ["TOOLTIP_PRY_INTELLECT"] = "INTELLECT", + ["TOOLTIP_IC_INTELLECT"] = "Intellect", + ["TOOLTIP_CMP_SPIRIT"] = "[+-]%d+%s[SPIRIT]+", + ["TOOLTIP_PRY_SPIRIT"] = "SPIRIT", + ["TOOLTIP_IC_SPIRIT"] = "Spirit", + ["TOOLTIP_CMP_ARMOR"] = "%d+%s[ARMOR]+", + ["TOOLTIP_PRY_ARMOR"] = "ARMOR", + ["TOOLTIP_IC_ARMOR"] = "Armor", + ["TOOLTIP_CMP_BLOCK"] = "%d+%s[BLOCK]+", + ["TOOLTIP_PRY_BLOCK"] = "BLOCK", + ["TOOLTIP_IC_BLOCK"] = "Block", + ["TOOLTIP_CMP_DURABILITY"] = "[DURABILITY]+%s%d+%s/%s%d+", + ["TOOLTIP_PRY_DURABILITY"] = "DURABILITY", + ["TOOLTIP_IC_DURABILITY"] = "Durability", + ["TOOLTIP_CMP_DPS"] = "%(%d+%.%d+%s[DAMAGE PER SECOND]+%)", + ["TOOLTIP_PRY_DPS"] = "DAMAGE PER SECOND", + ["TOOLTIP_IC_DPS"] = "DPS", + ["TOOLTIP_CMP_DAMAGE"] = "%d+%s%-%s%d+%s[DAMAGE]+", + ["TOOLTIP_PRY_DAMAGE"] = "DAMAGE", + ["TOOLTIP_IC_DAMAGE"] = "Damage", + ["TOOLTIP_CMP_DODGE"] = "[+-]%d+%%%s[DODGE]+", + ["TOOLTIP_PRY_DODGE"] = "DODGE", + ["TOOLTIP_IC_DODGE"] = "Dodge", + ["TOOLTIP_CMP_ARCANE"] = "[+-]%d+%s[ARCANE RESISTANCE]+", + ["TOOLTIP_PRY_ARCANE"] = "ARCANE RESISTANCE", + ["TOOLTIP_IC_ARCANE"] = "Arcane Resistance", + ["TOOLTIP_CMP_FIRE"] = "[+-]%d+%s[FIRE RESISTANCE]+", + ["TOOLTIP_PRY_FIRE"] = "FIRE RESISTANCE", + ["TOOLTIP_IC_FIRE"] = "Fire Resistance", + ["TOOLTIP_CMP_FROST"] = "[+-]%d+%s[FROST RESISTANCE]+", + ["TOOLTIP_PRY_FROST"] = "FROST RESISTANCE", + ["TOOLTIP_IC_FROST"] = "Frost Resistance", + ["TOOLTIP_CMP_NATURE"] = "[+-]%d+%s[NATURE RESISTANCE]+", + ["TOOLTIP_PRY_NATURE"] = "NATURE RESISTANCE", + ["TOOLTIP_IC_NATURE"] = "Nature Resistance", + ["TOOLTIP_CMP_SHADOW"] = "[+-]%d+%s[SHADOW RESISTANCE]+", + ["TOOLTIP_PRY_SHADOW"] = "SHADOW RESISTANCE", + ["TOOLTIP_IC_SHADOW"] = "Shadow Resistance", + ["TOOLTIP_IC_DAMAGE_DELTA"] = " Damage (delta: ", + ["TOOLTIP_ITEM_COMPARE"] = "Kiwi says equipping will do this:", + ["TOOLTIP_ITEM_CONTRIB"] = "Stat Contribution:", + ["TOOLTIP_EX_AGI_M_AP"] = "Agility M. AP: ", + ["TOOLTIP_EX_AGI_R_AP"] = "Agility R. AP: ", + ["TOOLTIP_EX_AGI_CRIT"] = "Agility Crit: ", + ["TOOLTIP_EX_AGI_DODGE"] = "Agility Dodge: ", + ["TOOLTIP_EX_AGI_AR"] = "Agility Armor: ", + ["TOOLTIP_EX_AGI_M_CAT_AP"] = "Agility Catform AP: ", + ["TOOLTIP_EX_STM_HP"] = "Stamina Health: ", + ["TOOLTIP_EX_STR_M_AP"] = "Strength M. AP: ", + ["TOOLTIP_EX_STR_BLOCK"] = "Strength Block: ", + ["TOOLTIP_EX_INT_MANA"] = "Intellect Mana: ", + ["TOOLTIP_EX_INT_CRIT"] = "Intellect Crit: ", + ["TOOLTIP_EX_SPT_HP5"] = "Spirit H/5: ", + ["TOOLTIP_EX_SPT_MP5"] = "Spirit M/5: ", + ["TOOLTIP_EX_RES_ARCANE"] = "Arcane Resist: ", + ["TOOLTIP_EX_RES_FIRE"] = "Fire Resist: ", + ["TOOLTIP_EX_RES_FROST"] = "Frost Resist: ", + ["TOOLTIP_EX_RES_NATURE"] = "Nature Resist: ", + ["TOOLTIP_EX_RES_SHADOW"] = "Shadow Resist: ", + ["COMMAND_ERROR_ARG_LEN"] = "Kiwi Item Info: Invalid argument length.", + ["COMMAND_RELOAD"] = "Reloading KiwiItemInfo...", + ["COMMAND_RELOAD_DONE"] = "All done! :D Kiwi is functioning!", + ["COMMAND_RESET"] = "Resetting KiwiItemInfo...", + ["COMMAND_VARS_DUMP"] = "Dumping user settings...", + ["COMMAND_VARS_DONE"] = "All done!", + ["COMMAND_SET_ERROR_BOOLEAN"] = "Kiwi expects a boolean value (true/false). Sorry.", + ["COMMAND_SET_ERROR_NUMBER"] = "Kiwi expects a number value. Sorry.", + ["COMMAND_SET_ERROR_STRING"] = "Kiwi expects a string value (words). Sorry.", + ["COMMAND_SET_ERROR_VAR"] = "Kiwi doesn't have such a variable. Sorry.", + ["COMMAND_SET_ERROR_VALUE"] = "Kiwi needs a value to set to the variable...", + ["COMMAND_SET_ERROR_INDEX"] = "Kiwi needs a variable to set...", + ["COMMAND_SEARCH_ARG_LEN"] = "Kiwi Item Info: Invalid argument length", + ["COMMAND_SEARCH_ONE_HANDED"] = "One-Handed ", + ["COMMAND_SEARCH_TWO_HANDED"] = "Two-Handed ", + ["COMMAND_SEARCH_1H"] = "One", + ["COMMAND_SEARCH_2H"] = "Two", + ["COMMAND_SEARCH_DONE"] = "Kiwi says `this is your item`:", + ["COMMAND_SEARCH_DONE1"] = "Kiwi so cool. Kiwi so fly. kiwi found ", + ["COMMAND_SEARCH_FAIL"] = "Kiwi couldn't find any items! :(", + ["KIWIII_HELP"] = "help", + ["KIWIII_RELOAD"] = "reload", + ["KIWIII_RESET"] = "reset", + ["KIWIII_VARS"] = "vars", + ["KIWIII_SET"] = "set", + ["KIWIII_ACI"] = "aci", + ["KIWIII_SEARCH"] = "search", + ["VUI_FLASH_GREY_ITEMS"] = "Flash Grey Items:", + ["VUI_FLASH_HOTKEY"] = "Flash Hotkey:", + ["VUI_ITEM_COMPARE"] = "Item Compare On:", + ["VUI_IC_VERBOSE"] = "Verbose Item Compare:", + ["VUI_VENDOR_PRICE"] = "Item Vendor Price:", + ["VUI_SHOW_ILVL"] = "Show iLvl:", + ["VUI_ITEM_ILVL"] = "Show iLvl On Items:", + ["VUI_DEFAULT_ILVL_COLOR"] = "Default iLvl Coloration:", + ["VUI_CUSTOM_ILVL_COLOR"] = "Custom iLvl Color:", + ["VUI_FORMAT_ERROR"] = "Invalid color format entered.", +} + + +local temp = KiwiItemInfo.Locale["enUS"] + +temp["COMMAND_SEARCH_ERROR_DB"] = "Kiwi declines usage of `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` (due to lack of loading the database?)" +temp["KII_BAD_DB"] = "Kiwi's Item Info database wasn't loaded! Not using `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` command." +temp["KII_HELP"] = "Please run `/kiwiii " .. temp["KIWIII_HELP"] .. "` for a command listing!" +temp["KII_THANKS"] = "Kiwi thanks you for installing KiwiItemInfo " .. KiwiItemInfo._VERSION .. "! <3" +temp["COMMAND_HELP1"] = "Kiwi Item Info " .. KiwiItemInfo._VERSION .. " -- help" +temp["COMMAND_HELP2"] = "https://github.com/tilkinsc/KiwiItemInfo - for issue/bug reports" +temp["COMMAND_HELP3"] = "Usage: /kiwiii [" .. temp["KIWIII_RELOAD"] .. "] [" .. temp["KIWIII_RESET"] .. "] [" .. temp["KIWIII_VARS"] .. "] [" .. temp["KIWIII_ACI"] .. "]" +temp["COMMAND_HELP4"] = " [" .. temp["KIWIII_SET"] .. " variable_name value]" +temp["COMMAND_HELP5"] = " [" .. temp["KIWIII_SEARCH"] .. " ${=,>,<}num, #Type, @subtype, {itemid, itemname}]" +temp["COMMAND_HELP6"] = " > |cFF888888" .. temp["KIWIII_HELP"] .. "|r -- for this message" +temp["COMMAND_HELP7"] = " > |cFF888888" .. temp["KIWIII_RELOAD"] .. "|r -- reloads addon" +temp["COMMAND_HELP8"] = " > |cFF888888" .. temp["KIWIII_RESET"] .. "|r -- resets all saved variables, also reloads" +temp["COMMAND_HELP9"] = " > |cFF888888" .. temp["KIWIII_VARS"] .. "|r -- shows all setting variables" +temp["COMMAND_HELP10"] = " > |cFF888888" .. temp["KIWIII_SET"] .. "|r -- toggles a setting" +temp["COMMAND_HELP11"] = " * |cFFBBBBBBvariable_name|r -- variable shown in /kiwiii " .. temp["KIWIII_VARS"] +temp["COMMAND_HELP12"] = " * |cFFBBBBBBvalue|r -- either true, false, string, or number" +temp["COMMAND_HELP13"] = " > |cFF888888" .. temp["KIWIII_ACI"] .. "|r -- toggles alwaysCompareItems CVar" +temp["COMMAND_HELP14"] = " > |cFF888888" .. temp["KIWIII_SEARCH"] .. "|r -- searches through item database for items" +temp["COMMAND_HELP15"] = " * |cFFBBBBBB${=,>,<}num|r -- show only items of ilvl equal, bigger or smaller than 'num'" +temp["COMMAND_HELP16"] = " * |cFFBBBBBB#Type|r -- shows by type (Armor, Weapon, etc)" +temp["COMMAND_HELP17"] = " * |cFFBBBBBB@SubType|r -- shows by subtype (Mail, 1HSwords, 2HSwords, etc)" +temp["COMMAND_HELP18"] = " * |cFFBBBBBBitemid|r -- search for items" +temp["COMMAND_HELP19"] = " * |cFFBBBBBBitemname|r -- search for items" + diff --git a/Locale/esES/esES.lua b/Locale/esES/esES.lua new file mode 100644 index 0000000..b9cc7a9 --- /dev/null +++ b/Locale/esES/esES.lua @@ -0,0 +1,143 @@ + +KiwiItemInfo.Locale["esES"] = { + ["TOOLTIP_UNIT"] = "Unidad: ", + ["TOOLTIP_STACK"] = "Pila:", + ["TOOLTIP_ILVL"] = "NDO ", + ["TOOLTIP_PRY_EQUIP"] = "EQUIPAR: ", + ["TOOLTIP_PRY_USE"] = "USO: ", + ["TOOLTIP_PRY_CHANCE"] = "PROBILIDAD AL ACERTAR: ", + ["TOOLTIP_CMP_AGILITY"] = "[+-]%d+%s[AGILIDAD]+", + ["TOOLTIP_PRY_AGILITY"] = "AGILIDAD", + ["TOOLTIP_IC_AGILITY"] = "Agilidad", + ["TOOLTIP_CMP_STAMINA"] = "[+-]%d+%s[AGUANTE]+", + ["TOOLTIP_PRY_STAMINA"] = "AGUANTE", + ["TOOLTIP_IC_STAMINA"] = "Aguante", + ["TOOLTIP_CMP_STRENGTH"] = "[+-]%d+%s[FUERZA]+", + ["TOOLTIP_PRY_STRENGTH"] = "FUERZA", + ["TOOLTIP_IC_STRENGTH"] = "Fuerza", + ["TOOLTIP_CMP_INTELLECT"] = "[+-]%d+%s[INTELECTO]+", + ["TOOLTIP_PRY_INTELLECT"] = "INTELECTO", + ["TOOLTIP_IC_INTELLECT"] = "Intelecto", + ["TOOLTIP_CMP_SPIRIT"] = "[+-]%d+%s[ESPÍRITU]+", + ["TOOLTIP_PRY_SPIRIT"] = "ESPÍRITU", + ["TOOLTIP_IC_SPIRIT"] = "Espíritu", + ["TOOLTIP_CMP_ARMOR"] = "%d+%s[P. DE ARMADURA]+", + ["TOOLTIP_PRY_ARMOR"] = "P. DE ARMADURA", + ["TOOLTIP_IC_ARMOR"] = "p. de Armadura", + ["TOOLTIP_CMP_BLOCK"] = "%d+%s[BLOQUEO]+", + ["TOOLTIP_PRY_BLOCK"] = "BLOQUEO", + ["TOOLTIP_IC_BLOCK"] = "Bloqueo", + ["TOOLTIP_CMP_DURABILITY"] = "[DURABILIDAD]+%s%d+%s/%s%d+", + ["TOOLTIP_PRY_DURABILITY"] = "DURABILIDAD", + ["TOOLTIP_IC_DURABILITY"] = "Durabilidad", + ["TOOLTIP_CMP_DPS"] = "%(%d+%.%d+%s[P. DE DAÑO POR SEGUNDO]+%)", + ["TOOLTIP_PRY_DPS"] = "P. DE DAÑO POR SEGUNDO", + ["TOOLTIP_IC_DPS"] = "DPS", + ["TOOLTIP_CMP_DAMAGE"] = "%d+%s%-%s%d+%s[P. DE DAÑO]+", + ["TOOLTIP_PRY_DAMAGE"] = "P. DE DAÑO", + ["TOOLTIP_IC_DAMAGE"] = "p. de Daño", + ["TOOLTIP_CMP_DODGE"] = "[+-]%d+%%%s[DE ESQUIVAR]+", + ["TOOLTIP_PRY_DODGE"] = "ESQUIVAR", + ["TOOLTIP_IC_DODGE"] = "Esquivar", + ["TOOLTIP_CMP_ARCANE"] = "[+-]%d+%s[RESISTENCIA A LO ARCANO]+", + ["TOOLTIP_PRY_ARCANE"] = "RESISTENCIA A LO ARCANO", + ["TOOLTIP_IC_ARCANE"] = "Resistencia a lo Arcano", + ["TOOLTIP_CMP_FIRE"] = "[+-]%d+%s[RESISTENCIA AL FUEGO]+", + ["TOOLTIP_PRY_FIRE"] = "RESISTENCIA AL FUEGO", + ["TOOLTIP_IC_FIRE"] = "Resistencia al Fuego", + ["TOOLTIP_CMP_FROST"] = "[+-]%d+%s[RESISTENCIA A LA ESCARCHA]+", + ["TOOLTIP_PRY_FROST"] = "RESISTENCIA A LA ESCARCHA", + ["TOOLTIP_IC_FROST"] = "Resistencia a la Escarcha", + ["TOOLTIP_CMP_NATURE"] = "[+-]%d+%s[RESISTENCIA A LA NATURALEZA]+", + ["TOOLTIP_PRY_NATURE"] = "RESISTENCIA A LA NATURALEZA", + ["TOOLTIP_IC_NATURE"] = "Resitencia a la Naturaleza", + ["TOOLTIP_CMP_SHADOW"] = "[+-]%d+%s[RESISTENCIA A LAS SOMBRAS]+", + ["TOOLTIP_PRY_SHADOW"] = "RESISTENCIA A LAS SOMBRAS", + ["TOOLTIP_IC_SHADOW"] = "Resistencia a las Sombras", + ["TOOLTIP_IC_DAMAGE_DELTA"] = " p. de Daño (delta: ", + ["TOOLTIP_ITEM_COMPARE"] = "Kiwi dice que equipar esto hará:", + ["TOOLTIP_ITEM_CONTRIB"] = "Contribución estadística:", + ["TOOLTIP_EX_AGI_M_AP"] = "Agilidad M. PA: ", + ["TOOLTIP_EX_AGI_R_AP"] = "Agilidad D. PA: ", + ["TOOLTIP_EX_AGI_CRIT"] = "Agilidad Crít: ", + ["TOOLTIP_EX_AGI_DODGE"] = "Agilidad Esquivar: ", + ["TOOLTIP_EX_AGI_AR"] = "Agilidad Armadura: ", + ["TOOLTIP_EX_AGI_M_CAT_AP"] = "Agilidad GatoForma PA: ", + ["TOOLTIP_EX_STM_HP"] = "Aguante Salud: ", + ["TOOLTIP_EX_STR_M_AP"] = "Fuerza M. PA: ", + ["TOOLTIP_EX_STR_BLOCK"] = "Fuerza Bloqueo: ", + ["TOOLTIP_EX_INT_MANA"] = "Intelecto Maná: ", + ["TOOLTIP_EX_INT_CRIT"] = "Intelecto Crít: ", + ["TOOLTIP_EX_SPT_HP5"] = "Espíritu S/5: ", + ["TOOLTIP_EX_SPT_MP5"] = "Espíritu M/5: ", + ["TOOLTIP_EX_RES_ARCANE"] = "Resistencia a lo Arcano: ", + ["TOOLTIP_EX_RES_FIRE"] = "Resistencia al Fuego: ", + ["TOOLTIP_EX_RES_FROST"] = "Resistencia a la Escarcha: ", + ["TOOLTIP_EX_RES_NATURE"] = "Resitencia a la Naturaleza: ", + ["TOOLTIP_EX_RES_SHADOW"] = "Resistencia a las Sombras: ", + ["COMMAND_ERROR_ARG_LEN"] = "Kiwi Item Info: Longitud de argumento inválida.", + ["COMMAND_RELOAD"] = "Recargando KiwiItemInfo...", + ["COMMAND_RELOAD_DONE"] = "Todo listo! :D Kiwi está funcionando!", + ["COMMAND_RESET"] = "Restableciendo KiwiItemInfo...", + ["COMMAND_VARS_DUMP"] = "Descartar la configuración del usuario...", + ["COMMAND_VARS_DONE"] = "Todo listo!", + ["COMMAND_SET_ERROR_BOOLEAN"] = "Kiwi necesita un valor boolean. (true/false). Lo siento.", + ["COMMAND_SET_ERROR_NUMBER"] = "Kiwi necesita un valor nombre. Lo siento.", + ["COMMAND_SET_ERROR_STRING"] = "Kiwi necesita un valor de palabras. Lo siento.", + ["COMMAND_SET_ERROR_VAR"] = "Kiwi no tiene esa variable. Lo siento.", + ["COMMAND_SET_ERROR_VALUE"] = "Kiwi necesita un valor para la variable...", + ["COMMAND_SET_ERROR_INDEX"] = "Kiwi necesita la variable...", + ["COMMAND_SEARCH_ARG_LEN"] = "Kiwi Item Info: La longitud del argumento no es válida.", + ["COMMAND_SEARCH_ONE_HANDED"] = "One-Handed ", + ["COMMAND_SEARCH_TWO_HANDED"] = "Two-Handed ", + ["COMMAND_SEARCH_1H"] = "One", + ["COMMAND_SEARCH_2H"] = "Two", + ["COMMAND_SEARCH_DONE"] = "Kiwi dice `este es tu objeto`:", + ["COMMAND_SEARCH_DONE1"] = "Kiwi tan genial. Kiwi tan impresionante. kiwi ha encontrado ", + ["COMMAND_SEARCH_FAIL"] = "Kiwi no pudo encontrar ningún objetos! :(", + ["KIWIII_HELP"] = "ayuda", + ["KIWIII_RELOAD"] = "recargar", + ["KIWIII_RESET"] = "reiniciar", + ["KIWIII_VARS"] = "vars", + ["KIWIII_SET"] = "set", + ["KIWIII_ACI"] = "aci", + ["KIWIII_SEARCH"] = "buscar", + ["VUI_FLASH_GREY_ITEMS"] = "Objectos grises de destello:", + ["VUI_FLASH_HOTKEY"] = "Hotkey destello:", + ["VUI_ITEM_COMPARE"] = "Objecto Comparar en:", + ["VUI_IC_VERBOSE"] = "Objecto detallado Comparar:", + ["VUI_VENDOR_PRICE"] = "Objecto Precio del Vendedor:", + ["VUI_SHOW_ILVL"] = "Mostrar iLvl:", + ["VUI_ITEM_ILVL"] = "Mostrar iLvl en otros:", + ["VUI_DEFAULT_ILVL_COLOR"] = "Coloración iLvl predeterminada:", + ["VUI_CUSTOM_ILVL_COLOR"] = "Coloración iLvl personalizado:", + ["VUI_FORMAT_ERROR"] = "Formato de color no válido ingresado.", +} + + +local temp = KiwiItemInfo.Locale["esES"] + +temp["COMMAND_SEARCH_ERROR_DB"] = "Kiwi rechaza el uso de `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` (debido que la base de datos no cargó?)" +temp["KII_BAD_DB"] = "La base de datos Kiwi Item Info no fue cargada. No se está usando el comando `/kiwiii " .. temp["KIWIII_SEARCH"] .. "`." +temp["KII_HELP"] = "Por favor usa `/kiwiii " .. temp["KIWIII_HELP"] .. "` para una lista de comandos!" +temp["KII_THANKS"] = "Kiwi te agradece por instalar KiwiItemInfo " .. KiwiItemInfo._VERSION .. "! <3" +temp["COMMAND_HELP1"] = "Kiwi Item Info " .. KiwiItemInfo._VERSION .. " -- ayuda" +temp["COMMAND_HELP2"] = "https://github.com/tilkinsc/KiwiItemInfo - para problemas/informes de errores" +temp["COMMAND_HELP3"] = "Uso: /kiwiii [" .. temp["KIWIII_RELOAD"] .. "] [" .. temp["KIWIII_RESET"] .. "] [" .. temp["KIWIII_VARS"] .. "] [" .. temp["KIWIII_ACI"] .. "]" +temp["COMMAND_HELP4"] = " [" .. temp["KIWIII_SET"] .. " nombre_del_variable valor]" +temp["COMMAND_HELP5"] = " [" .. temp["KIWIII_SEARCH"] .. " ${=,>,<}numero, #tipo, @subtipo, {id_del_objecto, nombre_del_objecto}]" +temp["COMMAND_HELP6"] = " > |cFF888888" .. temp["KIWIII_HELP"] .. "|r -- para este mensaje" +temp["COMMAND_HELP7"] = " > |cFF888888" .. temp["KIWIII_RELOAD"] .. "|r -- recarga este addon" +temp["COMMAND_HELP8"] = " > |cFF888888" .. temp["KIWIII_RESET"] .. "|r -- restablece todos las variables guardadas, también recarga" +temp["COMMAND_HELP9"] = " > |cFF888888" .. temp["KIWIII_VARS"] .. "|r -- muestra todos las variables de configuración" +temp["COMMAND_HELP10"] = " > |cFF888888" .. temp["KIWIII_SET"] .. "|r -- alterna una configuración" +temp["COMMAND_HELP11"] = " * |cFFBBBBBBnombre_del_variable|r -- variable mostrada en /kiwiii " .. temp["KIWIII_VARS"] +temp["COMMAND_HELP12"] = " * |cFFBBBBBBvalor|r -- ya sea true, false, palabras, o numeros" +temp["COMMAND_HELP13"] = " > |cFF888888" .. temp["KIWIII_ACI"] .. "|r -- alterna alwaysCompareItems CVar" +temp["COMMAND_HELP14"] = " > |cFF888888" .. temp["KIWIII_SEARCH"] .. "|r -- busca en la base de datos de objectos" +temp["COMMAND_HELP15"] = " * |cFFBBBBBB${=,>,<}numero|r -- mostrar solo los niveles de objectos 'num' de operación" +temp["COMMAND_HELP16"] = " * |cFFBBBBBB#tipo|r -- muestra por tipo (Armor, Weapon, etc)" +temp["COMMAND_HELP17"] = " * |cFFBBBBBB@Subtipo|r -- muestra por subtipo (Mail, 1HSwords, 2HSwords, etc)" +temp["COMMAND_HELP18"] = " * |cFFBBBBBBid_del_objecto|r -- numero de objecto" +temp["COMMAND_HELP19"] = " * |cFFBBBBBBnombre_del_objecto|r -- nombre de objecto" + diff --git a/Locale/frFR/frFR.lua b/Locale/frFR/frFR.lua new file mode 100644 index 0000000..16bf8ef --- /dev/null +++ b/Locale/frFR/frFR.lua @@ -0,0 +1,143 @@ + +KiwiItemInfo.Locale["frFR"] = { + ["TOOLTIP_UNIT"] = "Unité : ", + ["TOOLTIP_STACK"] = "Empiler :", + ["TOOLTIP_ILVL"] = "iLvl ", + ["TOOLTIP_PRY_EQUIP"] = "ÉQUIPER : ", + ["TOOLTIP_PRY_USE"] = "UTILISATION : ", + ["TOOLTIP_PRY_CHANCE"] = "CHANCE SUR HIT : ", + ["TOOLTIP_CMP_AGILITY"] = "[+-]%d+%s[AGILITÉ]+", + ["TOOLTIP_PRY_AGILITY"] = "AGILITÉ", + ["TOOLTIP_IC_AGILITY"] = "Agilité", + ["TOOLTIP_CMP_STAMINA"] = "[+-]%d+%s[ENDURANCE]+", + ["TOOLTIP_PRY_STAMINA"] = "ENDURANCE", + ["TOOLTIP_IC_STAMINA"] = "Endurance", + ["TOOLTIP_CMP_STRENGTH"] = "[+-]%d+%s[FORCE]+", + ["TOOLTIP_PRY_STRENGTH"] = "FORCE", + ["TOOLTIP_IC_STRENGTH"] = "Force", + ["TOOLTIP_CMP_INTELLECT"] = "[+-]%d+%s[INTELLECT]+", + ["TOOLTIP_PRY_INTELLECT"] = "INTELLECT", + ["TOOLTIP_IC_INTELLECT"] = "Intellect", + ["TOOLTIP_CMP_SPIRIT"] = "[+-]%d+%s[ESPRIT]+", + ["TOOLTIP_PRY_SPIRIT"] = "ESPRIT", + ["TOOLTIP_IC_SPIRIT"] = "Esprit", + ["TOOLTIP_CMP_ARMOR"] = "%d+%s[ARMURE]+", + ["TOOLTIP_PRY_ARMOR"] = "ARMURE", + ["TOOLTIP_IC_ARMOR"] = "Armure", + ["TOOLTIP_CMP_BLOCK"] = "%d+%s[BLOQUER]+", + ["TOOLTIP_PRY_BLOCK"] = "BLOQUER", + ["TOOLTIP_IC_BLOCK"] = "Bloquer", + ["TOOLTIP_CMP_DURABILITY"] = "[DURABILITÉ]+%s%d+%s/%s%d+", + ["TOOLTIP_PRY_DURABILITY"] = "DURABILITÉ", + ["TOOLTIP_IC_DURABILITY"] = "Durabilité", + ["TOOLTIP_CMP_DPS"] = "%(%d+%.%d+%s[DOMMAGE PAR SECONDE]+%)", + ["TOOLTIP_PRY_DPS"] = "DOMMAGE PAR SECONDE", + ["TOOLTIP_IC_DPS"] = "DPS", + ["TOOLTIP_CMP_DAMAGE"] = "%d+%s%-%s%d+%s[DOMMAGE]+", + ["TOOLTIP_PRY_DAMAGE"] = "DOMMAGE", + ["TOOLTIP_IC_DAMAGE"] = "Dommage", + ["TOOLTIP_CMP_DODGE"] = "[+-]%d+%%%s[ESQUIVE]+", + ["TOOLTIP_PRY_DODGE"] = "ESQUIVE", + ["TOOLTIP_IC_DODGE"] = "Esquive", + ["TOOLTIP_CMP_ARCANE"] = "[+-]%d+%s[RÉSISTANCE À L'ARCANE]+", + ["TOOLTIP_PRY_ARCANE"] = "RÉSISTANCE À L'ARCANE", + ["TOOLTIP_IC_ARCANE"] = "Résistance à l'arcane", + ["TOOLTIP_CMP_FIRE"] = "[+-]%d+%s[RÉSISTANCE AU FEU]+", + ["TOOLTIP_PRY_FIRE"] = "RÉSISTANCE AU FEU", + ["TOOLTIP_IC_FIRE"] = "Résistance au feu", + ["TOOLTIP_CMP_FROST"] = "[+-]%d+%s[RÉSISTANCE AU GEL]+", + ["TOOLTIP_PRY_FROST"] = "RÉSISTANCE AU GEL", + ["TOOLTIP_IC_FROST"] = "Résistance au gel", + ["TOOLTIP_CMP_NATURE"] = "[+-]%d+%s[RÉSISTANCE À LA NATURE]+", + ["TOOLTIP_PRY_NATURE"] = "RÉSISTANCE À LA NATURE", + ["TOOLTIP_IC_NATURE"] = "Résistance Naturelle", + ["TOOLTIP_CMP_SHADOW"] = "[+-]%d+%s[RÉSISTANCE À L'OMBRE]+", + ["TOOLTIP_PRY_SHADOW"] = "RÉSISTANCE À L'OMBRE", + ["TOOLTIP_IC_SHADOW"] = "Résistance à l'ombre", + ["TOOLTIP_IC_DAMAGE_DELTA"] = " Dommage (delta : ", + ["TOOLTIP_ITEM_COMPARE"] = "Kiwi dit que cet l'équipement donnera :", + ["TOOLTIP_ITEM_CONTRIB"] = "Contribution statistique :", + ["TOOLTIP_EX_AGI_M_AP"] = "Agilité M. PA : ", + ["TOOLTIP_EX_AGI_R_AP"] = "Agilité R. PA : ", + ["TOOLTIP_EX_AGI_CRIT"] = "Agilité Crit : ", + ["TOOLTIP_EX_AGI_DODGE"] = "Agilité Esquive : ", + ["TOOLTIP_EX_AGI_AR"] = "Agilité Armure : ", + ["TOOLTIP_EX_AGI_M_CAT_AP"] = "Agilité FormeChat PA: ", + ["TOOLTIP_EX_STM_HP"] = "Endurance Santé : ", + ["TOOLTIP_EX_STR_M_AP"] = "Force M. PA : ", + ["TOOLTIP_EX_STR_BLOCK"] = "Force Bloquer : ", + ["TOOLTIP_EX_INT_MANA"] = "Intellect Mana : ", + ["TOOLTIP_EX_INT_CRIT"] = "Intellect Crit : ", + ["TOOLTIP_EX_SPT_HP5"] = "Esprit S/5 : ", + ["TOOLTIP_EX_SPT_MP5"] = "Esprit M/5 : ", + ["TOOLTIP_EX_RES_ARCANE"] = "Résistance à l'arcane : ", + ["TOOLTIP_EX_RES_FIRE"] = "Résistance au feu : ", + ["TOOLTIP_EX_RES_FROST"] = "Résistance au gel : ", + ["TOOLTIP_EX_RES_NATURE"] = "Résistance Naturelle : ", + ["TOOLTIP_EX_RES_SHADOW"] = "Résistance à l'ombre : ", + ["COMMAND_ERROR_ARG_LEN"] = "Kiwi Item Info : Longueur d'argument non valide.", + ["COMMAND_RELOAD"] = "Rechargement de KiwiItemInfo...", + ["COMMAND_RELOAD_DONE"] = "Terminé ! :D Kiwi fonctionne !", + ["COMMAND_RESET"] = "Réinitialisation de KiwiItemInfo...", + ["COMMAND_VARS_DUMP"] = "Dumping des paramètres utilisateur...", + ["COMMAND_VARS_DONE"] = "Terminé !", + ["COMMAND_SET_ERROR_BOOLEAN"] = "Kiwi s'attend à une valeur booléenne (true/false). Désolé.", + ["COMMAND_SET_ERROR_NUMBER"] = "Kiwi s'attend à une valeur numérique. Désolé.", + ["COMMAND_SET_ERROR_STRING"] = "Kiwi s'attend à une chaîne de caractères (mots). Désolé.", + ["COMMAND_SET_ERROR_VAR"] = "Kiwi ne connait pas cette variable. Désolé.", + ["COMMAND_SET_ERROR_VALUE"] = "Kiwi a besoin d'une valeur pour définir la variable...", + ["COMMAND_SET_ERROR_INDEX"] = "Kiwi a besoin d'une variable à définir...", + ["COMMAND_SEARCH_ARG_LEN"] = "Kiwi Item Info : longueur d'argument non valide par argument", + ["COMMAND_SEARCH_ONE_HANDED"] = "À une main ", + ["COMMAND_SEARCH_TWO_HANDED"] = "À deux mains ", + ["COMMAND_SEARCH_1H"] = "Une", + ["COMMAND_SEARCH_2H"] = "Deux", + ["COMMAND_SEARCH_DONE"] = "TwoKiwi dit `ceci est votre item` :", + ["COMMAND_SEARCH_DONE1"] = "Kiwi tellement cool. Kiwi donc voler. kiwi a trouvé ", + ["COMMAND_SEARCH_FAIL"] = "Kiwi n'a trouvé aucun item ! :(", + ["KIWIII_HELP"] = "aidez", + ["KIWIII_RELOAD"] = "recharger", + ["KIWIII_RESET"] = "reinit", + ["KIWIII_VARS"] = "vars", + ["KIWIII_SET"] = "set", + ["KIWIII_ACI"] = "aci", + ["KIWIII_SEARCH"] = "chercher", + ["VUI_FLASH_GREY_ITEMS"] = "Articles gris flash:", + ["VUI_FLASH_HOTKEY"] = "Raccourci flash:", + ["VUI_ITEM_COMPARE"] = "Article comparer sur:", + ["VUI_IC_VERBOSE"] = "Article détaillé Comparer:", + ["VUI_VENDOR_PRICE"] = "Prix du vendeur d'article:", + ["VUI_SHOW_ILVL"] = "Afficher iLvl:", + ["VUI_ITEM_ILVL"] = "Afficher iLvl sur les éléments:", + ["VUI_DEFAULT_ILVL_COLOR"] = "Couleur iLvl par défaut:", + ["VUI_CUSTOM_ILVL_COLOR"] = "Couleur iLvl personnalisée:", + ["VUI_FORMAT_ERROR"] = "Format de couleur non valide entré.", +} + + +local temp = KiwiItemInfo.Locale["frFR"] + +temp["COMMAND_SEARCH_ERROR_DB"] = "Kiwi refuse l'utilisation de `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` (la base de données est-elle chargée ?)" +temp["KII_BAD_DB"] = "La base de données d'informations sur les items de Kiwi n'a pas été chargée ! Commande `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` indisponible." +temp["KII_HELP"] = "Veuillez lancer `/kiwiii " .. temp["KIWIII_HELP"] .. "` pour une liste de commandes !" +temp["KII_THANKS"] = "Kiwi vous remercie d'avoir installé KiwiItemInfo " .. KiwiItemInfo._VERSION .. " ! <3" +temp["COMMAND_HELP1"] = "Kiwi Item Info " .. KiwiItemInfo._VERSION .. " -- aidez" +temp["COMMAND_HELP2"] = "https://github.com/tilkinsc/KiwiItemInfo - pour les rapports de problèmes/bogues" +temp["COMMAND_HELP3"] = "Usage: /kiwiii [" .. temp["KIWIII_RELOAD"] .. "] [" .. temp["KIWIII_RESET"] .. "] [" .. temp["KIWIII_VARS"] .. "] [" .. temp["KIWIII_ACI"] .. "]" +temp["COMMAND_HELP4"] = " [" .. temp["KIWIII_SET"] .. " variable_name value]" +temp["COMMAND_HELP5"] = " [" .. temp["KIWIII_SEARCH"] .. " ${=,>,<}num, #Type, @subtype, {itemid, itemname}]" +temp["COMMAND_HELP6"] = " > |cFF888888" .. temp["KIWIII_HELP"] .. "|r -- pour obtenir ce message" +temp["COMMAND_HELP7"] = " > |cFF888888" .. temp["KIWIII_RELOAD"] .. "|r -- redémarre l'addon" +temp["COMMAND_HELP8"] = " > |cFF888888" .. temp["KIWIII_RESET"] .. "|r -- réinitialise toutes les variables sauvegardées, redémarre également l'addon" +temp["COMMAND_HELP9"] = " > |cFF888888" .. temp["KIWIII_VARS"] .. "|r -- montre toutes les variables de réglage" +temp["COMMAND_HELP10"] = " > |cFF888888" .. temp["KIWIII_SET"] .. "|r -- change la valeur d'un réglage" +temp["COMMAND_HELP11"] = " * |cFFBBBBBBvariable_name|r -- variable affichée dans /kiwiii " .. temp["KIWIII_VARS"] +temp["COMMAND_HELP12"] = " * |cFFBBBBBBvalue|r -- soit 'true' (vrai), 'false' (faux), une chaîne de caractères ou un nombre" +temp["COMMAND_HELP13"] = " > |cFF888888" .. temp["KIWIII_ACI"] .. "|r -- inverse la valeur de alwaysCompareItems" +temp["COMMAND_HELP14"] = " > |cFF888888" .. temp["KIWIII_SEARCH"] .. "|r -- recherche des items dans la base de données" +temp["COMMAND_HELP15"] = " * |cFFBBBBBB${=,>,<}num|r -- affiche uniquement les items d'ilvl égal, plus grand ou plus petit que 'num'" +temp["COMMAND_HELP16"] = " * |cFFBBBBBB#Type|r -- affiche par type (armure, arme, etc.)" +temp["COMMAND_HELP17"] = " * |cFFBBBBBB@SubType|r -- affiche par sous-type (Mail, 1HSwords, 2HSwords, etc.)" +temp["COMMAND_HELP18"] = " * |cFFBBBBBBitemid|r -- rechercher des items" +temp["COMMAND_HELP19"] = " * |cFFBBBBBBitemname|r -- rechercher des items" + diff --git a/Locale/itIT/itIT.lua b/Locale/itIT/itIT.lua new file mode 100644 index 0000000..f4ffb84 --- /dev/null +++ b/Locale/itIT/itIT.lua @@ -0,0 +1,144 @@ + +KiwiItemInfo.Locale["itIT"] = { + ["TOOLTIP_UNIT"] = "Unità: ", + ["TOOLTIP_STACK"] = "Stack:", + ["TOOLTIP_ILVL"] = "iLvl ", + ["TOOLTIP_PRY_EQUIP"] = "Attr.: ", + ["TOOLTIP_PRY_USE"] = "USA: ", + ["TOOLTIP_PRY_CHANCE"] = "PROBABILITÀ : ", + ["TOOLTIP_CMP_AGILITY"] = "[+-]%d+%s[AGILITÀ]+", + ["TOOLTIP_PRY_AGILITY"] = "AGILITÀ", + ["TOOLTIP_IC_AGILITY"] = "Agilità", + ["TOOLTIP_CMP_STAMINA"] = "[+-]%d+%s[STAMINA]+", + ["TOOLTIP_PRY_STAMINA"] = "STAMINA", + ["TOOLTIP_IC_STAMINA"] = "Stamina", + ["TOOLTIP_CMP_STRENGTH"] = "[+-]%d+%s[FORZA]+", + ["TOOLTIP_PRY_STRENGTH"] = "FORZA", + ["TOOLTIP_IC_STRENGTH"] = "Forza", + ["TOOLTIP_CMP_INTELLECT"] = "[+-]%d+%s[Intelletto]+", + ["TOOLTIP_PRY_INTELLECT"] = "INTELLETTO", + ["TOOLTIP_IC_INTELLECT"] = "Intelletto", + ["TOOLTIP_CMP_SPIRIT"] = "[+-]%d+%s[Spirito]+", + ["TOOLTIP_PRY_SPIRIT"] = "SPIRITO", + ["TOOLTIP_IC_SPIRIT"] = "Spirito", + ["TOOLTIP_CMP_ARMOR"] = "%d+%s[ARMATURA]+", + ["TOOLTIP_PRY_ARMOR"] = "ARMATURA", + ["TOOLTIP_IC_ARMOR"] = "Armatura", + ["TOOLTIP_CMP_BLOCK"] = "%d+%s[BLOCCO]+", + ["TOOLTIP_PRY_BLOCK"] = "BLOCCO", + ["TOOLTIP_IC_BLOCK"] = "Blocco", + ["TOOLTIP_CMP_DURABILITY"] = "[DURABILITÀ]+%s%d+%s/%s%d+", + ["TOOLTIP_PRY_DURABILITY"] = "DURABILITÀ", + ["TOOLTIP_IC_DURABILITY"] = "Durabilità", + ["TOOLTIP_CMP_DPS"] = "%(%d+%.%d+%s[DANNI AL SECONDO]+%)", + ["TOOLTIP_PRY_DPS"] = "DANNI AL SECONDO", + ["TOOLTIP_IC_DPS"] = "DAS", + ["TOOLTIP_CMP_DAMAGE"] = "%d+%s%-%s%d+%s[DANNO]+", + ["TOOLTIP_PRY_DAMAGE"] = "DANNO", + ["TOOLTIP_IC_DAMAGE"] = "Danno", + ["TOOLTIP_CMP_DODGE"] = "[+-]%d+%%%s[SCHIVATA]+", + ["TOOLTIP_PRY_DODGE"] = "SCHIVATA", + ["TOOLTIP_IC_DODGE"] = "Schivata", + ["TOOLTIP_CMP_ARCANE"] = "[+-]%d+%s[ARCANA RESISTENZA]+", + ["TOOLTIP_PRY_ARCANE"] = "ARCANA RESISTENZA", + ["TOOLTIP_IC_ARCANE"] = "Arcana Resistenza", + ["TOOLTIP_CMP_FIRE"] = "[+-]%d+%s[RESISTENZA AL FUOCO]+", + ["TOOLTIP_PRY_FIRE"] = "RESISTENZA AL FUOCO", + ["TOOLTIP_IC_FIRE"] = "Resistenza al Fuoco", + ["TOOLTIP_CMP_FROST"] = "[+-]%d+%s[RESISTENZA AL GHIACCIO]+", + ["TOOLTIP_PRY_FROST"] = "RESISTENZA AL GHIACCIO", + ["TOOLTIP_IC_FROST"] = "Resistenza al Ghiaccio", + ["TOOLTIP_CMP_NATURE"] = "[+-]%d+%s[RESISTENZA DELLA NATURA]+", + ["TOOLTIP_PRY_NATURE"] = "RESISTENZA DELLA NATURA", + ["TOOLTIP_IC_NATURE"] = "Resistenza della Natura", + ["TOOLTIP_CMP_SHADOW"] = "[+-]%d+%s[RESISTENZA OMBRA]+", + ["TOOLTIP_PRY_SHADOW"] = "RESISTENZA OMBRA", + ["TOOLTIP_IC_SHADOW"] = "Resistenza Ombra", + ["TOOLTIP_IC_DAMAGE_DELTA"] = " Danno (delta: ", + ["TOOLTIP_ITEM_COMPARE"] = "Kiwi consiglia:", + ["TOOLTIP_ITEM_CONTRIB"] = "Contributo stat:", + ["TOOLTIP_EX_AGI_M_AP"] = "Agilità M. AP: ", + ["TOOLTIP_EX_AGI_R_AP"] = "Agilità S. AP: ", + ["TOOLTIP_EX_AGI_CRIT"] = "Agilità Crit: ", + ["TOOLTIP_EX_AGI_DODGE"] = "Agilità Schivata: ", + ["TOOLTIP_EX_AGI_AR"] = "Agilità Armatura: ", + ["TOOLTIP_EX_AGI_M_CAT_AP"] = "Agilità GattoForma AP: ", + ["TOOLTIP_EX_STM_HP"] = "Stamina Salute: ", + ["TOOLTIP_EX_STR_M_AP"] = "Forza M. AP: ", + ["TOOLTIP_EX_STR_BLOCK"] = "Forza Blocco: ", + ["TOOLTIP_EX_INT_MANA"] = "Intelletto Mana: ", + ["TOOLTIP_EX_INT_CRIT"] = "Intelletto Crit: ", + ["TOOLTIP_EX_SPT_HP5"] = "Spirito S/5: ", + ["TOOLTIP_EX_SPT_MP5"] = "Spirito M/5: ", + ["TOOLTIP_EX_RES_ARCANE"] = "Arcana Resistenza: ", + ["TOOLTIP_EX_RES_FIRE"] = "Resistenza al Fuoco: ", + ["TOOLTIP_EX_RES_FROST"] = "Resistenza al Ghiaccio: ", + ["TOOLTIP_EX_RES_NATURE"] = "Resistenza della Natura: ", + ["TOOLTIP_EX_RES_SHADOW"] = "Resistenza Ombra: ", + ["COMMAND_ERROR_ARG_LEN"] = "Kiwi Item Info: numero parametri non valido.", + ["COMMAND_RELOAD"] = "Ricarico KiwiItemInfo...", + ["COMMAND_RELOAD_DONE"] = "Completato! :D Kiwi è vivo!", + ["COMMAND_RESET"] = "Resetto KiwiItemInfo...", + ["COMMAND_VARS_DUMP"] = "Caricamento impostazioni utente...", + ["COMMAND_VARS_DONE"] = "Fatto!", + ["COMMAND_SET_ERROR_BOOLEAN"] = "Kiwi si aspetta un valore booleano (true/false). Scusa.", + ["COMMAND_SET_ERROR_NUMBER"] = "Kiwi si aspetta un numero. Scusa.", + ["COMMAND_SET_ERROR_STRING"] = "Kiwi si aspetta una stringa (words). Scusa.", + ["COMMAND_SET_ERROR_VAR"] = "Kiwi non conosce questa variabile. Scusa.", + ["COMMAND_SET_ERROR_VALUE"] = "Kiwi ha bisogno di avere un valore per la variabile...", + ["COMMAND_SET_ERROR_INDEX"] = "Kiwi ha bisogno di avere la variabile settata...", + ["COMMAND_SEARCH_ARG_LEN"] = "Kiwi Item Info: Numero dei parametri non valido", + ["COMMAND_SEARCH_ONE_HANDED"] = "One-Handed ", + ["COMMAND_SEARCH_TWO_HANDED"] = "Two-Handed ", + ["COMMAND_SEARCH_1H"] = "One", + ["COMMAND_SEARCH_2H"] = "Two", + ["COMMAND_SEARCH_DONE"] = "Kiwi dice `Questo è il tuo oggetto`:", + ["COMMAND_SEARCH_DONE1"] = "Kiwi che figo. Kiwi sto volando! kiwi trovato ", + ["COMMAND_SEARCH_FAIL"] = "Kiwi non riesce a trovare niente! :(", + ["KIWIII_HELP"] = "aiuto", + ["KIWIII_RELOAD"] = "ricaricare", + ["KIWIII_RESET"] = "ripristina", + ["KIWIII_VARS"] = "vars", + ["KIWIII_SET"] = "set", + ["KIWIII_ACI"] = "aci", + ["KIWIII_SEARCH"] = "ricerca", + ["VUI_FLASH_GREY_ITEMS"] = "Articoli Flash grigio:", + ["VUI_FLASH_HOTKEY"] = "Tasto di scelta rapida Flash:", + ["VUI_ITEM_COMPARE"] = "Articolo confronta su:", + ["VUI_IC_VERBOSE"] = "Confronta articoli dettagliati:", + ["VUI_VENDOR_PRICE"] = "Prezzo fornitore articolo:", + ["VUI_SHOW_ILVL"] = "Mostra iLvl:", + ["VUI_ITEM_ILVL"] = "Mostra iLvl sugli articoli:", + ["VUI_DEFAULT_ILVL_COLOR"] = "Colorazione iLvl predefinita:", + ["VUI_CUSTOM_ILVL_COLOR"] = "Colore iLvl personalizzato:", + ["VUI_FORMAT_ERROR"] = "È stato inserito un formato colore non valido.", +} + + +local temp = KiwiItemInfo.Locale["itIT"] + +temp["COMMAND_SEARCH_ERROR_DB"] = "Kiwi declines usage of `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` (due to lack of loading the database?)" +temp["KII_BAD_DB"] = "Kiwi's Item Info database wasn't loaded! Not using `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` command." +temp["KII_HELP"] = "Please run `/kiwiii " .. temp["KIWIII_HELP"] .. "` for a command listing!" +temp["KII_THANKS"] = "Kiwi thanks you for installing KiwiItemInfo " .. KiwiItemInfo._VERSION .. "! <3" +temp["COMMAND_HELP1"] = "Kiwi Item Info " .. KiwiItemInfo._VERSION .. " -- aiuto" +temp["COMMAND_HELP2"] = "https://github.com/tilkinsc/KiwiItemInfo - for issue/bug reports" +temp["COMMAND_HELP3"] = "Manuale: /kiwiii [" .. temp["KIWIII_RELOAD"] .. "] [" .. temp["KIWIII_RESET"] .. "] [" .. temp["KIWIII_VARS"] .. "] [" .. temp["KIWIII_ACI"] .. "]" +temp["COMMAND_HELP4"] = " [" .. temp["KIWIII_SET"] .. " variable_name value]" +temp["COMMAND_HELP5"] = " [" .. temp["KIWIII_SEARCH"] .. " ${=,>,<}num, #Type, @subtype, {itemid, itemname}]" +temp["COMMAND_HELP6"] = " > |cFF888888" .. temp["KIWIII_HELP"] .. "|r -- for this message" +temp["COMMAND_HELP7"] = " > |cFF888888" .. temp["KIWIII_RELOAD"] .. "|r -- reloads addon" +temp["COMMAND_HELP8"] = " > |cFF888888" .. temp["KIWIII_RESET"] .. "|r -- resets all saved variables, also reloads" +temp["COMMAND_HELP9"] = " > |cFF888888" .. temp["KIWIII_VARS"] .. "|r -- shows all setting variables" +temp["COMMAND_HELP10"] = " > |cFF888888" .. temp["KIWIII_SET"] .. "|r -- toggles a setting" +temp["COMMAND_HELP11"] = " * |cFFBBBBBBvariable_name|r -- variable shown in /kiwiii " .. temp["KIWIII_VARS"] +temp["COMMAND_HELP12"] = " * |cFFBBBBBBvalue|r -- either true, false, string, or number" +temp["COMMAND_HELP13"] = " > |cFF888888" .. temp["KIWIII_ACI"] .. "|r -- toggles alwaysCompareItems CVar" +temp["COMMAND_HELP14"] = " > |cFF888888" .. temp["KIWIII_SEARCH"] .. "|r -- searches through item database for items" +temp["COMMAND_HELP15"] = " * |cFFBBBBBB${=,>,<}num|r -- show only items of ilvl equal, bigger or smaller than 'num'" +temp["COMMAND_HELP16"] = " * |cFFBBBBBB#Type|r -- shows by type (Armor, Weapon, etc)" +temp["COMMAND_HELP17"] = " * |cFFBBBBBB@SubType|r -- shows by subtype (Mail, 1HSwords, 2HSwords, etc)" +temp["COMMAND_HELP18"] = " * |cFFBBBBBBitemid|r -- search for items" +temp["COMMAND_HELP19"] = " * |cFFBBBBBBitemname|r -- search for items" + + diff --git a/Locale/koKR/koKR.lua b/Locale/koKR/koKR.lua new file mode 100644 index 0000000..8756663 --- /dev/null +++ b/Locale/koKR/koKR.lua @@ -0,0 +1,143 @@ + +KiwiItemInfo.Locale["koKR"] = { + ["TOOLTIP_UNIT"] = "Unit: ", + ["TOOLTIP_STACK"] = "Stack:", + ["TOOLTIP_ILVL"] = "iLvl ", + ["TOOLTIP_PRY_EQUIP"] = "EQUIP: ", + ["TOOLTIP_PRY_USE"] = "USE: ", + ["TOOLTIP_PRY_CHANCE"] = "CHANCE ON HIT: ", + ["TOOLTIP_CMP_AGILITY"] = "[+-]%d+%s[AGILITY]+", + ["TOOLTIP_PRY_AGILITY"] = "AGILITY", + ["TOOLTIP_IC_AGILITY"] = "Agility", + ["TOOLTIP_CMP_STAMINA"] = "[+-]%d+%s[STAMINA]+", + ["TOOLTIP_PRY_STAMINA"] = "STAMINA", + ["TOOLTIP_IC_STAMINA"] = "Stamina", + ["TOOLTIP_CMP_STRENGTH"] = "[+-]%d+%s[STRENGTH]+", + ["TOOLTIP_PRY_STRENGTH"] = "STRENGTH", + ["TOOLTIP_IC_STRENGTH"] = "Strength", + ["TOOLTIP_CMP_INTELLECT"] = "[+-]%d+%s[INTELLECT]+", + ["TOOLTIP_PRY_INTELLECT"] = "INTELLECT", + ["TOOLTIP_IC_INTELLECT"] = "Intellect", + ["TOOLTIP_CMP_SPIRIT"] = "[+-]%d+%s[SPIRIT]+", + ["TOOLTIP_PRY_SPIRIT"] = "SPIRIT", + ["TOOLTIP_IC_SPIRIT"] = "Spirit", + ["TOOLTIP_CMP_ARMOR"] = "%d+%s[ARMOR]+", + ["TOOLTIP_PRY_ARMOR"] = "ARMOR", + ["TOOLTIP_IC_ARMOR"] = "Armor", + ["TOOLTIP_CMP_BLOCK"] = "%d+%s[BLOCK]+", + ["TOOLTIP_PRY_BLOCK"] = "BLOCK", + ["TOOLTIP_IC_BLOCK"] = "Block", + ["TOOLTIP_CMP_DURABILITY"] = "[DURABILITY]+%s%d+%s/%s%d+", + ["TOOLTIP_PRY_DURABILITY"] = "DURABILITY", + ["TOOLTIP_IC_DURABILITY"] = "Durability", + ["TOOLTIP_CMP_DPS"] = "%(%d+%.%d+%s[DAMAGE PER SECOND]+%)", + ["TOOLTIP_PRY_DPS"] = "DAMAGE PER SECOND", + ["TOOLTIP_IC_DPS"] = "DPS", + ["TOOLTIP_CMP_DAMAGE"] = "%d+%s%-%s%d+%s[DAMAGE]+", + ["TOOLTIP_PRY_DAMAGE"] = "DAMAGE", + ["TOOLTIP_IC_DAMAGE"] = "Damage", + ["TOOLTIP_CMP_DODGE"] = "[+-]%d+%%%s[DODGE]+", + ["TOOLTIP_PRY_DODGE"] = "DODGE", + ["TOOLTIP_IC_DODGE"] = "Dodge", + ["TOOLTIP_CMP_ARCANE"] = "[+-]%d+%s[ARCANE RESISTANCE]+", + ["TOOLTIP_PRY_ARCANE"] = "ARCANE RESISTANCE", + ["TOOLTIP_IC_ARCANE"] = "Arcane Resistance", + ["TOOLTIP_CMP_FIRE"] = "[+-]%d+%s[FIRE RESISTANCE]+", + ["TOOLTIP_PRY_FIRE"] = "FIRE RESISTANCE", + ["TOOLTIP_IC_FIRE"] = "Fire Resistance", + ["TOOLTIP_CMP_FROST"] = "[+-]%d+%s[FROST RESISTANCE]+", + ["TOOLTIP_PRY_FROST"] = "FROST RESISTANCE", + ["TOOLTIP_IC_FROST"] = "Frost Resistance", + ["TOOLTIP_CMP_NATURE"] = "[+-]%d+%s[NATURE RESISTANCE]+", + ["TOOLTIP_PRY_NATURE"] = "NATURE RESISTANCE", + ["TOOLTIP_IC_NATURE"] = "Nature Resistance", + ["TOOLTIP_CMP_SHADOW"] = "[+-]%d+%s[SHADOW RESISTANCE]+", + ["TOOLTIP_PRY_SHADOW"] = "SHADOW RESISTANCE", + ["TOOLTIP_IC_SHADOW"] = "Shadow Resistance", + ["TOOLTIP_IC_DAMAGE_DELTA"] = " Damage (delta: ", + ["TOOLTIP_ITEM_COMPARE"] = "Kiwi says equipping will do this:", + ["TOOLTIP_ITEM_CONTRIB"] = "Stat Contribution:", + ["TOOLTIP_EX_AGI_M_AP"] = "Agility M. AP: ", + ["TOOLTIP_EX_AGI_R_AP"] = "Agility R. AP: ", + ["TOOLTIP_EX_AGI_CRIT"] = "Agility Crit: ", + ["TOOLTIP_EX_AGI_DODGE"] = "Agility Dodge: ", + ["TOOLTIP_EX_AGI_AR"] = "Agility Armor: ", + ["TOOLTIP_EX_AGI_M_CAT_AP"] = "Agility Catform AP: ", + ["TOOLTIP_EX_STM_HP"] = "Stamina Health: ", + ["TOOLTIP_EX_STR_M_AP"] = "Strength M. AP: ", + ["TOOLTIP_EX_STR_BLOCK"] = "Strength Block: ", + ["TOOLTIP_EX_INT_MANA"] = "Intellect Mana: ", + ["TOOLTIP_EX_INT_CRIT"] = "Intellect Crit: ", + ["TOOLTIP_EX_SPT_HP5"] = "Spirit H/5: ", + ["TOOLTIP_EX_SPT_MP5"] = "Spirit M/5: ", + ["TOOLTIP_EX_RES_ARCANE"] = "Arcane Resist: ", + ["TOOLTIP_EX_RES_FIRE"] = "Fire Resist: ", + ["TOOLTIP_EX_RES_FROST"] = "Frost Resist: ", + ["TOOLTIP_EX_RES_NATURE"] = "Nature Resist: ", + ["TOOLTIP_EX_RES_SHADOW"] = "Shadow Resist: ", + ["COMMAND_ERROR_ARG_LEN"] = "Kiwi Item Info: Invalid argument length.", + ["COMMAND_RELOAD"] = "Reloading KiwiItemInfo...", + ["COMMAND_RELOAD_DONE"] = "All done! :D Kiwi is functioning!", + ["COMMAND_RESET"] = "Resetting KiwiItemInfo...", + ["COMMAND_VARS_DUMP"] = "Dumping user settings...", + ["COMMAND_VARS_DONE"] = "All done!", + ["COMMAND_SET_ERROR_BOOLEAN"] = "Kiwi expects a boolean value (true/false). Sorry.", + ["COMMAND_SET_ERROR_NUMBER"] = "Kiwi expects a number value. Sorry.", + ["COMMAND_SET_ERROR_STRING"] = "Kiwi expects a string value (words). Sorry.", + ["COMMAND_SET_ERROR_VAR"] = "Kiwi doesn't have such a variable. Sorry.", + ["COMMAND_SET_ERROR_VALUE"] = "Kiwi needs a value to set to the variable...", + ["COMMAND_SET_ERROR_INDEX"] = "Kiwi needs a variable to set...", + ["COMMAND_SEARCH_ARG_LEN"] = "Kiwi Item Info: Invalid argument length to argument", + ["COMMAND_SEARCH_ONE_HANDED"] = "One-Handed ", + ["COMMAND_SEARCH_TWO_HANDED"] = "Two-Handed ", + ["COMMAND_SEARCH_1H"] = "One", + ["COMMAND_SEARCH_2H"] = "Two", + ["COMMAND_SEARCH_DONE"] = "Kiwi says `this is your item`:", + ["COMMAND_SEARCH_DONE1"] = "Kiwi so cool. Kiwi so fly. kiwi found ", + ["COMMAND_SEARCH_FAIL"] = "Kiwi couldn't find any items! :(", + ["KIWIII_HELP"] = "help", + ["KIWIII_RELOAD"] = "reload", + ["KIWIII_RESET"] = "reset", + ["KIWIII_VARS"] = "vars", + ["KIWIII_SET"] = "set", + ["KIWIII_ACI"] = "aci", + ["KIWIII_SEARCH"] = "search", + ["VUI_FLASH_GREY_ITEMS"] = "Flash Grey Items:", + ["VUI_FLASH_HOTKEY"] = "Flash Hotkey:", + ["VUI_ITEM_COMPARE"] = "Item Compare On:", + ["VUI_IC_VERBOSE"] = "Verbose Item Compare:", + ["VUI_VENDOR_PRICE"] = "Item Vendor Price:", + ["VUI_SHOW_ILVL"] = "Show iLvl:", + ["VUI_ITEM_ILVL"] = "Show iLvl On Items:", + ["VUI_DEFAULT_ILVL_COLOR"] = "Default iLvl Coloration:", + ["VUI_CUSTOM_ILVL_COLOR"] = "Custom iLvl Color:", + ["VUI_FORMAT_ERROR"] = "Invalid color format entered.", +} + + +local temp = KiwiItemInfo.Locale["koKR"] + +temp["COMMAND_SEARCH_ERROR_DB"] = "Kiwi declines usage of `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` (due to lack of loading the database?)" +temp["KII_BAD_DB"] = "Kiwi's Item Info database wasn't loaded! Not using `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` command." +temp["KII_HELP"] = "Please run `/kiwiii " .. temp["KIWIII_HELP"] .. "` for a command listing!" +temp["KII_THANKS"] = "Kiwi thanks you for installing KiwiItemInfo " .. KiwiItemInfo._VERSION .. "! <3" +temp["COMMAND_HELP1"] = "Kiwi Item Info " .. KiwiItemInfo._VERSION .. " -- help" +temp["COMMAND_HELP2"] = "https://github.com/tilkinsc/KiwiItemInfo - for issue/bug reports" +temp["COMMAND_HELP3"] = "Usage: /kiwiii [" .. temp["KIWIII_RELOAD"] .. "] [" .. temp["KIWIII_RESET"] .. "] [" .. temp["KIWIII_VARS"] .. "] [" .. temp["KIWIII_ACI"] .. "]" +temp["COMMAND_HELP4"] = " [" .. temp["KIWIII_SET"] .. " variable_name value]" +temp["COMMAND_HELP5"] = " [" .. temp["KIWIII_SEARCH"] .. " ${=,>,<}num, #Type, @subtype, {itemid, itemname}]" +temp["COMMAND_HELP6"] = " > |cFF888888" .. temp["KIWIII_HELP"] .. "|r -- for this message" +temp["COMMAND_HELP7"] = " > |cFF888888" .. temp["KIWIII_RELOAD"] .. "|r -- reloads addon" +temp["COMMAND_HELP8"] = " > |cFF888888" .. temp["KIWIII_RESET"] .. "|r -- resets all saved variables, also reloads" +temp["COMMAND_HELP9"] = " > |cFF888888" .. temp["KIWIII_VARS"] .. "|r -- shows all setting variables" +temp["COMMAND_HELP10"] = " > |cFF888888" .. temp["KIWIII_SET"] .. "|r -- toggles a setting" +temp["COMMAND_HELP11"] = " * |cFFBBBBBBvariable_name|r -- variable shown in /kiwiii " .. temp["KIWIII_VARS"] +temp["COMMAND_HELP12"] = " * |cFFBBBBBBvalue|r -- either true, false, string, or number" +temp["COMMAND_HELP13"] = " > |cFF888888" .. temp["KIWIII_ACI"] .. "|r -- toggles alwaysCompareItems CVar" +temp["COMMAND_HELP14"] = " > |cFF888888" .. temp["KIWIII_SEARCH"] .. "|r -- searches through item database for items" +temp["COMMAND_HELP15"] = " * |cFFBBBBBB${=,>,<}num|r -- show only items of ilvl equal, bigger or smaller than 'num'" +temp["COMMAND_HELP16"] = " * |cFFBBBBBB#Type|r -- shows by type (Armor, Weapon, etc)" +temp["COMMAND_HELP17"] = " * |cFFBBBBBB@SubType|r -- shows by subtype (Mail, 1HSwords, 2HSwords, etc)" +temp["COMMAND_HELP18"] = " * |cFFBBBBBBitemid|r -- search for items" +temp["COMMAND_HELP19"] = " * |cFFBBBBBBitemname|r -- search for items" + diff --git a/Locale/ptBR/ptBR.lua b/Locale/ptBR/ptBR.lua new file mode 100644 index 0000000..1d39f9e --- /dev/null +++ b/Locale/ptBR/ptBR.lua @@ -0,0 +1,143 @@ + +KiwiItemInfo.Locale["ptBR"] = { + ["TOOLTIP_UNIT"] = "Unidade: ", + ["TOOLTIP_STACK"] = "Pilha:", + ["TOOLTIP_ILVL"] = "iLvl ", + ["TOOLTIP_PRY_EQUIP"] = "EQUIPAR: ", + ["TOOLTIP_PRY_USE"] = "USO: ", + ["TOOLTIP_PRY_CHANCE"] = "CHANCE AO ACERTAR: ", + ["TOOLTIP_CMP_AGILITY"] = "[+-]%d+%s[AGILIDADE]+", + ["TOOLTIP_PRY_AGILITY"] = "AGILIDADE", + ["TOOLTIP_IC_AGILITY"] = "Agilidade", + ["TOOLTIP_CMP_STAMINA"] = "[+-]%d+%s[VIGOR]+", + ["TOOLTIP_PRY_STAMINA"] = "VIGOR", + ["TOOLTIP_IC_STAMINA"] = "Vigor", + ["TOOLTIP_CMP_STRENGTH"] = "[+-]%d+%s[FORÇA]+", + ["TOOLTIP_PRY_STRENGTH"] = "FORÇA", + ["TOOLTIP_IC_STRENGTH"] = "Força", + ["TOOLTIP_CMP_INTELLECT"] = "[+-]%d+%s[INTELECTO]+", + ["TOOLTIP_PRY_INTELLECT"] = "INTELECTO", + ["TOOLTIP_IC_INTELLECT"] = "Intelecto", + ["TOOLTIP_CMP_SPIRIT"] = "[+-]%d+%s[ESPÍRITO]+", + ["TOOLTIP_PRY_SPIRIT"] = "ESPÍRITO", + ["TOOLTIP_IC_SPIRIT"] = "Espírito", + ["TOOLTIP_CMP_ARMOR"] = "%d+%s[ARMADURA]+", + ["TOOLTIP_PRY_ARMOR"] = "ARMADURA", + ["TOOLTIP_IC_ARMOR"] = "Armadura", + ["TOOLTIP_CMP_BLOCK"] = "[BLOQUEIO DE]+%s%d+", + ["TOOLTIP_PRY_BLOCK"] = "BLOQUEIO DE", + ["TOOLTIP_IC_BLOCK"] = "Bloqueio de", + ["TOOLTIP_CMP_DURABILITY"] = "[DURABILIDADE]+%s%d+%s/%s%d+", + ["TOOLTIP_PRY_DURABILITY"] = "DURABILIDADE", + ["TOOLTIP_IC_DURABILITY"] = "Durabilidade", + ["TOOLTIP_CMP_DPS"] = "%(%d+%.%d+%s[DE DANO POR SEGUNDO]+%)", + ["TOOLTIP_PRY_DPS"] = "DE DANO POR SEGUNDO", + ["TOOLTIP_IC_DPS"] = "DPS", + ["TOOLTIP_CMP_DAMAGE"] = "%d+%s%-%s%d+%s[DE DANO]+", + ["TOOLTIP_PRY_DAMAGE"] = "DE DANO", + ["TOOLTIP_IC_DAMAGE"] = "de dano", + ["TOOLTIP_CMP_DODGE"] = "[+-]%d+%%%s[ESQUIVA]+", + ["TOOLTIP_PRY_DODGE"] = "ESQUIVA", + ["TOOLTIP_IC_DODGE"] = "Esquiva", + ["TOOLTIP_CMP_ARCANE"] = "[+-]%d+%s[DE RESISTÊNCIA A ARCANO]+", + ["TOOLTIP_PRY_ARCANE"] = "DE RESISTÊNCIA A ARCANO", + ["TOOLTIP_IC_ARCANE"] = "de resistência a Arcano", + ["TOOLTIP_CMP_FIRE"] = "[+-]%d+%s[DE RESISTÊNCIA A FOGO]+", + ["TOOLTIP_PRY_FIRE"] = "DE RESISTÊNCIA A FOGO", + ["TOOLTIP_IC_FIRE"] = "de resistência a Fogo", + ["TOOLTIP_CMP_FROST"] = "[+-]%d+%s[DE RESISTÊNCIA A GELO]+", + ["TOOLTIP_PRY_FROST"] = "DE RESISTÊNCIA A GELO", + ["TOOLTIP_IC_FROST"] = "de resistência a Gelo", + ["TOOLTIP_CMP_NATURE"] = "[+-]%d+%s[DE RESISTÊNCIA A NATUREZA]+", + ["TOOLTIP_PRY_NATURE"] = "DE RESISTÊNCIA A NATUREZA", + ["TOOLTIP_IC_NATURE"] = "de resistência a Natureza", + ["TOOLTIP_CMP_SHADOW"] = "[+-]%d+%s[DE RESISTÊNCIA A SOMBRA]+", + ["TOOLTIP_PRY_SHADOW"] = "DE RESISTÊNCIA A SOMBRA", + ["TOOLTIP_IC_SHADOW"] = "de resistência a Sombra", + ["TOOLTIP_IC_DAMAGE_DELTA"] = " de dano (delta: ", + ["TOOLTIP_ITEM_COMPARE"] = "Kiwi diz que quando equipado:", + ["TOOLTIP_ITEM_CONTRIB"] = "Contribuição Stat:", + ["TOOLTIP_EX_AGI_M_AP"] = "Agilidade C. AP: ", + ["TOOLTIP_EX_AGI_R_AP"] = "Agilidade D. AP: ", + ["TOOLTIP_EX_AGI_CRIT"] = "Agilidade Crit: ", + ["TOOLTIP_EX_AGI_DODGE"] = "Agilidade Esquiva: ", + ["TOOLTIP_EX_AGI_AR"] = "Agilidade Armadura: ", + ["TOOLTIP_EX_AGI_M_CAT_AP"] = "Agilidade GatoForma AP: ", + ["TOOLTIP_EX_STM_HP"] = "Vigor Saúde: ", + ["TOOLTIP_EX_STR_M_AP"] = "Força C. AP: ", + ["TOOLTIP_EX_STR_BLOCK"] = "Força Bloqueio: ", + ["TOOLTIP_EX_INT_MANA"] = "Intelecto Mana: ", + ["TOOLTIP_EX_INT_CRIT"] = "Intelecto Crit: ", + ["TOOLTIP_EX_SPT_HP5"] = "Espírito S/5: ", + ["TOOLTIP_EX_SPT_MP5"] = "Espírito M/5: ", + ["TOOLTIP_EX_RES_ARCANE"] = "Resistência a Arcano: ", + ["TOOLTIP_EX_RES_FIRE"] = "Resistência a Fogo: ", + ["TOOLTIP_EX_RES_FROST"] = "Resistência a Gelo: ", + ["TOOLTIP_EX_RES_NATURE"] = "Resistência a Natureza: ", + ["TOOLTIP_EX_RES_SHADOW"] = "Resistência a Sombra: ", + ["COMMAND_ERROR_ARG_LEN"] = "Kiwi Item Info: Tamanho de argumento inválido.", + ["COMMAND_RELOAD"] = "Recarregando KiwiItemInfo...", + ["COMMAND_RELOAD_DONE"] = "Tudo pronto! :D Kiwi está funcionando!", + ["COMMAND_RESET"] = "Reiniciando KiwiItemInfo...", + ["COMMAND_VARS_DUMP"] = "Descarregando configurações de usuário...", + ["COMMAND_VARS_DONE"] = "Tudo pronto!", + ["COMMAND_SET_ERROR_BOOLEAN"] = "Kiwi espera por um valor booleano (true/false). Desculpe.", + ["COMMAND_SET_ERROR_NUMBER"] = "Kiwi espera um valor númerico. Desculpe.", + ["COMMAND_SET_ERROR_STRING"] = "Kiwi espera um valor string (texto). Desculpe", + ["COMMAND_SET_ERROR_VAR"] = "Kiwi não possui essa variável. Desculpe", + ["COMMAND_SET_ERROR_VALUE"] = "Kiwi precisa de um valor para atribuir à variável", + ["COMMAND_SET_ERROR_INDEX"] = "Kiwi precisa de uma variável para atribuir", + ["COMMAND_SEARCH_ARG_LEN"] = "Kiwi Item Info: Tamanho de argumento inválido para o argumento", + ["COMMAND_SEARCH_ONE_HANDED"] = "Uma mão ", + ["COMMAND_SEARCH_TWO_HANDED"] = "Duas mãos ", + ["COMMAND_SEARCH_1H"] = "Uma", + ["COMMAND_SEARCH_2H"] = "Duas", + ["COMMAND_SEARCH_DONE"] = "Kiwi diz `esse é seu item`:", + ["COMMAND_SEARCH_DONE1"] = "Kiwi é tão legal. Kiwi é tão maneiro. Kiwi encontrou", + ["COMMAND_SEARCH_FAIL"] = "Kiwi não pode encontrar nenhum item! :(", + ["KIWIII_HELP"] = "socorro", + ["KIWIII_RELOAD"] = "recarregar", + ["KIWIII_RESET"] = "recompor", + ["KIWIII_VARS"] = "vars", + ["KIWIII_SET"] = "pôr", + ["KIWIII_ACI"] = "aci", + ["KIWIII_SEARCH"] = "procurar", + ["VUI_FLASH_GREY_ITEMS"] = "Itens em Flash Cinza:", + ["VUI_FLASH_HOTKEY"] = "Tecla de atalho do Flash:", + ["VUI_ITEM_COMPARE"] = "Item comparar em:", + ["VUI_IC_VERBOSE"] = "Comparar item detalhado:", + ["VUI_VENDOR_PRICE"] = "Item Fornecedor Preço:", + ["VUI_SHOW_ILVL"] = "Mostre o iLvl:", + ["VUI_ITEM_ILVL"] = "Mostrar iLvl nos itens:", + ["VUI_DEFAULT_ILVL_COLOR"] = "Coloração padrão do iLvl:", + ["VUI_CUSTOM_ILVL_COLOR"] = "Cor personalizada do iLvl:", + ["VUI_FORMAT_ERROR"] = "Formato de cor inválido inserido.", +} + + +local temp = KiwiItemInfo.Locale["ptBR"] + +temp["COMMAND_SEARCH_ERROR_DB"] = "Kiwi recusou o uso de `/kiwiii " .. temp["KIWIII_SEARCH"] .. "`(devido o não carregamento do banco de dados)" +temp["KII_BAD_DB"] = "Banco de dados de Kiwi Item Info não foi carregado! Não use `/kiwiii " .. temp["KIWIII_SEARCH"] .. "`" +temp["KII_HELP"] = "Por favor, use `/kiwii " .. temp["KIWIII_HELP"] .. "` para listar os comandos!" +temp["KII_THANKS"] = "Kiwi agradece por instalar KiwiItemInfo " .. KiwiItemInfo._VERSION .. "! <3" +temp["COMMAND_HELP1"] = "Kiwi Item Info " .. KiwiItemInfo._VERSION .. " -- socorro" +temp["COMMAND_HELP2"] = "https://github.com/tilkinsc/KiwiItemInfo - para reportar bugs e problemas." +temp["COMMAND_HELP3"] = "Uso: /kiwiii [" .. temp["KIWIII_RELOAD"] .. "] [" .. temp["KIWIII_RESET"] .. "] [" .. temp["KIWIII_VARS"] .. "] [" .. temp["KIWIII_ACI"] .. "]" +temp["COMMAND_HELP4"] = " [" .. temp["KIWIII_SET"] .. " variable_name value]" +temp["COMMAND_HELP5"] = " [" .. temp["KIWIII_SEARCH"] .. " ${=,>,<}num, #Type, @subtype, {itemid, itemname}]" +temp["COMMAND_HELP6"] = " > |cFF888888" .. temp["KIWIII_HELP"] .. "|r -- para está mensagem" +temp["COMMAND_HELP7"] = " > |cFF888888" .. temp["KIWIII_RELOAD"] .. "|r -- recarrega addon" +temp["COMMAND_HELP8"] = " > |cFF888888" .. temp["KIWIII_RESET"] .. "|r -- reinicia todas as variáveis salvas e também às recarrega" +temp["COMMAND_HELP9"] = " > |cFF888888" .. temp["KIWIII_VARS"] .. "|r -- mostra todas as variáveis de configuração" +temp["COMMAND_HELP10"] = " > |cFF888888" .. temp["KIWIII_SET"] .. "|r -- muda uma configuração" +temp["COMMAND_HELP11"] = " * |cFFBBBBBBvariable_name|r -- variáveis mostradas em /kiwii vars" .. temp["KIWIII_VARS"] +temp["COMMAND_HELP12"] = " * |cFFBBBBBBvalue|r -- entre true, false, string ou number" +temp["COMMAND_HELP13"] = " > |cFF888888" .. temp["KIWIII_ACI"] .. "|r -- muda alwaysCompareItems CVar" +temp["COMMAND_HELP14"] = " > |cFF888888" .. temp["KIWIII_SEARCH"] .. "|r -- procura por itens no banco de dados de item" +temp["COMMAND_HELP15"] = " * |cFFBBBBBB${=,>,<}num|r -- mostra apenas 'num' de iLvls na operação" +temp["COMMAND_HELP16"] = " * |cFFBBBBBB#Type|r -- mostra por tipos(Armor, Weapon, etc)" +temp["COMMAND_HELP17"] = " * |cFFBBBBBB@SubType|r -- mostra por subtipos (Mail, 1HSwords, 2HSwords, etc)" +temp["COMMAND_HELP18"] = " * |cFFBBBBBBitemid|r -- procura por itens usando o id" +temp["COMMAND_HELP19"] = " * |cFFBBBBBBitemname|r -- procura por itens usando o nome" + diff --git a/Locale/ruRU/ruRU.lua b/Locale/ruRU/ruRU.lua new file mode 100644 index 0000000..4b61583 --- /dev/null +++ b/Locale/ruRU/ruRU.lua @@ -0,0 +1,143 @@ + +KiwiItemInfo.Locale["ruRU"] = { + ["TOOLTIP_UNIT"] = "Часть: ", + ["TOOLTIP_STACK"] = "Груда:", + ["TOOLTIP_ILVL"] = "iLvl ", + ["TOOLTIP_PRY_EQUIP"] = "ЕСЛИ НА ПЕРСОНАЖЕ: ", + ["TOOLTIP_PRY_USE"] = "ИСПОЛЬЗОВАНИЕ: ", + ["TOOLTIP_PRY_CHANCE"] = "ВОЗМОЖНЫЙ ЭФФЕКТ ПРИ ПОПАДАНИИ: ", + ["TOOLTIP_CMP_AGILITY"] = "[+-]%d+%s[К ЛОВКОСТИ]+", + ["TOOLTIP_PRY_AGILITY"] = "К ЛОВКОСТИ", + ["TOOLTIP_IC_AGILITY"] = "к ловкости", + ["TOOLTIP_CMP_STAMINA"] = "[+-]%d+%s[К ВЫНОСЛИВОСТИ]+", + ["TOOLTIP_PRY_STAMINA"] = "К ВЫНОСЛИВОСТИ", + ["TOOLTIP_IC_STAMINA"] = "к выносливости", + ["TOOLTIP_CMP_STRENGTH"] = "[+-]%d+%s[К СИЛЕ]+", + ["TOOLTIP_PRY_STRENGTH"] = "К СИЛЕ", + ["TOOLTIP_IC_STRENGTH"] = "к силе", + ["TOOLTIP_CMP_INTELLECT"] = "[+-]%d+%s[К ИНТЕЛЛЕКТУ]+", + ["TOOLTIP_PRY_INTELLECT"] = "К ИНТЕЛЛЕКТУ", + ["TOOLTIP_IC_INTELLECT"] = "к интеллекту", + ["TOOLTIP_CMP_SPIRIT"] = "[+-]%d+%s[К ДУХУ]+", + ["TOOLTIP_PRY_SPIRIT"] = "К ДУХУ", + ["TOOLTIP_IC_SPIRIT"] = "к духу", + ["TOOLTIP_CMP_ARMOR"] = "[БРОНЯ:]+%s%d+", + ["TOOLTIP_PRY_ARMOR"] = "БРОНЯ:", + ["TOOLTIP_IC_ARMOR"] = "Броня:", + ["TOOLTIP_CMP_BLOCK"] = "[БЛОКИРОВАНИЕ:]+%s%d+", + ["TOOLTIP_PRY_BLOCK"] = "БЛОКИРОВАНИЕ:", + ["TOOLTIP_IC_BLOCK"] = "Блокирование:", + ["TOOLTIP_CMP_DURABILITY"] = "[ПРОЧНОСТЬ:]+%s%d+%s/%s%d+", + ["TOOLTIP_PRY_DURABILITY"] = "ПРОЧНОСТЬ:", + ["TOOLTIP_IC_DURABILITY"] = "Прочность:", + ["TOOLTIP_CMP_DPS"] = "%(%d+%.%d+%s[ЕД. УРОНА В СЕКУНДУ]+%)", + ["TOOLTIP_PRY_DPS"] = "ЕД. УРОНА В СЕКУНДУ", + ["TOOLTIP_IC_DPS"] = "ДПС", + ["TOOLTIP_CMP_DAMAGE"] = "[УРОН:]+%s%d+%-%d+", + ["TOOLTIP_PRY_DAMAGE"] = "УРОН:", + ["TOOLTIP_IC_DAMAGE"] = "Урон:", + ["TOOLTIP_CMP_DODGE"] = "[+-]%d+%%%s[К РЕЙТИНГУ УКЛОНЕНИЯ]+", + ["TOOLTIP_PRY_DODGE"] = "К РЕЙТИНГУ УКЛОНЕНИЯ", + ["TOOLTIP_IC_DODGE"] = "к рейтингу уклонения", + ["TOOLTIP_CMP_ARCANE"] = "[УСТОЙЧИВОСТЬ:]+%s[+-]%d+%s[ТАЙНАЯ МАГИЯ]+", + ["TOOLTIP_PRY_ARCANE"] = "ТАЙНАЯ МАГИЯ", + ["TOOLTIP_IC_ARCANE"] = "Устойчивость 'Тайная магия':", + ["TOOLTIP_CMP_FIRE"] = "[УСТОЙЧИВОСТЬ:]+%s[+-]%d+%s[ОГОНЬ]+", + ["TOOLTIP_PRY_FIRE"] = "ОГОНЬ", + ["TOOLTIP_IC_FIRE"] = "Устойчивость 'Огонь':", + ["TOOLTIP_CMP_FROST"] = "[УСТОЙЧИВОСТЬ:]+%s[+-]%d+%s[ПРИРОДА]+", + ["TOOLTIP_PRY_FROST"] = "ПРИРОДА", + ["TOOLTIP_IC_FROST"] = "Устойчивость 'Природа':", + ["TOOLTIP_CMP_NATURE"] = "[УСТОЙЧИВОСТЬ:]+%s[+-]%d+%s[ЛЕД]+", + ["TOOLTIP_PRY_NATURE"] = "ЛЕД", + ["TOOLTIP_IC_NATURE"] = "Устойчивость 'Лед':", + ["TOOLTIP_CMP_SHADOW"] = "[УСТОЙЧИВОСТЬ:]+%s[+-]%d+%s[ТЬМА]+", + ["TOOLTIP_PRY_SHADOW"] = "ТЬМА", + ["TOOLTIP_IC_SHADOW"] = "Устойчивость 'Тьма':", + ["TOOLTIP_IC_DAMAGE_DELTA"] = " Урон (дельта: ", + ["TOOLTIP_ITEM_COMPARE"] = "Kiwi says equipping will do this:", + ["TOOLTIP_ITEM_CONTRIB"] = "Вклад Стат:", + ["TOOLTIP_EX_AGI_M_AP"] = "Ловкости РУ. СА: ", + ["TOOLTIP_EX_AGI_R_AP"] = "Ловкости СТ. СА: ", + ["TOOLTIP_EX_AGI_CRIT"] = "Ловкости Критика: ", + ["TOOLTIP_EX_AGI_DODGE"] = "Ловкости Рейтингу Уклонения: ", + ["TOOLTIP_EX_AGI_AR"] = "Ловкости Броня: ", + ["TOOLTIP_EX_AGI_M_CAT_AP"] = "Ловкости Форма-Кошки СА: ", + ["TOOLTIP_EX_STM_HP"] = "Выносливости Здоровье: ", + ["TOOLTIP_EX_STR_M_AP"] = "Силе РУ. СА: ", + ["TOOLTIP_EX_STR_BLOCK"] = "Силе Блокирование: ", + ["TOOLTIP_EX_INT_MANA"] = "Интеллекту Mana: ", + ["TOOLTIP_EX_INT_CRIT"] = "Интеллекту Критика: ", + ["TOOLTIP_EX_SPT_HP5"] = "Духу ЗД/5: ", + ["TOOLTIP_EX_SPT_MP5"] = "Духу M/5: ", + ["TOOLTIP_EX_RES_ARCANE"] = "Устойчивость 'Тайная магия': ", + ["TOOLTIP_EX_RES_FIRE"] = "Устойчивость 'Огонь': ", + ["TOOLTIP_EX_RES_FROST"] = "Устойчивость 'Природа': ", + ["TOOLTIP_EX_RES_NATURE"] = "Устойчивость 'Лед': ", + ["TOOLTIP_EX_RES_SHADOW"] = "Устойчивость 'Тьма': ", + ["COMMAND_ERROR_ARG_LEN"] = "Kiwi Item Info: Invalid argument length.", + ["COMMAND_RELOAD"] = "Reloading KiwiItemInfo...", + ["COMMAND_RELOAD_DONE"] = "All done! :D Kiwi is functioning!", + ["COMMAND_RESET"] = "Resetting KiwiItemInfo...", + ["COMMAND_VARS_DUMP"] = "Dumping user settings...", + ["COMMAND_VARS_DONE"] = "All done!", + ["COMMAND_SET_ERROR_BOOLEAN"] = "Kiwi expects a boolean value (true/false). Sorry.", + ["COMMAND_SET_ERROR_NUMBER"] = "Kiwi expects a number value. Sorry.", + ["COMMAND_SET_ERROR_STRING"] = "Kiwi expects a string value (words). Sorry.", + ["COMMAND_SET_ERROR_VAR"] = "Kiwi doesn't have such a variable. Sorry.", + ["COMMAND_SET_ERROR_VALUE"] = "Kiwi needs a value to set to the variable...", + ["COMMAND_SET_ERROR_INDEX"] = "Kiwi needs a variable to set...", + ["COMMAND_SEARCH_ARG_LEN"] = "Kiwi Item Info: Invalid argument length to argument", + ["COMMAND_SEARCH_ONE_HANDED"] = "One-Handed ", + ["COMMAND_SEARCH_TWO_HANDED"] = "Two-Handed ", + ["COMMAND_SEARCH_1H"] = "One", + ["COMMAND_SEARCH_2H"] = "Two", + ["COMMAND_SEARCH_DONE"] = "Kiwi says `this is your item`:", + ["COMMAND_SEARCH_DONE1"] = "Kiwi so cool. Kiwi so fly. kiwi found ", + ["COMMAND_SEARCH_FAIL"] = "Kiwi couldn't find any items! :(", + ["KIWIII_HELP"] = "помоги", + ["KIWIII_RELOAD"] = "reload", + ["KIWIII_RESET"] = "reset", + ["KIWIII_VARS"] = "vars", + ["KIWIII_SET"] = "set", + ["KIWIII_ACI"] = "aci", + ["KIWIII_SEARCH"] = "поиск", + ["VUI_FLASH_GREY_ITEMS"] = "Вспышка серого:", + ["VUI_FLASH_HOTKEY"] = "Кнопка вспышки:", + ["VUI_ITEM_COMPARE"] = "Пункт сравнения на:", + ["VUI_IC_VERBOSE"] = "Детальное подробное сравнение:", + ["VUI_VENDOR_PRICE"] = "Пункт Поставщик Цена:", + ["VUI_SHOW_ILVL"] = "Показать iLvl:", + ["VUI_ITEM_ILVL"] = "Показать iLvl на предметах:", + ["VUI_DEFAULT_ILVL_COLOR"] = "Цвет по умолчанию iLvl:", + ["VUI_CUSTOM_ILVL_COLOR"] = "Пользовательский цвет iLvl:", + ["VUI_FORMAT_ERROR"] = "Введен неверный формат цвета.", +} + + +local temp = KiwiItemInfo.Locale["ruRU"] + +temp["COMMAND_SEARCH_ERROR_DB"] = "Kiwi declines usage of `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` (due to lack of loading the database?)" +temp["KII_BAD_DB"] = "Kiwi's Item Info database wasn't loaded! Not using `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` command." +temp["KII_HELP"] = "Please run `/kiwiii " .. temp["KIWIII_HELP"] .. "` for a command listing!" +temp["KII_THANKS"] = "Kiwi thanks you for installing KiwiItemInfo " .. KiwiItemInfo._VERSION .. "! <3" +temp["COMMAND_HELP1"] = "Kiwi Item Info " .. KiwiItemInfo._VERSION .. " -- помоги" +temp["COMMAND_HELP2"] = "https://github.com/tilkinsc/KiwiItemInfo - for issue/bug reports" +temp["COMMAND_HELP3"] = "Usage: /kiwiii [" .. temp["KIWIII_RELOAD"] .. "] [" .. temp["KIWIII_RESET"] .. "] [" .. temp["KIWIII_VARS"] .. "] [" .. temp["KIWIII_ACI"] .. "]" +temp["COMMAND_HELP4"] = " [" .. temp["KIWIII_SET"] .. " variable_name value]" +temp["COMMAND_HELP5"] = " [" .. temp["KIWIII_SEARCH"] .. " ${=,>,<}num, #Type, @subtype, {itemid, itemname}]" +temp["COMMAND_HELP6"] = " > |cFF888888" .. temp["KIWIII_HELP"] .. "|r -- for this message" +temp["COMMAND_HELP7"] = " > |cFF888888" .. temp["KIWIII_RELOAD"] .. "|r -- reloads addon" +temp["COMMAND_HELP8"] = " > |cFF888888" .. temp["KIWIII_RESET"] .. "|r -- resets all saved variables, also reloads" +temp["COMMAND_HELP9"] = " > |cFF888888" .. temp["KIWIII_VARS"] .. "|r -- shows all setting variables" +temp["COMMAND_HELP10"] = " > |cFF888888" .. temp["KIWIII_SET"] .. "|r -- toggles a setting" +temp["COMMAND_HELP11"] = " * |cFFBBBBBBvariable_name|r -- variable shown in /kiwiii " .. temp["KIWIII_VARS"] +temp["COMMAND_HELP12"] = " * |cFFBBBBBBvalue|r -- either true, false, string, or number" +temp["COMMAND_HELP13"] = " > |cFF888888" .. temp["KIWIII_ACI"] .. "|r -- toggles alwaysCompareItems CVar" +temp["COMMAND_HELP14"] = " > |cFF888888" .. temp["KIWIII_SEARCH"] .. "|r -- searches through item database for items" +temp["COMMAND_HELP15"] = " * |cFFBBBBBB${=,>,<}num|r -- show only items of ilvl equal, bigger or smaller than 'num'" +temp["COMMAND_HELP16"] = " * |cFFBBBBBB#Type|r -- shows by type (Armor, Weapon, etc)" +temp["COMMAND_HELP17"] = " * |cFFBBBBBB@SubType|r -- shows by subtype (Mail, 1HSwords, 2HSwords, etc)" +temp["COMMAND_HELP18"] = " * |cFFBBBBBBitemid|r -- search for items" +temp["COMMAND_HELP19"] = " * |cFFBBBBBBitemname|r -- search for items" + diff --git a/Locale/zhCN/zhCN.lua b/Locale/zhCN/zhCN.lua new file mode 100644 index 0000000..1eafb4a --- /dev/null +++ b/Locale/zhCN/zhCN.lua @@ -0,0 +1,143 @@ + +KiwiItemInfo.Locale["zhCN"] = { + ["TOOLTIP_UNIT"] = "出售单价:", + ["TOOLTIP_STACK"] = "整组售价:", + ["TOOLTIP_ILVL"] = "装等(iLvl) ", + ["TOOLTIP_PRY_EQUIP"] = "装备:", + ["TOOLTIP_PRY_USE"] = "使用:", + ["TOOLTIP_PRY_CHANCE"] = "击中时可能:", + ["TOOLTIP_CMP_AGILITY"] = "[+-]%d+%s[敏捷]+", + ["TOOLTIP_PRY_AGILITY"] = "敏捷", + ["TOOLTIP_IC_AGILITY"] = "敏捷", + ["TOOLTIP_CMP_STAMINA"] = "[+-]%d+%s[耐力]+", + ["TOOLTIP_PRY_STAMINA"] = "耐力", + ["TOOLTIP_IC_STAMINA"] = "耐力", + ["TOOLTIP_CMP_STRENGTH"] = "[+-]%d+%s[力量]+", + ["TOOLTIP_PRY_STRENGTH"] = "力量", + ["TOOLTIP_IC_STRENGTH"] = "力量", + ["TOOLTIP_CMP_INTELLECT"] = "[+-]%d+%s[智力]+", + ["TOOLTIP_PRY_INTELLECT"] = "智力", + ["TOOLTIP_IC_INTELLECT"] = "智力", + ["TOOLTIP_CMP_SPIRIT"] = "[+-]%d+%s[精神]+", + ["TOOLTIP_PRY_SPIRIT"] = "精神", + ["TOOLTIP_IC_SPIRIT"] = "精神", + ["TOOLTIP_CMP_ARMOR"] = "%d+[点护甲]+", + ["TOOLTIP_PRY_ARMOR"] = "点护甲", + ["TOOLTIP_IC_ARMOR"] = "点护甲", + ["TOOLTIP_CMP_BLOCK"] = "%d+[格挡]+", + ["TOOLTIP_PRY_BLOCK"] = "格挡", + ["TOOLTIP_IC_BLOCK"] = "格挡", + ["TOOLTIP_CMP_DURABILITY"] = "[耐久度]+%s%d+%s/%s%d+", + ["TOOLTIP_PRY_DURABILITY"] = "耐久度", + ["TOOLTIP_IC_DURABILITY"] = "耐久度", + ["TOOLTIP_CMP_DPS"] = "%([每秒伤害]+%d+%.%d+%)", + ["TOOLTIP_PRY_DPS"] = "每秒伤害", + ["TOOLTIP_IC_DPS"] = "每秒伤害", + ["TOOLTIP_CMP_DAMAGE"] = "%d+%s%-%s%d+[伤害]+", + ["TOOLTIP_PRY_DAMAGE"] = "伤害", + ["TOOLTIP_IC_DAMAGE"] = "伤害", + ["TOOLTIP_CMP_DODGE"] = "[+-]%d+%%%s[躲闪]+", + ["TOOLTIP_PRY_DODGE"] = "躲闪", + ["TOOLTIP_IC_DODGE"] = "躲闪", + ["TOOLTIP_CMP_ARCANE"] = "[+-]%d+%s[奥术抗性]+", + ["TOOLTIP_PRY_ARCANE"] = "奥术抗性", + ["TOOLTIP_IC_ARCANE"] = "奥术抗性", + ["TOOLTIP_CMP_FIRE"] = "[+-]%d+%s[火焰抗性]+", + ["TOOLTIP_PRY_FIRE"] = "火焰抗性", + ["TOOLTIP_IC_FIRE"] = "火焰抗性", + ["TOOLTIP_CMP_FROST"] = "[+-]%d+%s[冰霜抗性]+", + ["TOOLTIP_PRY_FROST"] = "冰霜抗性", + ["TOOLTIP_IC_FROST"] = "冰霜抗性", + ["TOOLTIP_CMP_NATURE"] = "[+-]%d+%s[自然抗性]+", + ["TOOLTIP_PRY_NATURE"] = "自然抗性", + ["TOOLTIP_IC_NATURE"] = "自然抗性", + ["TOOLTIP_CMP_SHADOW"] = "[+-]%d+%s[暗影抗性]+", + ["TOOLTIP_PRY_SHADOW"] = "暗影抗性", + ["TOOLTIP_IC_SHADOW"] = "暗影抗性", + ["TOOLTIP_IC_DAMAGE_DELTA"] = " 伤害 (差值: ", + ["TOOLTIP_ITEM_COMPARE"] = "Kiwi提示装备后的属性变化:", + ["TOOLTIP_ITEM_CONTRIB"] = "统计贡献:", + ["TOOLTIP_EX_AGI_M_AP"] = "敏捷/ (近战)AP: ", + ["TOOLTIP_EX_AGI_R_AP"] = "敏捷/ (远程)AP: ", + ["TOOLTIP_EX_AGI_CRIT"] = "敏捷/ 爆击: ", + ["TOOLTIP_EX_AGI_DODGE"] = "敏捷/ 躲闪: ", + ["TOOLTIP_EX_AGI_AR"] = "敏捷/ 护甲: ", + ["TOOLTIP_EX_AGI_M_CAT_AP"] = "敏捷/ (猫形态)AP: ", + ["TOOLTIP_EX_STM_HP"] = "耐力/ 生命值: ", + ["TOOLTIP_EX_STR_M_AP"] = "力量/ (近战)AP: ", + ["TOOLTIP_EX_STR_BLOCK"] = "力量/ 格挡: ", + ["TOOLTIP_EX_INT_MANA"] = "智力/ 法力值: ", + ["TOOLTIP_EX_INT_CRIT"] = "智力/ 爆击: ", + ["TOOLTIP_EX_SPT_HP5"] = "精神/ 5秒回血量: ", + ["TOOLTIP_EX_SPT_MP5"] = "精神/ 5秒回蓝量: ", + ["TOOLTIP_EX_RES_ARCANE"] = "奥术抗性: ", + ["TOOLTIP_EX_RES_FIRE"] = "火焰抗性: ", + ["TOOLTIP_EX_RES_FROST"] = "冰霜抗性: ", + ["TOOLTIP_EX_RES_NATURE"] = "自然抗性: ", + ["TOOLTIP_EX_RES_SHADOW"] = "暗影抗性: ", + ["COMMAND_ERROR_ARG_LEN"] = "Kiwi Item Info: 无效的参数长度.", + ["COMMAND_RELOAD"] = "正重新载入 KiwiItemInfo...", + ["COMMAND_RELOAD_DONE"] = "载入完成! :D Kiwi 开始工作!", + ["COMMAND_RESET"] = "正在重置 KiwiItemInfo...", + ["COMMAND_VARS_DUMP"] = "打印用户设置...", + ["COMMAND_VARS_DONE"] = "完成!", + ["COMMAND_SET_ERROR_BOOLEAN"] = "Kiwi 需要一个布尔值 (true/false). Sorry.", + ["COMMAND_SET_ERROR_NUMBER"] = "Kiwi 需要一个数字值. Sorry.", + ["COMMAND_SET_ERROR_STRING"] = "Kiwi 需要一个字符串值. Sorry.", + ["COMMAND_SET_ERROR_VAR"] = "Kiwi 没有提供这个参数. Sorry.", + ["COMMAND_SET_ERROR_VALUE"] = "Kiwi 需要一个值来设置参数...", + ["COMMAND_SET_ERROR_INDEX"] = "Kiwi 需要一个参数...", + ["COMMAND_SEARCH_ARG_LEN"] = "Kiwi Item Info: 参数长度无效", + ["COMMAND_SEARCH_ONE_HANDED"] = "单手 ", + ["COMMAND_SEARCH_TWO_HANDED"] = "双手 ", + ["COMMAND_SEARCH_1H"] = "单", + ["COMMAND_SEARCH_2H"] = "双", + ["COMMAND_SEARCH_DONE"] = "Kiwi 说 `这就是你要的物品`:", + ["COMMAND_SEARCH_DONE1"] = "Kiwi 太酷了. Kiwi 要起飞了. kiwi 共找到物品 ", + ["COMMAND_SEARCH_FAIL"] = "Kiwi 找不到任何相关物品! :(", + ["KIWIII_HELP"] = "帮助", + ["KIWIII_RELOAD"] = "重载", + ["KIWIII_RESET"] = "重置", + ["KIWIII_VARS"] = "变数", + ["KIWIII_SET"] = "组", + ["KIWIII_ACI"] = "aci", + ["KIWIII_SEARCH"] = "搜索", + ["VUI_FLASH_GREY_ITEMS"] = "出售灰色物品:", + ["VUI_FLASH_HOTKEY"] = "出售快捷键:", + ["VUI_ITEM_COMPARE"] = "开关装备对比:", + ["VUI_IC_VERBOSE"] = "显示更多对比项:", + ["VUI_VENDOR_PRICE"] = "显示物品售价:", + ["VUI_SHOW_ILVL"] = "装备显示装等:", + ["VUI_ITEM_ILVL"] = "全物品显示装等:", + ["VUI_DEFAULT_ILVL_COLOR"] = "装等显示着色:", + ["VUI_CUSTOM_ILVL_COLOR"] = "自定义装等颜色:", + ["VUI_FORMAT_ERROR"] = "输入了无效的颜色格式。", +} + + +local temp = KiwiItemInfo.Locale["zhCN"] + +temp["COMMAND_SEARCH_ERROR_DB"] = "Kiwi 无法使用 `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` 命令(没有加载itembd数据库?)" +temp["KII_BAD_DB"] = "Kiwi 无法加载itemdb物品数据库! 不能使用 `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` 命令." +temp["KII_HELP"] = "请使用命令 `/kiwiii " .. temp["KIWIII_HELP"] .. "` 查看帮助信息!" +temp["KII_THANKS"] = "Kiwi 感谢您安装了 KiwiItemInfo " .. KiwiItemInfo._VERSION .. "! <3" +temp["COMMAND_HELP1"] = "Kiwi Item Info " .. KiwiItemInfo._VERSION .. " -- 帮助" +temp["COMMAND_HELP2"] = "https://github.com/tilkinsc/KiwiItemInfo - 在此提交问题和错误报告" +temp["COMMAND_HELP3"] = "命令用法: /kiwiii [" .. temp["KIWIII_RELOAD"] .. "] [" .. temp["KIWIII_RESET"] .. "] [" .. temp["KIWIII_VARS"] .. "] [" .. temp["KIWIII_ACI"] .. "]" +temp["COMMAND_HELP4"] = " [" .. temp["KIWIII_SET"] .. " variable_name value]" +temp["COMMAND_HELP5"] = " [" .. temp["KIWIII_SEARCH"] .. " ${=,>,<}num, #Type, @subtype, {itemid, itemname}]" +temp["COMMAND_HELP6"] = " > |cFF888888" .. temp["KIWIII_HELP"] .. "|r -- 显示本帮助信息" +temp["COMMAND_HELP7"] = " > |cFF888888" .. temp["KIWIII_RELOAD"] .. "|r -- 重载插件" +temp["COMMAND_HELP8"] = " > |cFF888888" .. temp["KIWIII_RESET"] .. "|r -- 重置所有参数并重载插件" +temp["COMMAND_HELP9"] = " > |cFF888888" .. temp["KIWIII_VARS"] .. "|r -- 显示所有参数设置" +temp["COMMAND_HELP10"] = " > |cFF888888" .. temp["KIWIII_SET"] .. "|r -- 切换设置" +temp["COMMAND_HELP11"] = " * |cFFBBBBBBvariable_name|r -- 可用参数信息显示于 /kiwiii " .. temp["KIWIII_VARS"] +temp["COMMAND_HELP12"] = " * |cFFBBBBBBvalue|r -- 可以是 true, false, string, 或 number" +temp["COMMAND_HELP13"] = " > |cFF888888" .. temp["KIWIII_ACI"] .. "|r -- 切换设置 永久开启物品比较(alwaysCompareItems)" +temp["COMMAND_HELP14"] = " > |cFF888888" .. temp["KIWIII_SEARCH"] .. "|r -- 使用itemdb数据库搜索物品信息" +temp["COMMAND_HELP15"] = " * |cFFBBBBBB${=,>,<}num|r -- 仅显示装等数字" +temp["COMMAND_HELP16"] = " * |cFFBBBBBB#Type|r -- 大类显示 (Armor, Weapon, 等)" +temp["COMMAND_HELP17"] = " * |cFFBBBBBB@SubType|r -- 子类显示 (Mail, 1HSwords, 2HSwords, 等)" +temp["COMMAND_HELP18"] = " * |cFFBBBBBBitemid|r -- 使用 物品编码(itemid) 搜索物品" +temp["COMMAND_HELP19"] = " * |cFFBBBBBBitemname|r -- 使用 物品名称(itemname) 搜索物品" + diff --git a/Locale/zhTW/zhTW.lua b/Locale/zhTW/zhTW.lua new file mode 100644 index 0000000..4b1119c --- /dev/null +++ b/Locale/zhTW/zhTW.lua @@ -0,0 +1,143 @@ + +KiwiItemInfo.Locale["zhTW"] = { + ["TOOLTIP_UNIT"] = "Unit: ", + ["TOOLTIP_STACK"] = "Stack:", + ["TOOLTIP_ILVL"] = "iLvl ", + ["TOOLTIP_PRY_EQUIP"] = "EQUIP: ", + ["TOOLTIP_PRY_USE"] = "USE: ", + ["TOOLTIP_PRY_CHANCE"] = "CHANCE ON HIT: ", + ["TOOLTIP_CMP_AGILITY"] = "[+-]%d+%s[AGILITY]+", + ["TOOLTIP_PRY_AGILITY"] = "AGILITY", + ["TOOLTIP_IC_AGILITY"] = "Agility", + ["TOOLTIP_CMP_STAMINA"] = "[+-]%d+%s[STAMINA]+", + ["TOOLTIP_PRY_STAMINA"] = "STAMINA", + ["TOOLTIP_IC_STAMINA"] = "Stamina", + ["TOOLTIP_CMP_STRENGTH"] = "[+-]%d+%s[STRENGTH]+", + ["TOOLTIP_PRY_STRENGTH"] = "STRENGTH", + ["TOOLTIP_IC_STRENGTH"] = "Strength", + ["TOOLTIP_CMP_INTELLECT"] = "[+-]%d+%s[INTELLECT]+", + ["TOOLTIP_PRY_INTELLECT"] = "INTELLECT", + ["TOOLTIP_IC_INTELLECT"] = "Intellect", + ["TOOLTIP_CMP_SPIRIT"] = "[+-]%d+%s[SPIRIT]+", + ["TOOLTIP_PRY_SPIRIT"] = "SPIRIT", + ["TOOLTIP_IC_SPIRIT"] = "Spirit", + ["TOOLTIP_CMP_ARMOR"] = "%d+%s[ARMOR]+", + ["TOOLTIP_PRY_ARMOR"] = "ARMOR", + ["TOOLTIP_IC_ARMOR"] = "Armor", + ["TOOLTIP_CMP_BLOCK"] = "%d+%s[BLOCK]+", + ["TOOLTIP_PRY_BLOCK"] = "BLOCK", + ["TOOLTIP_IC_BLOCK"] = "Block", + ["TOOLTIP_CMP_DURABILITY"] = "[DURABILITY]+%s%d+%s/%s%d+", + ["TOOLTIP_PRY_DURABILITY"] = "DURABILITY", + ["TOOLTIP_IC_DURABILITY"] = "Durability", + ["TOOLTIP_CMP_DPS"] = "%(%d+%.%d+%s[DAMAGE PER SECOND]+%)", + ["TOOLTIP_PRY_DPS"] = "DAMAGE PER SECOND", + ["TOOLTIP_IC_DPS"] = "DPS", + ["TOOLTIP_CMP_DAMAGE"] = "%d+%s%-%s%d+%s[DAMAGE]+", + ["TOOLTIP_PRY_DAMAGE"] = "DAMAGE", + ["TOOLTIP_IC_DAMAGE"] = "Damage", + ["TOOLTIP_CMP_DODGE"] = "[+-]%d+%%%s[DODGE]+", + ["TOOLTIP_PRY_DODGE"] = "DODGE", + ["TOOLTIP_IC_DODGE"] = "Dodge", + ["TOOLTIP_CMP_ARCANE"] = "[+-]%d+%s[ARCANE RESISTANCE]+", + ["TOOLTIP_PRY_ARCANE"] = "ARCANE RESISTANCE", + ["TOOLTIP_IC_ARCANE"] = "Arcane Resistance", + ["TOOLTIP_CMP_FIRE"] = "[+-]%d+%s[FIRE RESISTANCE]+", + ["TOOLTIP_PRY_FIRE"] = "FIRE RESISTANCE", + ["TOOLTIP_IC_FIRE"] = "Fire Resistance", + ["TOOLTIP_CMP_FROST"] = "[+-]%d+%s[FROST RESISTANCE]+", + ["TOOLTIP_PRY_FROST"] = "FROST RESISTANCE", + ["TOOLTIP_IC_FROST"] = "Frost Resistance", + ["TOOLTIP_CMP_NATURE"] = "[+-]%d+%s[NATURE RESISTANCE]+", + ["TOOLTIP_PRY_NATURE"] = "NATURE RESISTANCE", + ["TOOLTIP_IC_NATURE"] = "Nature Resistance", + ["TOOLTIP_CMP_SHADOW"] = "[+-]%d+%s[SHADOW RESISTANCE]+", + ["TOOLTIP_PRY_SHADOW"] = "SHADOW RESISTANCE", + ["TOOLTIP_IC_SHADOW"] = "Shadow Resistance", + ["TOOLTIP_IC_DAMAGE_DELTA"] = " Damage (delta: ", + ["TOOLTIP_ITEM_COMPARE"] = "Kiwi says equipping will do this:", + ["TOOLTIP_ITEM_CONTRIB"] = "Stat Contribution:", + ["TOOLTIP_EX_AGI_M_AP"] = "Agility M. AP: ", + ["TOOLTIP_EX_AGI_R_AP"] = "Agility R. AP: ", + ["TOOLTIP_EX_AGI_CRIT"] = "Agility Crit: ", + ["TOOLTIP_EX_AGI_DODGE"] = "Agility Dodge: ", + ["TOOLTIP_EX_AGI_AR"] = "Agility Armor: ", + ["TOOLTIP_EX_AGI_M_CAT_AP"] = "Agility Catform AP: ", + ["TOOLTIP_EX_STM_HP"] = "Stamina Health: ", + ["TOOLTIP_EX_STR_M_AP"] = "Strength M. AP: ", + ["TOOLTIP_EX_STR_BLOCK"] = "Strength Block: ", + ["TOOLTIP_EX_INT_MANA"] = "Intellect Mana: ", + ["TOOLTIP_EX_INT_CRIT"] = "Intellect Crit: ", + ["TOOLTIP_EX_SPT_HP5"] = "Spirit H/5: ", + ["TOOLTIP_EX_SPT_MP5"] = "Spirit M/5: ", + ["TOOLTIP_EX_RES_ARCANE"] = "Arcane Resist: ", + ["TOOLTIP_EX_RES_FIRE"] = "Fire Resist: ", + ["TOOLTIP_EX_RES_FROST"] = "Frost Resist: ", + ["TOOLTIP_EX_RES_NATURE"] = "Nature Resist: ", + ["TOOLTIP_EX_RES_SHADOW"] = "Shadow Resist: ", + ["COMMAND_ERROR_ARG_LEN"] = "Kiwi Item Info: Invalid argument length.", + ["COMMAND_RELOAD"] = "Reloading KiwiItemInfo...", + ["COMMAND_RELOAD_DONE"] = "All done! :D Kiwi is functioning!", + ["COMMAND_RESET"] = "Resetting KiwiItemInfo...", + ["COMMAND_VARS_DUMP"] = "Dumping user settings...", + ["COMMAND_VARS_DONE"] = "All done!", + ["COMMAND_SET_ERROR_BOOLEAN"] = "Kiwi expects a boolean value (true/false). Sorry.", + ["COMMAND_SET_ERROR_NUMBER"] = "Kiwi expects a number value. Sorry.", + ["COMMAND_SET_ERROR_STRING"] = "Kiwi expects a string value (words). Sorry.", + ["COMMAND_SET_ERROR_VAR"] = "Kiwi doesn't have such a variable. Sorry.", + ["COMMAND_SET_ERROR_VALUE"] = "Kiwi needs a value to set to the variable...", + ["COMMAND_SET_ERROR_INDEX"] = "Kiwi needs a variable to set...", + ["COMMAND_SEARCH_ARG_LEN"] = "Kiwi Item Info: Invalid argument length to argument", + ["COMMAND_SEARCH_ONE_HANDED"] = "One-Handed ", + ["COMMAND_SEARCH_TWO_HANDED"] = "Two-Handed ", + ["COMMAND_SEARCH_1H"] = "One", + ["COMMAND_SEARCH_2H"] = "Two", + ["COMMAND_SEARCH_DONE"] = "Kiwi says `this is your item`:", + ["COMMAND_SEARCH_DONE1"] = "Kiwi so cool. Kiwi so fly. kiwi found ", + ["COMMAND_SEARCH_FAIL"] = "Kiwi couldn't find any items! :(", + ["KIWIII_HELP"] = "help", + ["KIWIII_RELOAD"] = "reload", + ["KIWIII_RESET"] = "reset", + ["KIWIII_VARS"] = "vars", + ["KIWIII_SET"] = "set", + ["KIWIII_ACI"] = "aci", + ["KIWIII_SEARCH"] = "search", + ["VUI_FLASH_GREY_ITEMS"] = "Flash Grey Items:", + ["VUI_FLASH_HOTKEY"] = "Flash Hotkey:", + ["VUI_ITEM_COMPARE"] = "Item Compare On:", + ["VUI_IC_VERBOSE"] = "Verbose Item Compare:", + ["VUI_VENDOR_PRICE"] = "Item Vendor Price:", + ["VUI_SHOW_ILVL"] = "Show iLvl:", + ["VUI_ITEM_ILVL"] = "Show iLvl On Items:", + ["VUI_DEFAULT_ILVL_COLOR"] = "Default iLvl Coloration:", + ["VUI_CUSTOM_ILVL_COLOR"] = "Custom iLvl Color:", + ["VUI_FORMAT_ERROR"] = "Invalid color format entered.", +} + + +local temp = KiwiItemInfo.Locale["zhTW"] + +temp["COMMAND_SEARCH_ERROR_DB"] = "Kiwi declines usage of `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` (due to lack of loading the database?)" +temp["KII_BAD_DB"] = "Kiwi's Item Info database wasn't loaded! Not using `/kiwiii " .. temp["KIWIII_SEARCH"] .. "` command." +temp["KII_HELP"] = "Please run `/kiwiii " .. temp["KIWIII_HELP"] .. "` for a command listing!" +temp["KII_THANKS"] = "Kiwi thanks you for installing KiwiItemInfo " .. KiwiItemInfo._VERSION .. "! <3" +temp["COMMAND_HELP1"] = "Kiwi Item Info " .. KiwiItemInfo._VERSION .. " -- help" +temp["COMMAND_HELP2"] = "https://github.com/tilkinsc/KiwiItemInfo - for issue/bug reports" +temp["COMMAND_HELP3"] = "Usage: /kiwiii [" .. temp["KIWIII_RELOAD"] .. "] [" .. temp["KIWIII_RESET"] .. "] [" .. temp["KIWIII_VARS"] .. "] [" .. temp["KIWIII_ACI"] .. "]" +temp["COMMAND_HELP4"] = " [" .. temp["KIWIII_SET"] .. " variable_name value]" +temp["COMMAND_HELP5"] = " [" .. temp["KIWIII_SEARCH"] .. " ${=,>,<}num, #Type, @subtype, {itemid, itemname}]" +temp["COMMAND_HELP6"] = " > |cFF888888" .. temp["KIWIII_HELP"] .. "|r -- for this message" +temp["COMMAND_HELP7"] = " > |cFF888888" .. temp["KIWIII_RELOAD"] .. "|r -- reloads addon" +temp["COMMAND_HELP8"] = " > |cFF888888" .. temp["KIWIII_RESET"] .. "|r -- resets all saved variables, also reloads" +temp["COMMAND_HELP9"] = " > |cFF888888" .. temp["KIWIII_VARS"] .. "|r -- shows all setting variables" +temp["COMMAND_HELP10"] = " > |cFF888888" .. temp["KIWIII_SET"] .. "|r -- toggles a setting" +temp["COMMAND_HELP11"] = " * |cFFBBBBBBvariable_name|r -- variable shown in /kiwiii " .. temp["KIWIII_VARS"] +temp["COMMAND_HELP12"] = " * |cFFBBBBBBvalue|r -- either true, false, string, or number" +temp["COMMAND_HELP13"] = " > |cFF888888" .. temp["KIWIII_ACI"] .. "|r -- toggles alwaysCompareItems CVar" +temp["COMMAND_HELP14"] = " > |cFF888888" .. temp["KIWIII_SEARCH"] .. "|r -- searches through item database for items" +temp["COMMAND_HELP15"] = " * |cFFBBBBBB${=,>,<}num|r -- show only items of ilvl equal, bigger or smaller than 'num'" +temp["COMMAND_HELP16"] = " * |cFFBBBBBB#Type|r -- shows by type (Armor, Weapon, etc)" +temp["COMMAND_HELP17"] = " * |cFFBBBBBB@SubType|r -- shows by subtype (Mail, 1HSwords, 2HSwords, etc)" +temp["COMMAND_HELP18"] = " * |cFFBBBBBBitemid|r -- search for items" +temp["COMMAND_HELP19"] = " * |cFFBBBBBBitemname|r -- search for items" + diff --git a/README.md b/README.md new file mode 100644 index 0000000..729d730 --- /dev/null +++ b/README.md @@ -0,0 +1,63 @@ +# KiwiItemInfo +WoW Classic Addon | Shows iLvl (with colors) | Weapon/Armor Differences(shift hover) | Vendor Prices (unit/stack) | Highlights All Grey Named Items with LCTRL | Provides an Item Database for Searching in-client + +[English](README.md) | [Español](README_esES.md) | [Deutsch](README_deDE.md) | [Português](README_ptBR.md) | [Français](README_frFR.md) | [Italiano](README_itIT.md) | [русский](README_ruRU.md) | [한국어](README_koKR.md) | [简体中文](README_zhCN.md) | [繁體中文](README_zhTW.md) + +Version: 2.3.7 + +Provides the command `/kiwiii search` items by name/id and reduce results. + +See `/kiwiii help` for a list of full commands. + +This addon fully contains: + +* iLvl +* Vendor Price +* Differences between equips +* Command for searching items by name in game (for linking perhaps) +* Highlight grey items with Left Control Key +* Contains settings for features + +To install: + +Download: https://www.curseforge.com/wow/addons/kiwi-item-info +Install: Extract the folder to WoW/_classic_/Interface/AddOns/ + +All done! + +iLvl coloration works like this: + +* iLvl is your level or higher? Red +* iLvl is 1-3 levels under you? Yellow +* iLvl is 4-6 levels under you? Green +* iLvl is 7-9+ levels under you? Grey + +Don't want the itemdb? + +* Delete itemDB.lua +* Remove itemDB.lua from KiwiItemInfo.toc + +Don't want other translations? + +* Delete the translations +* Remove the translations from KiwiItemInfo.toc +* Note: There is no benefit to this + +![image](https://user-images.githubusercontent.com/7494772/65168133-e4d56400-da11-11e9-9a56-57daaaf7eb51.png) +(Kiwi was level 39 for this picture) + +![image](https://user-images.githubusercontent.com/7494772/65673394-be6a8680-e018-11e9-8852-fd889d9bcf4b.png) + +![image](https://user-images.githubusercontent.com/7494772/65168180-f9b1f780-da11-11e9-8b1a-b6efece584c5.png) + +![image](https://user-images.githubusercontent.com/7494772/65168217-0b939a80-da12-11e9-9203-6dced0cca7d3.png) + +![image](https://user-images.githubusercontent.com/7494772/65168271-282fd280-da12-11e9-8fff-30dbffeded71.png) + +![image](https://user-images.githubusercontent.com/7494772/65868110-add24d00-e345-11e9-9644-be1d3a7e36c1.png) + +![image](https://user-images.githubusercontent.com/7494772/65868151-c2aee080-e345-11e9-83f1-d1b93f93440a.png) + +![image](https://user-images.githubusercontent.com/7494772/65868206-d9edce00-e345-11e9-8ad3-e93513f09406.png) + +![image](https://user-images.githubusercontent.com/7494772/65868255-effb8e80-e345-11e9-8025-d432ff6af224.png) diff --git a/README_deDE.md b/README_deDE.md new file mode 100644 index 0000000..a966fea --- /dev/null +++ b/README_deDE.md @@ -0,0 +1,50 @@ +# KiwiItemInfo +WoW Classic Addon | Shows iLvl (with colors) | Weapon/Armor Differences(shift hover) | Vendor Prices (unit/stack) | Highlights All Grey Named Items with LCTRL | Provides an Item Database for Searching in-client + +[English](README.md) | [Español](README_esES.md) | [Deutsch](README_deDE.md) | [Português](README_ptBR.md) | [Français](README_frFR.md) | [Italiano](README_itIT.md) | [русский](README_ruRU.md) | [한국어](README_koKR.md) | [简体中文](README_zhCN.md) | [繁體中文](README_zhTW.md) + +Bereitstellung des Befehls `/kiwiii search` Sortierung der Items nach Name/ID + +Für eine Liste aller Befehle `/kiwiii help` eingeben + +Dieses Addon enthält: + +* iLvl +* Händlerpreis +* Unterschiede zwischen den Ausrüstungen +* Befehl zum Suchen der Gegenstände mit Namen +* Makieren grauer Elemente mit der L-STRG +* Einstellungen für Funktionen + +Installierung: + +Download: https://www.curseforge.com/wow/addons/kiwi-item-info +Installation: In folgenden Ordner entpacken: WoW/_classic_/Interface/AddOns/ + +Fertig! + +Erklärung der Einfärbung mit "iLvl": + +* Dein Level oder Höher? Rot +* 1-3 Level unter dir? Gelb +* 4-6 Level unter dir? Grün +* 7-9 Level+ unter dir? Grau + +![image](https://user-images.githubusercontent.com/7494772/65168133-e4d56400-da11-11e9-9a56-57daaaf7eb51.png) +(Lvl 39 auf diesem Foto) + +![image](https://user-images.githubusercontent.com/7494772/65673394-be6a8680-e018-11e9-8852-fd889d9bcf4b.png) + +![image](https://user-images.githubusercontent.com/7494772/65168180-f9b1f780-da11-11e9-8b1a-b6efece584c5.png) + +![image](https://user-images.githubusercontent.com/7494772/65168217-0b939a80-da12-11e9-9203-6dced0cca7d3.png) + +![image](https://user-images.githubusercontent.com/7494772/65168271-282fd280-da12-11e9-8fff-30dbffeded71.png) + +![image](https://user-images.githubusercontent.com/7494772/65868110-add24d00-e345-11e9-9644-be1d3a7e36c1.png) + +![image](https://user-images.githubusercontent.com/7494772/65868151-c2aee080-e345-11e9-83f1-d1b93f93440a.png) + +![image](https://user-images.githubusercontent.com/7494772/65868206-d9edce00-e345-11e9-8ad3-e93513f09406.png) + +![image](https://user-images.githubusercontent.com/7494772/65868255-effb8e80-e345-11e9-8025-d432ff6af224.png) diff --git a/README_esES.md b/README_esES.md new file mode 100644 index 0000000..3fed749 --- /dev/null +++ b/README_esES.md @@ -0,0 +1,48 @@ +# KiwiItemInfo +WoW Classic Addon | Shows iLvl (with colors) | Weapon/Armor Differences(shift hover) | Vendor Prices (unit/stack) | Highlights All Grey Named Items with LCTRL | Provides an Item Database for Searching in-client + +[English](README.md) | [Español](README_esES.md) | [Deutsch](README_deDE.md) | [Português](README_ptBR.md) | [Français](README_frFR.md) | [Italiano](README_itIT.md) | [русский](README_ruRU.md) | [한국어](README_koKR.md) | [简体中文](README_zhCN.md) | [繁體中文](README_zhTW.md) + +Proporciona el comando `/kiwiii search` para buscar los objectos. + +Ver `/kiwiii help` para ayuda con los comandos. + +Este Addon contiene: + +* iLvl (nivel de objecto/NDO) +* Precio del Vendedor +* Diferencias entre equipos +* Comandos para buscar los objectos en el juego (para vínculos) +* Resalte los objectos con nombres grises con LCTRL +* Contiene configuraciones para funciones + +Descargar: https://www.curseforge.com/wow/addons/kiwi-item-info +Instalar: Extraer la carpeta a WoW/_classic_/Interface/AddOns/ + +Todo listo! + +La coloración de NDO funciona así: + +* NDO = tu nivel o mayor? Rojo +* NDO = 1-3 niveles debajo de ti? Armarillo +* NDO = 4-6 niveles debajo de ti? Verde +* NDO = 7-9+ niveles debajo de ti? Gris + +![image](https://user-images.githubusercontent.com/7494772/65168133-e4d56400-da11-11e9-9a56-57daaaf7eb51.png) +(Kiwi estaba en el nivel 39 para esto imagen) + +![image](https://user-images.githubusercontent.com/7494772/65673394-be6a8680-e018-11e9-8852-fd889d9bcf4b.png) + +![image](https://user-images.githubusercontent.com/7494772/65168180-f9b1f780-da11-11e9-8b1a-b6efece584c5.png) + +![image](https://user-images.githubusercontent.com/7494772/65168217-0b939a80-da12-11e9-9203-6dced0cca7d3.png) + +![image](https://user-images.githubusercontent.com/7494772/65168271-282fd280-da12-11e9-8fff-30dbffeded71.png) + +![image](https://user-images.githubusercontent.com/7494772/65868110-add24d00-e345-11e9-9644-be1d3a7e36c1.png) + +![image](https://user-images.githubusercontent.com/7494772/65868151-c2aee080-e345-11e9-83f1-d1b93f93440a.png) + +![image](https://user-images.githubusercontent.com/7494772/65868206-d9edce00-e345-11e9-8ad3-e93513f09406.png) + +![image](https://user-images.githubusercontent.com/7494772/65868255-effb8e80-e345-11e9-8025-d432ff6af224.png) diff --git a/README_frFR.md b/README_frFR.md new file mode 100644 index 0000000..8aceacc --- /dev/null +++ b/README_frFR.md @@ -0,0 +1,61 @@ +# KiwiItemInfo +WoW Classic Addon | Shows iLvl (with colors) | Weapon/Armor Differences(shift hover) | Vendor Prices (unit/stack) | Highlights All Grey Named Items with LCTRL | Provides an Item Database for Searching in-client + +[English](README.md) | [Español](README_esES.md) | [Deutsch](README_deDE.md) | [Português](README_ptBR.md) | [Français](README_frFR.md) | [Italiano](README_itIT.md) | [русский](README_ruRU.md) | [한국어](README_koKR.md) | [简体中文](README_zhCN.md) | [繁體中文](README_zhTW.md) + +Provides the command `/kiwiii search` items by name/id and reduce results. + +See `/kiwiii help` for a list of full commands. + +This addon fully contains: + +* iLvl +* Vendor Price +* Differences between equips +* Command for searching items by name in game (for linking perhaps) +* Highlight grey items with Left Control Key +* Contains settings for features + +To install: + +Download: https://www.curseforge.com/wow/addons/kiwi-item-info +Install: Extract the folder to WoW/_classic_/Interface/AddOns/ + +All done! + +iLvl coloration works like this: + +* iLvl is your level or higher? Red +* iLvl is 1-3 levels under you? Yellow +* iLvl is 4-6 levels under you? Green +* iLvl is 7-9+ levels under you? Grey + +Don't want the itemdb? + +* Delete itemDB.lua +* Remove itemDB.lua from KiwiItemInfo.toc + +Don't want other translations? + +* Delete the translations +* Remove the translations from KiwiItemInfo.toc +* Note: There is no benefit to this + +![image](https://user-images.githubusercontent.com/7494772/65168133-e4d56400-da11-11e9-9a56-57daaaf7eb51.png) +(Kiwi was level 39 for this picture) + +![image](https://user-images.githubusercontent.com/7494772/65673394-be6a8680-e018-11e9-8852-fd889d9bcf4b.png) + +![image](https://user-images.githubusercontent.com/7494772/65168180-f9b1f780-da11-11e9-8b1a-b6efece584c5.png) + +![image](https://user-images.githubusercontent.com/7494772/65168217-0b939a80-da12-11e9-9203-6dced0cca7d3.png) + +![image](https://user-images.githubusercontent.com/7494772/65168271-282fd280-da12-11e9-8fff-30dbffeded71.png) + +![image](https://user-images.githubusercontent.com/7494772/65868110-add24d00-e345-11e9-9644-be1d3a7e36c1.png) + +![image](https://user-images.githubusercontent.com/7494772/65868151-c2aee080-e345-11e9-83f1-d1b93f93440a.png) + +![image](https://user-images.githubusercontent.com/7494772/65868206-d9edce00-e345-11e9-8ad3-e93513f09406.png) + +![image](https://user-images.githubusercontent.com/7494772/65868255-effb8e80-e345-11e9-8025-d432ff6af224.png) diff --git a/README_itIT.md b/README_itIT.md new file mode 100644 index 0000000..8aceacc --- /dev/null +++ b/README_itIT.md @@ -0,0 +1,61 @@ +# KiwiItemInfo +WoW Classic Addon | Shows iLvl (with colors) | Weapon/Armor Differences(shift hover) | Vendor Prices (unit/stack) | Highlights All Grey Named Items with LCTRL | Provides an Item Database for Searching in-client + +[English](README.md) | [Español](README_esES.md) | [Deutsch](README_deDE.md) | [Português](README_ptBR.md) | [Français](README_frFR.md) | [Italiano](README_itIT.md) | [русский](README_ruRU.md) | [한국어](README_koKR.md) | [简体中文](README_zhCN.md) | [繁體中文](README_zhTW.md) + +Provides the command `/kiwiii search` items by name/id and reduce results. + +See `/kiwiii help` for a list of full commands. + +This addon fully contains: + +* iLvl +* Vendor Price +* Differences between equips +* Command for searching items by name in game (for linking perhaps) +* Highlight grey items with Left Control Key +* Contains settings for features + +To install: + +Download: https://www.curseforge.com/wow/addons/kiwi-item-info +Install: Extract the folder to WoW/_classic_/Interface/AddOns/ + +All done! + +iLvl coloration works like this: + +* iLvl is your level or higher? Red +* iLvl is 1-3 levels under you? Yellow +* iLvl is 4-6 levels under you? Green +* iLvl is 7-9+ levels under you? Grey + +Don't want the itemdb? + +* Delete itemDB.lua +* Remove itemDB.lua from KiwiItemInfo.toc + +Don't want other translations? + +* Delete the translations +* Remove the translations from KiwiItemInfo.toc +* Note: There is no benefit to this + +![image](https://user-images.githubusercontent.com/7494772/65168133-e4d56400-da11-11e9-9a56-57daaaf7eb51.png) +(Kiwi was level 39 for this picture) + +![image](https://user-images.githubusercontent.com/7494772/65673394-be6a8680-e018-11e9-8852-fd889d9bcf4b.png) + +![image](https://user-images.githubusercontent.com/7494772/65168180-f9b1f780-da11-11e9-8b1a-b6efece584c5.png) + +![image](https://user-images.githubusercontent.com/7494772/65168217-0b939a80-da12-11e9-9203-6dced0cca7d3.png) + +![image](https://user-images.githubusercontent.com/7494772/65168271-282fd280-da12-11e9-8fff-30dbffeded71.png) + +![image](https://user-images.githubusercontent.com/7494772/65868110-add24d00-e345-11e9-9644-be1d3a7e36c1.png) + +![image](https://user-images.githubusercontent.com/7494772/65868151-c2aee080-e345-11e9-83f1-d1b93f93440a.png) + +![image](https://user-images.githubusercontent.com/7494772/65868206-d9edce00-e345-11e9-8ad3-e93513f09406.png) + +![image](https://user-images.githubusercontent.com/7494772/65868255-effb8e80-e345-11e9-8025-d432ff6af224.png) diff --git a/README_koKR.md b/README_koKR.md new file mode 100644 index 0000000..8aceacc --- /dev/null +++ b/README_koKR.md @@ -0,0 +1,61 @@ +# KiwiItemInfo +WoW Classic Addon | Shows iLvl (with colors) | Weapon/Armor Differences(shift hover) | Vendor Prices (unit/stack) | Highlights All Grey Named Items with LCTRL | Provides an Item Database for Searching in-client + +[English](README.md) | [Español](README_esES.md) | [Deutsch](README_deDE.md) | [Português](README_ptBR.md) | [Français](README_frFR.md) | [Italiano](README_itIT.md) | [русский](README_ruRU.md) | [한국어](README_koKR.md) | [简体中文](README_zhCN.md) | [繁體中文](README_zhTW.md) + +Provides the command `/kiwiii search` items by name/id and reduce results. + +See `/kiwiii help` for a list of full commands. + +This addon fully contains: + +* iLvl +* Vendor Price +* Differences between equips +* Command for searching items by name in game (for linking perhaps) +* Highlight grey items with Left Control Key +* Contains settings for features + +To install: + +Download: https://www.curseforge.com/wow/addons/kiwi-item-info +Install: Extract the folder to WoW/_classic_/Interface/AddOns/ + +All done! + +iLvl coloration works like this: + +* iLvl is your level or higher? Red +* iLvl is 1-3 levels under you? Yellow +* iLvl is 4-6 levels under you? Green +* iLvl is 7-9+ levels under you? Grey + +Don't want the itemdb? + +* Delete itemDB.lua +* Remove itemDB.lua from KiwiItemInfo.toc + +Don't want other translations? + +* Delete the translations +* Remove the translations from KiwiItemInfo.toc +* Note: There is no benefit to this + +![image](https://user-images.githubusercontent.com/7494772/65168133-e4d56400-da11-11e9-9a56-57daaaf7eb51.png) +(Kiwi was level 39 for this picture) + +![image](https://user-images.githubusercontent.com/7494772/65673394-be6a8680-e018-11e9-8852-fd889d9bcf4b.png) + +![image](https://user-images.githubusercontent.com/7494772/65168180-f9b1f780-da11-11e9-8b1a-b6efece584c5.png) + +![image](https://user-images.githubusercontent.com/7494772/65168217-0b939a80-da12-11e9-9203-6dced0cca7d3.png) + +![image](https://user-images.githubusercontent.com/7494772/65168271-282fd280-da12-11e9-8fff-30dbffeded71.png) + +![image](https://user-images.githubusercontent.com/7494772/65868110-add24d00-e345-11e9-9644-be1d3a7e36c1.png) + +![image](https://user-images.githubusercontent.com/7494772/65868151-c2aee080-e345-11e9-83f1-d1b93f93440a.png) + +![image](https://user-images.githubusercontent.com/7494772/65868206-d9edce00-e345-11e9-8ad3-e93513f09406.png) + +![image](https://user-images.githubusercontent.com/7494772/65868255-effb8e80-e345-11e9-8025-d432ff6af224.png) diff --git a/README_ptBR.md b/README_ptBR.md new file mode 100644 index 0000000..db5a67b --- /dev/null +++ b/README_ptBR.md @@ -0,0 +1,61 @@ +# KiwiItemInfo +WoW Classic Addon | Mostra iLvl (with colors) | Diferenças Arma/Armadura (mudanças) | Preços de Fornecedor (unidade/pilha) | Destaca todos itens com nome cinza usando LCTRL(CTRL Esquerdo) | Proporciona um banco de dados de itens para pesquisa dentro do jogo + +[English](README.md) | [Español](README_esES.md) | [Deutsch](README_deDE.md) | [Português](README_ptBR.md) | [Français](README_frFR.md) | [Italiano](README_itIT.md) | [русский](README_ruRU.md) | [한국어](README_koKR.md) | [简体中文](README_zhCN.md) | [繁體中文](README_zhTW.md) + +Permite uso do comando `/kiwiii search` itens por nome/id e resume resultados + +Use `/kiwiii help` para uma lista completa de comandos. + +Este addon contém completamente: + +* iLvl +* Preço do Fornecedor +* Diferenças entre equipamentos +* Comando para pesquisar itens por nome no jogo (talvez para vincular) +* Destaca itens com nome cinza usando a CTRL Esquerdo +* Contém configurações para recursos + +Para instalar: + +Baixar: https://www.curseforge.com/wow/addons/kiwi-item-info +Instalar: Extraia a pasta para WoW/_classic_/Interface/AddOns/ + +Tudo pronto! + +A coloração do iLvl funciona assim: + +* iLvl é o seu nível ou superior? Vermelho +* iLvl está 1-3 níveis abaixo de você? Amarelo +* iLvl está em 4-6 níveis abaixo de você? Verde +* iLvl está em 7-9+ níveis abaixo de você? Cinzento + +Não quer o itemdb? + +* Exclua itemDB.lua +* Exclua itemDB.lua do Kiwi ItemInfo.toc + +Não quer outras traduções? + +* Exclua as traduções +* Remova as traduções do KiwiItemInfo.toc +* Nota: Não há benefício ao fazer isto + +![image](https://user-images.githubusercontent.com/7494772/65168133-e4d56400-da11-11e9-9a56-57daaaf7eb51.png) +(Kiwi estava no nível 39 para esta foto) + +![image](https://user-images.githubusercontent.com/7494772/65673394-be6a8680-e018-11e9-8852-fd889d9bcf4b.png) + +![image](https://user-images.githubusercontent.com/7494772/65168180-f9b1f780-da11-11e9-8b1a-b6efece584c5.png) + +![image](https://user-images.githubusercontent.com/7494772/65168217-0b939a80-da12-11e9-9203-6dced0cca7d3.png) + +![image](https://user-images.githubusercontent.com/7494772/65168271-282fd280-da12-11e9-8fff-30dbffeded71.png) + +![image](https://user-images.githubusercontent.com/7494772/65868110-add24d00-e345-11e9-9644-be1d3a7e36c1.png) + +![image](https://user-images.githubusercontent.com/7494772/65868151-c2aee080-e345-11e9-83f1-d1b93f93440a.png) + +![image](https://user-images.githubusercontent.com/7494772/65868206-d9edce00-e345-11e9-8ad3-e93513f09406.png) + +![image](https://user-images.githubusercontent.com/7494772/65868255-effb8e80-e345-11e9-8025-d432ff6af224.png) diff --git a/README_ruRU.md b/README_ruRU.md new file mode 100644 index 0000000..8aceacc --- /dev/null +++ b/README_ruRU.md @@ -0,0 +1,61 @@ +# KiwiItemInfo +WoW Classic Addon | Shows iLvl (with colors) | Weapon/Armor Differences(shift hover) | Vendor Prices (unit/stack) | Highlights All Grey Named Items with LCTRL | Provides an Item Database for Searching in-client + +[English](README.md) | [Español](README_esES.md) | [Deutsch](README_deDE.md) | [Português](README_ptBR.md) | [Français](README_frFR.md) | [Italiano](README_itIT.md) | [русский](README_ruRU.md) | [한국어](README_koKR.md) | [简体中文](README_zhCN.md) | [繁體中文](README_zhTW.md) + +Provides the command `/kiwiii search` items by name/id and reduce results. + +See `/kiwiii help` for a list of full commands. + +This addon fully contains: + +* iLvl +* Vendor Price +* Differences between equips +* Command for searching items by name in game (for linking perhaps) +* Highlight grey items with Left Control Key +* Contains settings for features + +To install: + +Download: https://www.curseforge.com/wow/addons/kiwi-item-info +Install: Extract the folder to WoW/_classic_/Interface/AddOns/ + +All done! + +iLvl coloration works like this: + +* iLvl is your level or higher? Red +* iLvl is 1-3 levels under you? Yellow +* iLvl is 4-6 levels under you? Green +* iLvl is 7-9+ levels under you? Grey + +Don't want the itemdb? + +* Delete itemDB.lua +* Remove itemDB.lua from KiwiItemInfo.toc + +Don't want other translations? + +* Delete the translations +* Remove the translations from KiwiItemInfo.toc +* Note: There is no benefit to this + +![image](https://user-images.githubusercontent.com/7494772/65168133-e4d56400-da11-11e9-9a56-57daaaf7eb51.png) +(Kiwi was level 39 for this picture) + +![image](https://user-images.githubusercontent.com/7494772/65673394-be6a8680-e018-11e9-8852-fd889d9bcf4b.png) + +![image](https://user-images.githubusercontent.com/7494772/65168180-f9b1f780-da11-11e9-8b1a-b6efece584c5.png) + +![image](https://user-images.githubusercontent.com/7494772/65168217-0b939a80-da12-11e9-9203-6dced0cca7d3.png) + +![image](https://user-images.githubusercontent.com/7494772/65168271-282fd280-da12-11e9-8fff-30dbffeded71.png) + +![image](https://user-images.githubusercontent.com/7494772/65868110-add24d00-e345-11e9-9644-be1d3a7e36c1.png) + +![image](https://user-images.githubusercontent.com/7494772/65868151-c2aee080-e345-11e9-83f1-d1b93f93440a.png) + +![image](https://user-images.githubusercontent.com/7494772/65868206-d9edce00-e345-11e9-8ad3-e93513f09406.png) + +![image](https://user-images.githubusercontent.com/7494772/65868255-effb8e80-e345-11e9-8025-d432ff6af224.png) diff --git a/README_zhCN.md b/README_zhCN.md new file mode 100644 index 0000000..e1483e9 --- /dev/null +++ b/README_zhCN.md @@ -0,0 +1,61 @@ +# KiwiItemInfo +WoW Classic Addon | Shows iLvl (with colors) | Weapon/Armor Differences(shift hover) | Vendor Prices (unit/stack) | Highlights All Grey Named Items with LCTRL | Provides an Item Database for Searching in-client + +[English](README.md) | [Español](README_esES.md) | [Deutsch](README_deDE.md) | [Português](README_ptBR.md) | [Français](README_frFR.md) | [Italiano](README_itIT.md) | [русский](README_ruRU.md) | [한국어](README_koKR.md) | [简体中文](README_zhCN.md) | [繁體中文](README_zhTW.md) + +提供按名称/id的命令`/kiwiii search`项,并减少结果。 + +有关完整命令的列表,请参见`/kiwiii help`。 + +该插件完全包含: + +* iLvl +* 厂商价格 +* 设备之间的差异 +* 在游戏中按名称搜索项目的命令(可能用于链接) +* 使用左控制键突出显示灰色项目 +* 包含功能设置 + +安装: + +下载: https://www.curseforge.com/wow/addons/kiwi-item-info +安装: 将文件夹解压缩到 WoW/_classic_/Interface/AddOns/ + +全部做完! + +iLvl着色的工作方式如下: + +* iLvl是您的等级或更高?红色 +* iLvl在您之下是1-3级?黄色 +* iLvl在您之下是4-6级?绿色 +* iLvl在您之下是7-9 +水平?灰色 + +不需要itemdb? + +* 删除 itemDB.lua +* 去掉 itemDB.lua 从 KiwiItemInfo.toc + +不需要其他翻译? + +* 删除翻译 +* 从KiwiItemInfo.toc删除翻译 +* 注意:这没有任何好处 + +![image](https://user-images.githubusercontent.com/7494772/65168133-e4d56400-da11-11e9-9a56-57daaaf7eb51.png) +(这张图片的猕猴桃为39级) + +![image](https://user-images.githubusercontent.com/7494772/65673394-be6a8680-e018-11e9-8852-fd889d9bcf4b.png) + +![image](https://user-images.githubusercontent.com/7494772/65168180-f9b1f780-da11-11e9-8b1a-b6efece584c5.png) + +![image](https://user-images.githubusercontent.com/7494772/65168217-0b939a80-da12-11e9-9203-6dced0cca7d3.png) + +![image](https://user-images.githubusercontent.com/7494772/65168271-282fd280-da12-11e9-8fff-30dbffeded71.png) + +![image](https://user-images.githubusercontent.com/7494772/65868110-add24d00-e345-11e9-9644-be1d3a7e36c1.png) + +![image](https://user-images.githubusercontent.com/7494772/65868151-c2aee080-e345-11e9-83f1-d1b93f93440a.png) + +![image](https://user-images.githubusercontent.com/7494772/65868206-d9edce00-e345-11e9-8ad3-e93513f09406.png) + +![image](https://user-images.githubusercontent.com/7494772/65868255-effb8e80-e345-11e9-8025-d432ff6af224.png) diff --git a/README_zhTW.md b/README_zhTW.md new file mode 100644 index 0000000..8aceacc --- /dev/null +++ b/README_zhTW.md @@ -0,0 +1,61 @@ +# KiwiItemInfo +WoW Classic Addon | Shows iLvl (with colors) | Weapon/Armor Differences(shift hover) | Vendor Prices (unit/stack) | Highlights All Grey Named Items with LCTRL | Provides an Item Database for Searching in-client + +[English](README.md) | [Español](README_esES.md) | [Deutsch](README_deDE.md) | [Português](README_ptBR.md) | [Français](README_frFR.md) | [Italiano](README_itIT.md) | [русский](README_ruRU.md) | [한국어](README_koKR.md) | [简体中文](README_zhCN.md) | [繁體中文](README_zhTW.md) + +Provides the command `/kiwiii search` items by name/id and reduce results. + +See `/kiwiii help` for a list of full commands. + +This addon fully contains: + +* iLvl +* Vendor Price +* Differences between equips +* Command for searching items by name in game (for linking perhaps) +* Highlight grey items with Left Control Key +* Contains settings for features + +To install: + +Download: https://www.curseforge.com/wow/addons/kiwi-item-info +Install: Extract the folder to WoW/_classic_/Interface/AddOns/ + +All done! + +iLvl coloration works like this: + +* iLvl is your level or higher? Red +* iLvl is 1-3 levels under you? Yellow +* iLvl is 4-6 levels under you? Green +* iLvl is 7-9+ levels under you? Grey + +Don't want the itemdb? + +* Delete itemDB.lua +* Remove itemDB.lua from KiwiItemInfo.toc + +Don't want other translations? + +* Delete the translations +* Remove the translations from KiwiItemInfo.toc +* Note: There is no benefit to this + +![image](https://user-images.githubusercontent.com/7494772/65168133-e4d56400-da11-11e9-9a56-57daaaf7eb51.png) +(Kiwi was level 39 for this picture) + +![image](https://user-images.githubusercontent.com/7494772/65673394-be6a8680-e018-11e9-8852-fd889d9bcf4b.png) + +![image](https://user-images.githubusercontent.com/7494772/65168180-f9b1f780-da11-11e9-8b1a-b6efece584c5.png) + +![image](https://user-images.githubusercontent.com/7494772/65168217-0b939a80-da12-11e9-9203-6dced0cca7d3.png) + +![image](https://user-images.githubusercontent.com/7494772/65168271-282fd280-da12-11e9-8fff-30dbffeded71.png) + +![image](https://user-images.githubusercontent.com/7494772/65868110-add24d00-e345-11e9-9644-be1d3a7e36c1.png) + +![image](https://user-images.githubusercontent.com/7494772/65868151-c2aee080-e345-11e9-83f1-d1b93f93440a.png) + +![image](https://user-images.githubusercontent.com/7494772/65868206-d9edce00-e345-11e9-8ad3-e93513f09406.png) + +![image](https://user-images.githubusercontent.com/7494772/65868255-effb8e80-e345-11e9-8025-d432ff6af224.png) diff --git a/Tooltip.lua b/Tooltip.lua new file mode 100644 index 0000000..054b9fb --- /dev/null +++ b/Tooltip.lua @@ -0,0 +1,1402 @@ +--[[ + * KiwiItemInfo + * + * MIT License + * + * Copyright (c) 2017-2019 Cody Tilkins + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * +--]] + + + +local L = KiwiItemInfo.LocaleStrings() + +-- Adds item data to tooltips +KiwiItemInfo.ShowItemInfo = function(tooltip) + + local i_name, i_link = tooltip:GetItem() + local tooltipName = tooltip:GetName() + local focus = GetMouseFocus() + local name = focus and focus:GetName() + + if(i_name == nil or i_name == "" or i_link == nil or i_link == "[]") then + if(TradeSkillFrame and TradeSkillFrame:IsShown()) then + if(name and name:find("TradeSkill", 1, 10) == 1) then + local selection = GetTradeSkillSelectionIndex() + local reagent = tonumber(name:sub(-1)) + if(reagent ~= nil) then + i_link = GetTradeSkillReagentItemLink(selection, reagent) + else + i_link = GetTradeSkillItemLink(selection) + end + end + elseif(CraftFrame and CraftFrame:IsShown()) then + if(name and name:find("Craft", 1, 5) == 1) then + local selection = GetCraftSelectionIndex() + local reagent = tonumber(name:sub(-1)) + if(reagent ~= nil) then + i_link = GetCraftReagentItemLink(selection, reagent) + else + i_link = GetCraftItemLink(selection) + end + end + else + return + end + end + + if(i_link == nil or i_link == "[]") then + return + end + + local itemName, itemLink, itemRarity, itemLevel, itemMinLevel, itemType, itemSubType, + itemStackCount, itemEquipLoc, itemIcon, vendorPrice, itemClassID, itemSubClassID, + bindType, expacID, itemSetID, isCraftingReagent = GetItemInfo(i_link) + + if(KiwiItemInfo_Vars.vars["tooltip_price_on"] == true) then + if(not MerchantFrame:IsShown() and (vendorPrice and vendorPrice > 0)) then + if(itemStackCount > 1) then + local count + if(focus) then + count = focus.count or (focus.Count and tonumber(focus.Count:GetText())) or 1 + else + count = 1 + end + itemStackCount = (type(count) == "number") and count or 1 + if(itemStackCount > 1) then + SetTooltipMoney(tooltip, vendorPrice, nil, L["TOOLTIP_UNIT"]) + SetTooltipMoney(tooltip, vendorPrice * itemStackCount, nil, L["TOOLTIP_STACK"]) + else + SetTooltipMoney(tooltip, vendorPrice, nil, "") + end + else + SetTooltipMoney(tooltip, vendorPrice, nil, "") + end + end + end + + if(KiwiItemInfo_Vars.vars["tooltip_ilvl_on"] == true) then + if(itemLevel) then + + if( itemClassID == LE_ITEM_CLASS_WEAPON + or itemClassID == LE_ITEM_CLASS_ARMOR + or KiwiItemInfo_Vars.vars["ilvl_only_equips"] == false + ) then + + local tooltipiLvl = _G[tooltipName .. "TextRight1"] + + if(KiwiItemInfo_Vars.vars["tooltip_ilvl_colors"]) then + local playerLevel = UnitLevel("player") + + if(playerLevel <= itemLevel) then + tooltipiLvl:SetTextColor(0.9375, 0, 0) -- red + elseif(itemLevel > playerLevel - 3) then + tooltipiLvl:SetTextColor(0.9375, 0.5, 0) -- orange + elseif(itemLevel > playerLevel - 5) then + tooltipiLvl:SetTextColor(0.9375, 0.9375, 0) -- yellow + elseif(itemLevel > playerLevel - 9) then + tooltipiLvl:SetTextColor(0, 0.875, 0) -- green + else + tooltipiLvl:SetTextColor(0.5, 0.5, 0.5) -- grey + end + else + local color = KiwiItemInfo_Vars.vars["tooltip_ilvl_nocolors_rgb"] + local r, g, b = string.split(" ", color) + r = tonumber(r) -- probably should pcall this to handle possible UI error + g = tonumber(g) + b = tonumber(b) + r = (r > 1) and (r / 255) or r + g = (g > 1) and (g / 255) or g + b = (b > 1) and (b / 255) or b + tooltipiLvl:SetTextColor(r, g, b) + end + + tooltipiLvl:SetText(L["TOOLTIP_ILVL"] .. itemLevel) + tooltipiLvl:Show() + end + end + end + +end + +-- Parses tooltip text for item stats +KiwiItemInfo.PryItemStats = function(tooltip, index) + + local lines = tooltip:NumLines() + if(lines == 0) then + return + end + + -- basic stats + local agility = 0 + local stamina = 0 + local strength = 0 + local intellect = 0 + local spirit = 0 + + -- attack/defense + local armor = 0 + local block = 0 + local dps = 0 + local min_dmg = 0 + local max_dmg = 0 + local durability = 0 + + -- special + local dodge = 0 + + -- resistance + local arcane_resist = 0 + local fire_resist = 0 + local frost_resist = 0 + local holy_resist = 0 + local nature_resist = 0 + local shadow_resist = 0 + + -- equips + local equips = {} + local uses = {} + local chances = {} + + for i=1, lines do + local v = _G[index .. "Left" .. i] + if(not v) then + break + end + + local raw_text = v:GetText() + if raw_text then + local text = raw_text:upper() + if(text and #text > 1 and text:find("SET: ") == nil) then + + -- remove line color, if any + if(text:find("|c", 1, 2) == 1) then + text = text:sub(11) + end + + -- remove line color return, if any + if(text:find("|r")) then + text = text:sub(1, -3) + end + + local tt_agility = text:match( L["TOOLTIP_CMP_AGILITY"], 1) + local tt_stamina = text:match( L["TOOLTIP_CMP_STAMINA"] , 1) + local tt_strength = text:match( L["TOOLTIP_CMP_STRENGTH"], 1) + local tt_intellect = text:match( L["TOOLTIP_CMP_INTELLECT"], 1) + local tt_spirit = text:match( L["TOOLTIP_CMP_SPIRIT"], 1) + + local tt_armor = text:match( L["TOOLTIP_CMP_ARMOR"], 1) + local tt_block = text:match( L["TOOLTIP_CMP_BLOCK"], 1) + + local tt_durability = text:match( L["TOOLTIP_CMP_DURABILITY"], 1) + + local tt_dps = text:match( L["TOOLTIP_CMP_DPS"], 1) + local tt_damage = text:match( L["TOOLTIP_CMP_DAMAGE"], 1) + + local tt_dodge = text:match( L["TOOLTIP_CMP_DODGE"], 1) + + local tt_arcane = text:match( L["TOOLTIP_CMP_ARCANE"], 1) + local tt_fire = text:match( L["TOOLTIP_CMP_FIRE"], 1) + local tt_frost = text:match( L["TOOLTIP_CMP_FROST"], 1) + local tt_nature = text:match( L["TOOLTIP_CMP_NATURE"], 1) + local tt_shadow = text:match( L["TOOLTIP_CMP_SHADOW"], 1) + + local bs_digit = text:gsub("[^(%+%-)%d+]", "") + local ad_digit = text:gsub("[^%d+]", "") + + agility = tt_agility and tt_agility:find( L["TOOLTIP_PRY_AGILITY"] ) and tonumber(bs_digit) or agility + stamina = tt_stamina and tt_stamina:find( L["TOOLTIP_PRY_STAMINA"] ) and tonumber(bs_digit) or stamina + strength = tt_strength and tt_strength:find( L["TOOLTIP_PRY_STRENGTH"] ) and tonumber(bs_digit) or strength + intellect = tt_intellect and tt_intellect:find( L["TOOLTIP_PRY_INTELLECT"] ) and tonumber(bs_digit) or intellect + spirit = tt_spirit and tt_spirit:find( L["TOOLTIP_PRY_SPIRIT"] ) and tonumber(bs_digit) or spirit + + armor = tt_armor and tt_armor:find( L["TOOLTIP_PRY_ARMOR"] ) and tonumber(ad_digit) or armor + block = tt_block and tt_block:find( L["TOOLTIP_PRY_BLOCK"] ) and tonumber(ad_digit) or block + + if(tt_dps and tt_dps:find(L["TOOLTIP_PRY_DPS"])) then + local str = tt_dps:gsub(L["TOOLTIP_PRY_DPS"], "") + local num = str:match("%d+.%d+") + dps = tonumber(num) + end + + if(tt_damage and tt_damage:find(L["TOOLTIP_PRY_DAMAGE"])) then + local nums = tt_damage:gsub(L["TOOLTIP_PRY_DAMAGE"], "") + local l, r = string.split("-", nums) + min_dmg = tonumber(l) + max_dmg = tonumber(r) + end + + if(tt_durability and tt_durability:find(L["TOOLTIP_PRY_DURABILITY"])) then + local nums = tt_durability:gsub(L["TOOLTIP_PRY_DURABILITY"], "") + local l, r = string.split("/", nums) + durability = tonumber(r) + end + + dodge = tt_dodge and tt_dodge:find(L["TOOLTIP_PRY_DODGE"]) and tonumber(bs_digit) or dodge + + arcane_resist = tt_arcane and tt_arcane:find(L["TOOLTIP_PRY_ARCANE"]) and tonumber(bs_digit) or arcane_resist + fire_resist = tt_fire and tt_fire:find(L["TOOLTIP_PRY_FIRE"]) and tonumber(bs_digit) or fire_resist + frost_resist = tt_frost and tt_frost:find(L["TOOLTIP_PRY_FROST"]) and tonumber(bs_digit) or frost_resist + nature_resist = tt_nature and tt_nature:find(L["TOOLTIP_PRY_NATURE"]) and tonumber(bs_digit) or nature_resist + shadow_resist = tt_shadow and tt_shadow:find(L["TOOLTIP_PRY_SHADOW"]) and tonumber(bs_digit) or shadow_resist + + if(text:find(L["TOOLTIP_PRY_EQUIP"], 1) == 1) then + table.insert(equips, raw_text) + end + + if(text:find(L["TOOLTIP_PRY_USE"], 1) == 1) then + table.insert(uses, raw_text) + end + + if(text:find(L["TOOLTIP_PRY_CHANCE"], 1) == 1) then + table.insert(chances, raw_text) + end + + end + end + end + + -- basic stats, attack/defense, special, resistence + return {dps = dps, min_dmg = min_dmg, max_dmg = max_dmg}, + {Armor = armor, Block = block, Durability = durability}, + {Agility = agility, Stamina = stamina, Strength = strength, Intellect = intellect, Spirit = spirit}, + {Dodge = dodge}, + {Arcane_Resist = arcane_resist, Fire_Resist = fire_resist, Frost_Resist = frost_resist, Nature_Resist = nature_resist, Shadow_Resist = shadow_resist}, + equips, uses, chances + +end + + + +-- Tacks on to the end of tooltips the differences between two items stats +local att1, def1, basic1, special1, resist1, equips1, uses1, chances1 +local att2, def2, basic2, special2, resist2, equips2, uses2, chances2 +local att3, def3, basic3, special3, resist3, equips3, uses3, chances3 +local att4, def4, basic4, special4, resist4, equips4, uses4, chances4 +local att5, def5, basic5, special5, resist5, equips5, uses5, chances5 +local att6, def6, basic6, special6, resist6, equips6, uses6, chances6 + +KiwiItemInfo.SetItemCompare = function(slot, tooltip, text) + + if(KiwiItemInfo_Vars.vars["item_compare_on"] == false) then + return + end + + local i_name, i_link = tooltip:GetItem() + if(i_name == nil or i_name == "" or i_link == nil or i_link == "[]") then + return + end + + local itemClassID = select(12, GetItemInfo(i_link)) + if(itemClassID ~= LE_ITEM_CLASS_ARMOR and itemClassID ~= LE_ITEM_CLASS_WEAPON) then + return + end + + if(slot == 1) then + att1, def1, basic1, special1, resist1, equips1, uses1, chances1 = KiwiItemInfo.PryItemStats(tooltip, text) + return + end + if(slot == 2) then + att2, def2, basic2, special2, resist2, equips2, uses2, chances2 = KiwiItemInfo.PryItemStats(tooltip, text) + return + end + if(slot == 3) then + att3, def3, basic3, special3, resist3, equips3, uses3, chances3 = KiwiItemInfo.PryItemStats(tooltip, text) + return + end + if(slot == 4) then + att4, def4, basic4, special4, resist4, equips4, uses4, chances4 = KiwiItemInfo.PryItemStats(tooltip, text) + return + end + if(slot == 5) then + att5, def5, basic5, special5, resist5, equips5, uses5, chances5 = KiwiItemInfo.PryItemStats(tooltip, text) + return + end + if(slot == 6) then + att6, def6, basic6, special6, resist6, equips6, uses6, chances6 = KiwiItemInfo.PryItemStats(tooltip, text) + return + end + +end + +KiwiItemInfo.ClearItemCompare = function(slot, tooltip) + + if(KiwiItemInfo_Vars.vars["item_compare_on"] == false) then + return + end + + if(tooltip:IsShown()) then + return + end + + if(slot == 1) then + att1, def1, basic1, special1, resist1, equips1, uses1, chances1 = nil + return + end + if(slot == 2) then + att2, def2, basic2, special2, resist2, equips2, uses2, chances2 = nil + return + end + if(slot == 3) then + att3, def3, basic3, special3, resist3, equips3, uses3, chances3 = nil + return + end + if(slot == 4) then + att4, def4, basic4, special4, resist4, equips4, uses4, chances4 = nil + return + end + if(slot == 5) then + att5, def5, basic5, special5, resist5, equips5, uses5, chances5 = nil + return + end + if(slot == 6) then + att6, def6, basic6, special6, resist6, equips6, uses6, chances6 = nil + return + end + +end + + +KiwiItemInfo.ShowEffectiveStats = function(tooltip) + + if(KiwiItemInfo_Vars.vars["item_compare_extra"] == false) then + return + end + + local selection = GetMouseFocus() + if(selection == nil) then + return + end + + local name = selection:GetName() + if(name and (name:find("Character") ~= 1 or not name:find("Slot"))) then + return + end + + if(att1 == nil) then + return + end + + local _, _, classID = UnitClass("player"); + + + local armor = UnitArmor("player") + armor = armor - 2 * basic1.Agility + + local ch_agi, ch_agi_eff = UnitStat("player", 2) + local ch_stm, ch_stm_eff = UnitStat("player", 3) + local ch_str, ch_str_eff = UnitStat("player", 1) + local ch_int, ch_int_eff = UnitStat("player", 4) + local ch_spt, ch_spt_eff = UnitStat("player", 5) + local ch_arcane_res_base, ch_arcane_res_total = UnitResistance("player", 6) + local ch_fire_res_base, ch_fire_res_total = UnitResistance("player", 2) + local ch_frost_res_base, ch_frost_res_total = UnitResistance("player", 4) + local ch_nature_res_base, ch_nature_res_total = UnitResistance("player", 3) + local ch_shadow_res_base, ch_shadow_res_total = UnitResistance("player", 5) + ch_arcane_res_total = math.max(1, ch_arcane_res_total) + ch_fire_res_total = math.max(1, ch_fire_res_total) + ch_frost_res_total = math.max(1, ch_frost_res_total) + ch_nature_res_total = math.max(1, ch_nature_res_total) + ch_shadow_res_total = math.max(1, ch_shadow_res_total) + + if(ch_agi_eff == 0 or ch_stm_eff == 0 or ch_str_eff == 0 or ch_int_eff == 0 or ch_spt_eff == 0) then + print("Please open a bug report to kiwi at curseforge or git, say 'ch_*_eff is still getting divide by zeros'") + end + + local agility_ap_melee = 0 + local agility_ap_range = 0 + local agility_crit = 0 + local agility_dodge = 0 + local agility_catform_ap_melee = 0 + local agility_armor = 2 * basic1.Agility + local eff_agility_armor = (agility_armor / (2 * ch_agi_eff)) * 100 + + local stamina_health = 10 * basic1.Stamina + local eff_stamina_health = (stamina_health / (10 * ch_stm_eff)) * 100 + + local strength_ap_melee = 0 + local strength_block = 0 + + local intellect_mana = 0 + local intellect_crit = 0 + + local spirit_hpt = 0 + local spirit_mpt = 0 + + local arcane_resist_p = 0.238095238 * resist1.Arcane_Resist + local fire_resist_p = 0.238095238 * resist1.Fire_Resist + local frost_resist_p = 0.238095238 * resist1.Frost_Resist + local nature_resist_p = 0.238095238 * resist1.Nature_Resist + local shadow_resist_p = 0.238095238 * resist1.Shadow_Resist + + local eff_arcane_resist_p = (resist1.Arcane_Resist / ch_arcane_res_total) * 100 + local eff_fire_resist_p = (resist1.Fire_Resist / ch_fire_res_total) * 100 + local eff_frost_resist_p = (resist1.Frost_Resist / ch_frost_res_total) * 100 + local eff_nature_resist_p = (resist1.Nature_Resist / ch_nature_res_total) * 100 + local eff_shadow_resist_p = (resist1.Shadow_Resist / ch_shadow_res_total) * 100 + + local eff_agility_ap_melee = 0 + local eff_agility_ap_range = 0 + local eff_agility_crit = 0 + local eff_agility_dodge = 0 + local eff_agility_catform_ap_melee = 0 + + local eff_strength_ap_melee = 0 + local eff_strength_block = 0 + + local eff_intellect_mana = 0 + local eff_intellect_crit = 0 + + local eff_spirit_hpt = 0 + local eff_spirit_mpt = 0 + + + + if(classID == 1) then -- warrior + agility_ap_range = 2 * basic1.Agility + eff_agility_ap_range = (agility_ap_range / (2 * ch_agi_eff)) * 100 + + agility_crit = 0.05 * basic1.Agility + eff_agility_crit = (agility_crit / (0.05 * ch_agi_eff)) * 100 + + agility_dodge = 0.05 * basic1.Agility + eff_agility_dodge = (agility_dodge / (0.05 * ch_agi_eff)) * 100 + + + strength_ap_melee = 2 * basic1.Strength + eff_strength_ap_melee = (strength_ap_melee / (2 * ch_str_eff)) * 100 + + strength_block = 0.05 * basic1.Strength + eff_strength_block = (strength_block / (0.05 * ch_str_eff)) * 100 + + + spirit_hpt = 0.80 * basic1.Spirit + eff_spirit_hpt = (spirit_hpt / (0.80 * ch_spt_eff)) * 100 + elseif(classID == 2) then -- paladin + agility_crit = 0.05 * basic1.Agility + eff_agility_crit = (agility_crit / (0.05 * ch_agi_eff)) * 100 + + agility_dodge = 0.05 * basic1.Agility + eff_agility_dodge = (agility_dodge / (0.05 * ch_agi_eff)) * 100 + + + strength_ap_melee = 2 * basic1.Strength + eff_strength_ap_melee = (strength_ap_melee / (2 * ch_str_eff)) * 100 + + strength_block = 0.05 * basic1.Strength + eff_strength_block = (strength_block / (0.05 * ch_str_eff)) * 100 + + + intellect_mana = 15 * basic1.Intellect + eff_intellect_mana = (intellect_mana / (15 * ch_int_eff)) * 100 + + intellect_crit = 0.033898305 * basic1.Intellect + eff_intellect_crit = (intellect_crit / (0.033898305 * ch_int_eff)) * 100 + + + spirit_hpt = 0.80 * basic1.Spirit + eff_spirit_hpt = (spirit_hpt / (0.80 * ch_spt_eff)) * 100 + + spirit_mpt = 0.20 * basic1.Spirit + eff_spirit_mpt = (spirit_mpt / (0.20 * ch_spt_eff)) * 100 + elseif(classID == 3) then -- hunter + agility_ap_melee = 1 * basic1.Agility + eff_agility_ap_melee = (agility_ap_melee / (1 * ch_agi_eff)) * 100 + + agility_ap_range = 2 * basic1.Agility + eff_agility_ap_range = (agility_ap_range / (2 * ch_agi_eff)) * 100 + + agility_crit = 0.018867924 * basic1.Agility + eff_agility_crit = (agility_crit / (0.018867924 * ch_agi_eff)) * 100 + + agility_dodge = 0.037735849 * basic1.Agility + eff_agility_dodge = (agility_dodge / (0.037735849 * ch_agi_eff)) * 100 + + + strength_ap_melee = 1 * basic1.Strength + eff_strength_ap_melee = (strength_ap_melee / (1 * ch_str_eff)) * 100 + + + intellect_mana = 15 * basic1.Intellect + eff_intellect_mana = (intellect_mana / (15 * ch_int_eff)) * 100 + + + spirit_hpt = 1.0 * basic1.Spirit + eff_spirit_hpt = (spirit_hpt / (1.0 * ch_spt_eff)) * 100 + + spirit_mpt = 0.20 * basic1.Spirit + eff_spirit_mpt = (spirit_mpt / (0.20 * ch_spt_eff)) * 100 + elseif(classID == 4) then -- rogue + agility_ap_melee = 1 * basic1.Agility + eff_agility_ap_melee = (agility_ap_melee / (1 * ch_agi_eff)) * 100 + + agility_ap_range = 2 * basic1.Agility + eff_agility_ap_range = (agility_ap_range / (2 * ch_agi_eff)) * 100 + + agility_crit = 0.03448275 * basic1.Agility + eff_agility_crit = (agility_crit / (0.03448275 * ch_agi_eff)) * 100 + + agility_dodge = 0.06896551 * basic1.Agility + eff_agility_dodge = (agility_dodge / (0.06896551 * ch_agi_eff)) * 100 + + + strength_ap_melee = 1 * basic1.Strength + eff_strength_ap_melee = (strength_ap_melee / (1 * ch_str_eff)) * 100 + + + spirit_hpt = 0.60 * basic1.Spirit + eff_spirit_hpt = (spirit_hpt / (0.60 * ch_spt_eff)) * 100 + elseif(classID == 5) then -- priest + agility_crit = 0.05 * basic1.Agility + eff_agility_crit = (agility_crit / (0.05 * ch_agi_eff)) * 100 + + agility_dodge = 0.05 * basic1.Agility + eff_agility_dodge = (agility_dodge / (0.05 * ch_agi_eff)) * 100 + + + strength_ap_melee = 2 * basic1.Strength + eff_strength_ap_melee = (strength_ap_melee / (2 * ch_str_eff)) * 100 + + + intellect_mana = 15 * basic1.Intellect + eff_intellect_mana = (intellect_mana / (15 * ch_int_eff)) * 100 + + intellect_crit = 0.0168918918 * basic1.Intellect + eff_intellect_crit = (intellect_crit / (0.0168918918 * ch_int_eff)) * 100 + + + spirit_hpt = 1.0 * basic1.Spirit + eff_spirit_hpt = (spirit_hpt / (1.0 * ch_spt_eff)) * 100 + + spirit_mpt = 0.25 * basic1.Spirit + eff_spirit_mpt = (spirit_mpt / (0.25 * ch_spt_eff)) * 100 + elseif(classID == 7) then -- shaman + agility_crit = 0.05 * basic1.Agility + eff_agility_crit = (agility_crit / (0.05 * ch_agi_eff)) * 100 + + agility_dodge = 0.05 * basic1.Agility + eff_agility_dodge = (agility_dodge / (0.05 * ch_agi_eff)) * 100 + + + strength_ap_melee = 2 * basic1.Strength + eff_strength_ap_melee = (strength_ap_melee / (2 * ch_str_eff)) * 100 + + strength_block = 0.05 * basic1.Strength + eff_strength_block = (strength_block / (0.05 * ch_str_eff)) * 100 + + + intellect_mana = 15 * basic1.Intellect + eff_intellect_mana = (intellect_mana / (15 * ch_int_eff)) * 100 + + intellect_crit = 0.016806722 * basic1.Intellect + eff_intellect_crit = (intellect_crit / (0.016806722 * ch_int_eff)) * 100 + + + spirit_hpt = 1.1 * basic1.Spirit + eff_spirit_hpt = (spirit_hpt / (1.1 * ch_spt_eff)) * 100 + + spirit_mpt = 0.20 * basic1.Spirit + eff_spirit_mpt = (spirit_mpt / (0.20 * ch_spt_eff)) * 100 + elseif(classID == 8) then -- mage + agility_crit = 0.05 * basic1.Agility + eff_agility_crit = (agility_crit / (0.05 * ch_agi_eff)) * 100 + + agility_dodge = 0.05 * basic1.Agility + eff_agility_dodge = (agility_dodge / (0.05 * ch_agi_eff)) * 100 + + + strength_ap_melee = 2 * basic1.Strength + eff_strength_ap_melee = (strength_ap_melee / (2 * ch_str_eff)) * 100 + + + intellect_mana = 15 * basic1.Intellect + eff_intellect_mana = (intellect_mana / (15 * ch_int_eff)) * 100 + + intellect_crit = 0.016806722 * basic1.Intellect + eff_intellect_crit = (intellect_crit / (0.016806722 * ch_int_eff)) * 100 + + + spirit_hpt = 1.0 * basic1.Spirit + eff_spirit_hpt = (spirit_hpt / (1.0 * ch_spt_eff)) * 100 + + spirit_mpt = 0.25 * basic1.Spirit + eff_spirit_mpt = (spirit_mpt / (0.25 * ch_spt_eff)) * 100 + elseif(classID == 9) then -- warlock + agility_crit = 0.05 * basic1.Agility + eff_agility_crit = (agility_crit / (0.05 * ch_agi_eff)) * 100 + + agility_dodge = 0.05 * basic1.Agility + eff_agility_dodge = (agility_dodge / (0.05 * ch_agi_eff)) * 100 + + + strength_ap_melee = 2 * basic1.Strength + eff_strength_ap_melee = (strength_ap_melee / (2 * ch_str_eff)) * 100 + + + intellect_mana = 15 * basic1.Intellect + eff_intellect_mana = (intellect_mana / (15 * ch_int_eff)) * 100 + + intellect_crit = 0.016501650 * basic1.Intellect + eff_intellect_crit = (intellect_crit / (0.016501650 * ch_int_eff)) * 100 + + + spirit_hpt = 0.7 * basic1.Spirit + eff_spirit_hpt = (spirit_hpt / (0.7 * ch_spt_eff)) * 100 + + spirit_mpt = 0.25 * basic1.Spirit + eff_spirit_mpt = (spirit_mpt / (0.25 * ch_spt_eff)) * 100 + elseif(classID == 11) then -- druid + agility_crit = 0.05 * basic1.Agility + eff_agility_crit = (agility_crit / (0.05 * ch_agi_eff)) * 100 + + agility_dodge = 0.05 * basic1.Agility + eff_agility_dodge = (agility_dodge / (0.05 * ch_agi_eff)) * 100 + + agility_catform_ap_melee = 1 * basic1.Agility + eff_agility_catform_ap_melee = (agility_catform_ap_melee / (1 * ch_agi_eff)) * 100 + + + strength_ap_melee = 2 * basic1.Strength + eff_strength_ap_melee = (strength_ap_melee / (2 * ch_str_eff)) * 100 + + + intellect_mana = 15 * basic1.Intellect + eff_intellect_mana = (intellect_mana / (15 * ch_int_eff)) * 100 + + intellect_crit = 0.016666666 * basic1.Intellect + eff_intellect_crit = (intellect_crit / (0.016666666 * ch_int_eff)) * 100 + + + spirit_hpt = 0.9 * basic1.Spirit + eff_spirit_hpt = (spirit_hpt / (0.9 * ch_spt_eff)) * 100 + + spirit_mpt = 0.20 * basic1.Spirit + eff_spirit_mpt = (spirit_mpt / (0.20 * ch_spt_eff)) * 100 + end + + local eff_armor = (def1.Armor / armor) * 100 + + local eff_agi = (basic1.Agility / ch_agi_eff) * 100 + local eff_stm = (basic1.Stamina / ch_stm_eff) * 100 + local eff_str = (basic1.Strength / ch_str_eff) * 100 + local eff_int = (basic1.Intellect / ch_int_eff) * 100 + local eff_spt = (basic1.Spirit / ch_spt_eff) * 100 + + if(eff_armor == math.huge or eff_agi == math.huge or eff_str == math.huge or eff_int == math.huge or eff_spt == math.huge) then + print("Please open a bug report to kiwi on curse or git saying 'still getting inf errors' Thanks") + end + + local queue = {} + local dirty = true + local send_line = function(...) + table.insert(queue, {...}) + dirty = true + end + local blank_if_dirty = function() + if(dirty) then + table.insert(queue, {" "}) + dirty = false + end + end + + blank_if_dirty() + + if(agility_ap_melee ~= 0) then + send_line(L["TOOLTIP_EX_AGI_M_AP"] .. string.format("|cFFEFEF00%s|r", tostring(agility_ap_melee) .. " (" .. (agility_ap_melee < 0 and "-" or "+") .. tostring(agility_ap_melee/14):match("%d+%.?%d?%d?") .. " DPS)"), 1, 1, 1, true) + end + if(agility_ap_range ~= 0) then + send_line(L["TOOLTIP_EX_AGI_R_AP"] .. string.format("|cFFEFEF00%s|r", tostring(agility_ap_range) .. " (" .. (agility_ap_range < 0 and "-" or "+") .. tostring(agility_ap_range/14):match("%d+%.?%d?%d?") .. " DPS)"), 1, 1, 1, true) + end + if(agility_crit ~= 0) then + send_line(L["TOOLTIP_EX_AGI_CRIT"] .. string.format("|cFFEFEF00%s|r", tostring(agility_crit):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(agility_dodge ~= 0) then + send_line(L["TOOLTIP_EX_AGI_DODGE"] .. string.format("|cFFEFEF00%s|r", tostring(agility_dodge):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(agility_armor ~= 0) then + send_line(L["TOOLTIP_EX_AGI_AR"] .. string.format("|cFFEFEF00%s|r", tostring(agility_armor)), 1, 1, 1, true) + end + if(agility_catform_ap_melee ~= 0) then + send_line(L["TOOLTIP_EX_AGI_M_CAT_AP"] .. string.format("|cFFEFEF00%s|r", tostring(agility_catform_ap_melee) .. " (" .. (agility_catform_ap_melee < 0 and "-" or "+") .. tostring(agility_catform_ap_melee/14):match("%d+%.?%d?%d?") .. " DPS)"), 1, 1, 1, true) + end + if(stamina_health ~= 0) then + send_line(L["TOOLTIP_EX_STM_HP"] .. string.format("|cFFEFEF00%s|r", tostring(stamina_health)), 1, 1, 1, true) + end + if(strength_ap_melee ~= 0) then + send_line(L["TOOLTIP_EX_STR_M_AP"] .. string.format("|cFFEFEF00%s|r", tostring(strength_ap_melee) .. " (" .. (strength_ap_melee < 0 and "-" or "+") .. tostring(strength_ap_melee/14):match("%d+%.?%d?%d?") .. " DPS)"), 1, 1, 1, true) + end + if(strength_block ~= 0) then + send_line(L["TOOLTIP_EX_STR_BLOCK"] .. string.format("|cFFEFEF00%s|r", tostring(strength_block):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(intellect_mana ~= 0) then + send_line(L["TOOLTIP_EX_INT_MANA"] .. string.format("|cFFEFEF00%s|r", tostring(intellect_mana)), 1, 1, 1, true) + end + if(intellect_crit ~= 0) then + send_line(L["TOOLTIP_EX_INT_CRIT"] .. string.format("|cFFEFEF00%s|r", tostring(intellect_crit):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(spirit_hpt ~= 0) then + send_line(L["TOOLTIP_EX_SPT_HP5"] .. string.format("|cFFEFEF00%s|r", tostring(spirit_hpt):match("%d+%.?%d?%d?")), 1, 1, 1, true) + end + if(spirit_mpt ~= 0) then + send_line(L["TOOLTIP_EX_SPT_MP5"] .. string.format("|cFFEFEF00%s|r", tostring(spirit_mpt):match("%d+%.?%d?%d?")), 1, 1, 1, true) + end + if(arcane_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_ARCANE"] .. string.format("|cFFEFEF00%s|r", tostring(arcane_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(fire_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_FIRE"] .. string.format("|cFFEFEF00%s|r", tostring(fire_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(frost_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_FROST"] .. string.format("|cFFEFEF00%s|r", tostring(frost_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(nature_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_NATURE"] .. string.format("|cFFEFEF00%s|r", tostring(nature_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(shadow_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_SHADOW"] .. string.format("|cFFEFEF00%s|r", tostring(shadow_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + + blank_if_dirty() + + send_line(L["TOOLTIP_ITEM_CONTRIB"], 0, 1, 0, false) + + if(eff_armor ~= 0) then + send_line(L["TOOLTIP_IC_ARMOR"] .. ": " .. string.format("|cFFEFEF00%s|r", tostring(eff_armor):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + + if(eff_agi ~= 0) then + send_line(L["TOOLTIP_IC_AGILITY"] .. ": " .. string.format("|cFFEFEF00%s|r", tostring(eff_agi):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_stm ~= 0) then + send_line(L["TOOLTIP_IC_STAMINA"] .. ": " .. string.format("|cFFEFEF00%s|r", tostring(eff_stm):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_str ~= 0) then + send_line(L["TOOLTIP_IC_STRENGTH"] .. ": " .. string.format("|cFFEFEF00%s|r", tostring(eff_str):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_int ~= 0) then + send_line(L["TOOLTIP_IC_INTELLECT"] .. ": " .. string.format("|cFFEFEF00%s|r", tostring(eff_int):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_spt ~= 0) then + send_line(L["TOOLTIP_IC_SPIRIT"] .. ": " .. string.format("|cFFEFEF00%s|r", tostring(eff_spt):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + + blank_if_dirty() + + if(eff_agility_ap_melee ~= 0) then + send_line(L["TOOLTIP_EX_AGI_M_AP"] .. string.format("|cFFEFEF00%s|r", tostring(eff_agility_ap_melee):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_agility_ap_range ~= 0) then + send_line(L["TOOLTIP_EX_AGI_R_AP"] .. string.format("|cFFEFEF00%s|r", tostring(eff_agility_ap_range):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_agility_crit ~= 0) then + send_line(L["TOOLTIP_EX_AGI_CRIT"] .. string.format("|cFFEFEF00%s|r", tostring(eff_agility_crit):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_agility_dodge ~= 0) then + send_line(L["TOOLTIP_EX_AGI_DODGE"] .. string.format("|cFFEFEF00%s|r", tostring(eff_agility_dodge):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_agility_armor ~= 0) then + send_line(L["TOOLTIP_EX_AGI_AR"] .. string.format("|cFFEFEF00%s|r", tostring(eff_agility_armor):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_agility_catform_ap_melee ~= 0) then + send_line(L["TOOLTIP_EX_AGI_M_CAT_AP"] .. string.format("|cFFEFEF00%s|r", tostring(eff_agility_catform_ap_melee):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_stamina_health ~= 0) then + send_line(L["TOOLTIP_EX_STM_HP"] .. string.format("|cFFEFEF00%s|r", tostring(eff_stamina_health):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_strength_ap_melee ~= 0) then + send_line(L["TOOLTIP_EX_STR_M_AP"] .. string.format("|cFFEFEF00%s|r", tostring(eff_strength_ap_melee):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_strength_block ~= 0) then + send_line(L["TOOLTIP_EX_STR_BLOCK"] .. string.format("|cFFEFEF00%s|r", tostring(eff_strength_block):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_intellect_mana ~= 0) then + send_line(L["TOOLTIP_EX_INT_MANA"] .. string.format("|cFFEFEF00%s|r", tostring(eff_intellect_mana):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_intellect_crit ~= 0) then + send_line(L["TOOLTIP_EX_INT_CRIT"] .. string.format("|cFFEFEF00%s|r", tostring(eff_intellect_crit):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_spirit_hpt ~= 0) then + send_line(L["TOOLTIP_EX_SPT_HP5"] .. string.format("|cFFEFEF00%s|r", tostring(eff_spirit_hpt):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_spirit_mpt ~= 0) then + send_line(L["TOOLTIP_EX_SPT_MP5"] .. string.format("|cFFEFEF00%s|r", tostring(eff_spirit_mpt):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + + + blank_if_dirty() + + + if(eff_arcane_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_ARCANE"] .. string.format("|cFFEFEF00%s|r", tostring(eff_arcane_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_fire_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_FIRE"] .. string.format("|cFFEFEF00%s|r", tostring(eff_fire_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_frost_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_FROST"] .. string.format("|cFFEFEF00%s|r", tostring(eff_frost_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_nature_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_NATURE"] .. string.format("|cFFEFEF00%s|r", tostring(eff_nature_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + if(eff_shadow_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_SHADOW"] .. string.format("|cFFEFEF00%s|r", tostring(eff_shadow_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, false) + end + + if(queue[#queue][1] == " ") then + table.remove(queue, #queue) + end + + for i, v in pairs(queue) do + tooltip:AddLine(unpack(v)) + end + +end + +KiwiItemInfo.DisplayItemCompare = function(base_tooltip, tooltip, sel) + + if(KiwiItemInfo_Vars.vars["item_compare_on"] == false) then + return + end + + do + local selection = GetMouseFocus() + if(selection ~= nil) then + local name = selection:GetName() + if(name and (name:find("Character") == 1 and name:find("Slot"))) then + return + end + end + end + + local att_a, def_a, basic_a, special_a, resist_a, equips_a, uses_a, chances_a + local att_b, def_b, basic_b, special_b, resist_b, equips_b, uses_b, chances_b + local att_c, def_c, basic_c, special_c, resist_c, equips_c, uses_c, chances_c + if(sel == 1) then + att_a, def_a, basic_a, special_a, resist_a, equips_a, uses_a, chances_a = att1, def1, basic1, special1, resist1, equips1, uses1, chances1 + att_b, def_b, basic_b, special_b, resist_b, equips_b, uses_b, chances_b = att2, def2, basic2, special2, resist2, equips2, uses2, chances2 + att_c, def_c, basic_c, special_c, resist_c, equips_c, uses_c, chances_c = att3, def3, basic3, special3, resist3, equips3, uses3, chances3 + elseif(sel == 2) then + att_a, def_a, basic_a, special_a, resist_a, equips_a, uses_a, chances_a = att4, def4, basic4, special4, resist4, equips4, uses4, chances4 + att_b, def_b, basic_b, special_b, resist_b, equips_b, uses_b, chances_b = att5, def5, basic5, special5, resist5, equips5, uses5, chances5 + att_c, def_c, basic_c, special_c, resist_c, equips_c, uses_c, chances_c = att6, def6, basic6, special6, resist6, equips6, uses6, chances6 + end + + if(att_a == nil or att_b == nil) then + return + end + + local double_replace = false + local _, basei_link = base_tooltip:GetItem() + local base_itemSubClassID = select(13, GetItemInfo(basei_link)) + if(base_itemSubClassID == LE_ITEM_WEAPON_SWORD2H + or base_itemSubClassID == LE_ITEM_WEAPON_AXE2H + or base_itemSubClassID == LE_ITEM_WEAPON_MACE2H + or base_itemSubClassID == LE_ITEM_WEAPON_POLEARM + or base_itemSubClassID == LE_ITEM_WEAPON_STAFF + or base_itemSubClassID == LE_ITEM_WEAPON_BOWS + or base_itemSubClassID == LE_ITEM_WEAPON_GUNS + or base_itemSubClassID == LE_ITEM_WEAPON_FISHINGPOLE) then + if(GetInventoryItemLink("player", GetInventorySlotInfo("MainHandSlot")) ~= nil + and GetInventoryItemLink("player", GetInventorySlotInfo("SecondaryHandSlot")) ~= nil) then + double_replace = true + end + end + if(double_replace and att_c == nil) then + return + end + + local min_dmg = att_a.min_dmg - att_b.min_dmg + local max_dmg = att_a.max_dmg - att_b.max_dmg + local dps = att_a.dps - att_b.dps + + local armor = def_a.Armor - def_b.Armor + local block = def_a.Block - def_b.Block + local durability = def_a.Durability - def_b.Durability + + local agility = basic_a.Agility - basic_b.Agility + local stamina = basic_a.Stamina - basic_b.Stamina + local strength = basic_a.Strength - basic_b.Strength + local intellect = basic_a.Intellect - basic_b.Intellect + local spirit = basic_a.Spirit - basic_b.Spirit + + local dodge = special_a.Dodge - special_b.Dodge + + local arcane_resist = resist_a.Arcane_Resist - resist_b.Arcane_Resist + local fire_resist = resist_a.Fire_Resist - resist_b.Fire_Resist + local frost_resist = resist_a.Frost_Resist - resist_b.Frost_Resist + local nature_resist = resist_a.Nature_Resist - resist_b.Nature_Resist + local shadow_resist = resist_a.Shadow_Resist - resist_b.Shadow_Resist + + if(double_replace and att_c ~= nil) then + min_dmg = min_dmg - att_c.min_dmg + max_dmg = max_dmg - att_c.max_dmg + dps = dps - att_c.dps + + armor = armor - def_c.Armor + block = block - def_c.Block + durability = durability - def_c.Durability + + agility = agility - basic_c.Agility + stamina = stamina - basic_c.Stamina + strength = strength - basic_c.Strength + intellect = intellect - basic_c.Intellect + spirit = spirit - basic_c.Spirit + + dodge = dodge - special_c.Dodge + + arcane_resist = arcane_resist - resist_c.Arcane_Resist + fire_resist = fire_resist - resist_c.Fire_Resist + frost_resist = frost_resist - resist_c.Frost_Resist + nature_resist = nature_resist - resist_c.Nature_Resist + shadow_resist = shadow_resist - resist_c.Shadow_Resist + end + if(sel == 2) then + durability = 0 + end + + local _, _, classID = UnitClass("player"); + + local agility_ap_melee = 0 + local agility_ap_range = 0 + local agility_crit = 0 + local agility_dodge = 0 + local agility_catform_ap_melee = 0 + local agility_armor = 2 * agility + + local stamina_health = 10 * stamina + + local strength_ap_melee = 0 + local strength_block = 0 + + local intellect_mana = 0 -- 15 * intellect + local intellect_crit = 0 + + local spirit_hpt = 0 + local spirit_mpt = 0 + + local arcane_resist_p = 0.238095238 * arcane_resist + local fire_resist_p = 0.238095238 * fire_resist + local frost_resist_p = 0.238095238 * frost_resist + local nature_resist_p = 0.238095238 * nature_resist + local shadow_resist_p = 0.238095238 * shadow_resist + + + if(classID == 1) then -- warrior + agility_ap_range = 2 * agility + agility_crit = 0.05 * agility + agility_dodge = 0.05 * agility + + strength_ap_melee = 2 * strength + strength_block = 0.05 * strength + + spirit_hpt = 0.80 * spirit + elseif(classID == 2) then -- paladin + agility_crit = 0.05 * agility + agility_dodge = 0.05 * agility + + strength_ap_melee = 2 * strength + strength_block = 0.05 * strength + + intellect_mana = 15 * intellect + intellect_crit = 0.033898305 * intellect + + spirit_hpt = 0.80 * spirit + spirit_mpt = 0.20 * spirit + elseif(classID == 3) then -- hunter + agility_ap_melee = 1 * agility + agility_ap_range = 2 * agility + agility_crit = 0.018867924 * agility + agility_dodge = 0.037735849 * agility + + strength_ap_melee = 1 * strength + + intellect_mana = 15 * intellect + + spirit_hpt = 1.0 * spirit + spirit_mpt = 0.20 * spirit + elseif(classID == 4) then -- rogue + agility_ap_melee = 1 * agility + agility_ap_range = 2 * agility + agility_crit = 0.03448275 * agility + agility_dodge = 0.06896551 * agility + + strength_ap_melee = 1 * strength + + spirit_hpt = 0.60 * spirit + elseif(classID == 5) then -- priest + agility_crit = 0.05 * agility + agility_dodge = 0.05 * agility + + strength_ap_melee = 2 * strength + + intellect_mana = 15 * intellect + intellect_crit = 0.0168918918 * intellect + + spirit_hpt = 1.0 * spirit + spirit_mpt = 0.25 * spirit + elseif(classID == 7) then -- shaman + agility_crit = 0.05 * agility + agility_dodge = 0.05 * agility + + strength_ap_melee = 2 * strength + strength_block = 0.05 * strength + + intellect_mana = 15 * intellect + intellect_crit = 0.016806722 * intellect + + spirit_hpt = 1.1 * spirit + spirit_mpt = 0.20 * spirit + elseif(classID == 8) then -- mage + agility_crit = 0.05 * agility + agility_dodge = 0.05 * agility + + strength_ap_melee = 2 * strength + + intellect_mana = 15 * intellect + intellect_crit = 0.016806722 * intellect + + spirit_hpt = 1.0 * spirit + spirit_mpt = 0.25 * spirit + elseif(classID == 9) then -- warlock + agility_crit = 0.05 * agility + agility_dodge = 0.05 * agility + + strength_ap_melee = 2 * strength + + intellect_mana = 15 * intellect + intellect_crit = 0.016501650 * intellect + + spirit_hpt = 0.7 * spirit + spirit_mpt = 0.25 * spirit + elseif(classID == 11) then -- druid + agility_crit = 0.05 * agility + agility_dodge = 0.05 * agility + agility_catform_ap_melee = 1 * agility + + strength_ap_melee = 2 * strength + + intellect_mana = 15 * intellect + intellect_crit = 0.016666666 * intellect + + spirit_hpt = 0.9 * spirit + spirit_mpt = 0.20 * spirit + end + + + local queue = {} + local dirty = true + local send_line = function(...) + table.insert(queue, {...}) + dirty = true + end + local blank_if_dirty = function() + if(dirty) then + table.insert(queue, {" "}) + dirty = false + end + end + + tooltip:AddLine(" ") + tooltip:AddLine(L["TOOLTIP_ITEM_COMPARE"], 0.06666, 0.6, 0.06666, false) + + -- min/max attack + if(min_dmg ~= 0 or max_dmg ~= 0) then + send_line(((min_dmg > 0) and string.format("|cFF00FF00+%s|r", min_dmg) or string.format("|cFFFF0000%s|r", min_dmg)) + .. " / " + .. ((max_dmg > 0) and string.format("|cFF00FF00+%s|r", max_dmg) or string.format("|cFFFF0000%s|r", max_dmg)) + .. L["TOOLTIP_IC_DAMAGE_DELTA"] .. math.abs(max_dmg - min_dmg) .. ")") + end + + -- dps + if(dps ~= 0) then + send_line((dps > 0 and "+" or "") .. dps .. " " .. L["TOOLTIP_IC_DPS"], dps > 0 and 0 or 1, dps > 0 and 1 or 0, 0, true) + end + + blank_if_dirty() + + -- armor/block/durability + if(armor ~= 0) then + send_line((armor > 0 and "+" or "") .. armor .. " " .. L["TOOLTIP_IC_ARMOR"], armor > 0 and 0 or 1, armor > 0 and 1 or 0, 0, true) + end + if(block ~= 0) then + send_line((block > 0 and "+" or "") .. block .. " " .. L["TOOLTIP_IC_BLOCK"], block > 0 and 0 or 1, block > 0 and 1 or 0, 0, true) + end + if(durability ~= 0) then + send_line((durability > 0 and "+" or "") .. durability .. " " .. L["TOOLTIP_IC_DURABILITY"], durability > 0 and 0 or 1, durability > 0 and 1 or 0, 0, true) + end + + blank_if_dirty() + + -- basic stats + if(agility ~= 0) then + send_line((agility > 0 and "+" or "") .. agility .. " " .. L["TOOLTIP_IC_AGILITY"], agility > 0 and 0 or 1, agility > 0 and 1 or 0, 0, true) + end + if(stamina ~= 0) then + send_line((stamina > 0 and "+" or "") .. stamina .. " " .. L["TOOLTIP_IC_STAMINA"], stamina > 0 and 0 or 1, stamina > 0 and 1 or 0, 0, true) + end + if(strength ~= 0) then + send_line((strength > 0 and "+" or "") .. strength .. " " .. L["TOOLTIP_IC_STRENGTH"], strength > 0 and 0 or 1, strength > 0 and 1 or 0, 0, true) + end + if(intellect ~= 0) then + send_line((intellect > 0 and "+" or "") .. intellect .. " " .. L["TOOLTIP_IC_INTELLECT"], intellect > 0 and 0 or 1, intellect > 0 and 1 or 0, 0, true) + end + if(spirit ~= 0) then + send_line((spirit > 0 and "+" or "") .. spirit .. " " .. L["TOOLTIP_IC_SPIRIT"], spirit > 0 and 0 or 1, spirit > 0 and 1 or 0, 0, true) + end + + blank_if_dirty() + + -- special + if(dodge ~= 0) then + send_line((dodge > 0 and "+" or "") .. dodge .. "% " .. L["TOOLTIP_IC_DODGE"], dodge > 0 and 0 or 1, dodge > 0 and 1 or 0, 0, true) + end + + blank_if_dirty() + + -- TODO: attack power, enchants, probably not set effects + -- enchants are going to be difficult + if(arcane_resist ~= 0) then + send_line((arcane_resist > 0 and "+" or "") .. arcane_resist .. " " .. L["TOOLTIP_IC_ARCANE"], arcane_resist > 0 and 0 or 1, arcane_resist > 0 and 1 or 0, 0, true) + end + if(fire_resist ~= 0) then + send_line((fire_resist > 0 and "+" or "") .. fire_resist .. " " .. L["TOOLTIP_IC_FIRE"], fire_resist > 0 and 0 or 1, fire_resist > 0 and 1 or 0, 0, true) + end + if(frost_resist ~= 0) then + send_line((frost_resist > 0 and "+" or "") .. frost_resist .. " " .. L["TOOLTIP_IC_FROST"], frost_resist > 0 and 0 or 1, frost_resist > 0 and 1 or 0, 0, true) + end + if(nature_resist ~= 0) then + send_line((nature_resist > 0 and "+" or "") .. nature_resist .. " " .. L["TOOLTIP_IC_NATURE"], nature_resist > 0 and 0 or 1, nature_resist > 0 and 1 or 0, 0, true) + end + if(shadow_resist ~= 0) then + send_line((shadow_resist > 0 and "+" or "") .. shadow_resist .. " " .. L["TOOLTIP_IC_SHADOW"], shadow_resist > 0 and 0 or 1, shadow_resist > 0 and 1 or 0, 0, true) + end + + blank_if_dirty() + + if(KiwiItemInfo_Vars.vars["item_compare_extra"] == true) then + + if(agility_ap_melee ~= 0) then + send_line(L["TOOLTIP_EX_AGI_M_AP"] .. string.format("|cFFEFEF00%s|r", tostring(agility_ap_melee) .. " (" .. (agility_ap_melee < 0 and "-" or "+") .. tostring(agility_ap_melee/14):match("%d+%.?%d?%d?") .. " DPS)"), 1, 1, 1, true) + end + if(agility_ap_range ~= 0) then + send_line(L["TOOLTIP_EX_AGI_R_AP"] .. string.format("|cFFEFEF00%s|r", tostring(agility_ap_range) .. " (" .. (agility_ap_range < 0 and "-" or "+") .. tostring(agility_ap_range/14):match("%d+%.?%d?%d?") .. " DPS)"), 1, 1, 1, true) + end + if(agility_crit ~= 0) then + send_line(L["TOOLTIP_EX_AGI_CRIT"] .. string.format("|cFFEFEF00%s|r", tostring(agility_crit):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(agility_dodge ~= 0) then + send_line(L["TOOLTIP_EX_AGI_DODGE"] .. string.format("|cFFEFEF00%s|r", tostring(agility_dodge):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(agility_armor ~= 0) then + send_line(L["TOOLTIP_EX_AGI_AR"] .. string.format("|cFFEFEF00%s|r", tostring(agility_armor)), 1, 1, 1, true) + end + if(agility_catform_ap_melee ~= 0) then + send_line(L["TOOLTIP_EX_AGI_M_CAT_AP"] .. string.format("|cFFEFEF00%s|r", tostring(agility_catform_ap_melee) .. " (" .. (agility_catform_ap_melee < 0 and "-" or "+") .. tostring(agility_catform_ap_melee/14):match("%d+%.?%d?%d?") .. " DPS)"), 1, 1, 1, true) + end + if(stamina_health ~= 0) then + send_line(L["TOOLTIP_EX_STM_HP"] .. string.format("|cFFEFEF00%s|r", tostring(stamina_health)), 1, 1, 1, true) + end + if(strength_ap_melee ~= 0) then + send_line(L["TOOLTIP_EX_STR_M_AP"] .. string.format("|cFFEFEF00%s|r", tostring(strength_ap_melee) .. " (" .. (strength_ap_melee < 0 and "-" or "+") .. tostring(strength_ap_melee/14):match("%d+%.?%d?%d?") .. " DPS)"), 1, 1, 1, true) + end + if(strength_block ~= 0) then + send_line(L["TOOLTIP_EX_STR_BLOCK"] .. string.format("|cFFEFEF00%s|r", tostring(strength_block):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(intellect_mana ~= 0) then + send_line(L["TOOLTIP_EX_INT_MANA"] .. string.format("|cFFEFEF00%s|r", tostring(intellect_mana)), 1, 1, 1, true) + end + if(intellect_crit ~= 0) then + send_line(L["TOOLTIP_EX_INT_CRIT"] .. string.format("|cFFEFEF00%s|r", tostring(intellect_crit):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(spirit_hpt ~= 0) then + send_line(L["TOOLTIP_EX_SPT_HP5"] .. string.format("|cFFEFEF00%s|r", tostring(spirit_hpt):match("%d+%.?%d?%d?")), 1, 1, 1, true) + end + if(spirit_mpt ~= 0) then + send_line(L["TOOLTIP_EX_SPT_MP5"] .. string.format("|cFFEFEF00%s|r", tostring(spirit_mpt):match("%d+%.?%d?%d?")), 1, 1, 1, true) + end + if(arcane_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_ARCANE"] .. string.format("|cFFEFEF00%s|r", tostring(arcane_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(fire_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_FIRE"] .. string.format("|cFFEFEF00%s|r", tostring(fire_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(frost_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_FROST"] .. string.format("|cFFEFEF00%s|r", tostring(frost_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(nature_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_NATURE"] .. string.format("|cFFEFEF00%s|r", tostring(nature_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + if(shadow_resist_p ~= 0) then + send_line(L["TOOLTIP_EX_RES_SHADOW"] .. string.format("|cFFEFEF00%s|r", tostring(shadow_resist_p):match("%d+%.?%d?%d?") .. "%"), 1, 1, 1, true) + end + + blank_if_dirty() + end + + -- equips + for i, v in next, equips_a do + local found = false + for j, k in next, equips_b do + if(v == k) then + found = true + end + end + if(double_replace) then + for j, k in next, equips_c do + if(v == k) then + found = true + end + end + end + if(not found) then + send_line(v, 0, 1, 0, true) + end + end + + for i, v in next, equips_b do + local found = false + for j, k in next, equips_a do + if(v == k) then + found = true + end + end + if(not found) then + send_line(v, 1, 0, 0, true) + end + end + if(double_replace) then + for i, v in next, equips_c do + local found = false + for j, k in next, equips_a do + if(v == k) then + found = true + end + end + if(not found) then + send_line(v, 1, 0, 0, true) + end + end + end + + blank_if_dirty() + + -- uses + for i, v in next, uses_a do + local found = false + for j, k in next, uses_b do + if(v == k) then + found = true + end + end + if(double_replace) then + for j, k in next, uses_c do + if(v == k) then + found = true + end + end + end + if(not found) then + send_line(v, 0, 1, 0, true) + end + end + + for i, v in next, uses_b do + local found = false + for j, k in next, uses_a do + if(v == k) then + found = true + end + end + if(not found) then + send_line(v, 1, 0, 0, true) + end + end + if(double_replace) then + for i, v in next, uses_c do + local found = false + for j, k in next, uses_a do + if(v == k) then + found = true + end + end + if(not found) then + send_line(v, 1, 0, 0, true) + end + end + end + + blank_if_dirty() + + -- chances + for i, v in next, chances_a do + local found = false + for j, k in next, chances_b do + if(v == k) then + found = true + end + end + if(double_replace) then + for j, k in next, chances_c do + if(v == k) then + found = true + end + end + end + if(not found) then + send_line(v, 0, 1, 0, true) + end + end + + for i, v in next, chances_b do + local found = false + for j, k in next, chances_a do + if(v == k) then + found = true + end + end + if(not found) then + send_line(v, 1, 0, 0, true) + end + end + if(double_replace) then + for i, v in next, chances_c do + local found = false + for j, k in next, chances_a do + if(v == k) then + found = true + end + end + if(not found) then + send_line(v, 1, 0, 0, true) + end + end + end + + if(queue[#queue][1] == " ") then + table.remove(queue, #queue) + end + + for i, v in pairs(queue) do + tooltip:AddLine(unpack(v)) + end + +end + diff --git a/VarsUI.lua b/VarsUI.lua new file mode 100644 index 0000000..6367599 --- /dev/null +++ b/VarsUI.lua @@ -0,0 +1,140 @@ + +local VarsUI = {} + + +local background +local scroll +local content +local elements +local font + + +local label_width = 190 +local edit_width = 100 + +local padding_l = 10 +local padding_v = -5 + +local height = 0 + + +VarsUI.Init = function() + table.insert(UISpecialFrames, "KiwiItemInfoKIWIIIFrame") + background = CreateFrame("Frame", "KiwiItemInfoKIWIIIFrame", UIParent, "BasicFrameTemplate") + background.TitleText:SetText("Kiwi Item Info Vars") + background:SetSize(300, 300) + background:SetPoint("CENTER") + scroll = CreateFrame("ScrollFrame", nil, background, "UIPanelScrollFrameTemplate") + scroll:SetSize(273, 270) + scroll:SetPoint("TOPLEFT", 0, -25) + content = CreateFrame("Frame", nil, background, nil) + content:SetSize(300, 300) + content:SetPoint("TOPLEFT") + scroll:SetScrollChild(content) + + font = CreateFont("KiwiVarsUIFont") + font:CopyFontObject(GameFontWhite) + font:SetJustifyH("LEFT") + + elements = {} + + scroll:SetScript("OnSizeChanged", function(frame, width, height) + content:SetWidth(width) + content:SetHeight(height) + end) + + VarsUI.Background = background + VarsUI.Scroll = scroll + VarsUI.Content = content +end + +VarsUI.AddComponent = function(type, text, show, action) + local fr + + if(type == 1) then -- number + fr = CreateFrame("EditBox", nil, content) + fr:SetNumeric(true) + fr:SetAutoFocus(false) + fr:SetFontObject(font) + fr:SetSize(edit_width, 25) + fr:SetPoint("TOPLEFT", padding_l + label_width, height) + fr.Text = fr:CreateFontString() + fr.Text:SetParent(fr) + fr.Text:SetFontObject(font) + fr.Text:SetSize(label_width, 25) + fr.Text:SetPoint("LEFT", -label_width, 0) + fr.Text:SetText(text) + + fr.OnShow = show + fr.OnHide = function(self) self:ClearFocus() end + fr:SetScript("OnEnterPressed", action) + fr:SetScript("OnEscapePressed", function(self) self:ClearFocus() end) + fr:SetScript("OnTabPressed", function(self) self:ClearFocus() end) + + height = height - 25 - padding_v + table.insert(elements, fr) + elseif(type == 2) then -- string + fr = CreateFrame("EditBox", nil, content) + fr:SetAutoFocus(false) + fr:SetFontObject(font) + fr:SetSize(edit_width, 25) + fr:SetPoint("TOPLEFT", padding_l + label_width, height) + fr.Text = fr:CreateFontString() + fr.Text:SetParent(fr) + fr.Text:SetFontObject(font) + fr.Text:SetSize(label_width, 25) + fr.Text:SetPoint("LEFT", -label_width, 0) + fr.Text:SetText(text) + + fr.OnShow = show + fr.OnHide = function(self) self:ClearFocus() end + fr:SetScript("OnEnterPressed", action) + fr:SetScript("OnEscapePressed", function(self) self:ClearFocus() end) + fr:SetScript("OnTabPressed", function(self) self:ClearFocus() end) + + height = height - 25 - padding_v + table.insert(elements, fr) + elseif(type == 3) then -- boolean + fr = CreateFrame("CheckButton", nil, content, "ChatConfigCheckButtonTemplate") + fr:SetSize(25, 25) + fr:SetPoint("TOPLEFT", padding_l + label_width, height) + fr.Text:SetFontObject(font) + fr.Text:SetSize(label_width, 25) + fr.Text:SetPoint("LEFT", -label_width, 0) + fr.Text:SetText(text) + + fr.OnShow = show + fr:SetScript("OnClick", action) + + height = height - 25 - padding_v + table.insert(elements, fr) + end + + return fr, #elements +end + +VarsUI.Blank = function() + height = height - 15 +end + +VarsUI.Show = function() + for i, v in next, elements do + if(v.OnShow) then + v.OnShow(v) + end + end + background:SetParent(UIParent) + background:Show() +end + +VarsUI.Hide = function() + for i, v in next, elements do + if(v.OnHide) then + v.OnHide(v) + end + end + background:Hide() + background:SetParent(nil) +end + +KiwiItemInfo.VarsUI = VarsUI